diff --git a/.gitattributes b/.gitattributes index 7e56dd653e9e939be9cad2a00b452a83268b0828..82a438bde7db1d622ef81fbe1b39ebf5b8d5e37b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -358,3 +358,16 @@ evalkit_tf437/lib/itcl4.2.4/libitcl4.2.4.so filter=lfs diff=lfs merge=lfs -text evalkit_tf437/lib/python3.10/site-packages/scipy/linalg/_fblas.cpython-310-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text evalkit_tf437/lib/python3.10/site-packages/scipy/sparse/linalg/_dsolve/_superlu.cpython-310-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text evalkit_tf437/lib/python3.10/site-packages/scipy/cluster/_optimal_leaf_ordering.cpython-310-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libncurses.so.6 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libatomic.so filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libquadmath.so.0.0.0 filter=lfs diff=lfs merge=lfs -text +deepseek/bin/bunzip2 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libreadline.so.8 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libtk8.6.so filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libsqlite3.so filter=lfs diff=lfs merge=lfs -text +deepseek/lib/liblsan.so.0 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libubsan.so.1 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libreadline.so filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libssl.so.3 filter=lfs diff=lfs merge=lfs -text +deepseek/lib/libreadline.a filter=lfs diff=lfs merge=lfs -text +deepseek/compiler_compat/ld filter=lfs diff=lfs merge=lfs -text diff --git a/deepseek/bin/bunzip2 b/deepseek/bin/bunzip2 new file mode 100644 index 0000000000000000000000000000000000000000..0c8cd908c3eb4dc508939fbc65a25f0ec61579da --- /dev/null +++ b/deepseek/bin/bunzip2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a514cce807cb1656a3bcd59794401e7d63c9554267e9acc77097a406092a8ed +size 299464 diff --git a/deepseek/bin/bzless b/deepseek/bin/bzless new file mode 100644 index 0000000000000000000000000000000000000000..d314043404976e58329f611c195d5c49eb917655 --- /dev/null +++ b/deepseek/bin/bzless @@ -0,0 +1,61 @@ +#!/bin/sh + +# Bzmore wrapped for bzip2, +# adapted from zmore by Philippe Troin for Debian GNU/Linux. + +PATH="/usr/bin:$PATH"; export PATH + +prog=`echo $0 | sed 's|.*/||'` +case "$prog" in + *less) more=less ;; + *) more=more ;; +esac + +if test "`echo -n a`" = "-n a"; then + # looks like a SysV system: + n1=''; n2='\c' +else + n1='-n'; n2='' +fi +oldtty=`stty -g 2>/dev/null` +if stty -cbreak 2>/dev/null; then + cb='cbreak'; ncb='-cbreak' +else + # 'stty min 1' resets eof to ^a on both SunOS and SysV! + cb='min 1 -icanon'; ncb='icanon eof ^d' +fi +if test $? -eq 0 -a -n "$oldtty"; then + trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15 +else + trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15 +fi + +if test $# = 0; then + if test -t 0; then + echo usage: $prog files... + else + bzip2 -cdfq | eval $more + fi +else + FIRST=1 + for FILE + do + if test $FIRST -eq 0; then + echo $n1 "--More--(Next file: $FILE)$n2" + stty $cb -echo 2>/dev/null + ANS=`dd bs=1 count=1 2>/dev/null` + stty $ncb echo 2>/dev/null + echo " " + if test "$ANS" = 'e' -o "$ANS" = 'q'; then + exit + fi + fi + if test "$ANS" != 's'; then + echo "------> $FILE <------" + bzip2 -cdfq "$FILE" | eval $more + fi + if test -t; then + FIRST=0 + fi + done +fi diff --git a/deepseek/bin/convert-caffe2-to-onnx b/deepseek/bin/convert-caffe2-to-onnx new file mode 100644 index 0000000000000000000000000000000000000000..d1947a7a6a9d8da36981a612367a83cab59acdfb --- /dev/null +++ b/deepseek/bin/convert-caffe2-to-onnx @@ -0,0 +1,8 @@ +#!/root/envs/deepseek/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from caffe2.python.onnx.bin.conversion import caffe2_to_onnx +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(caffe2_to_onnx()) diff --git a/deepseek/bin/gguf-set-metadata b/deepseek/bin/gguf-set-metadata new file mode 100644 index 0000000000000000000000000000000000000000..91804f7a240f533e98d765197b5767bdcdcd5acc --- /dev/null +++ b/deepseek/bin/gguf-set-metadata @@ -0,0 +1,8 @@ +#!/root/envs/deepseek/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from scripts import gguf_set_metadata_entrypoint +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(gguf_set_metadata_entrypoint()) diff --git a/deepseek/bin/infotocap b/deepseek/bin/infotocap new file mode 100644 index 0000000000000000000000000000000000000000..62e7e5820434d888e735099535bb3927de194522 Binary files /dev/null and b/deepseek/bin/infotocap differ diff --git a/deepseek/bin/proton-viewer b/deepseek/bin/proton-viewer new file mode 100644 index 0000000000000000000000000000000000000000..8629bde50d6af7763be25e718eba92b317bd4683 --- /dev/null +++ b/deepseek/bin/proton-viewer @@ -0,0 +1,8 @@ +#!/root/envs/deepseek/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from triton.profiler.viewer import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/deepseek/bin/pydoc3.10 b/deepseek/bin/pydoc3.10 new file mode 100644 index 0000000000000000000000000000000000000000..ee4ce5035fc0f4ab348e75e6fc1de8bf036b0fc9 --- /dev/null +++ b/deepseek/bin/pydoc3.10 @@ -0,0 +1,5 @@ +#!/root/envs/deepseek/bin/python3.10 + +import pydoc +if __name__ == '__main__': + pydoc.cli() diff --git a/deepseek/bin/tic b/deepseek/bin/tic new file mode 100644 index 0000000000000000000000000000000000000000..62e7e5820434d888e735099535bb3927de194522 Binary files /dev/null and b/deepseek/bin/tic differ diff --git a/deepseek/bin/vllm b/deepseek/bin/vllm new file mode 100644 index 0000000000000000000000000000000000000000..1098224d8364695364082e927a3871e89bc190af --- /dev/null +++ b/deepseek/bin/vllm @@ -0,0 +1,8 @@ +#!/root/envs/deepseek/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from vllm.scripts import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/deepseek/bin/xzegrep b/deepseek/bin/xzegrep new file mode 100644 index 0000000000000000000000000000000000000000..f2a73bb9297a231da8823435f9d8bde68787b63a --- /dev/null +++ b/deepseek/bin/xzegrep @@ -0,0 +1,300 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later + +# xzgrep -- a wrapper around a grep program that decompresses files as needed +# Adapted from a version sent by Charles Levert + +# Copyright (C) 1998, 2001, 2002, 2006, 2007 Free Software Foundation +# Copyright (C) 1993 Jean-loup Gailly + +# Modified for XZ Utils by Andrew Dudman and Lasse Collin. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + + +#SET_PATH - This line is a placeholder to ease patching this script. + +# Instead of unsetting XZ_OPT, just make sure that xz will use file format +# autodetection. This way memory usage limit and thread limit can be +# specified via XZ_OPT. With gzip, bzip2, and lzop it's OK to just unset the +# environment variables. +xz='xz --format=auto' +unset GZIP BZIP BZIP2 LZOP + +case ${0##*/} in + *egrep*) prog=xzegrep; grep=${GREP:-grep -E};; + *fgrep*) prog=xzfgrep; grep=${GREP:-grep -F};; + *) prog=xzgrep; grep=${GREP:-grep};; +esac + +version="$prog (XZ Utils) 5.6.4" + +usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]... +Look for instances of PATTERN in the input FILEs, using their +uncompressed contents if they are compressed. + +OPTIONs are the same as for '$grep'. + +Report bugs to ." + +# sed script to escape all ' for the shell, and then (to handle trailing +# newlines correctly) turn trailing X on last line into '. +escape=' + s/'\''/'\''\\'\'''\''/g + $s/X$/'\''/ +' +operands= +have_pat=0 +files_with_matches=0 +files_without_matches=0 +no_filename=0 +with_filename=0 + +# See if -H and --label options are supported (GNU and *BSDs). +if test f:x = "$(eval "echo x | $grep -H --label=f x 2> /dev/null")"; then + grep_supports_label=1 +else + grep_supports_label=0 +fi + +while test $# -ne 0; do + option=$1 + shift + optarg= + + case $option in + (-[0123456789abcdEFGhHiIKlLnoPqrRsTuUvVwxyzZ]*[!0123456789]*) + # Something like -Fiv was specified, that is, $option contains more + # than one option of which the first option (in this example -F) + # doesn't take an argument. Split the first option into a standalone + # argument and continue parsing the rest of the options (in this example, + # replace -Fiv with -iv in the argument list and set option=-F). + # + # If there are digits [0-9] they are treated as if they were a single + # option character because this syntax is an alias for -C for GNU grep. + # For example, "grep -25F" is equivalent to "grep -C25 -F". If only + # digits are specified like "grep -25" we don't get here because the + # above pattern in the case-statement doesn't match such strings. + arg2=-\'$(LC_ALL=C expr "X${option}X" : 'X-.[0-9]*\(.*\)' | + LC_ALL=C sed "$escape") + eval "set -- $arg2 "'${1+"$@"}' + option=$(LC_ALL=C expr "X$option" : 'X\(-.[0-9]*\)');; + (--binary-*=* | --[lm]a*=* | --reg*=*) + # These options require an argument and an argument has been provided + # with the --foo=argument syntax. All is good. + ;; + (-[ABCDefmX] | --binary-* | --file | --[lm]a* | --reg*) + # These options require an argument which should now be in $1. + # If it isn't, display an error and exit. + case ${1?"$option option requires an argument"} in + (*\'*) + optarg=" '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + optarg=" '$1'";; + esac + shift;; + (--) + break;; + (-?*) + ;; + (*) + case $option in + (*\'*) + operands="$operands '"$(printf '%sX\n' "$option" | + LC_ALL=C sed "$escape");; + (*) + operands="$operands '$option'";; + esac + ${POSIXLY_CORRECT+break} + continue;; + esac + + case $option in + (-[drRzZ] | --di* | --exc* | --inc* | --rec* | --nu*) + printf >&2 '%s: %s: Option not supported\n' "$0" "$option" + exit 2;; + (-[ef]* | --file | --file=* | --reg*) + have_pat=1;; + (--h | --he | --hel | --help) + printf '%s\n' "$usage" || exit 2 + exit;; + (-H | --wi | --wit | --with | --with- | --with-f | --with-fi \ + | --with-fil | --with-file | --with-filen | --with-filena | --with-filenam \ + | --with-filename) + with_filename=1 + continue;; + (-l | --files-with-*) + files_with_matches=1 + continue;; + (-L | --files-witho*) + files_without_matches=1 + continue;; + (-h | --no-f*) + no_filename=1;; + (-V | --v | --ve | --ver | --vers | --versi | --versio | --version) + printf '%s\n' "$version" || exit 2 + exit;; + esac + + case $option in + (*\'?*) + option=\'$(printf '%sX\n' "$option" | LC_ALL=C sed "$escape");; + (*) + option="'$option'";; + esac + + grep="$grep $option$optarg" +done + +eval "set -- $operands "'${1+"$@"}' + +if test $have_pat -eq 0; then + case ${1?"Missing pattern; try '${0##*/} --help' for help"} in + (*\'*) + grep="$grep -e '"$(printf '%sX\n' "$1" | LC_ALL=C sed "$escape");; + (*) + grep="$grep -e '$1'";; + esac + shift +fi + +if test $# -eq 0; then + set -- - +fi + +exec 3>&1 + +# res=1 means that no file matched yet +res=1 + +for i; do + case $i in + *[-.][zZ] | *_z | *[-.]gz | *.t[ag]z) uncompress="gzip -cdf";; + *[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdf";; + *[-.]lzo | *[-.]tzo) uncompress="lzop -cdf";; + *[-.]zst | *[-.]tzst) uncompress="zstd -cdfq";; # zstd needs -q. + *[-.]lz4) uncompress="lz4 -cdf";; + *) uncompress="$xz -cdfqQ";; # -qQ to ignore warnings like unsupp. check. + esac + # xz_status will hold the decompressor's exit status. + # Exit status of grep (and in rare cases, printf or sed) is + # available as the exit status of this assignment command. + xz_status=$( + exec 5>&1 + ($uncompress -- "$i" 5>&-; echo $? >&5) 3>&- | + if test $files_with_matches -eq 1; then + eval "$grep -q" && { printf '%s\n' "$i" || exit 2; } + elif test $files_without_matches -eq 1; then + eval "$grep -q" || { + r=$? + if test $r -eq 1; then + printf '%s\n' "$i" || r=2 + fi + exit $r + } + elif test $with_filename -eq 0 && + { test $# -eq 1 || test $no_filename -eq 1; }; then + eval "$grep" + elif test $grep_supports_label -eq 1; then + # The grep implementation in use allows us to specify the filename + # that grep will prefix to the output lines. This is faster and + # less prone to security bugs than the fallback method that uses sed. + # This also avoids confusing output with GNU grep >= 3.5 (2020-09-27) + # which prints "binary file matches" to stderr instead of stdout. + # + # If reading from stdin, let grep use whatever name it prefers for + # stdin. With GNU grep it is a locale-specific translated string. + if test "x$i" = "x-"; then + eval "$grep -H" + else + eval "$grep -H --label \"\$i\"" + fi + else + # Append a colon so that the last character will never be a newline + # which would otherwise get lost in shell command substitution. + i="$i:" + + # Escape & \ | and newlines only if such characters are present + # (speed optimization). + case $i in + (*' +'* | *'&'* | *'\'* | *'|'*) + # If sed fails, set i to a known safe string to ensure that + # failing sed did not create a half-escaped dangerous string. + i=$(printf '%s\n' "$i" | LC_ALL=C sed 's/[&\|]/\\&/g; $!s/$/\\/') || + i='(unknown filename):';; + esac + + # $i already ends with a colon so do not add it here. + sed_script="s|^|$i|" + + # If grep or sed fails, pick the larger value of the two exit statuses. + # If sed fails, use at least 2 since we use >= 2 to indicate errors. + r=$( + exec 4>&1 + (eval "$grep" 4>&-; echo $? >&4) 3>&- | + LC_ALL=C sed "$sed_script" >&3 4>&- + ) || { + sed_status=$? + test "$sed_status" -lt 2 && sed_status=2 + test "$r" -lt "$sed_status" && r=$sed_status + } + exit $r + fi >&3 5>&- + ) + r=$? + + # If grep or sed or other non-decompression command failed with a signal, + # exit immediately and ignore the possible remaining files. + # + # NOTE: Instead of 128 + signal_number, some shells use + # 256 + signal_number (ksh) or 384 + signal_number (yash). + # This is fine for us since their "exit" and "kill -l" commands take + # this into account. (At least the versions I tried do but there is + # a report of an old ksh variant whose "exit" truncates the exit status + # to 8 bits without any special handling for values indicating a signal.) + test "$r" -ge 128 && exit "$r" + + if test -z "$xz_status"; then + # Something unusual happened, for example, we got a signal and + # the exit status of the decompressor was never echoed and thus + # $xz_status is empty. Exit immediately and ignore the possible + # remaining files. + exit 2 + elif test "$xz_status" -ge 128; then + # The decompressor died due to a signal. SIGPIPE is ignored since it can + # occur if grep exits before the whole file has been decompressed (grep -q + # can do that). If the decompressor died with some other signal, exit + # immediately and ignore the possible remaining files. + test "$(kill -l "$xz_status" 2> /dev/null)" != "PIPE" && exit "$xz_status" + elif test "$xz_status" -gt 0; then + # Decompression failed but we will continue with the remaining + # files anyway. Set exit status to at least 2 to indicate an error. + test "$r" -lt 2 && r=2 + fi + + # Since res=1 is the initial value, we only need to care about + # matches (r == 0) and errors (r >= 2) here; r == 1 can be ignored. + if test "$r" -ge 2; then + # An error occurred in decompressor, grep, or some other command. Update + # res unless a larger error code has been seen with an earlier file. + test "$res" -lt "$r" && res=$r + elif test "$r" -eq 0; then + # grep found a match and no errors occurred. Update res if no errors have + # occurred with earlier files. + test "$res" -eq 1 && res=0 + fi +done + +# 0: At least one file matched and no errors occurred. +# 1: No matches were found and no errors occurred. +# >=2: Error. It's unknown if matches were found. +exit "$res" diff --git a/deepseek/compiler_compat/README b/deepseek/compiler_compat/README new file mode 100644 index 0000000000000000000000000000000000000000..3b64e59cb4c04380d39e32e1a1d78eb9b275d4f0 --- /dev/null +++ b/deepseek/compiler_compat/README @@ -0,0 +1,2 @@ +Files in this folder are to enhance backwards compatibility of anaconda software with older compilers. +See: https://github.com/conda/conda/issues/6030 for more information. diff --git a/deepseek/compiler_compat/ld b/deepseek/compiler_compat/ld new file mode 100644 index 0000000000000000000000000000000000000000..5d9795f7d0788693c2421b25013239554ebf54b6 --- /dev/null +++ b/deepseek/compiler_compat/ld @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac +size 2195376 diff --git a/deepseek/conda-meta/_libgcc_mutex-0.1-main.json b/deepseek/conda-meta/_libgcc_mutex-0.1-main.json new file mode 100644 index 0000000000000000000000000000000000000000..9ab392b97a6da5493122e6fef41df9856f48270d --- /dev/null +++ b/deepseek/conda-meta/_libgcc_mutex-0.1-main.json @@ -0,0 +1,29 @@ +{ + "build": "main", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [], + "extracted_package_dir": "/opt/conda/pkgs/_libgcc_mutex-0.1-main", + "files": [], + "fn": "_libgcc_mutex-0.1-main.conda", + "license": "", + "link": { + "source": "/opt/conda/pkgs/_libgcc_mutex-0.1-main", + "type": 1 + }, + "md5": "c3473ff8bdb3d124ed5ff11ec380d6f9", + "name": "_libgcc_mutex", + "package_tarball_full_path": "/opt/conda/pkgs/_libgcc_mutex-0.1-main.conda", + "paths_data": { + "paths": [], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "476626712f60e5ef0fe04c354727152b1ee5285d57ccd3575c7be930122bd051", + "size": 3473, + "subdir": "linux-64", + "timestamp": 1562011674000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda", + "version": "0.1" +} \ No newline at end of file diff --git a/deepseek/conda-meta/ld_impl_linux-64-2.40-h12ee557_0.json b/deepseek/conda-meta/ld_impl_linux-64-2.40-h12ee557_0.json new file mode 100644 index 0000000000000000000000000000000000000000..1ac8d0f68ccc05f96b764ce0593013ec2f01926f --- /dev/null +++ b/deepseek/conda-meta/ld_impl_linux-64-2.40-h12ee557_0.json @@ -0,0 +1,62 @@ +{ + "build": "h12ee557_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [ + "binutils_impl_linux-64 2.40" + ], + "depends": [], + "extracted_package_dir": "/opt/conda/pkgs/ld_impl_linux-64-2.40-h12ee557_0", + "files": [ + "bin/x86_64-conda-linux-gnu-ld", + "bin/x86_64-conda_cos7-linux-gnu-ld", + "x86_64-conda-linux-gnu/bin/ld", + "x86_64-conda_cos7-linux-gnu/bin/ld" + ], + "fn": "ld_impl_linux-64-2.40-h12ee557_0.conda", + "license": "GPL-3.0-only", + "link": { + "source": "/opt/conda/pkgs/ld_impl_linux-64-2.40-h12ee557_0", + "type": 1 + }, + "md5": "ee672b5f635340734f58d618b7bca024", + "name": "ld_impl_linux-64", + "package_tarball_full_path": "/opt/conda/pkgs/ld_impl_linux-64-2.40-h12ee557_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/x86_64-conda-linux-gnu-ld", + "path_type": "hardlink", + "sha256": "aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac", + "sha256_in_prefix": "aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac", + "size_in_bytes": 2195376 + }, + { + "_path": "bin/x86_64-conda_cos7-linux-gnu-ld", + "path_type": "softlink", + "sha256": "aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac", + "size_in_bytes": 2195376 + }, + { + "_path": "x86_64-conda-linux-gnu/bin/ld", + "path_type": "softlink", + "sha256": "aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac", + "size_in_bytes": 2195376 + }, + { + "_path": "x86_64-conda_cos7-linux-gnu/bin/ld", + "path_type": "softlink", + "sha256": "aaaab6b3200c6f71e5f2970b01a074c958d5af546e5f43c011192307f69d9cac", + "size_in_bytes": 2195376 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "07137855558e3749fc88812644ab30fc543bc31bcf274403e1a23764bed78127", + "size": 726762, + "subdir": "linux-64", + "timestamp": 1727336193000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.40-h12ee557_0.conda", + "version": "2.40" +} \ No newline at end of file diff --git a/deepseek/conda-meta/libgomp-11.2.0-h1234567_1.json b/deepseek/conda-meta/libgomp-11.2.0-h1234567_1.json new file mode 100644 index 0000000000000000000000000000000000000000..38335740646c96ff0a69d29091dcf3efaa0a9865 --- /dev/null +++ b/deepseek/conda-meta/libgomp-11.2.0-h1234567_1.json @@ -0,0 +1,56 @@ +{ + "build": "h1234567_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "_libgcc_mutex 0.1 main" + ], + "extracted_package_dir": "/opt/conda/pkgs/libgomp-11.2.0-h1234567_1", + "files": [ + "lib/libgomp.so", + "lib/libgomp.so.1.0.0", + "share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION.gomp_copy" + ], + "fn": "libgomp-11.2.0-h1234567_1.conda", + "license": "GPL-3.0-only WITH GCC-exception-3.1", + "link": { + "source": "/opt/conda/pkgs/libgomp-11.2.0-h1234567_1", + "type": 1 + }, + "md5": "b372c0eea9b60732fdae4b817a63c8cd", + "name": "libgomp", + "package_tarball_full_path": "/opt/conda/pkgs/libgomp-11.2.0-h1234567_1.conda", + "paths_data": { + "paths": [ + { + "_path": "lib/libgomp.so", + "path_type": "softlink", + "sha256": "e3b68c5f37afb7b70bd12273b69706ab33a397714e8336910f0e47f8f1cf6854", + "size_in_bytes": 1265616 + }, + { + "_path": "lib/libgomp.so.1.0.0", + "path_type": "hardlink", + "sha256": "e3b68c5f37afb7b70bd12273b69706ab33a397714e8336910f0e47f8f1cf6854", + "sha256_in_prefix": "e3b68c5f37afb7b70bd12273b69706ab33a397714e8336910f0e47f8f1cf6854", + "size_in_bytes": 1265616 + }, + { + "_path": "share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION.gomp_copy", + "path_type": "hardlink", + "sha256": "9d6b43ce4d8de0c878bf16b54d8e7a10d9bd42b75178153e3af6a815bdc90f74", + "sha256_in_prefix": "9d6b43ce4d8de0c878bf16b54d8e7a10d9bd42b75178153e3af6a815bdc90f74", + "size_in_bytes": 3324 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "a1c6e599df45e116af81c36ec4c9efb1793fa3a0b854dd90dd6c8813cd476e90", + "size": 485145, + "subdir": "linux-64", + "timestamp": 1654090775000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/libgomp-11.2.0-h1234567_1.conda", + "version": "11.2.0" +} \ No newline at end of file diff --git a/deepseek/conda-meta/pip-25.0-py310h06a4308_0.json b/deepseek/conda-meta/pip-25.0-py310h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..d68aec8ffacc2c97c83f86ca4763a9fb6256b568 --- /dev/null +++ b/deepseek/conda-meta/pip-25.0-py310h06a4308_0.json @@ -0,0 +1,6823 @@ +{ + "build": "py310h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "setuptools", + "wheel", + "python >=3.10,<3.11.0a0" + ], + "extracted_package_dir": "/opt/conda/pkgs/pip-25.0-py310h06a4308_0", + "files": [ + "bin/pip", + "bin/pip3", + "lib/python3.10/site-packages/pip-25.0.dist-info/AUTHORS.txt", + "lib/python3.10/site-packages/pip-25.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/pip-25.0.dist-info/LICENSE.txt", + "lib/python3.10/site-packages/pip-25.0.dist-info/METADATA", + "lib/python3.10/site-packages/pip-25.0.dist-info/RECORD", + "lib/python3.10/site-packages/pip-25.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/pip-25.0.dist-info/WHEEL", + "lib/python3.10/site-packages/pip-25.0.dist-info/direct_url.json", + "lib/python3.10/site-packages/pip-25.0.dist-info/entry_points.txt", + "lib/python3.10/site-packages/pip-25.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/pip/__init__.py", + "lib/python3.10/site-packages/pip/__main__.py", + "lib/python3.10/site-packages/pip/__pip-runner__.py", + "lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__init__.py", + "lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/build_env.py", + "lib/python3.10/site-packages/pip/_internal/cache.py", + "lib/python3.10/site-packages/pip/_internal/cli/__init__.py", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py", + "lib/python3.10/site-packages/pip/_internal/cli/base_command.py", + "lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py", + "lib/python3.10/site-packages/pip/_internal/cli/command_context.py", + "lib/python3.10/site-packages/pip/_internal/cli/index_command.py", + "lib/python3.10/site-packages/pip/_internal/cli/main.py", + "lib/python3.10/site-packages/pip/_internal/cli/main_parser.py", + "lib/python3.10/site-packages/pip/_internal/cli/parser.py", + "lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py", + "lib/python3.10/site-packages/pip/_internal/cli/req_command.py", + "lib/python3.10/site-packages/pip/_internal/cli/spinners.py", + "lib/python3.10/site-packages/pip/_internal/cli/status_codes.py", + "lib/python3.10/site-packages/pip/_internal/commands/__init__.py", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/commands/cache.py", + "lib/python3.10/site-packages/pip/_internal/commands/check.py", + "lib/python3.10/site-packages/pip/_internal/commands/completion.py", + "lib/python3.10/site-packages/pip/_internal/commands/configuration.py", + "lib/python3.10/site-packages/pip/_internal/commands/debug.py", + "lib/python3.10/site-packages/pip/_internal/commands/download.py", + "lib/python3.10/site-packages/pip/_internal/commands/freeze.py", + "lib/python3.10/site-packages/pip/_internal/commands/hash.py", + "lib/python3.10/site-packages/pip/_internal/commands/help.py", + "lib/python3.10/site-packages/pip/_internal/commands/index.py", + "lib/python3.10/site-packages/pip/_internal/commands/inspect.py", + "lib/python3.10/site-packages/pip/_internal/commands/install.py", + "lib/python3.10/site-packages/pip/_internal/commands/list.py", + "lib/python3.10/site-packages/pip/_internal/commands/search.py", + "lib/python3.10/site-packages/pip/_internal/commands/show.py", + "lib/python3.10/site-packages/pip/_internal/commands/uninstall.py", + "lib/python3.10/site-packages/pip/_internal/commands/wheel.py", + "lib/python3.10/site-packages/pip/_internal/configuration.py", + "lib/python3.10/site-packages/pip/_internal/distributions/__init__.py", + "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/distributions/base.py", + "lib/python3.10/site-packages/pip/_internal/distributions/installed.py", + "lib/python3.10/site-packages/pip/_internal/distributions/sdist.py", + "lib/python3.10/site-packages/pip/_internal/distributions/wheel.py", + "lib/python3.10/site-packages/pip/_internal/exceptions.py", + "lib/python3.10/site-packages/pip/_internal/index/__init__.py", + "lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/index/collector.py", + "lib/python3.10/site-packages/pip/_internal/index/package_finder.py", + "lib/python3.10/site-packages/pip/_internal/index/sources.py", + "lib/python3.10/site-packages/pip/_internal/locations/__init__.py", + "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/locations/_distutils.py", + "lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py", + "lib/python3.10/site-packages/pip/_internal/locations/base.py", + "lib/python3.10/site-packages/pip/_internal/main.py", + "lib/python3.10/site-packages/pip/_internal/metadata/__init__.py", + "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/_json.py", + "lib/python3.10/site-packages/pip/_internal/metadata/base.py", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__init__.py", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_compat.py", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_dists.py", + "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_envs.py", + "lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py", + "lib/python3.10/site-packages/pip/_internal/models/__init__.py", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/models/candidate.py", + "lib/python3.10/site-packages/pip/_internal/models/direct_url.py", + "lib/python3.10/site-packages/pip/_internal/models/format_control.py", + "lib/python3.10/site-packages/pip/_internal/models/index.py", + "lib/python3.10/site-packages/pip/_internal/models/installation_report.py", + "lib/python3.10/site-packages/pip/_internal/models/link.py", + "lib/python3.10/site-packages/pip/_internal/models/scheme.py", + "lib/python3.10/site-packages/pip/_internal/models/search_scope.py", + "lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py", + "lib/python3.10/site-packages/pip/_internal/models/target_python.py", + "lib/python3.10/site-packages/pip/_internal/models/wheel.py", + "lib/python3.10/site-packages/pip/_internal/network/__init__.py", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/network/auth.py", + "lib/python3.10/site-packages/pip/_internal/network/cache.py", + "lib/python3.10/site-packages/pip/_internal/network/download.py", + "lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py", + "lib/python3.10/site-packages/pip/_internal/network/session.py", + "lib/python3.10/site-packages/pip/_internal/network/utils.py", + "lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py", + "lib/python3.10/site-packages/pip/_internal/operations/__init__.py", + "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/build/build_tracker.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py", + "lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py", + "lib/python3.10/site-packages/pip/_internal/operations/check.py", + "lib/python3.10/site-packages/pip/_internal/operations/freeze.py", + "lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py", + "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py", + "lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py", + "lib/python3.10/site-packages/pip/_internal/operations/prepare.py", + "lib/python3.10/site-packages/pip/_internal/pyproject.py", + "lib/python3.10/site-packages/pip/_internal/req/__init__.py", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/req/constructors.py", + "lib/python3.10/site-packages/pip/_internal/req/req_file.py", + "lib/python3.10/site-packages/pip/_internal/req/req_install.py", + "lib/python3.10/site-packages/pip/_internal/req/req_set.py", + "lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py", + "lib/python3.10/site-packages/pip/_internal/resolution/__init__.py", + "lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/base.py", + "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py", + "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py", + "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py", + "lib/python3.10/site-packages/pip/_internal/self_outdated_check.py", + "lib/python3.10/site-packages/pip/_internal/utils/__init__.py", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/retry.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py", + "lib/python3.10/site-packages/pip/_internal/utils/_log.py", + "lib/python3.10/site-packages/pip/_internal/utils/appdirs.py", + "lib/python3.10/site-packages/pip/_internal/utils/compat.py", + "lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py", + "lib/python3.10/site-packages/pip/_internal/utils/datetime.py", + "lib/python3.10/site-packages/pip/_internal/utils/deprecation.py", + "lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py", + "lib/python3.10/site-packages/pip/_internal/utils/egg_link.py", + "lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py", + "lib/python3.10/site-packages/pip/_internal/utils/filesystem.py", + "lib/python3.10/site-packages/pip/_internal/utils/filetypes.py", + "lib/python3.10/site-packages/pip/_internal/utils/glibc.py", + "lib/python3.10/site-packages/pip/_internal/utils/hashes.py", + "lib/python3.10/site-packages/pip/_internal/utils/logging.py", + "lib/python3.10/site-packages/pip/_internal/utils/misc.py", + "lib/python3.10/site-packages/pip/_internal/utils/packaging.py", + "lib/python3.10/site-packages/pip/_internal/utils/retry.py", + "lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py", + "lib/python3.10/site-packages/pip/_internal/utils/subprocess.py", + "lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py", + "lib/python3.10/site-packages/pip/_internal/utils/unpacking.py", + "lib/python3.10/site-packages/pip/_internal/utils/urls.py", + "lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py", + "lib/python3.10/site-packages/pip/_internal/utils/wheel.py", + "lib/python3.10/site-packages/pip/_internal/vcs/__init__.py", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py", + "lib/python3.10/site-packages/pip/_internal/vcs/git.py", + "lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py", + "lib/python3.10/site-packages/pip/_internal/vcs/subversion.py", + "lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py", + "lib/python3.10/site-packages/pip/_internal/wheel_builder.py", + "lib/python3.10/site-packages/pip/_vendor/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/py.typed", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py", + "lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py", + "lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py", + "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem", + "lib/python3.10/site-packages/pip/_vendor/certifi/core.py", + "lib/python3.10/site-packages/pip/_vendor/certifi/py.typed", + "lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distlib/compat.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/database.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/index.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/locators.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/markers.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/resources.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/util.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/version.py", + "lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py", + "lib/python3.10/site-packages/pip/_vendor/distro/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/distro/__main__.py", + "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/distro/distro.py", + "lib/python3.10/site-packages/pip/_vendor/distro/py.typed", + "lib/python3.10/site-packages/pip/_vendor/idna/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/idna/codec.py", + "lib/python3.10/site-packages/pip/_vendor/idna/compat.py", + "lib/python3.10/site-packages/pip/_vendor/idna/core.py", + "lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py", + "lib/python3.10/site-packages/pip/_vendor/idna/intranges.py", + "lib/python3.10/site-packages/pip/_vendor/idna/package_data.py", + "lib/python3.10/site-packages/pip/_vendor/idna/py.typed", + "lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py", + "lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py", + "lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py", + "lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/_elffile.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/_parser.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/_tokenizer.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/_spdx.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/markers.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/metadata.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/py.typed", + "lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/tags.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/utils.py", + "lib/python3.10/site-packages/pip/_vendor/packaging/version.py", + "lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/py.typed", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py", + "lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/console.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/filter.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/style.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pygments/styles/_mapping.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/token.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py", + "lib/python3.10/site-packages/pip/_vendor/pygments/util.py", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_impl.py", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", + "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/py.typed", + "lib/python3.10/site-packages/pip/_vendor/requests/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/requests/__version__.py", + "lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py", + "lib/python3.10/site-packages/pip/_vendor/requests/adapters.py", + "lib/python3.10/site-packages/pip/_vendor/requests/api.py", + "lib/python3.10/site-packages/pip/_vendor/requests/auth.py", + "lib/python3.10/site-packages/pip/_vendor/requests/certs.py", + "lib/python3.10/site-packages/pip/_vendor/requests/compat.py", + "lib/python3.10/site-packages/pip/_vendor/requests/cookies.py", + "lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py", + "lib/python3.10/site-packages/pip/_vendor/requests/help.py", + "lib/python3.10/site-packages/pip/_vendor/requests/hooks.py", + "lib/python3.10/site-packages/pip/_vendor/requests/models.py", + "lib/python3.10/site-packages/pip/_vendor/requests/packages.py", + "lib/python3.10/site-packages/pip/_vendor/requests/sessions.py", + "lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py", + "lib/python3.10/site-packages/pip/_vendor/requests/structures.py", + "lib/python3.10/site-packages/pip/_vendor/requests/utils.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/py.typed", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py", + "lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py", + "lib/python3.10/site-packages/pip/_vendor/rich/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/rich/__main__.py", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_export_format.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_extension.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_loop.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_null_file.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_pick.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_stack.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_timer.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_win32_console.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_windows.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_windows_renderer.py", + "lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py", + "lib/python3.10/site-packages/pip/_vendor/rich/abc.py", + "lib/python3.10/site-packages/pip/_vendor/rich/align.py", + "lib/python3.10/site-packages/pip/_vendor/rich/ansi.py", + "lib/python3.10/site-packages/pip/_vendor/rich/bar.py", + "lib/python3.10/site-packages/pip/_vendor/rich/box.py", + "lib/python3.10/site-packages/pip/_vendor/rich/cells.py", + "lib/python3.10/site-packages/pip/_vendor/rich/color.py", + "lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py", + "lib/python3.10/site-packages/pip/_vendor/rich/columns.py", + "lib/python3.10/site-packages/pip/_vendor/rich/console.py", + "lib/python3.10/site-packages/pip/_vendor/rich/constrain.py", + "lib/python3.10/site-packages/pip/_vendor/rich/containers.py", + "lib/python3.10/site-packages/pip/_vendor/rich/control.py", + "lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py", + "lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py", + "lib/python3.10/site-packages/pip/_vendor/rich/emoji.py", + "lib/python3.10/site-packages/pip/_vendor/rich/errors.py", + "lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py", + "lib/python3.10/site-packages/pip/_vendor/rich/filesize.py", + "lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py", + "lib/python3.10/site-packages/pip/_vendor/rich/json.py", + "lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py", + "lib/python3.10/site-packages/pip/_vendor/rich/layout.py", + "lib/python3.10/site-packages/pip/_vendor/rich/live.py", + "lib/python3.10/site-packages/pip/_vendor/rich/live_render.py", + "lib/python3.10/site-packages/pip/_vendor/rich/logging.py", + "lib/python3.10/site-packages/pip/_vendor/rich/markup.py", + "lib/python3.10/site-packages/pip/_vendor/rich/measure.py", + "lib/python3.10/site-packages/pip/_vendor/rich/padding.py", + "lib/python3.10/site-packages/pip/_vendor/rich/pager.py", + "lib/python3.10/site-packages/pip/_vendor/rich/palette.py", + "lib/python3.10/site-packages/pip/_vendor/rich/panel.py", + "lib/python3.10/site-packages/pip/_vendor/rich/pretty.py", + "lib/python3.10/site-packages/pip/_vendor/rich/progress.py", + "lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py", + "lib/python3.10/site-packages/pip/_vendor/rich/prompt.py", + "lib/python3.10/site-packages/pip/_vendor/rich/protocol.py", + "lib/python3.10/site-packages/pip/_vendor/rich/py.typed", + "lib/python3.10/site-packages/pip/_vendor/rich/region.py", + "lib/python3.10/site-packages/pip/_vendor/rich/repr.py", + "lib/python3.10/site-packages/pip/_vendor/rich/rule.py", + "lib/python3.10/site-packages/pip/_vendor/rich/scope.py", + "lib/python3.10/site-packages/pip/_vendor/rich/screen.py", + "lib/python3.10/site-packages/pip/_vendor/rich/segment.py", + "lib/python3.10/site-packages/pip/_vendor/rich/spinner.py", + "lib/python3.10/site-packages/pip/_vendor/rich/status.py", + "lib/python3.10/site-packages/pip/_vendor/rich/style.py", + "lib/python3.10/site-packages/pip/_vendor/rich/styled.py", + "lib/python3.10/site-packages/pip/_vendor/rich/syntax.py", + "lib/python3.10/site-packages/pip/_vendor/rich/table.py", + "lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py", + "lib/python3.10/site-packages/pip/_vendor/rich/text.py", + "lib/python3.10/site-packages/pip/_vendor/rich/theme.py", + "lib/python3.10/site-packages/pip/_vendor/rich/themes.py", + "lib/python3.10/site-packages/pip/_vendor/rich/traceback.py", + "lib/python3.10/site-packages/pip/_vendor/rich/tree.py", + "lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py", + "lib/python3.10/site-packages/pip/_vendor/tomli/_re.py", + "lib/python3.10/site-packages/pip/_vendor/tomli/_types.py", + "lib/python3.10/site-packages/pip/_vendor/tomli/py.typed", + "lib/python3.10/site-packages/pip/_vendor/truststore/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/truststore/_api.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/_macos.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/_openssl.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/_ssl_constants.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/_windows.py", + "lib/python3.10/site-packages/pip/_vendor/truststore/py.typed", + "lib/python3.10/site-packages/pip/_vendor/typing_extensions.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/request.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/response.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py", + "lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py", + "lib/python3.10/site-packages/pip/_vendor/vendor.txt", + "lib/python3.10/site-packages/pip/py.typed" + ], + "fn": "pip-25.0-py310h06a4308_0.conda", + "license": "MIT", + "link": { + "source": "/opt/conda/pkgs/pip-25.0-py310h06a4308_0", + "type": 1 + }, + "md5": "d4858c86a3a18ead1648b1f007ed36e4", + "name": "pip", + "package_tarball_full_path": "/opt/conda/pkgs/pip-25.0-py310h06a4308_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/pip", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/pip_1737991979965/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "sha256": "49d6dd9f6d84e6596c21a0302907bb0801c4cb062f97d87e8314bd09bd7fbf72", + "sha256_in_prefix": "3bd1566af587b4d0a13b26d1f06fb89cc4dff147f4d3018ce8d58a8f1f33aeac", + "size_in_bytes": 475 + }, + { + "_path": "bin/pip3", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/pip_1737991979965/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pla", + "sha256": "49d6dd9f6d84e6596c21a0302907bb0801c4cb062f97d87e8314bd09bd7fbf72", + "sha256_in_prefix": "3bd1566af587b4d0a13b26d1f06fb89cc4dff147f4d3018ce8d58a8f1f33aeac", + "size_in_bytes": 475 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/AUTHORS.txt", + "path_type": "hardlink", + "sha256": "1eace90552df4f5941b61a907e20e555e16483ae6127b650bef5a1a2af8102c0", + "sha256_in_prefix": "1eace90552df4f5941b61a907e20e555e16483ae6127b650bef5a1a2af8102c0", + "size_in_bytes": 11018 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/LICENSE.txt", + "path_type": "hardlink", + "sha256": "634300a669d49aeae65b12c6c48c924c51a4cdf3d1ff086dc3456dc8bcaa2104", + "sha256_in_prefix": "634300a669d49aeae65b12c6c48c924c51a4cdf3d1ff086dc3456dc8bcaa2104", + "size_in_bytes": 1093 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "0a8a26dc22be5dba646266ffcfc88346ed76cab5bba254d414aebdb27d08c19b", + "sha256_in_prefix": "0a8a26dc22be5dba646266ffcfc88346ed76cab5bba254d414aebdb27d08c19b", + "size_in_bytes": 3675 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "1d8eb8740bd5ab9ea4b7f8122ae8306e19f1cf9f18b33abef2b61e66b4ed4cb3", + "sha256_in_prefix": "1d8eb8740bd5ab9ea4b7f8122ae8306e19f1cf9f18b33abef2b61e66b4ed4cb3", + "size_in_bytes": 65788 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "195f5a3138703ffe28342b6f102d9e737a9462eb6059e033925ae8ff49b85894", + "sha256_in_prefix": "195f5a3138703ffe28342b6f102d9e737a9462eb6059e033925ae8ff49b85894", + "size_in_bytes": 91 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/direct_url.json", + "path_type": "hardlink", + "sha256": "039b8abb32d0c2589a6580f7c69848981f38d3bcdd09fb06a9b68fd4cc27456a", + "sha256_in_prefix": "039b8abb32d0c2589a6580f7c69848981f38d3bcdd09fb06a9b68fd4cc27456a", + "size_in_bytes": 63 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/entry_points.txt", + "path_type": "hardlink", + "sha256": "79e223bb37e77d1d8fae16e39dbcc553a327492ef49192f1c1a1c7aba33e6c3d", + "sha256_in_prefix": "79e223bb37e77d1d8fae16e39dbcc553a327492ef49192f1c1a1c7aba33e6c3d", + "size_in_bytes": 87 + }, + { + "_path": "lib/python3.10/site-packages/pip-25.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508", + "sha256_in_prefix": "ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508", + "size_in_bytes": 4 + }, + { + "_path": "lib/python3.10/site-packages/pip/__init__.py", + "path_type": "hardlink", + "sha256": "fcdfe116bb0495891ca68d770fd3712f00f33c5dd6824497a6fe058caa126bff", + "sha256_in_prefix": "fcdfe116bb0495891ca68d770fd3712f00f33c5dd6824497a6fe058caa126bff", + "size_in_bytes": 355 + }, + { + "_path": "lib/python3.10/site-packages/pip/__main__.py", + "path_type": "hardlink", + "sha256": "5b36e11d74db484ea0058d7d98d37d9b8b39a3fdfae4b3af4d84a0aa06dd0611", + "sha256_in_prefix": "5b36e11d74db484ea0058d7d98d37d9b8b39a3fdfae4b3af4d84a0aa06dd0611", + "size_in_bytes": 854 + }, + { + "_path": "lib/python3.10/site-packages/pip/__pip-runner__.py", + "path_type": "hardlink", + "sha256": "70f3d6b89e8d2bf93e1b37ef95e8cb160c339985113a6a4047a402dd0faf9174", + "sha256_in_prefix": "70f3d6b89e8d2bf93e1b37ef95e8cb160c339985113a6a4047a402dd0faf9174", + "size_in_bytes": 1450 + }, + { + "_path": "lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "995e2f87beda483d109a91a34fccdd8964d51a8f9a7c710c698fe8e86e893b02", + "sha256_in_prefix": "995e2f87beda483d109a91a34fccdd8964d51a8f9a7c710c698fe8e86e893b02", + "size_in_bytes": 591 + }, + { + "_path": "lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "74218dc787b0c4016b1d79801bf4185681442d65a1c955d5669dbbeaa27c5106", + "sha256_in_prefix": "74218dc787b0c4016b1d79801bf4185681442d65a1c955d5669dbbeaa27c5106", + "size_in_bytes": 427 + }, + { + "_path": "lib/python3.10/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9bbd2a476fb1efca4903d0386018cff9cef3ec094ac6ef866461d7c66a61c33b", + "sha256_in_prefix": "9bbd2a476fb1efca4903d0386018cff9cef3ec094ac6ef866461d7c66a61c33b", + "size_in_bytes": 1591 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__init__.py", + "path_type": "hardlink", + "sha256": "31f7283a5b8367c40c08561a974e08a8e27daba9b657b6b468eb2723e58ec54a", + "sha256_in_prefix": "31f7283a5b8367c40c08561a974e08a8e27daba9b657b6b468eb2723e58ec54a", + "size_in_bytes": 513 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "207b6a239ef77181aa8c9c4a731b2008f0dc0ce96e51433b1395bd3f88d12841", + "sha256_in_prefix": "207b6a239ef77181aa8c9c4a731b2008f0dc0ce96e51433b1395bd3f88d12841", + "size_in_bytes": 655 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3c8fd60f95d2e679c6af53d04e8bc570c00aee4222c55a0f1d015571f613c04d", + "sha256_in_prefix": "3c8fd60f95d2e679c6af53d04e8bc570c00aee4222c55a0f1d015571f613c04d", + "size_in_bytes": 9899 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f22b590c5ac98a0d2f1aa83d3203f75739db5f398e9b576b7520810009961e3e", + "sha256_in_prefix": "f22b590c5ac98a0d2f1aa83d3203f75739db5f398e9b576b7520810009961e3e", + "size_in_bytes": 9006 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fb81c34ed8827eb5445a65842f7ffad0e9ca7310f3782dcd0c0912ee5831afd8", + "sha256_in_prefix": "fb81c34ed8827eb5445a65842f7ffad0e9ca7310f3782dcd0c0912ee5831afd8", + "size_in_bytes": 11608 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a87f90c8a0c00a3ee19dba677756e9fe078555f4b610862064aa77346c1ca6ff", + "sha256_in_prefix": "a87f90c8a0c00a3ee19dba677756e9fe078555f4b610862064aa77346c1ca6ff", + "size_in_bytes": 28057 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1d435980d2945193ada4d35dea9477ba57147356ae763c9690ea3e4c1c094cf1", + "sha256_in_prefix": "1d435980d2945193ada4d35dea9477ba57147356ae763c9690ea3e4c1c094cf1", + "size_in_bytes": 579 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99b8408240bb3209364256a70af006d67f14487d7af5b6d3789f33e740f77581", + "sha256_in_prefix": "99b8408240bb3209364256a70af006d67f14487d7af5b6d3789f33e740f77581", + "size_in_bytes": 3722 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "04334e90c97479d38971c047ae817b6f60daa75a4bca1a2314fa99d482f140a6", + "sha256_in_prefix": "04334e90c97479d38971c047ae817b6f60daa75a4bca1a2314fa99d482f140a6", + "size_in_bytes": 6825 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2ef1d628fce65c9e9d3c8e6828acc0cd16ff28ecc6427dfc35bb3625bddbc775", + "sha256_in_prefix": "2ef1d628fce65c9e9d3c8e6828acc0cd16ff28ecc6427dfc35bb3625bddbc775", + "size_in_bytes": 8604 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/build_env.py", + "path_type": "hardlink", + "sha256": "1419d13f0b14948d39235497a18b2afd96ded5db243e90926d2e2c9ae548fcea", + "sha256_in_prefix": "1419d13f0b14948d39235497a18b2afd96ded5db243e90926d2e2c9ae548fcea", + "size_in_bytes": 10716 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cache.py", + "path_type": "hardlink", + "sha256": "25bebdf29e4f362811b695b9a36eb040d92452fe0c9d0f7899ce3bd702fadc0d", + "sha256_in_prefix": "25bebdf29e4f362811b695b9a36eb040d92452fe0c9d0f7899ce3bd702fadc0d", + "size_in_bytes": 10369 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__init__.py", + "path_type": "hardlink", + "sha256": "1641c1829c716fefe077aaf51639cd85f30ecc0518c97a17289e9a6e28df7055", + "sha256_in_prefix": "1641c1829c716fefe077aaf51639cd85f30ecc0518c97a17289e9a6e28df7055", + "size_in_bytes": 132 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b4189d6090514f3d5aa1ab9d20a6ccc126b82e82809ff2a053112cacdf6d4b4f", + "sha256_in_prefix": "b4189d6090514f3d5aa1ab9d20a6ccc126b82e82809ff2a053112cacdf6d4b4f", + "size_in_bytes": 234 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fc1898f66bee1d3cb0a081866352dc71a93a292acdb0c54c9a34a926cbc41a80", + "sha256_in_prefix": "fc1898f66bee1d3cb0a081866352dc71a93a292acdb0c54c9a34a926cbc41a80", + "size_in_bytes": 5409 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "aac5a47119542e6a46ccba5600793e1bbe08a4ca2e62c91ea544e2cb87abed34", + "sha256_in_prefix": "aac5a47119542e6a46ccba5600793e1bbe08a4ca2e62c91ea544e2cb87abed34", + "size_in_bytes": 6536 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d18ce97bb581daf554d1711ceacf68aefe8f41ef5fc85d5e8d21e706be648742", + "sha256_in_prefix": "d18ce97bb581daf554d1711ceacf68aefe8f41ef5fc85d5e8d21e706be648742", + "size_in_bytes": 23504 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "740eb7ab8fdd396ceb1c09ac0072fae543cbaa08113df930fadee7cd7fc22963", + "sha256_in_prefix": "740eb7ab8fdd396ceb1c09ac0072fae543cbaa08113df930fadee7cd7fc22963", + "size_in_bytes": 1274 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4ac05e6450da996f20be93cab6afd41d298cf155b0ca6fe922cb88b16f4fcfed", + "sha256_in_prefix": "4ac05e6450da996f20be93cab6afd41d298cf155b0ca6fe922cb88b16f4fcfed", + "size_in_bytes": 4923 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7b87cf3bd13ea766b852de5ee0562a82833cdc7f3117180496c0eecb0cd4b312", + "sha256_in_prefix": "7b87cf3bd13ea766b852de5ee0562a82833cdc7f3117180496c0eecb0cd4b312", + "size_in_bytes": 1468 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c1ffcce00840d1a267ff4cbc16b4bbc6cd2c2b5c8327acf7cb4ddfcb0460c9b6", + "sha256_in_prefix": "c1ffcce00840d1a267ff4cbc16b4bbc6cd2c2b5c8327acf7cb4ddfcb0460c9b6", + "size_in_bytes": 2957 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7cda3835639964a1105b3c954ef921a28d75a340ea9b0767f16bcd7468392ef2", + "sha256_in_prefix": "7cda3835639964a1105b3c954ef921a28d75a340ea9b0767f16bcd7468392ef2", + "size_in_bytes": 9939 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "48f39c9c95d02d15c4c31ec2bf498685374cdf0a9bce43f87e669d27e30181f9", + "sha256_in_prefix": "48f39c9c95d02d15c4c31ec2bf498685374cdf0a9bce43f87e669d27e30181f9", + "size_in_bytes": 2597 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f57b9c9d8a927c6617299fa88a35e8732fb024a7eac170df80fff1d39a056985", + "sha256_in_prefix": "f57b9c9d8a927c6617299fa88a35e8732fb024a7eac170df80fff1d39a056985", + "size_in_bytes": 8672 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "66e8576f28df97b5fb9c8c5c9438864552264b7f92ba9d337d33fe986baa545d", + "sha256_in_prefix": "66e8576f28df97b5fb9c8c5c9438864552264b7f92ba9d337d33fe986baa545d", + "size_in_bytes": 4924 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ac0c67c2ec9cedc5a708fb79bf179a0fa6a16cb49f7d001893aceaade9d85164", + "sha256_in_prefix": "ac0c67c2ec9cedc5a708fb79bf179a0fa6a16cb49f7d001893aceaade9d85164", + "size_in_bytes": 313 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py", + "path_type": "hardlink", + "sha256": "2e58b732be9a0cdbbb664249145bf00f6fa1171348e80bf3f0ec0cc92e5356bb", + "sha256_in_prefix": "2e58b732be9a0cdbbb664249145bf00f6fa1171348e80bf3f0ec0cc92e5356bb", + "size_in_bytes": 6865 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/base_command.py", + "path_type": "hardlink", + "sha256": "3598a7e8a3335bd3526332a4e1373c8ac6ff4d060a47808a7798fd9929b8e8f2", + "sha256_in_prefix": "3598a7e8a3335bd3526332a4e1373c8ac6ff4d060a47808a7798fd9929b8e8f2", + "size_in_bytes": 8625 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py", + "path_type": "hardlink", + "sha256": "577041db6178feffd1907699e689d69ecce16c1b63619bcd85b9fd33434ed072", + "sha256_in_prefix": "577041db6178feffd1907699e689d69ecce16c1b63619bcd85b9fd33434ed072", + "size_in_bytes": 30116 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/command_context.py", + "path_type": "hardlink", + "sha256": "4478083f0b4e6e1e4a84cadddd8653925f336d51bee8e92697b61b157e04860d", + "sha256_in_prefix": "4478083f0b4e6e1e4a84cadddd8653925f336d51bee8e92697b61b157e04860d", + "size_in_bytes": 774 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/index_command.py", + "path_type": "hardlink", + "sha256": "8bfb203653e65c2e621d4698f9d9a6ac728a4e07393b8856ce2b2be40975aebd", + "sha256_in_prefix": "8bfb203653e65c2e621d4698f9d9a6ac728a4e07393b8856ce2b2be40975aebd", + "size_in_bytes": 5677 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/main.py", + "path_type": "hardlink", + "sha256": "04365e7fe6d67bd83d269af8395b387437fef38e4726c2b0f37e53ec0a849c07", + "sha256_in_prefix": "04365e7fe6d67bd83d269af8395b387437fef38e4726c2b0f37e53ec0a849c07", + "size_in_bytes": 2817 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/main_parser.py", + "path_type": "hardlink", + "sha256": "95a0e9b2e04397a9327f2c29f5e30c03db3ce237c7d932499febe62f4186f74c", + "sha256_in_prefix": "95a0e9b2e04397a9327f2c29f5e30c03db3ce237c7d932499febe62f4186f74c", + "size_in_bytes": 4338 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/parser.py", + "path_type": "hardlink", + "sha256": "54232d76ecc409457ceca68736efb127ec0b34bf36c93df1d7a5785c1c4e02a2", + "sha256_in_prefix": "54232d76ecc409457ceca68736efb127ec0b34bf36c93df1d7a5785c1c4e02a2", + "size_in_bytes": 10825 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py", + "path_type": "hardlink", + "sha256": "f46720bac5adc1faa8bb6ce1010a755cd6d01c80ec96acb2cfd5302f3c3b2607", + "sha256_in_prefix": "f46720bac5adc1faa8bb6ce1010a755cd6d01c80ec96acb2cfd5302f3c3b2607", + "size_in_bytes": 2717 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/req_command.py", + "path_type": "hardlink", + "sha256": "0ea78586650cb3aa3a12ff2a6b001c3a860d74066c7f2292d0c648e63b096304", + "sha256_in_prefix": "0ea78586650cb3aa3a12ff2a6b001c3a860d74066c7f2292d0c648e63b096304", + "size_in_bytes": 12250 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/spinners.py", + "path_type": "hardlink", + "sha256": "84827cdc67ab74580509da1b200db726081eb5e825fee0b84a9e7cea7cc56cf1", + "sha256_in_prefix": "84827cdc67ab74580509da1b200db726081eb5e825fee0b84a9e7cea7cc56cf1", + "size_in_bytes": 5118 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/cli/status_codes.py", + "path_type": "hardlink", + "sha256": "b0414751a5096eabfc880acbdc702d733b5666618e157d358537ac4b2b43121d", + "sha256_in_prefix": "b0414751a5096eabfc880acbdc702d733b5666618e157d358537ac4b2b43121d", + "size_in_bytes": 116 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__init__.py", + "path_type": "hardlink", + "sha256": "e6844ef4eddd336bc6ba1d1b170e0739595eb6bcabcf91c732698f5b026b1fd5", + "sha256_in_prefix": "e6844ef4eddd336bc6ba1d1b170e0739595eb6bcabcf91c732698f5b026b1fd5", + "size_in_bytes": 3882 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b862ec2cb0157251caf30c352992f396dddb8514f5ffd562ac13d34eb3bff627", + "sha256_in_prefix": "b862ec2cb0157251caf30c352992f396dddb8514f5ffd562ac13d34eb3bff627", + "size_in_bytes": 3213 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "94e68a891712f9426d2245787c08c822ce0abf036a5be35c92b5acef96a81531", + "sha256_in_prefix": "94e68a891712f9426d2245787c08c822ce0abf036a5be35c92b5acef96a81531", + "size_in_bytes": 6506 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "63dceb4d1868913cf77f4f6b5a7734589dc801de50c1bbd7450c789ee1783319", + "sha256_in_prefix": "63dceb4d1868913cf77f4f6b5a7734589dc801de50c1bbd7450c789ee1783319", + "size_in_bytes": 1933 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a78fee58555a8ec6663aa25f926790f09b080febdfe4aceca539a5e563b6854c", + "sha256_in_prefix": "a78fee58555a8ec6663aa25f926790f09b080febdfe4aceca539a5e563b6854c", + "size_in_bytes": 4280 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ae3a8bbdf7869d29c6ecffd50ed662414621c6b2d6f81901f4e121ef860e14e5", + "sha256_in_prefix": "ae3a8bbdf7869d29c6ecffd50ed662414621c6b2d6f81901f4e121ef860e14e5", + "size_in_bytes": 8897 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "49c0a13f8ae0fee11a25c44dd593cd3afc08e8927af571fa4e846045ad1d83de", + "sha256_in_prefix": "49c0a13f8ae0fee11a25c44dd593cd3afc08e8927af571fa4e846045ad1d83de", + "size_in_bytes": 6848 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c4f54e3ec3c982d5654f8a2b5b13cba804afb092be81fe35e5f4074a0d1ff27f", + "sha256_in_prefix": "c4f54e3ec3c982d5654f8a2b5b13cba804afb092be81fe35e5f4074a0d1ff27f", + "size_in_bytes": 4160 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0d3b067f1f455e404a3e1421b99c5fada82985c3f335f0bdbe01bed88c370f1a", + "sha256_in_prefix": "0d3b067f1f455e404a3e1421b99c5fada82985c3f335f0bdbe01bed88c370f1a", + "size_in_bytes": 2961 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4686bf715c6e7805cd30ab4da04454d897c6cde6a4c5eab7ac1fc3baf7e60c46", + "sha256_in_prefix": "4686bf715c6e7805cd30ab4da04454d897c6cde6a4c5eab7ac1fc3baf7e60c46", + "size_in_bytes": 2110 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0fbe34f466096d4beb793311dd6d999e42309f3916f708d4e5f74055d983a5f5", + "sha256_in_prefix": "0fbe34f466096d4beb793311dd6d999e42309f3916f708d4e5f74055d983a5f5", + "size_in_bytes": 1271 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "75e3900bfc6097193672feb99a44fa52fb62e3fcd77aee6e91b2c9ca876ec198", + "sha256_in_prefix": "75e3900bfc6097193672feb99a44fa52fb62e3fcd77aee6e91b2c9ca876ec198", + "size_in_bytes": 4508 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0a77a3efac4e144e4c173253509783d8e78caf3e5736d042c551bb51a6941dc2", + "sha256_in_prefix": "0a77a3efac4e144e4c173253509783d8e78caf3e5736d042c551bb51a6941dc2", + "size_in_bytes": 2932 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9f499639c8a4f1fac046a056ec63518b911f0fec942898104fbae9c190f111d6", + "sha256_in_prefix": "9f499639c8a4f1fac046a056ec63518b911f0fec942898104fbae9c190f111d6", + "size_in_bytes": 17859 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2a643ef27e42de90e39db756ed2301e37b96d238aa837164ead3150cfdbb1524", + "sha256_in_prefix": "2a643ef27e42de90e39db756ed2301e37b96d238aa837164ead3150cfdbb1524", + "size_in_bytes": 10608 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "df0e86aca9110c3e7da08abe671e4623b2d070d1ffcb6138197428dcc732e291", + "sha256_in_prefix": "df0e86aca9110c3e7da08abe671e4623b2d070d1ffcb6138197428dcc732e291", + "size_in_bytes": 5274 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7e50a37e7eda6e4f09d43d447c6a04a30048d1bc7b23a8e2d16d8bce2b1f8cd5", + "sha256_in_prefix": "7e50a37e7eda6e4f09d43d447c6a04a30048d1bc7b23a8e2d16d8bce2b1f8cd5", + "size_in_bytes": 7124 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1d7b1b6b4f9fbaa30b23d3edc79435f4b0b445c5958bcaed8d6c80459d39642c", + "sha256_in_prefix": "1d7b1b6b4f9fbaa30b23d3edc79435f4b0b445c5958bcaed8d6c80459d39642c", + "size_in_bytes": 3294 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a8646af15cce5163592fb489f7e92ae7afff166902559fe0a5423d7feb1d12e5", + "sha256_in_prefix": "a8646af15cce5163592fb489f7e92ae7afff166902559fe0a5423d7feb1d12e5", + "size_in_bytes": 4891 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/cache.py", + "path_type": "hardlink", + "sha256": "20e7b34e27078c6139b16741c769f03d581b8ee247337b3e059124a592de9ae6", + "sha256_in_prefix": "20e7b34e27078c6139b16741c769f03d581b8ee247337b3e059124a592de9ae6", + "size_in_bytes": 8107 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/check.py", + "path_type": "hardlink", + "sha256": "1ebff87a231df5c8150e012f8ed21dc3dd793662fb44e2165bc7a792bf2c94f4", + "sha256_in_prefix": "1ebff87a231df5c8150e012f8ed21dc3dd793662fb44e2165bc7a792bf2c94f4", + "size_in_bytes": 2268 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/completion.py", + "path_type": "hardlink", + "sha256": "1d3e250f46e0b1f947ab62038187e211da7b2061ad13bb3a320237c67d15404c", + "sha256_in_prefix": "1d3e250f46e0b1f947ab62038187e211da7b2061ad13bb3a320237c67d15404c", + "size_in_bytes": 4287 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/configuration.py", + "path_type": "hardlink", + "sha256": "9fdf1e9f0a7acb46f91ba7e24508da668e3716524a62f7bf75a32137ee0144d7", + "sha256_in_prefix": "9fdf1e9f0a7acb46f91ba7e24508da668e3716524a62f7bf75a32137ee0144d7", + "size_in_bytes": 9766 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/debug.py", + "path_type": "hardlink", + "sha256": "0cd0d1804f58b0aadb633534b3754a8bcac7b4a1785f5dc227f6ebffc3d45ced", + "sha256_in_prefix": "0cd0d1804f58b0aadb633534b3754a8bcac7b4a1785f5dc227f6ebffc3d45ced", + "size_in_bytes": 6797 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/download.py", + "path_type": "hardlink", + "sha256": "d2a0749f2b3a6443eca20e39d650ec8cbe41c7b67deedf81f34a0564a869cca3", + "sha256_in_prefix": "d2a0749f2b3a6443eca20e39d650ec8cbe41c7b67deedf81f34a0564a869cca3", + "size_in_bytes": 5273 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/freeze.py", + "path_type": "hardlink", + "sha256": "d95b7bd816134a6f6bcee7ba77c74dcedf2277158ae036fa1ddf9a9eaec643cd", + "sha256_in_prefix": "d95b7bd816134a6f6bcee7ba77c74dcedf2277158ae036fa1ddf9a9eaec643cd", + "size_in_bytes": 3203 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/hash.py", + "path_type": "hardlink", + "sha256": "11554ebaf1ada0f11d162f1236799daa5090ae10b157e909b1dc2d75c0a75c64", + "sha256_in_prefix": "11554ebaf1ada0f11d162f1236799daa5090ae10b157e909b1dc2d75c0a75c64", + "size_in_bytes": 1703 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/help.py", + "path_type": "hardlink", + "sha256": "81c73a40391c80730eb809f9531699c004adb1106b9c64a7ff2c634b9ec92283", + "sha256_in_prefix": "81c73a40391c80730eb809f9531699c004adb1106b9c64a7ff2c634b9ec92283", + "size_in_bytes": 1132 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/index.py", + "path_type": "hardlink", + "sha256": "4405f1989c058556f94b5058cdbe627d7dec9fd35af2fd8209563048c3fca5aa", + "sha256_in_prefix": "4405f1989c058556f94b5058cdbe627d7dec9fd35af2fd8209563048c3fca5aa", + "size_in_bytes": 4731 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/inspect.py", + "path_type": "hardlink", + "sha256": "3c6ad8f53453442337cb9325f01764f0310e5eab9645fb1caf80d1a352ce4cf7", + "sha256_in_prefix": "3c6ad8f53453442337cb9325f01764f0310e5eab9645fb1caf80d1a352ce4cf7", + "size_in_bytes": 3189 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/install.py", + "path_type": "hardlink", + "sha256": "af7c87414c6fc6dee00f98fd9facd10ec940bedc7d093ff084bb9025c92da7a3", + "sha256_in_prefix": "af7c87414c6fc6dee00f98fd9facd10ec940bedc7d093ff084bb9025c92da7a3", + "size_in_bytes": 29390 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/list.py", + "path_type": "hardlink", + "sha256": "a222334a32cfebffddedd212dead176f9cb0b1a393841591a8cca38cace43dd3", + "sha256_in_prefix": "a222334a32cfebffddedd212dead176f9cb0b1a393841591a8cca38cace43dd3", + "size_in_bytes": 12769 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/search.py", + "path_type": "hardlink", + "sha256": "7d6914415c7f826f1e6db14094282ab712974fdacd6a1a49f8123fff71cd6698", + "sha256_in_prefix": "7d6914415c7f826f1e6db14094282ab712974fdacd6a1a49f8123fff71cd6698", + "size_in_bytes": 5626 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/show.py", + "path_type": "hardlink", + "sha256": "d180610a06b73c077cd6f4f797b5167e592d4a9079f9a62a41c2710553dacd53", + "sha256_in_prefix": "d180610a06b73c077cd6f4f797b5167e592d4a9079f9a62a41c2710553dacd53", + "size_in_bytes": 7857 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/uninstall.py", + "path_type": "hardlink", + "sha256": "ee9391ede9caefa8229b2c506f3c5c1b53acc8b5cbdc3bd7f77f7198cf05bed8", + "sha256_in_prefix": "ee9391ede9caefa8229b2c506f3c5c1b53acc8b5cbdc3bd7f77f7198cf05bed8", + "size_in_bytes": 3892 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/commands/wheel.py", + "path_type": "hardlink", + "sha256": "789461affaa834dc5602491d24236240cec25dde04d7f632421b2a26704f1868", + "sha256_in_prefix": "789461affaa834dc5602491d24236240cec25dde04d7f632421b2a26704f1868", + "size_in_bytes": 6414 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/configuration.py", + "path_type": "hardlink", + "sha256": "f8a3a893a8e1de11735cc3d014f275fc416306902c81ef914ab790b8b1cb9b3a", + "sha256_in_prefix": "f8a3a893a8e1de11735cc3d014f275fc416306902c81ef914ab790b8b1cb9b3a", + "size_in_bytes": 14005 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__init__.py", + "path_type": "hardlink", + "sha256": "1eaea4b7a8170608cd8ade614d358b03378234e2a807e374a46612a9e86b962f", + "sha256_in_prefix": "1eaea4b7a8170608cd8ade614d358b03378234e2a807e374a46612a9e86b962f", + "size_in_bytes": 858 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f62fc285b5053380798bee4c9fb7e453148e53328259b46f19ce0ebb25696002", + "sha256_in_prefix": "f62fc285b5053380798bee4c9fb7e453148e53328259b46f19ce0ebb25696002", + "size_in_bytes": 761 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "29b17479a3fbc0dadb85c67f21653377f739b94bb5e2fd5ab27f3ffe9a922399", + "sha256_in_prefix": "29b17479a3fbc0dadb85c67f21653377f739b94bb5e2fd5ab27f3ffe9a922399", + "size_in_bytes": 2473 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "95499726a6ed29ed84935ad8b4913e02d1028f832d2cc29e24d560ec0b5c3456", + "sha256_in_prefix": "95499726a6ed29ed84935ad8b4913e02d1028f832d2cc29e24d560ec0b5c3456", + "size_in_bytes": 1445 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ccab31050bcd91986fc823236f5effd0890dcc4331ce0089f77b0f4168b1c8a2", + "sha256_in_prefix": "ccab31050bcd91986fc823236f5effd0890dcc4331ce0089f77b0f4168b1c8a2", + "size_in_bytes": 5278 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "796baaa835e30d83e7ec3fb9ba6dfa8428304fc662a1e7944b67e990fc1db044", + "sha256_in_prefix": "796baaa835e30d83e7ec3fb9ba6dfa8428304fc662a1e7944b67e990fc1db044", + "size_in_bytes": 1840 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/base.py", + "path_type": "hardlink", + "sha256": "41e07daaf2970c88cb74f0431397cc8297c6a8c302afe828be7ba84271ae885f", + "sha256_in_prefix": "41e07daaf2970c88cb74f0431397cc8297c6a8c302afe828be7ba84271ae885f", + "size_in_bytes": 1783 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/installed.py", + "path_type": "hardlink", + "sha256": "4229c715b58043ca04d296c3f0c1595a4c259df5354184dc700d6f9e1ae560e5", + "sha256_in_prefix": "4229c715b58043ca04d296c3f0c1595a4c259df5354184dc700d6f9e1ae560e5", + "size_in_bytes": 842 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/sdist.py", + "path_type": "hardlink", + "sha256": "3e570fe1aebe47a73df179ce33e6fa2e46f7aecbe1f621b8a24f2c85a6a7af3b", + "sha256_in_prefix": "3e570fe1aebe47a73df179ce33e6fa2e46f7aecbe1f621b8a24f2c85a6a7af3b", + "size_in_bytes": 6751 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/distributions/wheel.py", + "path_type": "hardlink", + "sha256": "4c70587e7bfb555b7c99884c614b47d774b513b143c2d0f20df994725f1a8b41", + "sha256_in_prefix": "4c70587e7bfb555b7c99884c614b47d774b513b143c2d0f20df994725f1a8b41", + "size_in_bytes": 1317 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/exceptions.py", + "path_type": "hardlink", + "sha256": "dbf6f221222fde44a723ff53f84b1fc6bb742e74d181c507cb1bb4b70b078d06", + "sha256_in_prefix": "dbf6f221222fde44a723ff53f84b1fc6bb742e74d181c507cb1bb4b70b078d06", + "size_in_bytes": 26481 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/__init__.py", + "path_type": "hardlink", + "sha256": "be9b7e25e4d979f87c6be142db665e0525c555bb817174868882e141925a3694", + "sha256_in_prefix": "be9b7e25e4d979f87c6be142db665e0525c555bb817174868882e141925a3694", + "size_in_bytes": 30 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "63f1a13f9a50552b776009e74d70105fd4122b72f3d96e5447bc9dbb64f4f9f7", + "sha256_in_prefix": "63f1a13f9a50552b776009e74d70105fd4122b72f3d96e5447bc9dbb64f4f9f7", + "size_in_bytes": 188 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "da877f1dc496a05c9ab3e690eb5c0593832aeb901b85dee40cdb478641b10449", + "sha256_in_prefix": "da877f1dc496a05c9ab3e690eb5c0593832aeb901b85dee40cdb478641b10449", + "size_in_bytes": 15063 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b168ca865f9db0f44359efd85f2b7fc7c533c9a84c569288e17dfc4a3dc4f4b", + "sha256_in_prefix": "9b168ca865f9db0f44359efd85f2b7fc7c533c9a84c569288e17dfc4a3dc4f4b", + "size_in_bytes": 29575 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b2664dac1cb6aea9841538a9b8d81d9bb5bffc0f92b9fc28bf48050dfa4721a6", + "sha256_in_prefix": "b2664dac1cb6aea9841538a9b8d81d9bb5bffc0f92b9fc28bf48050dfa4721a6", + "size_in_bytes": 8840 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/collector.py", + "path_type": "hardlink", + "sha256": "45d3ced092c0966c8158f0166073f24681a3cf718d01e4e78023646c67b2fe61", + "sha256_in_prefix": "45d3ced092c0966c8158f0166073f24681a3cf718d01e4e78023646c67b2fe61", + "size_in_bytes": 16265 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/package_finder.py", + "path_type": "hardlink", + "sha256": "9891c0963947787b9c972bb1b63bc164ee83b68bca8ec66317fb4287fc2ec791", + "sha256_in_prefix": "9891c0963947787b9c972bb1b63bc164ee83b68bca8ec66317fb4287fc2ec791", + "size_in_bytes": 38076 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/index/sources.py", + "path_type": "hardlink", + "sha256": "94f04b2b95e2cbc43a210322a36e9697ba1c7d938a9201a494804dc94276ddf2", + "sha256_in_prefix": "94f04b2b95e2cbc43a210322a36e9697ba1c7d938a9201a494804dc94276ddf2", + "size_in_bytes": 8632 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/__init__.py", + "path_type": "hardlink", + "sha256": "51a031799fdff77172a2eb857f8a7b497605fb85acb57b84bdddcb6e63c2027a", + "sha256_in_prefix": "51a031799fdff77172a2eb857f8a7b497605fb85acb57b84bdddcb6e63c2027a", + "size_in_bytes": 14925 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8b9113f731d56eae201cf2ef7aa94402223e49bea386c3575ab218d5b491dddd", + "sha256_in_prefix": "8b9113f731d56eae201cf2ef7aa94402223e49bea386c3575ab218d5b491dddd", + "size_in_bytes": 10847 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3f4bc8759be456d75fff9dbc67b09798526fc71dec582f7d9465a8ae46d3f349", + "sha256_in_prefix": "3f4bc8759be456d75fff9dbc67b09798526fc71dec582f7d9465a8ae46d3f349", + "size_in_bytes": 4524 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0a50955cdd629367027c2ab45cfd1006de3fed587bd33fb2aa2fe4e522d7e99e", + "sha256_in_prefix": "0a50955cdd629367027c2ab45cfd1006de3fed587bd33fb2aa2fe4e522d7e99e", + "size_in_bytes": 5971 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b70153e7c783052fd07773152df8728979f5bfa2aad16cab9a35654dfa462ac", + "sha256_in_prefix": "9b70153e7c783052fd07773152df8728979f5bfa2aad16cab9a35654dfa462ac", + "size_in_bytes": 2358 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/_distutils.py", + "path_type": "hardlink", + "sha256": "c7a9f254b8fb5f5d58e2484875ffa6165c4c97615669db5512079bf2ea5cfd62", + "sha256_in_prefix": "c7a9f254b8fb5f5d58e2484875ffa6165c4c97615669db5512079bf2ea5cfd62", + "size_in_bytes": 6013 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py", + "path_type": "hardlink", + "sha256": "206cddb3ad2ab059de468802fa8781698edb121de53edfefe3b90c2428505ec5", + "sha256_in_prefix": "206cddb3ad2ab059de468802fa8781698edb121de53edfefe3b90c2428505ec5", + "size_in_bytes": 7724 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/locations/base.py", + "path_type": "hardlink", + "sha256": "45088f8b5778155336071934e1d4215d9d8faa47a58c42f67d967d498a8843bf", + "sha256_in_prefix": "45088f8b5778155336071934e1d4215d9d8faa47a58c42f67d967d498a8843bf", + "size_in_bytes": 2556 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/main.py", + "path_type": "hardlink", + "sha256": "afe52751ef072e8e57149cfc8a74dc38e4e2bbfb313618076fa57094652594e2", + "sha256_in_prefix": "afe52751ef072e8e57149cfc8a74dc38e4e2bbfb313618076fa57094652594e2", + "size_in_bytes": 340 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/__init__.py", + "path_type": "hardlink", + "sha256": "094f232b54d9b28ee338b76bd2c5fdc438eb72ce62cbc77b2112be86f6883b96", + "sha256_in_prefix": "094f232b54d9b28ee338b76bd2c5fdc438eb72ce62cbc77b2112be86f6883b96", + "size_in_bytes": 4337 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a69c67a217db1d2a3c57458bc8b166c15d9e19eb17b6d66ee31b677b9a1b5729", + "sha256_in_prefix": "a69c67a217db1d2a3c57458bc8b166c15d9e19eb17b6d66ee31b677b9a1b5729", + "size_in_bytes": 4763 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f4028c6a80770b86aa65dbe22a3c014b1066ea9565230bc9cfd11c9b72e7f715", + "sha256_in_prefix": "f4028c6a80770b86aa65dbe22a3c014b1066ea9565230bc9cfd11c9b72e7f715", + "size_in_bytes": 2214 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e8547c82b64d51e9b375eaacc8fbf3c378e6609349455d7336e1f8536db3a433", + "sha256_in_prefix": "e8547c82b64d51e9b375eaacc8fbf3c378e6609349455d7336e1f8536db3a433", + "size_in_bytes": 26848 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "84b017b4f2343d0b01accbe8019b0981652b3e7d1f8a14b08462ee147f0506ea", + "sha256_in_prefix": "84b017b4f2343d0b01accbe8019b0981652b3e7d1f8a14b08462ee147f0506ea", + "size_in_bytes": 10950 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/_json.py", + "path_type": "hardlink", + "sha256": "7b3ac861acc708834cd90524d5e03dc0400c8f769e19678356019a9605332a97", + "sha256_in_prefix": "7b3ac861acc708834cd90524d5e03dc0400c8f769e19678356019a9605332a97", + "size_in_bytes": 2707 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/base.py", + "path_type": "hardlink", + "sha256": "7edd0ae57360238113a999d1bf6f82b6f81888c38c01e18c033c53f9fe952c90", + "sha256_in_prefix": "7edd0ae57360238113a999d1bf6f82b6f81888c38c01e18c033c53f9fe952c90", + "size_in_bytes": 25298 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__init__.py", + "path_type": "hardlink", + "sha256": "8d4522768c671dc7c84c71da0161b51b68b97dd058925bffb89723a36c7b5581", + "sha256_in_prefix": "8d4522768c671dc7c84c71da0161b51b68b97dd058925bffb89723a36c7b5581", + "size_in_bytes": 135 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "82939a710d956d68d9f0bb5e958b88386f9d94a3a9fafb17762d75e92d8d8e25", + "sha256_in_prefix": "82939a710d956d68d9f0bb5e958b88386f9d94a3a9fafb17762d75e92d8d8e25", + "size_in_bytes": 309 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f2b0bbf7f52527d121ef72efea68d04c7125d1a20e26ef8f00a8dd962d924ea4", + "sha256_in_prefix": "f2b0bbf7f52527d121ef72efea68d04c7125d1a20e26ef8f00a8dd962d924ea4", + "size_in_bytes": 3458 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e81531fb3ae51bd21970a45b7505533d4436fbae69d2e3f959c5528564a3d269", + "sha256_in_prefix": "e81531fb3ae51bd21970a45b7505533d4436fbae69d2e3f959c5528564a3d269", + "size_in_bytes": 8783 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ef5ba3f1b69325bf1149ef8554db9f6495f5598c8aa139b85cf8c8074062aa38", + "sha256_in_prefix": "ef5ba3f1b69325bf1149ef8554db9f6495f5598c8aa139b85cf8c8074062aa38", + "size_in_bytes": 7685 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_compat.py", + "path_type": "hardlink", + "sha256": "73a6aff2c3fc0418c066e152268c358967f28145cd337c514c29f99eac3a07d3", + "sha256_in_prefix": "73a6aff2c3fc0418c066e152268c358967f28145cd337c514c29f99eac3a07d3", + "size_in_bytes": 2796 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_dists.py", + "path_type": "hardlink", + "sha256": "a0060277e67263e6998035e8d3aaa4f8139deaf5f283be60e3b59a2e502a747d", + "sha256_in_prefix": "a0060277e67263e6998035e8d3aaa4f8139deaf5f283be60e3b59a2e502a747d", + "size_in_bytes": 8260 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/importlib/_envs.py", + "path_type": "hardlink", + "sha256": "51407df345d2ac35ab329435fc6e398b4afc1ea960fed83720f43ade612a6cd7", + "sha256_in_prefix": "51407df345d2ac35ab329435fc6e398b4afc1ea960fed83720f43ade612a6cd7", + "size_in_bytes": 7431 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py", + "path_type": "hardlink", + "sha256": "534ec44c020d4867924417d6506f77138b5965b696fdfecf1b312a64dd21ba57", + "sha256_in_prefix": "534ec44c020d4867924417d6506f77138b5965b696fdfecf1b312a64dd21ba57", + "size_in_bytes": 10542 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__init__.py", + "path_type": "hardlink", + "sha256": "dc31d477fab1a4fa337f3a2ea2a6bd83db6cd42cebe6a6877c5c5b9f1ae27a93", + "sha256_in_prefix": "dc31d477fab1a4fa337f3a2ea2a6bd83db6cd42cebe6a6877c5c5b9f1ae27a93", + "size_in_bytes": 63 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d00eb56994847386dd2d24e75678ccd23e53518407e671f5f2328c8264a01027", + "sha256_in_prefix": "d00eb56994847386dd2d24e75678ccd23e53518407e671f5f2328c8264a01027", + "size_in_bytes": 222 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8fe2ef3c4a0421581213c995e79973235370ebbd87bbc9a606ad0dbfeded3ef5", + "sha256_in_prefix": "8fe2ef3c4a0421581213c995e79973235370ebbd87bbc9a606ad0dbfeded3ef5", + "size_in_bytes": 1194 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5f7b7d452831c6c0728689ca834be3b346e6a2d8e92167b2e71869d9b0ffc33e", + "sha256_in_prefix": "5f7b7d452831c6c0728689ca834be3b346e6a2d8e92167b2e71869d9b0ffc33e", + "size_in_bytes": 7360 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7f65813a53172ef4d9d996b4f5444ae64afea04571256ce0489986cdd53170bf", + "sha256_in_prefix": "7f65813a53172ef4d9d996b4f5444ae64afea04571256ce0489986cdd53170bf", + "size_in_bytes": 2693 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "61b076e89a9e1e4c8a8ba2a980a26dad47c29eda3cc993e1bbda7e64e0230992", + "sha256_in_prefix": "61b076e89a9e1e4c8a8ba2a980a26dad47c29eda3cc993e1bbda7e64e0230992", + "size_in_bytes": 1191 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "822dbb3bd6883fb538b095728b02493c195bb1d7d72b35624a835eb4e8b2365c", + "sha256_in_prefix": "822dbb3bd6883fb538b095728b02493c195bb1d7d72b35624a835eb4e8b2365c", + "size_in_bytes": 1712 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bbedde62340f2e757b9514d7701c8b69bdbcf2a0abec4510d8ce0237fd6c1402", + "sha256_in_prefix": "bbedde62340f2e757b9514d7701c8b69bdbcf2a0abec4510d8ce0237fd6c1402", + "size_in_bytes": 18647 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b64a80e3b65507c4a6078c1c0067996d86740103061edffe8b72c273555eafe", + "sha256_in_prefix": "9b64a80e3b65507c4a6078c1c0067996d86740103061edffe8b72c273555eafe", + "size_in_bytes": 893 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "352888c471b2026af3a05c8d272ffa4da1c12dda5251f3cc1aa74d723596c032", + "sha256_in_prefix": "352888c471b2026af3a05c8d272ffa4da1c12dda5251f3cc1aa74d723596c032", + "size_in_bytes": 3431 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "840ccc2fe139b4894ecc40cac54a75d700e03ca61f471784e5aba0c129f7d006", + "sha256_in_prefix": "840ccc2fe139b4894ecc40cac54a75d700e03ca61f471784e5aba0c129f7d006", + "size_in_bytes": 1652 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "21dedf13bc97328471cb16e4127d926989fb9fdfa15c4866583510ed32615bfa", + "sha256_in_prefix": "21dedf13bc97328471cb16e4127d926989fb9fdfa15c4866583510ed32615bfa", + "size_in_bytes": 3769 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "96ffd8fac113f7e7ffc4a2f9df3961def27b064452130a4a2301b7d6ca2389b8", + "sha256_in_prefix": "96ffd8fac113f7e7ffc4a2f9df3961def27b064452130a4a2301b7d6ca2389b8", + "size_in_bytes": 5052 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/candidate.py", + "path_type": "hardlink", + "sha256": "cf380546ec3f9163e32a91b0ecb0b4654303d8243611b7ab50862cf22ce37420", + "sha256_in_prefix": "cf380546ec3f9163e32a91b0ecb0b4654303d8243611b7ab50862cf22ce37420", + "size_in_bytes": 753 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/direct_url.py", + "path_type": "hardlink", + "sha256": "b81b58d871dddd33bd70a4095a1d1386f139151afe3164580a1454e081bd1d91", + "sha256_in_prefix": "b81b58d871dddd33bd70a4095a1d1386f139151afe3164580a1454e081bd1d91", + "size_in_bytes": 6578 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/format_control.py", + "path_type": "hardlink", + "sha256": "c2db10a922bd1da522371404b81f82eb67958a6c3a1b8fd5405c55f7efca0c11", + "sha256_in_prefix": "c2db10a922bd1da522371404b81f82eb67958a6c3a1b8fd5405c55f7efca0c11", + "size_in_bytes": 2486 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/index.py", + "path_type": "hardlink", + "sha256": "b589cbf28c468b8692356babd261bc0c03fbac2eb2ba16bf33024ef31c3472b2", + "sha256_in_prefix": "b589cbf28c468b8692356babd261bc0c03fbac2eb2ba16bf33024ef31c3472b2", + "size_in_bytes": 1030 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/installation_report.py", + "path_type": "hardlink", + "sha256": "cd1559a1acfedafb2b7b38ff1f784b3a131908af5ced36f35a00be8ce6a50f4d", + "sha256_in_prefix": "cd1559a1acfedafb2b7b38ff1f784b3a131908af5ced36f35a00be8ce6a50f4d", + "size_in_bytes": 2818 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/link.py", + "path_type": "hardlink", + "sha256": "190f21abbc7e14314fbf6e4d6e7daf78833e32506b1990c62ddeda65e1785eb8", + "sha256_in_prefix": "190f21abbc7e14314fbf6e4d6e7daf78833e32506b1990c62ddeda65e1785eb8", + "size_in_bytes": 21448 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/scheme.py", + "path_type": "hardlink", + "sha256": "3da9261c93377bc38e592645b5fcf5033edfd6678e3499e41ae431165b77c011", + "sha256_in_prefix": "3da9261c93377bc38e592645b5fcf5033edfd6678e3499e41ae431165b77c011", + "size_in_bytes": 575 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/search_scope.py", + "path_type": "hardlink", + "sha256": "ebb3449ec618f38efce12f8c33b7a442ea3d2972c7fbb333167b578daa6f028d", + "sha256_in_prefix": "ebb3449ec618f38efce12f8c33b7a442ea3d2972c7fbb333167b578daa6f028d", + "size_in_bytes": 4531 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py", + "path_type": "hardlink", + "sha256": "a9a15f0ecddc8aaa173e0eb1c78e4dd633cba9c70b270e0dd2ce0fd0fc874d0f", + "sha256_in_prefix": "a9a15f0ecddc8aaa173e0eb1c78e4dd633cba9c70b270e0dd2ce0fd0fc874d0f", + "size_in_bytes": 2015 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/target_python.py", + "path_type": "hardlink", + "sha256": "d97687dab679645f8ae707096c4306125ed2aab4d3a030cd92bb50daffefffe4", + "sha256_in_prefix": "d97687dab679645f8ae707096c4306125ed2aab4d3a030cd92bb50daffefffe4", + "size_in_bytes": 4271 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/models/wheel.py", + "path_type": "hardlink", + "sha256": "1bb74d0ffb3879b3e410bed1275a8263442151458820ae809e35a04404c5e67a", + "sha256_in_prefix": "1bb74d0ffb3879b3e410bed1275a8263442151458820ae809e35a04404c5e67a", + "size_in_bytes": 4539 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__init__.py", + "path_type": "hardlink", + "sha256": "8dfe93b799d5ffbce401106b2a88c85c8b607a3be87a054954a51b8406b92287", + "sha256_in_prefix": "8dfe93b799d5ffbce401106b2a88c85c8b607a3be87a054954a51b8406b92287", + "size_in_bytes": 50 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8a38fa9c7e37e292d0b8e32ea9110f1fdb7ca1328aab19b0b259ffa826f7fa76", + "sha256_in_prefix": "8a38fa9c7e37e292d0b8e32ea9110f1fdb7ca1328aab19b0b259ffa826f7fa76", + "size_in_bytes": 210 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "306140ebd468e77bc5a4522097f4f7db772fe8688b4a2a1b3017c017c6c52189", + "sha256_in_prefix": "306140ebd468e77bc5a4522097f4f7db772fe8688b4a2a1b3017c017c6c52189", + "size_in_bytes": 14457 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3f5a8187c00dbd5b1fdfb266ca0c918a01b34ac717e5932f5465e5462e8ca094", + "sha256_in_prefix": "3f5a8187c00dbd5b1fdfb266ca0c918a01b34ac717e5932f5465e5462e8ca094", + "size_in_bytes": 4760 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e0fc88c3cbfb1f1e54a23cbd5e22991ca30f8159509b73df1aeec62f0d62dd91", + "sha256_in_prefix": "e0fc88c3cbfb1f1e54a23cbd5e22991ca30f8159509b73df1aeec62f0d62dd91", + "size_in_bytes": 5450 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "47462afd71971717ecce8e794c0598efcebf8def9894eed8135f20582b379d53", + "sha256_in_prefix": "47462afd71971717ecce8e794c0598efcebf8def9894eed8135f20582b379d53", + "size_in_bytes": 8378 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f2e78e71081c1a4449e3eda9430a9e9a96dd69782bd1966151fd500125628c77", + "sha256_in_prefix": "f2e78e71081c1a4449e3eda9430a9e9a96dd69782bd1966151fd500125628c77", + "size_in_bytes": 12548 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c5ee186f096f192f9b7a40589eb00c082028f330882ff6674b50ac27c3176b12", + "sha256_in_prefix": "c5ee186f096f192f9b7a40589eb00c082028f330882ff6674b50ac27c3176b12", + "size_in_bytes": 1416 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e0c93beaf3c057b9a3660de7e798bda8b95a973913b215189d95e7d564b2e54e", + "sha256_in_prefix": "e0c93beaf3c057b9a3660de7e798bda8b95a973913b215189d95e7d564b2e54e", + "size_in_bytes": 2066 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/auth.py", + "path_type": "hardlink", + "sha256": "0f88004a352baa80c5952b7a810efaeca0008efe8f532254d29b839615cd5511", + "sha256_in_prefix": "0f88004a352baa80c5952b7a810efaeca0008efe8f532254d29b839615cd5511", + "size_in_bytes": 20809 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/cache.py", + "path_type": "hardlink", + "sha256": "d3218c03711eb79f710522ed6cf01e9ef239ddd976f6850e7aa67673440bd92b", + "sha256_in_prefix": "d3218c03711eb79f710522ed6cf01e9ef239ddd976f6850e7aa67673440bd92b", + "size_in_bytes": 4614 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/download.py", + "path_type": "hardlink", + "sha256": "14b38fdbd74f6040818808bb7848ef01b364cb368a36a6f28ce4f69bc1cf5bc5", + "sha256_in_prefix": "14b38fdbd74f6040818808bb7848ef01b364cb368a36a6f28ce4f69bc1cf5bc5", + "size_in_bytes": 6048 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py", + "path_type": "hardlink", + "sha256": "3c176832835040803ce058609dedfc8d6179d96e31fcab6c1e3c60bf876444a0", + "sha256_in_prefix": "3c176832835040803ce058609dedfc8d6179d96e31fcab6c1e3c60bf876444a0", + "size_in_bytes": 7622 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/session.py", + "path_type": "hardlink", + "sha256": "9ac3387acd7a2e698d118364ad8ca0f1f4dcee00076ca165b5ac1f28fdbb2ce2", + "sha256_in_prefix": "9ac3387acd7a2e698d118364ad8ca0f1f4dcee00076ca165b5ac1f28fdbb2ce2", + "size_in_bytes": 18771 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/utils.py", + "path_type": "hardlink", + "sha256": "2276b17a5f8dc41bb83d05a48f212b7677dec2c1427201e987b773475f856e86", + "sha256_in_prefix": "2276b17a5f8dc41bb83d05a48f212b7677dec2c1427201e987b773475f856e86", + "size_in_bytes": 4088 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py", + "path_type": "hardlink", + "sha256": "b00c7339a709f8dd4d5c63ef6a9f630b7cee6164a79efdc65ed811dbe13600f0", + "sha256_in_prefix": "b00c7339a709f8dd4d5c63ef6a9f630b7cee6164a79efdc65ed811dbe13600f0", + "size_in_bytes": 1838 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "09c13647352cfb20f30edd53c9c07aeebd59fa156a12205b42cffb315e916fe1", + "sha256_in_prefix": "09c13647352cfb20f30edd53c9c07aeebd59fa156a12205b42cffb315e916fe1", + "size_in_bytes": 158 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c4188591768c95304715dd48e1a2a5b5aa6dd78c05d4df2d695b884832e4ee9", + "sha256_in_prefix": "0c4188591768c95304715dd48e1a2a5b5aa6dd78c05d4df2d695b884832e4ee9", + "size_in_bytes": 4775 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2515a5d2171ea25d5caee93521da718598965673eedf1fe7bfdfc30f841406ca", + "sha256_in_prefix": "2515a5d2171ea25d5caee93521da718598965673eedf1fe7bfdfc30f841406ca", + "size_in_bytes": 6301 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "34bf0284a59bbd60be8887f9012303bd9d6e8c00160cb4fb0c462ae66fe93f71", + "sha256_in_prefix": "34bf0284a59bbd60be8887f9012303bd9d6e8c00160cb4fb0c462ae66fe93f71", + "size_in_bytes": 15706 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2e0e51d96634e05be00a6facafb3fbee45f2d6c46d4aa00fda292e79a90577a7", + "sha256_in_prefix": "2e0e51d96634e05be00a6facafb3fbee45f2d6c46d4aa00fda292e79a90577a7", + "size_in_bytes": 164 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3066d31c618b22e7c4a0e5eef415bb2d78fa6fa7b3f122590b5795425220ffee", + "sha256_in_prefix": "3066d31c618b22e7c4a0e5eef415bb2d78fa6fa7b3f122590b5795425220ffee", + "size_in_bytes": 4936 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7439c9993ccc5fe9c37104849e0779dbff8047b2f040ca3906dbb78130d476e8", + "sha256_in_prefix": "7439c9993ccc5fe9c37104849e0779dbff8047b2f040ca3906dbb78130d476e8", + "size_in_bytes": 1397 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee856d0dded560fa7858c91912f9dd9d2c7c6c77e74c6fe398293e32086fa1ca", + "sha256_in_prefix": "ee856d0dded560fa7858c91912f9dd9d2c7c6c77e74c6fe398293e32086fa1ca", + "size_in_bytes": 1445 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f4a7d11989cd2120ae5f6b1191ee48b174bef1b15fd7aae0eb0580791b27bc7c", + "sha256_in_prefix": "f4a7d11989cd2120ae5f6b1191ee48b174bef1b15fd7aae0eb0580791b27bc7c", + "size_in_bytes": 2326 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c7e834df24732a3eae9220df7cbdaa526a9d672bc2db787a77166c25796efb32", + "sha256_in_prefix": "c7e834df24732a3eae9220df7cbdaa526a9d672bc2db787a77166c25796efb32", + "size_in_bytes": 1187 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8a4db403b7fa091b8f9d293b9ee0e2507f61fdfa84cecb4e80e47760a622137b", + "sha256_in_prefix": "8a4db403b7fa091b8f9d293b9ee0e2507f61fdfa84cecb4e80e47760a622137b", + "size_in_bytes": 1411 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "660a897c13b05b6aa192e11322e0d01a9d80e30ce2156f59111b29f24a33d15e", + "sha256_in_prefix": "660a897c13b05b6aa192e11322e0d01a9d80e30ce2156f59111b29f24a33d15e", + "size_in_bytes": 2693 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/build_tracker.py", + "path_type": "hardlink", + "sha256": "f80456fd37231c2397ec3d8d50e1a7b41e0581ce9be1aa25b179002ba0562fbc", + "sha256_in_prefix": "f80456fd37231c2397ec3d8d50e1a7b41e0581ce9be1aa25b179002ba0562fbc", + "size_in_bytes": 4774 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py", + "path_type": "hardlink", + "sha256": "f52d02503f14dd0a99797a7e672b7c1f1c14f74944e10ae760382ba990f30677", + "sha256_in_prefix": "f52d02503f14dd0a99797a7e672b7c1f1c14f74944e10ae760382ba990f30677", + "size_in_bytes": 1422 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py", + "path_type": "hardlink", + "sha256": "c6503070ff6affcfdf9afff7237f70f4467b49057d867259afd56e4ecab663af", + "sha256_in_prefix": "c6503070ff6affcfdf9afff7237f70f4467b49057d867259afd56e4ecab663af", + "size_in_bytes": 1510 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py", + "path_type": "hardlink", + "sha256": "f22ea2d50657f66fe528f4ad105b0728cd0c4f86be083e34f093b0f7d75a2e6a", + "sha256_in_prefix": "f22ea2d50657f66fe528f4ad105b0728cd0c4f86be083e34f093b0f7d75a2e6a", + "size_in_bytes": 2190 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py", + "path_type": "hardlink", + "sha256": "b13d761412c0c430bac32ac3a2b87c92f719d631b9a889c2456cf33fe5242624", + "sha256_in_prefix": "b13d761412c0c430bac32ac3a2b87c92f719d631b9a889c2456cf33fe5242624", + "size_in_bytes": 1075 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py", + "path_type": "hardlink", + "sha256": "c8eb681face9024a0a60452dafc161ceb62790d1d0690063590d8761a7b53108", + "sha256_in_prefix": "c8eb681face9024a0a60452dafc161ceb62790d1d0690063590d8761a7b53108", + "size_in_bytes": 1417 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py", + "path_type": "hardlink", + "sha256": "2beea43619a3fb5c43178e67cb5ca178c7ab174ba2e04a1008bcc4a0787afad7", + "sha256_in_prefix": "2beea43619a3fb5c43178e67cb5ca178c7ab174ba2e04a1008bcc4a0787afad7", + "size_in_bytes": 3045 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/check.py", + "path_type": "hardlink", + "sha256": "2f6e2f44bf1559bcb2c1da1e02133cf5609df332d39e321b50b94a7a552021e7", + "sha256_in_prefix": "2f6e2f44bf1559bcb2c1da1e02133cf5609df332d39e321b50b94a7a552021e7", + "size_in_bytes": 5912 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/freeze.py", + "path_type": "hardlink", + "sha256": "d7f33bf630102a70b15abf8a082987b955ce54519a5091e6a162df173821ecae", + "sha256_in_prefix": "d7f33bf630102a70b15abf8a082987b955ce54519a5091e6a162df173821ecae", + "size_in_bytes": 9843 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py", + "path_type": "hardlink", + "sha256": "997ee1c83d863413b69851a8903437d2bfc65efed8fcf2ddb71714bf5e387beb", + "sha256_in_prefix": "997ee1c83d863413b69851a8903437d2bfc65efed8fcf2ddb71714bf5e387beb", + "size_in_bytes": 51 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d96c8bc958d8df890aa3acdaa311cb1e7a1fb1f5724468dc1cc37da178764d1f", + "sha256_in_prefix": "d96c8bc958d8df890aa3acdaa311cb1e7a1fb1f5724468dc1cc37da178764d1f", + "size_in_bytes": 222 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "86cbf5e4001065ebfd5e559f31076b171e192493cbef99099104301111cf61d2", + "sha256_in_prefix": "86cbf5e4001065ebfd5e559f31076b171e192493cbef99099104301111cf61d2", + "size_in_bytes": 1451 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "37e7bdca9462fcbed2cf9a070379d4df566eb8589b0a57840910a712761251f4", + "sha256_in_prefix": "37e7bdca9462fcbed2cf9a070379d4df566eb8589b0a57840910a712761251f4", + "size_in_bytes": 21437 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py", + "path_type": "hardlink", + "sha256": "3e812c3443c66c8676c90a613ec9984ca2ce08cb3882fe4e7027735b5db835c0", + "sha256_in_prefix": "3e812c3443c66c8676c90a613ec9984ca2ce08cb3882fe4e7027735b5db835c0", + "size_in_bytes": 1283 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py", + "path_type": "hardlink", + "sha256": "5f9233f72520e4b94ae55350f60da291ce9d711bbc10f8bf4948b98ae103460a", + "sha256_in_prefix": "5f9233f72520e4b94ae55350f60da291ce9d711bbc10f8bf4948b98ae103460a", + "size_in_bytes": 27615 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/operations/prepare.py", + "path_type": "hardlink", + "sha256": "8e8589c0f92ea86b1c42054d2262caef57bd8516a9c0abd108cf07725cac9af5", + "sha256_in_prefix": "8e8589c0f92ea86b1c42054d2262caef57bd8516a9c0abd108cf07725cac9af5", + "size_in_bytes": 28118 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/pyproject.py", + "path_type": "hardlink", + "sha256": "18b27aad6452e7fda7a0a75a8e88682f20edcb9ed9ed05e17140188219939d67", + "sha256_in_prefix": "18b27aad6452e7fda7a0a75a8e88682f20edcb9ed9ed05e17140188219939d67", + "size_in_bytes": 7286 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__init__.py", + "path_type": "hardlink", + "sha256": "1f1045b59cbf05b09c94b82bdbac1a32da7361d3b94f7bf178fbe91805d2b79b", + "sha256_in_prefix": "1f1045b59cbf05b09c94b82bdbac1a32da7361d3b94f7bf178fbe91805d2b79b", + "size_in_bytes": 2653 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8b7489966921848bcaf1e6a8e2a7d70998c8ebe4d9b8e65056e304cd6f2cc53f", + "sha256_in_prefix": "8b7489966921848bcaf1e6a8e2a7d70998c8ebe4d9b8e65056e304cd6f2cc53f", + "size_in_bytes": 2294 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "afb8c45d8c0fac960aa56075205120d859b538e972c36748cf318b9f48b85318", + "sha256_in_prefix": "afb8c45d8c0fac960aa56075205120d859b538e972c36748cf318b9f48b85318", + "size_in_bytes": 13918 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3fe86836e05a2f93768b450edba0fc70a15e1afd84ace1784da8ea30d39ace8c", + "sha256_in_prefix": "3fe86836e05a2f93768b450edba0fc70a15e1afd84ace1784da8ea30d39ace8c", + "size_in_bytes": 15409 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ecbd5cb76fb83a4f26141532c5486ccb26280dd88acfedc7abaa0459ba42e0ef", + "sha256_in_prefix": "ecbd5cb76fb83a4f26141532c5486ccb26280dd88acfedc7abaa0459ba42e0ef", + "size_in_bytes": 24799 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "707f093b1e845a4b37b011001e8cc05e53853c8b1ead60399496e593867c78ed", + "sha256_in_prefix": "707f093b1e845a4b37b011001e8cc05e53853c8b1ead60399496e593867c78ed", + "size_in_bytes": 3873 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cb91a8d9ffa9dd8f40cf2828330b7562dd6588b112c593f1449049bc92b17bcb", + "sha256_in_prefix": "cb91a8d9ffa9dd8f40cf2828330b7562dd6588b112c593f1449049bc92b17bcb", + "size_in_bytes": 18714 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/constructors.py", + "path_type": "hardlink", + "sha256": "bf5ab308dd66225770c7e9c2acf73c24ee25c649b716ff0ce515afb7c2c84a37", + "sha256_in_prefix": "bf5ab308dd66225770c7e9c2acf73c24ee25c649b716ff0ce515afb7c2c84a37", + "size_in_bytes": 18430 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/req_file.py", + "path_type": "hardlink", + "sha256": "7b2b3cd8c72068808e1a27365194478c3ef6d2988a24fc2679261d5e55b097ac", + "sha256_in_prefix": "7b2b3cd8c72068808e1a27365194478c3ef6d2988a24fc2679261d5e55b097ac", + "size_in_bytes": 20234 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/req_install.py", + "path_type": "hardlink", + "sha256": "04ca6dc47620dae1bf6feec714450b3dbde7bb0d053006ee79af334eadab13bc", + "sha256_in_prefix": "04ca6dc47620dae1bf6feec714450b3dbde7bb0d053006ee79af334eadab13bc", + "size_in_bytes": 35786 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/req_set.py", + "path_type": "hardlink", + "sha256": "8f77ac1b4b3a4b3a1545e5fdad69f8ae960db72113fdfc316f024f4629af471a", + "sha256_in_prefix": "8f77ac1b4b3a4b3a1545e5fdad69f8ae960db72113fdfc316f024f4629af471a", + "size_in_bytes": 2858 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py", + "path_type": "hardlink", + "sha256": "ab30c8c49a3e3844d6a866a2b3bb523020dc59b013600053f9389dde2b72174b", + "sha256_in_prefix": "ab30c8c49a3e3844d6a866a2b3bb523020dc59b013600053f9389dde2b72174b", + "size_in_bytes": 23853 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7690f6f7340e23d1734c13a09345095d793fd875fb6cbe6c67351f8d4d5d8c6e", + "sha256_in_prefix": "7690f6f7340e23d1734c13a09345095d793fd875fb6cbe6c67351f8d4d5d8c6e", + "size_in_bytes": 158 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "965e00a638be9d7df493c5e0e3bbf4a7d23399e272e2efeec0970ba4518a1d0c", + "sha256_in_prefix": "965e00a638be9d7df493c5e0e3bbf4a7d23399e272e2efeec0970ba4518a1d0c", + "size_in_bytes": 1010 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/base.py", + "path_type": "hardlink", + "sha256": "aa59a1df6e520557ef1ba31ef6073936c879b1dc07070cc706ae9a117b4ab0b0", + "sha256_in_prefix": "aa59a1df6e520557ef1ba31ef6073936c879b1dc07070cc706ae9a117b4ab0b0", + "size_in_bytes": 583 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "52d9e44b04473905e226d35b85910e5b8362af13fe1bee3d8c191e9223a45801", + "sha256_in_prefix": "52d9e44b04473905e226d35b85910e5b8362af13fe1bee3d8c191e9223a45801", + "size_in_bytes": 165 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "532cd2d2989700a0a48c40e33e43607a72766243e46eb1f7fa6960f5149bdd67", + "sha256_in_prefix": "532cd2d2989700a0a48c40e33e43607a72766243e46eb1f7fa6960f5149bdd67", + "size_in_bytes": 14979 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py", + "path_type": "hardlink", + "sha256": "dc766224145dd454cdea3429238a913bcf936cb61e21b5134ba3c5bd79d7b36c", + "sha256_in_prefix": "dc766224145dd454cdea3429238a913bcf936cb61e21b5134ba3c5bd79d7b36c", + "size_in_bytes": 24068 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "227797f700875d25ec3f34ecb09ecb84c6ac7663e0e45d1e87b4be6ee377def2", + "sha256_in_prefix": "227797f700875d25ec3f34ecb09ecb84c6ac7663e0e45d1e87b4be6ee377def2", + "size_in_bytes": 169 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a5f4ab57bce48da991faa8268d94fa61a4f41dfd69ff6ae922120ffbf4898f39", + "sha256_in_prefix": "a5f4ab57bce48da991faa8268d94fa61a4f41dfd69ff6ae922120ffbf4898f39", + "size_in_bytes": 6061 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e5cfdd33f8856ab79a8c47f16bf1c3367653fcd5f76b05a5e0a54e8ccdff1bb3", + "sha256_in_prefix": "e5cfdd33f8856ab79a8c47f16bf1c3367653fcd5f76b05a5e0a54e8ccdff1bb3", + "size_in_bytes": 19429 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4d839a102c35e61e28b17c940f9545feea4d5779a496d8fec138d87b16db7d8b", + "sha256_in_prefix": "4d839a102c35e61e28b17c940f9545feea4d5779a496d8fec138d87b16db7d8b", + "size_in_bytes": 21638 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3ddc40ebb61b403fa4d52da281283efe64667285dc57e4fbf544dfe2124f5ac0", + "sha256_in_prefix": "3ddc40ebb61b403fa4d52da281283efe64667285dc57e4fbf544dfe2124f5ac0", + "size_in_bytes": 5190 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e5bf43241aaf3dd0cbc9865a5f8ea4559ea363c33d19c9e8b46767aac9c8c29b", + "sha256_in_prefix": "e5bf43241aaf3dd0cbc9865a5f8ea4559ea363c33d19c9e8b46767aac9c8c29b", + "size_in_bytes": 7984 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a45035679caaaaf93b8e8a32276f4f224e1150f014616e0b76c402f90ee5da58", + "sha256_in_prefix": "a45035679caaaaf93b8e8a32276f4f224e1150f014616e0b76c402f90ee5da58", + "size_in_bytes": 3743 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4b0c79586eea96b557dad84e4df98c5cb76f43d26e7d6750411eefeed54d515a", + "sha256_in_prefix": "4b0c79586eea96b557dad84e4df98c5cb76f43d26e7d6750411eefeed54d515a", + "size_in_bytes": 10402 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e4e818d016cd876aee91e2ace1d888276323baa817293d7d786f157b9ddcfe32", + "sha256_in_prefix": "e4e818d016cd876aee91e2ace1d888276323baa817293d7d786f157b9ddcfe32", + "size_in_bytes": 8714 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py", + "path_type": "hardlink", + "sha256": "0c27faebd16cab2418e6ea9779e3c31d06357b840efa9073587f0ed2cf7e2bde", + "sha256_in_prefix": "0c27faebd16cab2418e6ea9779e3c31d06357b840efa9073587f0ed2cf7e2bde", + "size_in_bytes": 5023 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", + "path_type": "hardlink", + "sha256": "e54675ba93679aab0ffa798465a0d8c5a0600a87a3c3f7b65951a6980bc1c577", + "sha256_in_prefix": "e54675ba93679aab0ffa798465a0d8c5a0600a87a3c3f7b65951a6980bc1c577", + "size_in_bytes": 20001 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py", + "path_type": "hardlink", + "sha256": "30938b499258f3fdbc3cf75cbada10ea08c9ff57810ede99d5e76d7d32724781", + "sha256_in_prefix": "30938b499258f3fdbc3cf75cbada10ea08c9ff57810ede99d5e76d7d32724781", + "size_in_bytes": 32659 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", + "path_type": "hardlink", + "sha256": "f61ad3c90a85be5f48ed38e2efd1750311efdfd421d6b909ffb75e48748c7d07", + "sha256_in_prefix": "f61ad3c90a85be5f48ed38e2efd1750311efdfd421d6b909ffb75e48748c7d07", + "size_in_bytes": 6383 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py", + "path_type": "hardlink", + "sha256": "6dcb059d8be59ad07cd1cc15756d5f23082897c64daf57f5547c914e4cf8ed23", + "sha256_in_prefix": "6dcb059d8be59ad07cd1cc15756d5f23082897c64daf57f5547c914e4cf8ed23", + "size_in_bytes": 9935 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py", + "path_type": "hardlink", + "sha256": "d3426da171244e5c34fab97fb25e7877bd5abf03ac247b7d1861dcae3e52cdad", + "sha256_in_prefix": "d3426da171244e5c34fab97fb25e7877bd5abf03ac247b7d1861dcae3e52cdad", + "size_in_bytes": 3168 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py", + "path_type": "hardlink", + "sha256": "ec91b867bd9ee58938bd4d12e6e946bdba93cb814c406621639cd0857f734ed6", + "sha256_in_prefix": "ec91b867bd9ee58938bd4d12e6e946bdba93cb814c406621639cd0857f734ed6", + "size_in_bytes": 8065 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py", + "path_type": "hardlink", + "sha256": "9cb24eb15304562da0414549a1414a31901ebb67fb19132318cbcd496cb3d017", + "sha256_in_prefix": "9cb24eb15304562da0414549a1414a31901ebb67fb19132318cbcd496cb3d017", + "size_in_bytes": 12592 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/self_outdated_check.py", + "path_type": "hardlink", + "sha256": "d4f16db6dbcb01ec82551ded3e806adac3a53c3d0827e292a94e9b7351d493d7", + "sha256_in_prefix": "d4f16db6dbcb01ec82551ded3e806adac3a53c3d0827e292a94e9b7351d493d7", + "size_in_bytes": 8318 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1df9ea76075032d147892956f2721d152cca33ff97cc4bdd8d036b9508c5ff06", + "sha256_in_prefix": "1df9ea76075032d147892956f2721d152cca33ff97cc4bdd8d036b9508c5ff06", + "size_in_bytes": 153 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4d619b63513164528c597e4bbf34b211d02a38c067fa1d8980413f95faa7c054", + "sha256_in_prefix": "4d619b63513164528c597e4bbf34b211d02a38c067fa1d8980413f95faa7c054", + "size_in_bytes": 3808 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "673c366e6698a144497782fa30a499e9c898c9c80e06ff67d44d1a0a5ef6970b", + "sha256_in_prefix": "673c366e6698a144497782fa30a499e9c898c9c80e06ff67d44d1a0a5ef6970b", + "size_in_bytes": 1481 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9c4150e6ca805279b6db6fc1b59b2b2c9f7a7f52ce8a03ef70294ecc35841f99", + "sha256_in_prefix": "9c4150e6ca805279b6db6fc1b59b2b2c9f7a7f52ce8a03ef70294ecc35841f99", + "size_in_bytes": 1579 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f2d73d656ad493207bc8651bb56ceb1aa58990596b37ea992902c587fd005377", + "sha256_in_prefix": "f2d73d656ad493207bc8651bb56ceb1aa58990596b37ea992902c587fd005377", + "size_in_bytes": 1924 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "28f5c4cfe601a12640e7e1395569bcebcc9d2f70a3244867a8fb638db938e2d3", + "sha256_in_prefix": "28f5c4cfe601a12640e7e1395569bcebcc9d2f70a3244867a8fb638db938e2d3", + "size_in_bytes": 4413 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "aedb27768cc1087f8c53171a894e26b7a8187f335fb7adb6ac45ec1c10388a76", + "sha256_in_prefix": "aedb27768cc1087f8c53171a894e26b7a8187f335fb7adb6ac45ec1c10388a76", + "size_in_bytes": 476 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "457b47d58c1de79b92765bd1f7445a57d6e9468315c516db6bd2307c0bfd0126", + "sha256_in_prefix": "457b47d58c1de79b92765bd1f7445a57d6e9468315c516db6bd2307c0bfd0126", + "size_in_bytes": 3274 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "13582e399e70db6e998441ceb3134519cc58d84812e598c6a523f38151de4e89", + "sha256_in_prefix": "13582e399e70db6e998441ceb3134519cc58d84812e598c6a523f38151de4e89", + "size_in_bytes": 2038 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dcdb3b4dd2c76c3b24e00168def3577025a3675c8827c3020ebb38e7387d37d4", + "sha256_in_prefix": "dcdb3b4dd2c76c3b24e00168def3577025a3675c8827c3020ebb38e7387d37d4", + "size_in_bytes": 2374 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e5b27c4cebf4da7a7701ec626b14ed368430431690a59149f7db2b530498e7a9", + "sha256_in_prefix": "e5b27c4cebf4da7a7701ec626b14ed368430431690a59149f7db2b530498e7a9", + "size_in_bytes": 2659 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b8cbe397f2048b2bdb08fd3f30675d05bf2a5930b91ca364a8cb2766deba9f3e", + "sha256_in_prefix": "b8cbe397f2048b2bdb08fd3f30675d05bf2a5930b91ca364a8cb2766deba9f3e", + "size_in_bytes": 4369 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d7d2d9f215ef144bc76aeebddc8d92a8faa70f6269aadde02dbd3222dc900b0e", + "sha256_in_prefix": "d7d2d9f215ef144bc76aeebddc8d92a8faa70f6269aadde02dbd3222dc900b0e", + "size_in_bytes": 903 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0cf575e41fe563fce70274139f20fff793b30b8f9ddd0514d353edbbcb15007e", + "sha256_in_prefix": "0cf575e41fe563fce70274139f20fff793b30b8f9ddd0514d353edbbcb15007e", + "size_in_bytes": 1713 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "62e9be3c1f9756b47555a470bcd89f8fd3acbe4ceb353b13d53fddc8a8aa7c0e", + "sha256_in_prefix": "62e9be3c1f9756b47555a470bcd89f8fd3acbe4ceb353b13d53fddc8a8aa7c0e", + "size_in_bytes": 5582 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8e78183e1ea14af0faf2f1edb9f7ce7ed05e8d622a4bcfe0bf5cc82d6a712b67", + "sha256_in_prefix": "8e78183e1ea14af0faf2f1edb9f7ce7ed05e8d622a4bcfe0bf5cc82d6a712b67", + "size_in_bytes": 9928 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7475000b0b6c8a838799be6f85c75eb31988620c853fb67cbef0fdfebee17f58", + "sha256_in_prefix": "7475000b0b6c8a838799be6f85c75eb31988620c853fb67cbef0fdfebee17f58", + "size_in_bytes": 22829 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ec9fa1f152cdcdca5120a1280fa976d635707ad592186b373a949024a978b8ad", + "sha256_in_prefix": "ec9fa1f152cdcdca5120a1280fa976d635707ad592186b373a949024a978b8ad", + "size_in_bytes": 2060 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/retry.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bd905e1c893ecc0b4e05b8a244a1edbfdc5a107ecc576777563c26811500227b", + "sha256_in_prefix": "bd905e1c893ecc0b4e05b8a244a1edbfdc5a107ecc576777563c26811500227b", + "size_in_bytes": 1581 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a05c91b873910b5c44e02b80592b3b1823bcf5be1a39d4ed82edcab95357791b", + "sha256_in_prefix": "a05c91b873910b5c44e02b80592b3b1823bcf5be1a39d4ed82edcab95357791b", + "size_in_bytes": 3777 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d0ec6ae6eb820192bf5a25197437cfb9c09b9e1399eed116295c739e81dc27a2", + "sha256_in_prefix": "d0ec6ae6eb820192bf5a25197437cfb9c09b9e1399eed116295c739e81dc27a2", + "size_in_bytes": 5689 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "16afd264b49618c7825e1f38a4da39736c6648f31a749fc8e171035ad89ab748", + "sha256_in_prefix": "16afd264b49618c7825e1f38a4da39736c6648f31a749fc8e171035ad89ab748", + "size_in_bytes": 8284 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "82185c29b7f9db587fdfbc91b36ab72dd7c872632c9fb61f4b8bef1d083d4406", + "sha256_in_prefix": "82185c29b7f9db587fdfbc91b36ab72dd7c872632c9fb61f4b8bef1d083d4406", + "size_in_bytes": 8034 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "37e636e86775371e72456c6e77dc3f3636199e970eeebadc27900f77210c6d63", + "sha256_in_prefix": "37e636e86775371e72456c6e77dc3f3636199e970eeebadc27900f77210c6d63", + "size_in_bytes": 1324 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bf0f30a32e0dc1e6cc5a5b5ef436806e02dd6f15b4737fe847d167605049f5ab", + "sha256_in_prefix": "bf0f30a32e0dc1e6cc5a5b5ef436806e02dd6f15b4737fe847d167605049f5ab", + "size_in_bytes": 3249 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "368e92a267b8a9dd0c2df338b5d8eaa4d8a8ad8c708e1aecfcf32a0ed9ab2f91", + "sha256_in_prefix": "368e92a267b8a9dd0c2df338b5d8eaa4d8a8ad8c708e1aecfcf32a0ed9ab2f91", + "size_in_bytes": 4352 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py", + "path_type": "hardlink", + "sha256": "335e6e50f221e4da4fd6d754181c516aeeaad59004b48f3e5f22c4113b1c15f1", + "sha256_in_prefix": "335e6e50f221e4da4fd6d754181c516aeeaad59004b48f3e5f22c4113b1c15f1", + "size_in_bytes": 3350 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/_log.py", + "path_type": "hardlink", + "sha256": "fa31cb384fd31da673e4115c0a7a122fd11802d2749d77a6e3db3da1fe23bcac", + "sha256_in_prefix": "fa31cb384fd31da673e4115c0a7a122fd11802d2749d77a6e3db3da1fe23bcac", + "size_in_bytes": 1015 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/appdirs.py", + "path_type": "hardlink", + "sha256": "b3081c4ca3a6ddd68b7974d6eafe41512d938b646f1271914181ffc835e4940a", + "sha256_in_prefix": "b3081c4ca3a6ddd68b7974d6eafe41512d938b646f1271914181ffc835e4940a", + "size_in_bytes": 1665 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/compat.py", + "path_type": "hardlink", + "sha256": "724905bde0626108d15a390db1a8edfe858f4b9eed26f13c5f1a02e0e2188026", + "sha256_in_prefix": "724905bde0626108d15a390db1a8edfe858f4b9eed26f13c5f1a02e0e2188026", + "size_in_bytes": 2399 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py", + "path_type": "hardlink", + "sha256": "396ab96b11e95be30410fced19dbe0003ae024f01c57d6bcf11c66e19f1506cf", + "sha256_in_prefix": "396ab96b11e95be30410fced19dbe0003ae024f01c57d6bcf11c66e19f1506cf", + "size_in_bytes": 6272 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/datetime.py", + "path_type": "hardlink", + "sha256": "9b6d58df002d41cfa38ba55e6fa93f33983a034672148e1e81c853767c21fa94", + "sha256_in_prefix": "9b6d58df002d41cfa38ba55e6fa93f33983a034672148e1e81c853767c21fa94", + "size_in_bytes": 242 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/deprecation.py", + "path_type": "hardlink", + "sha256": "93b420fd404069a4ddcaaf3661501103a0fb4667064d71afedf9df7208a08f84", + "sha256_in_prefix": "93b420fd404069a4ddcaaf3661501103a0fb4667064d71afedf9df7208a08f84", + "size_in_bytes": 3707 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py", + "path_type": "hardlink", + "sha256": "af6311b64543002bfd006a983830540bd0a3c20b6c514d6cebc86681f08932d0", + "sha256_in_prefix": "af6311b64543002bfd006a983830540bd0a3c20b6c514d6cebc86681f08932d0", + "size_in_bytes": 3196 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/egg_link.py", + "path_type": "hardlink", + "sha256": "d0578f6685182afe11190dadeb1ef0e59e36ef06c0fd4a375999c092b82cbaaa", + "sha256_in_prefix": "d0578f6685182afe11190dadeb1ef0e59e36ef06c0fd4a375999c092b82cbaaa", + "size_in_bytes": 2463 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py", + "path_type": "hardlink", + "sha256": "62584b4d1976a07040baa85cfb398bed4492ebb4cf5951c89a3780407ade6534", + "sha256_in_prefix": "62584b4d1976a07040baa85cfb398bed4492ebb4cf5951c89a3780407ade6534", + "size_in_bytes": 3064 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/filesystem.py", + "path_type": "hardlink", + "sha256": "6a3bc0faae28725896f643e9f18aae87ee2fb2c5dbbbe50a6e8e4557d5785fae", + "sha256_in_prefix": "6a3bc0faae28725896f643e9f18aae87ee2fb2c5dbbbe50a6e8e4557d5785fae", + "size_in_bytes": 4950 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/filetypes.py", + "path_type": "hardlink", + "sha256": "8bc5c04347850a8836e85c3dc95d186f5ca002a298075c3d0b3f67d1f8fc8195", + "sha256_in_prefix": "8bc5c04347850a8836e85c3dc95d186f5ca002a298075c3d0b3f67d1f8fc8195", + "size_in_bytes": 716 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/glibc.py", + "path_type": "hardlink", + "sha256": "bd4916abfd6926ecdc60d70628b9509800685228ac2bc9e8618d7273c5aae30e", + "sha256_in_prefix": "bd4916abfd6926ecdc60d70628b9509800685228ac2bc9e8618d7273c5aae30e", + "size_in_bytes": 3734 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/hashes.py", + "path_type": "hardlink", + "sha256": "5c618b2f4006f3e4615a7cb3f3bc45e8c159fbe04a69d1d4df90f8ede02908a2", + "sha256_in_prefix": "5c618b2f4006f3e4615a7cb3f3bc45e8c159fbe04a69d1d4df90f8ede02908a2", + "size_in_bytes": 4972 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/logging.py", + "path_type": "hardlink", + "sha256": "38d7dbae1683db8f1a924a2c2bbf627fdee7db4100071c233b1a79744e510916", + "sha256_in_prefix": "38d7dbae1683db8f1a924a2c2bbf627fdee7db4100071c233b1a79744e510916", + "size_in_bytes": 11845 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/misc.py", + "path_type": "hardlink", + "sha256": "0d69d8c41508b63469ee1871120e2287a3fa6292abca433ce9d6e2fc4714f124", + "sha256_in_prefix": "0d69d8c41508b63469ee1871120e2287a3fa6292abca433ce9d6e2fc4714f124", + "size_in_bytes": 23450 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/packaging.py", + "path_type": "hardlink", + "sha256": "726f97ff41d51d5fe3470515661e80b845aa4a2b737fc129689ed4bf6506bba0", + "sha256_in_prefix": "726f97ff41d51d5fe3470515661e80b845aa4a2b737fc129689ed4bf6506bba0", + "size_in_bytes": 2142 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/retry.py", + "path_type": "hardlink", + "sha256": "9a115bca45e38539d97e0cdebb2faf97d73c9c40a7627fc232dc0d257dad6334", + "sha256_in_prefix": "9a115bca45e38539d97e0cdebb2faf97d73c9c40a7627fc232dc0d257dad6334", + "size_in_bytes": 1392 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py", + "path_type": "hardlink", + "sha256": "a2e5e9b9dfa3792f313f24cfb1727e9b7e0d3ef2b9a2ce39a2d03375257f2091", + "sha256_in_prefix": "a2e5e9b9dfa3792f313f24cfb1727e9b7e0d3ef2b9a2ce39a2d03375257f2091", + "size_in_bytes": 4435 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/subprocess.py", + "path_type": "hardlink", + "sha256": "12cbea49189230717df13f13c66bba34b53753ef8ca534d08ed36028fd0ffbe3", + "sha256_in_prefix": "12cbea49189230717df13f13c66bba34b53753ef8ca534d08ed36028fd0ffbe3", + "size_in_bytes": 8988 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py", + "path_type": "hardlink", + "sha256": "e6a3977bc33825e63abda15033cebb779ce4a756d2c0c67e293e63ca698fd198", + "sha256_in_prefix": "e6a3977bc33825e63abda15033cebb779ce4a756d2c0c67e293e63ca698fd198", + "size_in_bytes": 9310 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/unpacking.py", + "path_type": "hardlink", + "sha256": "fe055dcb34d10cc624b699d89639f83a8c6b653b4c09fe319274a6e2b2b459a0", + "sha256_in_prefix": "fe055dcb34d10cc624b699d89639f83a8c6b653b4c09fe319274a6e2b2b459a0", + "size_in_bytes": 11967 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/urls.py", + "path_type": "hardlink", + "sha256": "a9c7923996f995b343ac736cbfbfd2e0be18b6cce36b93703ca50c9d91db6273", + "sha256_in_prefix": "a9c7923996f995b343ac736cbfbfd2e0be18b6cce36b93703ca50c9d91db6273", + "size_in_bytes": 1599 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py", + "path_type": "hardlink", + "sha256": "4ba7fb72c628ad1a620fa72f9f78c849961cdc8f0f242e371f988c1694401035", + "sha256_in_prefix": "4ba7fb72c628ad1a620fa72f9f78c849961cdc8f0f242e371f988c1694401035", + "size_in_bytes": 3456 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/utils/wheel.py", + "path_type": "hardlink", + "sha256": "6f8e368e4c9d1478d7cc3cba70c47b329cd6049d50f36851e45df77267075778", + "sha256_in_prefix": "6f8e368e4c9d1478d7cc3cba70c47b329cd6049d50f36851e45df77267075778", + "size_in_bytes": 4494 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__init__.py", + "path_type": "hardlink", + "sha256": "500aafce96e2d156d9a3751beac904799030fa8a08651fb35ff5a909bc720a85", + "sha256_in_prefix": "500aafce96e2d156d9a3751beac904799030fa8a08651fb35ff5a909bc720a85", + "size_in_bytes": 596 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "886755bb63a585d14861bc4be914894ff252d4513c33cd5172cd0f3e3f60d9f2", + "sha256_in_prefix": "886755bb63a585d14861bc4be914894ff252d4513c33cd5172cd0f3e3f60d9f2", + "size_in_bytes": 476 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3e556bc2a039851da922d6db480b8b65bb2244bb44314bde18ab68e10144147b", + "sha256_in_prefix": "3e556bc2a039851da922d6db480b8b65bb2244bb44314bde18ab68e10144147b", + "size_in_bytes": 3473 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1e7895e6472a6b8762cd2e4f2a2a49cfd915c63c48e135b343928121f2bd9736", + "sha256_in_prefix": "1e7895e6472a6b8762cd2e4f2a2a49cfd915c63c48e135b343928121f2bd9736", + "size_in_bytes": 12407 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "750d8606743d0acb6ef91a9a988bc291b8f974cca1587cb860e16208de65e8b6", + "sha256_in_prefix": "750d8606743d0acb6ef91a9a988bc291b8f974cca1587cb860e16208de65e8b6", + "size_in_bytes": 5036 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4cd7a1d41f0665b5e6fe9df964c5be3e592e76fb33d68ed6d986a5b597311562", + "sha256_in_prefix": "4cd7a1d41f0665b5e6fe9df964c5be3e592e76fb33d68ed6d986a5b597311562", + "size_in_bytes": 8436 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9669e8331aceabd7354756e98d28a7998000de67ad54abcf0214f63c5118292a", + "sha256_in_prefix": "9669e8331aceabd7354756e98d28a7998000de67ad54abcf0214f63c5118292a", + "size_in_bytes": 20943 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py", + "path_type": "hardlink", + "sha256": "10a4ad71068aa4dbb434ae29e50d7439ce316f70d4c45c34db85eb272e346c54", + "sha256_in_prefix": "10a4ad71068aa4dbb434ae29e50d7439ce316f70d4c45c34db85eb272e346c54", + "size_in_bytes": 3528 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/git.py", + "path_type": "hardlink", + "sha256": "deda5cf4b400fc9e08556e6be4dbd669a49e0f372624ead215937427cbc829f5", + "sha256_in_prefix": "deda5cf4b400fc9e08556e6be4dbd669a49e0f372624ead215937427cbc829f5", + "size_in_bytes": 18177 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py", + "path_type": "hardlink", + "sha256": "a142ce8732765227bed3a775a2690bfbf19cea6786694932a20bea1bd642c8fb", + "sha256_in_prefix": "a142ce8732765227bed3a775a2690bfbf19cea6786694932a20bea1bd642c8fb", + "size_in_bytes": 5249 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/subversion.py", + "path_type": "hardlink", + "sha256": "75d4ee80706a1f357779b2a55394171cf378814aa5c976cec7cabc3605cabecf", + "sha256_in_prefix": "75d4ee80706a1f357779b2a55394171cf378814aa5c976cec7cabc3605cabecf", + "size_in_bytes": 11735 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py", + "path_type": "hardlink", + "sha256": "72f7fffa19d302340b5c9dddd7b14c36141f70ed4070a594175d2d7eb6323fe7", + "sha256_in_prefix": "72f7fffa19d302340b5c9dddd7b14c36141f70ed4070a594175d2d7eb6323fe7", + "size_in_bytes": 22440 + }, + { + "_path": "lib/python3.10/site-packages/pip/_internal/wheel_builder.py", + "path_type": "hardlink", + "sha256": "0cbdc0f0b29e463fc00a9d75592e704a001280f16a7b201e5c929d5df99a5975", + "sha256_in_prefix": "0cbdc0f0b29e463fc00a9d75592e704a001280f16a7b201e5c929d5df99a5975", + "size_in_bytes": 11799 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/__init__.py", + "path_type": "hardlink", + "sha256": "258b805ef0a58489f122b036153a79a7ebae5952fb595ebebc4a53b38ebe421e", + "sha256_in_prefix": "258b805ef0a58489f122b036153a79a7ebae5952fb595ebebc4a53b38ebe421e", + "size_in_bytes": 4873 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bb947dff0ee33aee3a336082ba19cf8b7c3c2cf9f6a3c3f5c57659de0da95610", + "sha256_in_prefix": "bb947dff0ee33aee3a336082ba19cf8b7c3c2cf9f6a3c3f5c57659de0da95610", + "size_in_bytes": 3022 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "49e02221ec9b635f20734e8ebe1b854c2eb6997f0132b64b5675b731c2c766eb", + "sha256_in_prefix": "49e02221ec9b635f20734e8ebe1b854c2eb6997f0132b64b5675b731c2c766eb", + "size_in_bytes": 100353 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py", + "path_type": "hardlink", + "sha256": "2cc0b90817bde1944be71865cf0c8f0e61d7bc10f4a7b953e11dd9ef70fa6bf2", + "sha256_in_prefix": "2cc0b90817bde1944be71865cf0c8f0e61d7bc10f4a7b953e11dd9ef70fa6bf2", + "size_in_bytes": 677 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a016a51824b3bd7a7d445479e2bd3d37fdc8bd2b7a9e849ee59ccce7fe03ce92", + "sha256_in_prefix": "a016a51824b3bd7a7d445479e2bd3d37fdc8bd2b7a9e849ee59ccce7fe03ce92", + "size_in_bytes": 724 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "997d6fc02a74179636c90000b4f1f76f21a48126aa2dbc0c4e0167eac74f2db0", + "sha256_in_prefix": "997d6fc02a74179636c90000b4f1f76f21a48126aa2dbc0c4e0167eac74f2db0", + "size_in_bytes": 1793 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "624ea994bcb8f82e3b7ff305b28c597792cd3ce46a90a6acf4e94e4c02e65e96", + "sha256_in_prefix": "624ea994bcb8f82e3b7ff305b28c597792cd3ce46a90a6acf4e94e4c02e65e96", + "size_in_bytes": 4376 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d6873e1fc6099912303b6eb2408d7978b358dcc82d3d3b4c73a8b3e5014e3b6f", + "sha256_in_prefix": "d6873e1fc6099912303b6eb2408d7978b358dcc82d3d3b4c73a8b3e5014e3b6f", + "size_in_bytes": 3237 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9a306b89bc974eb39d45e47c0612f79c14f00ee66cad3c04ae780092a7d78ef8", + "sha256_in_prefix": "9a306b89bc974eb39d45e47c0612f79c14f00ee66cad3c04ae780092a7d78ef8", + "size_in_bytes": 10117 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cd1fae7e19fabd5d77bff0484a43f0ee7252dbc185225a34def02b74d5290f08", + "sha256_in_prefix": "cd1fae7e19fabd5d77bff0484a43f0ee7252dbc185225a34def02b74d5290f08", + "size_in_bytes": 3177 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ab0af7857d9c01d4df8d5f0f049f2982a7910a0111dade2055fd8d264c222a9b", + "sha256_in_prefix": "ab0af7857d9c01d4df8d5f0f049f2982a7910a0111dade2055fd8d264c222a9b", + "size_in_bytes": 5358 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "32738472903c26dfb0743f96e39d1301228e0e5a36b99e3288cee543aebe4872", + "sha256_in_prefix": "32738472903c26dfb0743f96e39d1301228e0e5a36b99e3288cee543aebe4872", + "size_in_bytes": 3311 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4f0beb01164e14b5ee57b5fa95af42081775dd299510e0272b28361d10acf41d", + "sha256_in_prefix": "4f0beb01164e14b5ee57b5fa95af42081775dd299510e0272b28361d10acf41d", + "size_in_bytes": 1428 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py", + "path_type": "hardlink", + "sha256": "8a2b2dd84a7326f0d5221300c57abc8859d306c89901dea2a65c5f98d6e83729", + "sha256_in_prefix": "8a2b2dd84a7326f0d5221300c57abc8859d306c89901dea2a65c5f98d6e83729", + "size_in_bytes": 1737 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py", + "path_type": "hardlink", + "sha256": "7de6e36382d5f3b8a20882b78dc97c887e7c89a480edbf56928bec0722032b46", + "sha256_in_prefix": "7de6e36382d5f3b8a20882b78dc97c887e7c89a480edbf56928bec0722032b46", + "size_in_bytes": 6348 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py", + "path_type": "hardlink", + "sha256": "397c2fec59f60309ca3626a12479e3b6f68a2e776f54bbfffb33be96d955f6a2", + "sha256_in_prefix": "397c2fec59f60309ca3626a12479e3b6f68a2e776f54bbfffb33be96d955f6a2", + "size_in_bytes": 1953 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py", + "path_type": "hardlink", + "sha256": "76daebae82b90670034751968c2675f5a674b45b0c7ef141b4b410535b29fda8", + "sha256_in_prefix": "76daebae82b90670034751968c2675f5a674b45b0c7ef141b4b410535b29fda8", + "size_in_bytes": 303 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a23cf8e702290571ee30fdb5c757fe7bee297cefd7c1feb5b24eafb40bb4aca5", + "sha256_in_prefix": "a23cf8e702290571ee30fdb5c757fe7bee297cefd7c1feb5b24eafb40bb4aca5", + "size_in_bytes": 387 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6c9feccd34526e2b15cf79805dc79790d13f363a34dd4bf6e7e699cd43f1514d", + "sha256_in_prefix": "6c9feccd34526e2b15cf79805dc79790d13f363a34dd4bf6e7e699cd43f1514d", + "size_in_bytes": 5606 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "206e59184baf8dae6ab58d82555fa9b22db0ad0f9d38fc9a0107bb10762fc764", + "sha256_in_prefix": "206e59184baf8dae6ab58d82555fa9b22db0ad0f9d38fc9a0107bb10762fc764", + "size_in_bytes": 2002 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py", + "path_type": "hardlink", + "sha256": "6fba0c82c452a8f984b289d5270eae144614945803e8617c4f269c3861b5c773", + "sha256_in_prefix": "6fba0c82c452a8f984b289d5270eae144614945803e8617c4f269c3861b5c773", + "size_in_bytes": 5399 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py", + "path_type": "hardlink", + "sha256": "f6b9aac2d62efe58d5916ebfa0ba9b0bb11a5ff6bc613ff22ee9daf9e4b4760a", + "sha256_in_prefix": "f6b9aac2d62efe58d5916ebfa0ba9b0bb11a5ff6bc613ff22ee9daf9e4b4760a", + "size_in_bytes": 1386 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py", + "path_type": "hardlink", + "sha256": "8256cf8f6899946a9d060f33d3d0f60ed40ece83865e75afcbb2b62c4c81b044", + "sha256_in_prefix": "8256cf8f6899946a9d060f33d3d0f60ed40ece83865e75afcbb2b62c4c81b044", + "size_in_bytes": 18576 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py", + "path_type": "hardlink", + "sha256": "da4b5734f1342aa9f2cc5db868eb0a080e7c1d0ab5c5e0ba97683aff3c238217", + "sha256_in_prefix": "da4b5734f1342aa9f2cc5db868eb0a080e7c1d0ab5c5e0ba97683aff3c238217", + "size_in_bytes": 4291 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py", + "path_type": "hardlink", + "sha256": "82a31753cc34810b8442249dbb7620fb4bddf645bb9eb58a6cb71aef9ae17861", + "sha256_in_prefix": "82a31753cc34810b8442249dbb7620fb4bddf645bb9eb58a6cb71aef9ae17861", + "size_in_bytes": 4881 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py", + "path_type": "hardlink", + "sha256": "1d0776225950d391f33e454b3174c5dae5f99a31108c3064c42a94254383a599", + "sha256_in_prefix": "1d0776225950d391f33e454b3174c5dae5f99a31108c3064c42a94254383a599", + "size_in_bytes": 5163 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py", + "path_type": "hardlink", + "sha256": "86c19cee0f101904d3fb87fcb60cf700ce6ac12720e853b405274b491744be95", + "sha256_in_prefix": "86c19cee0f101904d3fb87fcb60cf700ce6ac12720e853b405274b491744be95", + "size_in_bytes": 1417 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py", + "path_type": "hardlink", + "sha256": "a7f19866b8d4c0f0548692e5099a066f49a2281292a83032642e43bc8baa6c74", + "sha256_in_prefix": "a7f19866b8d4c0f0548692e5099a066f49a2281292a83032642e43bc8baa6c74", + "size_in_bytes": 94 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py", + "path_type": "hardlink", + "sha256": "d64dc2afde6f0b1c464460e58eb5b7c0c76965d2f73617f4bb59fe936a9db026", + "sha256_in_prefix": "d64dc2afde6f0b1c464460e58eb5b7c0c76965d2f73617f4bb59fe936a9db026", + "size_in_bytes": 255 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a53f0da5edec5cd2b1f7b5a5cbf90f7d3dcfc1e37ad131ec6a12d4f7b65af4dc", + "sha256_in_prefix": "a53f0da5edec5cd2b1f7b5a5cbf90f7d3dcfc1e37ad131ec6a12d4f7b65af4dc", + "size_in_bytes": 266 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7188714f9939f255d7f1edc5f552dccced4cfb351f66ba796d3775482d8ee771", + "sha256_in_prefix": "7188714f9939f255d7f1edc5f552dccced4cfb351f66ba796d3775482d8ee771", + "size_in_bytes": 416 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "335cc6b9fa471f2d8a383f19f5d401f7bfd22747abc97078c7c4e41c2adb0fc1", + "sha256_in_prefix": "335cc6b9fa471f2d8a383f19f5d401f7bfd22747abc97078c7c4e41c2adb0fc1", + "size_in_bytes": 2109 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem", + "path_type": "hardlink", + "sha256": "94edeb66e91774fcae93a05650914e29096259a5c7e871a1f65d461ab5201b47", + "sha256_in_prefix": "94edeb66e91774fcae93a05650914e29096259a5c7e871a1f65d461ab5201b47", + "size_in_bytes": 299427 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/core.py", + "path_type": "hardlink", + "sha256": "d92453e6b21c4028450db7b7ec141afa450bc40809f2a37a9758dfa93a781c8b", + "sha256_in_prefix": "d92453e6b21c4028450db7b7ec141afa450bc40809f2a37a9758dfa93a781c8b", + "size_in_bytes": 4486 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/certifi/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py", + "path_type": "hardlink", + "sha256": "75cc2060660642a0046b00573c3b48c7cd033bfddc3a616ff074dcf093339274", + "sha256_in_prefix": "75cc2060660642a0046b00573c3b48c7cd033bfddc3a616ff074dcf093339274", + "size_in_bytes": 625 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "11c872c1890c04bc72e7c451c13cc31048f8b2f0ff5111ac0f384033a95c8644", + "sha256_in_prefix": "11c872c1890c04bc72e7c451c13cc31048f8b2f0ff5111ac0f384033a95c8644", + "size_in_bytes": 1024 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5934e61cef0db9cc8d1b842951074b68d9a81d05d122db5ae6d387df4561facb", + "sha256_in_prefix": "5934e61cef0db9cc8d1b842951074b68d9a81d05d122db5ae6d387df4561facb", + "size_in_bytes": 31397 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7e12feec85e98b0a6510e6a6fe299d9aec7ca1d478ad3e960a2cb0abe6721953", + "sha256_in_prefix": "7e12feec85e98b0a6510e6a6fe299d9aec7ca1d478ad3e960a2cb0abe6721953", + "size_in_bytes": 43034 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ade618ff8029e571a09fb49b78e84e80f23897f950876d2cd02a57a0e2de0ccc", + "sha256_in_prefix": "ade618ff8029e571a09fb49b78e84e80f23897f950876d2cd02a57a0e2de0ccc", + "size_in_bytes": 17261 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3359d0ac70ff7a1dd274030fd56fc63f0daba16fa00f7f5138fabc880dc05f51", + "sha256_in_prefix": "3359d0ac70ff7a1dd274030fd56fc63f0daba16fa00f7f5138fabc880dc05f51", + "size_in_bytes": 38212 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "611fb2ade01e047a55ba51f0405687bd51144727b9c531d3fe1740f4b834c8fe", + "sha256_in_prefix": "611fb2ade01e047a55ba51f0405687bd51144727b9c531d3fe1740f4b834c8fe", + "size_in_bytes": 10189 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6b70a9402150e761341423bdd0c40d9c7581cbfe45b4e836bc29aa67e1e7ed31", + "sha256_in_prefix": "6b70a9402150e761341423bdd0c40d9c7581cbfe45b4e836bc29aa67e1e7ed31", + "size_in_bytes": 5257 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1faa25ffcd725aeddb6744c65dd3e5330643a43e02b9a681623bc80758fbdb25", + "sha256_in_prefix": "1faa25ffcd725aeddb6744c65dd3e5330643a43e02b9a681623bc80758fbdb25", + "size_in_bytes": 26888 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "467b8a84660dc96516e1694d4b015ee15670231a6e78aca2e01e75fab8682011", + "sha256_in_prefix": "467b8a84660dc96516e1694d4b015ee15670231a6e78aca2e01e75fab8682011", + "size_in_bytes": 10998 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cdc413d7501df008f8e0c0252bc90266658a0bb2e7ec659bf96ba3855b59ae86", + "sha256_in_prefix": "cdc413d7501df008f8e0c0252bc90266658a0bb2e7ec659bf96ba3855b59ae86", + "size_in_bytes": 11625 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b8ef9c6b97465fa26e27927507e481d1a31773e715dc5fe357eb11c119fc3b0", + "sha256_in_prefix": "9b8ef9c6b97465fa26e27927507e481d1a31773e715dc5fe357eb11c119fc3b0", + "size_in_bytes": 52035 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b30079b4d223510e3dcfc30556de71bc70f4e11d0458bf86c1d931dddec66be6", + "sha256_in_prefix": "b30079b4d223510e3dcfc30556de71bc70f4e11d0458bf86c1d931dddec66be6", + "size_in_bytes": 20243 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c271a50b66a52803d08e7dae7d455aea9f3262370e54d84379473d5db235fba1", + "sha256_in_prefix": "c271a50b66a52803d08e7dae7d455aea9f3262370e54d84379473d5db235fba1", + "size_in_bytes": 28444 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/compat.py", + "path_type": "hardlink", + "sha256": "da34528d1238a3ebe55de4cad8108621486473a7bd646852b1a711339a2c793c", + "sha256_in_prefix": "da34528d1238a3ebe55de4cad8108621486473a7bd646852b1a711339a2c793c", + "size_in_bytes": 41467 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/database.py", + "path_type": "hardlink", + "sha256": "987cbf2f189722c21545bf93d3e89d06b54bc3715f8a3e6d7870a96e3989f585", + "sha256_in_prefix": "987cbf2f189722c21545bf93d3e89d06b54bc3715f8a3e6d7870a96e3989f585", + "size_in_bytes": 51160 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/index.py", + "path_type": "hardlink", + "sha256": "9536f0dbaf2b4618fc770d6c89bdd567fd048521a0a093b714a27348530e69e0", + "sha256_in_prefix": "9536f0dbaf2b4618fc770d6c89bdd567fd048521a0a093b714a27348530e69e0", + "size_in_bytes": 20797 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/locators.py", + "path_type": "hardlink", + "sha256": "a0178066916e3d0498d3d3203672df4061805d7bd53bde8116967228cb8ae2d3", + "sha256_in_prefix": "a0178066916e3d0498d3d3203672df4061805d7bd53bde8116967228cb8ae2d3", + "size_in_bytes": 51026 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py", + "path_type": "hardlink", + "sha256": "dea7e6026570c51a94d68db70257d7ad0199ce1ea0fc61b34c03ff1dbf42e734", + "sha256_in_prefix": "dea7e6026570c51a94d68db70257d7ad0199ce1ea0fc61b34c03ff1dbf42e734", + "size_in_bytes": 14168 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/markers.py", + "path_type": "hardlink", + "sha256": "5fab03be41467184bc8145bc85fb16b8a10a02a85064027b89738c2f14588d89", + "sha256_in_prefix": "5fab03be41467184bc8145bc85fb16b8a10a02a85064027b89738c2f14588d89", + "size_in_bytes": 5164 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py", + "path_type": "hardlink", + "sha256": "ce2977b20d8451f2d75628258d8d9dff4dc826df894acee75feef77c408c5f6b", + "sha256_in_prefix": "ce2977b20d8451f2d75628258d8d9dff4dc826df894acee75feef77c408c5f6b", + "size_in_bytes": 38724 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/resources.py", + "path_type": "hardlink", + "sha256": "2f06cf92c73403524c6e2e979ee3dd301527f375fb04fb85356a8f184288ebdf", + "sha256_in_prefix": "2f06cf92c73403524c6e2e979ee3dd301527f375fb04fb85356a8f184288ebdf", + "size_in_bytes": 10820 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py", + "path_type": "hardlink", + "sha256": "04996268301969507b580930a24802dc75f02c3da25a21da548e741fb0ba786f", + "sha256_in_prefix": "04996268301969507b580930a24802dc75f02c3da25a21da548e741fb0ba786f", + "size_in_bytes": 18608 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/util.py", + "path_type": "hardlink", + "sha256": "bcc3c6bec4b88fd845e98f64dd3ca89b569a1cb6f4ac5999004cb378075e97dc", + "sha256_in_prefix": "bcc3c6bec4b88fd845e98f64dd3ca89b569a1cb6f4ac5999004cb378075e97dc", + "size_in_bytes": 66682 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/version.py", + "path_type": "hardlink", + "sha256": "b39548b3cc019f47f1cc6c5633f680d99672c79db91dc65b32f713953c99dd18", + "sha256_in_prefix": "b39548b3cc019f47f1cc6c5633f680d99672c79db91dc65b32f713953c99dd18", + "size_in_bytes": 23727 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py", + "path_type": "hardlink", + "sha256": "0c521582e1101c27719d27403b475f16c80c72f5598ad83b6c23ae2f067b03fb", + "sha256_in_prefix": "0c521582e1101c27719d27403b475f16c80c72f5598ad83b6c23ae2f067b03fb", + "size_in_bytes": 43979 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/__init__.py", + "path_type": "hardlink", + "sha256": "d9f1e317e49f80fbe3c8d67588787fc23a96751fd8a393831f0642d232c13e17", + "sha256_in_prefix": "d9f1e317e49f80fbe3c8d67588787fc23a96751fd8a393831f0642d232c13e17", + "size_in_bytes": 981 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/__main__.py", + "path_type": "hardlink", + "sha256": "6eef5ddd389fa0a72264572a441bb2815dc64ae4e19d50ff9b620ae1ccfde95b", + "sha256_in_prefix": "6eef5ddd389fa0a72264572a441bb2815dc64ae4e19d50ff9b620ae1ccfde95b", + "size_in_bytes": 64 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5a230b93cf6d5b9aa5dd24d6ebc44b559d1f3b13ec6a5d4058719abb5c7f4f6d", + "sha256_in_prefix": "5a230b93cf6d5b9aa5dd24d6ebc44b559d1f3b13ec6a5d4058719abb5c7f4f6d", + "size_in_bytes": 877 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "62a1dbcae25cb45cd404bd99950ac9fd494c7dd2ac7f7035f87775a35f38b23f", + "sha256_in_prefix": "62a1dbcae25cb45cd404bd99950ac9fd494c7dd2ac7f7035f87775a35f38b23f", + "size_in_bytes": 231 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "89b1f118e1962036f329834f9320c01db3b13541b49da2bb1eee31765b15d517", + "sha256_in_prefix": "89b1f118e1962036f329834f9320c01db3b13541b49da2bb1eee31765b15d517", + "size_in_bytes": 42114 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/distro.py", + "path_type": "hardlink", + "sha256": "5ea6de7da7008434f8cebfedae76c0d79798f2f74ae064e08609af506ac433fe", + "sha256_in_prefix": "5ea6de7da7008434f8cebfedae76c0d79798f2f74ae064e08609af506ac433fe", + "size_in_bytes": 49430 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/distro/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__init__.py", + "path_type": "hardlink", + "sha256": "30fa8d0cb65b5ea19a35d5f1005862a853ca1105e3bb68cd42109ecbafb97893", + "sha256_in_prefix": "30fa8d0cb65b5ea19a35d5f1005862a853ca1105e3bb68cd42109ecbafb97893", + "size_in_bytes": 868 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c78630c03f2791cdb9a0381e0485bcddb7e9f84a1059b677de879446d9fb774", + "sha256_in_prefix": "0c78630c03f2791cdb9a0381e0485bcddb7e9f84a1059b677de879446d9fb774", + "size_in_bytes": 814 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b4d2e062cd45ca00b72b8b77072fb115073b9715d42a31c028a1e037d32ab6af", + "sha256_in_prefix": "b4d2e062cd45ca00b72b8b77072fb115073b9715d42a31c028a1e037d32ab6af", + "size_in_bytes": 3235 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "66b375edf17ebdb1a116ce7b8c8f970707e31d77ce617b2a61669b3f5827c762", + "sha256_in_prefix": "66b375edf17ebdb1a116ce7b8c8f970707e31d77ce617b2a61669b3f5827c762", + "size_in_bytes": 717 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "529511b0511d38a4e18040eadab360d8e35759d81e907595d75b6e0dfc71fafc", + "sha256_in_prefix": "529511b0511d38a4e18040eadab360d8e35759d81e907595d75b6e0dfc71fafc", + "size_in_bytes": 9633 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "260b9dc0e814eb2ce00206376e735c3fb86306749a94c665e3049056ece1f52b", + "sha256_in_prefix": "260b9dc0e814eb2ce00206376e735c3fb86306749a94c665e3049056ece1f52b", + "size_in_bytes": 194410 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4a5bd8afe30bcbe6db930122a711ec9319af6ab3cd6a31bd051131124bb7df99", + "sha256_in_prefix": "4a5bd8afe30bcbe6db930122a711ec9319af6ab3cd6a31bd051131124bb7df99", + "size_in_bytes": 1946 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "43b9463d557ba8a5540af9089998ff052cce8af6927abd8ea00a8ae8e292b579", + "sha256_in_prefix": "43b9463d557ba8a5540af9089998ff052cce8af6927abd8ea00a8ae8e292b579", + "size_in_bytes": 174 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99273b750dbba521324248c0459c3e350c7f4b26bb852af192b04cf2d8955279", + "sha256_in_prefix": "99273b750dbba521324248c0459c3e350c7f4b26bb852af192b04cf2d8955279", + "size_in_bytes": 152338 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/codec.py", + "path_type": "hardlink", + "sha256": "3c47b0dc8b70ce35b887299b6ac9edcb6376397bcd7201c1f898eb06ec473d86", + "sha256_in_prefix": "3c47b0dc8b70ce35b887299b6ac9edcb6376397bcd7201c1f898eb06ec473d86", + "size_in_bytes": 3422 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/compat.py", + "path_type": "hardlink", + "sha256": "4732f2e90402765f7bf3868585bd845fd10a1822638343f73e294675e5d7731f", + "sha256_in_prefix": "4732f2e90402765f7bf3868585bd845fd10a1822638343f73e294675e5d7731f", + "size_in_bytes": 316 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/core.py", + "path_type": "hardlink", + "sha256": "60963200c9f089010f8d50b8f85aaefe9e0227ac8a2ae0c69a9a41350350a45b", + "sha256_in_prefix": "60963200c9f089010f8d50b8f85aaefe9e0227ac8a2ae0c69a9a41350350a45b", + "size_in_bytes": 13239 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py", + "path_type": "hardlink", + "sha256": "5b7d067081afb4e598c008d98f8663ba8b94bad0ba7df80dbb28c9cbb7d9fa5a", + "sha256_in_prefix": "5b7d067081afb4e598c008d98f8663ba8b94bad0ba7df80dbb28c9cbb7d9fa5a", + "size_in_bytes": 78306 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/intranges.py", + "path_type": "hardlink", + "sha256": "6a652d91d8587101bc66bf82a0c33f91545a731922bc2d568313756fadca29d5", + "sha256_in_prefix": "6a652d91d8587101bc66bf82a0c33f91545a731922bc2d568313756fadca29d5", + "size_in_bytes": 1898 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/package_data.py", + "path_type": "hardlink", + "sha256": "ab9f52dce5ec739548f23eaf483d2c18133293acd9e2f58544413cf3208960ab", + "sha256_in_prefix": "ab9f52dce5ec739548f23eaf483d2c18133293acd9e2f58544413cf3208960ab", + "size_in_bytes": 21 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py", + "path_type": "hardlink", + "sha256": "aedf742bd278d20512c29a433c2ae18e08b9000ea958ceb974419149feab2213", + "sha256_in_prefix": "aedf742bd278d20512c29a433c2ae18e08b9000ea958ceb974419149feab2213", + "size_in_bytes": 239289 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py", + "path_type": "hardlink", + "sha256": "ade45a88eb44cd28cf9ebed3a718e022f6df967e6957ae8586b89c02cd9e0be8", + "sha256_in_prefix": "ade45a88eb44cd28cf9ebed3a718e022f6df967e6957ae8586b89c02cd9e0be8", + "size_in_bytes": 1109 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6233c2ad42c20010f8a541db9d09eba392731f901c2137eb1bf4701a71d8e51a", + "sha256_in_prefix": "6233c2ad42c20010f8a541db9d09eba392731f901c2137eb1bf4701a71d8e51a", + "size_in_bytes": 1359 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "163c8a47c8b59af6a5afb012b712141c09eaeade883f69a06354f992386661c8", + "sha256_in_prefix": "163c8a47c8b59af6a5afb012b712141c09eaeade883f69a06354f992386661c8", + "size_in_bytes": 1770 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "483936881aa8bda44c452a482c117f6f5542e05fe081a9f4f3750810efd47ea5", + "sha256_in_prefix": "483936881aa8bda44c452a482c117f6f5542e05fe081a9f4f3750810efd47ea5", + "size_in_bytes": 6051 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8498bec10c9670b3820bfa99d3dbc480b4ed884fe98d482d143d2bae84592696", + "sha256_in_prefix": "8498bec10c9670b3820bfa99d3dbc480b4ed884fe98d482d143d2bae84592696", + "size_in_bytes": 23733 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py", + "path_type": "hardlink", + "sha256": "7424d67a2f1da64accb100dc8d093be004e5f47b08047d326edf3338f36a3187", + "sha256_in_prefix": "7424d67a2f1da64accb100dc8d093be004e5f47b08047d326edf3338f36a3187", + "size_in_bytes": 1081 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py", + "path_type": "hardlink", + "sha256": "92d789bf4de7f6d633779a28df1628a554e8e2f45a031a27050409857a21659a", + "sha256_in_prefix": "92d789bf4de7f6d633779a28df1628a554e8e2f45a031a27050409857a21659a", + "size_in_bytes": 5726 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py", + "path_type": "hardlink", + "sha256": "d20d4fce9d2fb66044989e70f45decffe24c55444ff114b81b571ce5345a02c2", + "sha256_in_prefix": "d20d4fce9d2fb66044989e70f45decffe24c55444ff114b81b571ce5345a02c2", + "size_in_bytes": 32390 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py", + "path_type": "hardlink", + "sha256": "764e136bfbe67552716070dc7f286f40dc3c5773e0481a2628d5ea83e0f62436", + "sha256_in_prefix": "764e136bfbe67552716070dc7f286f40dc3c5773e0481a2628d5ea83e0f62436", + "size_in_bytes": 494 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b2d469369a5e4ab23b109ac700ed832bba86b6d86c3aa66ded38e9ce33e098d5", + "sha256_in_prefix": "b2d469369a5e4ab23b109ac700ed832bba86b6d86c3aa66ded38e9ce33e098d5", + "size_in_bytes": 485 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d919285aeb1c7936fbccb1753ce61723145bd0e612ebb428c8817b7cbb454cbb", + "sha256_in_prefix": "d919285aeb1c7936fbccb1753ce61723145bd0e612ebb428c8817b7cbb454cbb", + "size_in_bytes": 3360 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "af84c5b6c8ee2c699adbfbf5804c86be5a54e17762de4adbebf227650f56c923", + "sha256_in_prefix": "af84c5b6c8ee2c699adbfbf5804c86be5a54e17762de4adbebf227650f56c923", + "size_in_bytes": 6550 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "175922b42943a27119441ed9348b154e199fbeb6f955a4479b5046e0a0b69786", + "sha256_in_prefix": "175922b42943a27119441ed9348b154e199fbeb6f955a4479b5046e0a0b69786", + "size_in_bytes": 3409 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "889e9edb96c8dcf6cb3eb71a04e9f8dcbf3dec1fb6fe76c0fd31efbb559b2018", + "sha256_in_prefix": "889e9edb96c8dcf6cb3eb71a04e9f8dcbf3dec1fb6fe76c0fd31efbb559b2018", + "size_in_bytes": 9225 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8ea813235bf09b16bebe2552e26bc60d2e927229d74e7f1cded220f4356b388b", + "sha256_in_prefix": "8ea813235bf09b16bebe2552e26bc60d2e927229d74e7f1cded220f4356b388b", + "size_in_bytes": 2667 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4c8c5183d8361fe27a4df09ff8493ae505616a56310381d313c95583ab8744e6", + "sha256_in_prefix": "4c8c5183d8361fe27a4df09ff8493ae505616a56310381d313c95583ab8744e6", + "size_in_bytes": 5879 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1470f80066df1a119ec54f3cdbc9fe9d07f02f7a4c28ad91a76cc4a7b4fef4e9", + "sha256_in_prefix": "1470f80066df1a119ec54f3cdbc9fe9d07f02f7a4c28ad91a76cc4a7b4fef4e9", + "size_in_bytes": 7846 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "48b801461d6cda0d77e81e42845db7e9087f349cf40788596c2e52baabc4ddc3", + "sha256_in_prefix": "48b801461d6cda0d77e81e42845db7e9087f349cf40788596c2e52baabc4ddc3", + "size_in_bytes": 18710 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ac53578de6d6da60fd36ef9b13115b471b8b40568a33bba71181126d11339526", + "sha256_in_prefix": "ac53578de6d6da60fd36ef9b13115b471b8b40568a33bba71181126d11339526", + "size_in_bytes": 2879 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "571f3fb0ac83e3a62528cf6614a6fdda8593faf997263857724d3335f885cc44", + "sha256_in_prefix": "571f3fb0ac83e3a62528cf6614a6fdda8593faf997263857724d3335f885cc44", + "size_in_bytes": 31377 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4509c582d6378c41b42ed671807800657577c87d58fe99d001035ab48a6cc893", + "sha256_in_prefix": "4509c582d6378c41b42ed671807800657577c87d58fe99d001035ab48a6cc893", + "size_in_bytes": 15179 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b1a4d75fa753eaf919a7f173ea3112651c83f66249558dacfa3abf6a59371f1", + "sha256_in_prefix": "9b1a4d75fa753eaf919a7f173ea3112651c83f66249558dacfa3abf6a59371f1", + "size_in_bytes": 4613 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ebe55e0450e3f60f16d4795fce71421952f6999b8ef12c4d6d45634a8459e3cb", + "sha256_in_prefix": "ebe55e0450e3f60f16d4795fce71421952f6999b8ef12c4d6d45634a8459e3cb", + "size_in_bytes": 15014 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_elffile.py", + "path_type": "hardlink", + "sha256": "71f940400904db9b738589aafda0a2ef641f6d3fed9fcf75b4fcdfa5b7873b01", + "sha256_in_prefix": "71f940400904db9b738589aafda0a2ef641f6d3fed9fcf75b4fcdfa5b7873b01", + "size_in_bytes": 3306 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py", + "path_type": "hardlink", + "sha256": "be5e4e0a8cf8931f341f9af05ca7975a397d58d2121a6af86604e94cff6553d7", + "sha256_in_prefix": "be5e4e0a8cf8931f341f9af05ca7975a397d58d2121a6af86604e94cff6553d7", + "size_in_bytes": 9612 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py", + "path_type": "hardlink", + "sha256": "a7d66a35888e22d19e7bc29c64578717f61c76157018774aeabfbc9608b1bc64", + "sha256_in_prefix": "a7d66a35888e22d19e7bc29c64578717f61c76157018774aeabfbc9608b1bc64", + "size_in_bytes": 2694 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_parser.py", + "path_type": "hardlink", + "sha256": "b3f4ef4ef0cd2b436b336401dd529385d58533835cd0fe899e439b925dcc8e93", + "sha256_in_prefix": "b3f4ef4ef0cd2b436b336401dd529385d58533835cd0fe899e439b925dcc8e93", + "size_in_bytes": 10236 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py", + "path_type": "hardlink", + "sha256": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "sha256_in_prefix": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "size_in_bytes": 1431 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/_tokenizer.py", + "path_type": "hardlink", + "sha256": "27abf91fb273bdbfa0f35c69ff640008ac0eecbc47400ea292bc8c53bcd7c0df", + "sha256_in_prefix": "27abf91fb273bdbfa0f35c69ff640008ac0eecbc47400ea292bc8c53bcd7c0df", + "size_in_bytes": 5273 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__init__.py", + "path_type": "hardlink", + "sha256": "035d7af85538f7f0f3e35eb6338cb5b8089937846075cf3717135df048e57ea2", + "sha256_in_prefix": "035d7af85538f7f0f3e35eb6338cb5b8089937846075cf3717135df048e57ea2", + "size_in_bytes": 5727 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2edc2c6092b06a580c13963c0c13d3ebdde909e29d78a58d25cc57c9056435e6", + "sha256_in_prefix": "2edc2c6092b06a580c13963c0c13d3ebdde909e29d78a58d25cc57c9056435e6", + "size_in_bytes": 2584 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2b85dd496b783a51094818312bb54ea7853a069de08587a2d12b66923f9e92c0", + "sha256_in_prefix": "2b85dd496b783a51094818312bb54ea7853a069de08587a2d12b66923f9e92c0", + "size_in_bytes": 40944 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/licenses/_spdx.py", + "path_type": "hardlink", + "sha256": "a009b5ced3c5c25b2608a7bb94002cbff38839f4b57160eef5b34191ebbeda7b", + "sha256_in_prefix": "a009b5ced3c5c25b2608a7bb94002cbff38839f4b57160eef5b34191ebbeda7b", + "size_in_bytes": 48398 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/markers.py", + "path_type": "hardlink", + "sha256": "73cf5337307b65d198864a2f9ba3d89aa1b21f15e561568b5b9f753c750d283f", + "sha256_in_prefix": "73cf5337307b65d198864a2f9ba3d89aa1b21f15e561568b5b9f753c750d283f", + "size_in_bytes": 10561 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/metadata.py", + "path_type": "hardlink", + "sha256": "60989b33b1987b8adef3ed1adce9579864be5c38131283b8b6506ddaadb90678", + "sha256_in_prefix": "60989b33b1987b8adef3ed1adce9579864be5c38131283b8b6506ddaadb90678", + "size_in_bytes": 34762 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py", + "path_type": "hardlink", + "sha256": "818c9148075bac8c8a0d8ebaba02035108d132fc641f600b8a84e65f7b672faa", + "sha256_in_prefix": "818c9148075bac8c8a0d8ebaba02035108d132fc641f600b8a84e65f7b672faa", + "size_in_bytes": 2947 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py", + "path_type": "hardlink", + "sha256": "84653a92e09defb6cbfa6b082fac8b0a9e8c353ef94523142990ee8eedba73c5", + "sha256_in_prefix": "84653a92e09defb6cbfa6b082fac8b0a9e8c353ef94523142990ee8eedba73c5", + "size_in_bytes": 40098 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/tags.py", + "path_type": "hardlink", + "sha256": "085aab2730337365cd19ec5eac7fff4fe639230abb59bb185ec88b1112d6c58d", + "sha256_in_prefix": "085aab2730337365cd19ec5eac7fff4fe639230abb59bb185ec88b1112d6c58d", + "size_in_bytes": 21014 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/utils.py", + "path_type": "hardlink", + "sha256": "d05dc787d385b9182b8538066549792b6d85bf560fdad665d73ff680eea42620", + "sha256_in_prefix": "d05dc787d385b9182b8538066549792b6d85bf560fdad665d73ff680eea42620", + "size_in_bytes": 5050 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/packaging/version.py", + "path_type": "hardlink", + "sha256": "a221eacd352ffe9d768698e0b0b0d571a179853ee90da48e56250d303e064d6d", + "sha256_in_prefix": "a221eacd352ffe9d768698e0b0b0d571a179853ee90da48e56250d303e064d6d", + "size_in_bytes": 16688 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py", + "path_type": "hardlink", + "sha256": "8eb84345b3ae6cfef842e3d7c5ded4ecfa38d8f1f697e2d9d977dc3bb965a59e", + "sha256_in_prefix": "8eb84345b3ae6cfef842e3d7c5ded4ecfa38d8f1f697e2d9d977dc3bb965a59e", + "size_in_bytes": 124463 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9db5cea6f41f47218f44f0ae23e80d8d0168085ef74165e42daf3cfb23a62904", + "sha256_in_prefix": "9db5cea6f41f47218f44f0ae23e80d8d0168085ef74165e42daf3cfb23a62904", + "size_in_bytes": 113902 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py", + "path_type": "hardlink", + "sha256": "26e791d9c44b93163b8b08a4faa356242c0a3ab025060560719fc81d0cea18b1", + "sha256_in_prefix": "26e791d9c44b93163b8b08a4faa356242c0a3ab025060560719fc81d0cea18b1", + "size_in_bytes": 22344 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py", + "path_type": "hardlink", + "sha256": "8c127ccdbecca71e5e6dca85f37c6ba4ef7831a782a4d18755ff5cbc337624b8", + "sha256_in_prefix": "8c127ccdbecca71e5e6dca85f37c6ba4ef7831a782a4d18755ff5cbc337624b8", + "size_in_bytes": 1505 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d777c85db8a1846ee4ac2822a67b8d314cccde3ac278a692b0ef1dfc4d12467c", + "sha256_in_prefix": "d777c85db8a1846ee4ac2822a67b8d314cccde3ac278a692b0ef1dfc4d12467c", + "size_in_bytes": 15819 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8dcd271dc8985396fbbc3aa6b40a4cdafb3ce28d74192ce0f02fb9eaa47d46c6", + "sha256_in_prefix": "8dcd271dc8985396fbbc3aa6b40a4cdafb3ce28d74192ce0f02fb9eaa47d46c6", + "size_in_bytes": 1365 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "855d043cc926793083d412cb88a7022c8f4a04cdd800ef24d21ef565d84947c6", + "sha256_in_prefix": "855d043cc926793083d412cb88a7022c8f4a04cdd800ef24d21ef565d84947c6", + "size_in_bytes": 7373 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b6753585e5c8e9fb042c58f7e3127892413072bab4d7c9199a55d6b13dbd87ee", + "sha256_in_prefix": "b6753585e5c8e9fb042c58f7e3127892413072bab4d7c9199a55d6b13dbd87ee", + "size_in_bytes": 10169 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c4a5f575cddbdfce1965827eab4facf76214b76946a4902ff993be238b684a3d", + "sha256_in_prefix": "c4a5f575cddbdfce1965827eab4facf76214b76946a4902ff993be238b684a3d", + "size_in_bytes": 6487 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "40e4adf84a43dfe0aab605d0e19a3dd90be131a13b8878e6d9ad6c5a2690a459", + "sha256_in_prefix": "40e4adf84a43dfe0aab605d0e19a3dd90be131a13b8878e6d9ad6c5a2690a459", + "size_in_bytes": 10483 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a076894a89f826e9fe6d3399068c30c84f6e902c2eaf9e690fa1a31cd891d000", + "sha256_in_prefix": "a076894a89f826e9fe6d3399068c30c84f6e902c2eaf9e690fa1a31cd891d000", + "size_in_bytes": 480 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0ce195493b6b0daf4cde2a80f6a51f1b1b2a82e0b0a7202985fc2135519852e8", + "sha256_in_prefix": "0ce195493b6b0daf4cde2a80f6a51f1b1b2a82e0b0a7202985fc2135519852e8", + "size_in_bytes": 9053 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py", + "path_type": "hardlink", + "sha256": "915e682f75770d9e9664abbdc85890ba9bf5f32a7f8e5495d82847d5398f71db", + "sha256_in_prefix": "915e682f75770d9e9664abbdc85890ba9bf5f32a7f8e5495d82847d5398f71db", + "size_in_bytes": 9007 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py", + "path_type": "hardlink", + "sha256": "d9d7d40cd6c45de0e10ca6abaad479358ee852291467845986cde8cecb668414", + "sha256_in_prefix": "d9d7d40cd6c45de0e10ca6abaad479358ee852291467845986cde8cecb668414", + "size_in_bytes": 9246 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py", + "path_type": "hardlink", + "sha256": "5256f2159f11ceedf19dd0aa4041eb7ec613787c187456a9d48a33fb2c6f793e", + "sha256_in_prefix": "5256f2159f11ceedf19dd0aa4041eb7ec613787c187456a9d48a33fb2c6f793e", + "size_in_bytes": 6154 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py", + "path_type": "hardlink", + "sha256": "b913c9591c9012dbfbc8e4af53de2b526b1b968e572832c0d52cc5839e646cad", + "sha256_in_prefix": "b913c9591c9012dbfbc8e4af53de2b526b1b968e572832c0d52cc5839e646cad", + "size_in_bytes": 10393 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py", + "path_type": "hardlink", + "sha256": "a07e0a8137cae009256d3615715ff2ca7bc9f492c8de9caf0d56b2d2146c2c2b", + "sha256_in_prefix": "a07e0a8137cae009256d3615715ff2ca7bc9f492c8de9caf0d56b2d2146c2c2b", + "size_in_bytes": 411 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py", + "path_type": "hardlink", + "sha256": "205a62a21501c313ed0b39722b036dc725b8264f2169ae96f28e7d99fac35d5a", + "sha256_in_prefix": "205a62a21501c313ed0b39722b036dc725b8264f2169ae96f28e7d99fac35d5a", + "size_in_bytes": 10125 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py", + "path_type": "hardlink", + "sha256": "ecdd6889a5ae970fe70ac4d8e04122c582f3d79a56639bb8b8f005162fa27a55", + "sha256_in_prefix": "ecdd6889a5ae970fe70ac4d8e04122c582f3d79a56639bb8b8f005162fa27a55", + "size_in_bytes": 2983 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py", + "path_type": "hardlink", + "sha256": "8ac2210712e0eb99cb957ba41b856432e3df35d77b805cd367f47fcf743c7626", + "sha256_in_prefix": "8ac2210712e0eb99cb957ba41b856432e3df35d77b805cd367f47fcf743c7626", + "size_in_bytes": 353 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "81364042789ee496605e2a5f646771025c4cdc05486da3906dc8241d80d80cc5", + "sha256_in_prefix": "81364042789ee496605e2a5f646771025c4cdc05486da3906dc8241d80d80cc5", + "size_in_bytes": 2897 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0606e502ed30e56c31d4c9bdf95b5545214bb255346b0403d41fa1b4e6d07fe2", + "sha256_in_prefix": "0606e502ed30e56c31d4c9bdf95b5545214bb255346b0403d41fa1b4e6d07fe2", + "size_in_bytes": 550 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "68ea8d319544c067ac02ad3c2313d208315e26228ce30c8cb93561e63489a032", + "sha256_in_prefix": "68ea8d319544c067ac02ad3c2313d208315e26228ce30c8cb93561e63489a032", + "size_in_bytes": 15514 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b55078acf061f9b3a26f17e5dadf67c90996c53e8119b20b41563647b3e04e6a", + "sha256_in_prefix": "b55078acf061f9b3a26f17e5dadf67c90996c53e8119b20b41563647b3e04e6a", + "size_in_bytes": 1852 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f8b4cfc7b0e854279c18cd7880d1c8e5019871ab582b95c3dba574b8abede7c0", + "sha256_in_prefix": "f8b4cfc7b0e854279c18cd7880d1c8e5019871ab582b95c3dba574b8abede7c0", + "size_in_bytes": 2612 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "96575ef801fd8d21939fe71179cca1df675a5c6fea8f138c3cf16c5a2612c8ec", + "sha256_in_prefix": "96575ef801fd8d21939fe71179cca1df675a5c6fea8f138c3cf16c5a2612c8ec", + "size_in_bytes": 4063 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f2464c37ebefdf6ba4c291928f1a5de8736e809d58cf00cbcfa5b834c82cd6c7", + "sha256_in_prefix": "f2464c37ebefdf6ba4c291928f1a5de8736e809d58cf00cbcfa5b834c82cd6c7", + "size_in_bytes": 26486 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bea9fc9ec63f10f4ca0d9b6301ecdc4ec3a791ec46eeeda6f389cf6b33e5eaf3", + "sha256_in_prefix": "bea9fc9ec63f10f4ca0d9b6301ecdc4ec3a791ec46eeeda6f389cf6b33e5eaf3", + "size_in_bytes": 1155 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dda293f7961c5473dcbf83f80189725496c3a37cfaee53cb7f874be552634192", + "sha256_in_prefix": "dda293f7961c5473dcbf83f80189725496c3a37cfaee53cb7f874be552634192", + "size_in_bytes": 1911 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1bac0f058dcd0a16b67a5549db5d4587ca0ba424516430f02740556b5bb3200a", + "sha256_in_prefix": "1bac0f058dcd0a16b67a5549db5d4587ca0ba424516430f02740556b5bb3200a", + "size_in_bytes": 2918 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d906859e974e8a722d0179d469372d9117179c244743ee83f107cd5a007c7e18", + "sha256_in_prefix": "d906859e974e8a722d0179d469372d9117179c244743ee83f107cd5a007c7e18", + "size_in_bytes": 3520 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cd5a26c962771f95fef7b3c57658b17207b6f357dd040bfcc314b5ffd64403b0", + "sha256_in_prefix": "cd5a26c962771f95fef7b3c57658b17207b6f357dd040bfcc314b5ffd64403b0", + "size_in_bytes": 7729 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4f85a991f4ee8689406efb75caf547ff0056697c4aa36e2f74852979f41db989", + "sha256_in_prefix": "4f85a991f4ee8689406efb75caf547ff0056697c4aa36e2f74852979f41db989", + "size_in_bytes": 4576 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fc8a354080e71632985b9d8ab528dadf9322e0e1f8bb27c75d25bdbf2494d7bb", + "sha256_in_prefix": "fc8a354080e71632985b9d8ab528dadf9322e0e1f8bb27c75d25bdbf2494d7bb", + "size_in_bytes": 4658 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3b46bcf34fb73402fb438c1b94bb62764e9624165b163a2a639eb683c4719b3a", + "sha256_in_prefix": "3b46bcf34fb73402fb438c1b94bb62764e9624165b163a2a639eb683c4719b3a", + "size_in_bytes": 31192 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7f951fd49a4d09e33b94199f130047dd7749906fb539283560a303b7d7fe3ea8", + "sha256_in_prefix": "7f951fd49a4d09e33b94199f130047dd7749906fb539283560a303b7d7fe3ea8", + "size_in_bytes": 10024 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py", + "path_type": "hardlink", + "sha256": "2c8573980ba7964f6c449269e783b8291cbd18320de16bb5deff69f50cdf18f3", + "sha256_in_prefix": "2c8573980ba7964f6c449269e783b8291cbd18320de16bb5deff69f50cdf18f3", + "size_in_bytes": 23656 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/console.py", + "path_type": "hardlink", + "sha256": "ca13fd52c2c056658a5507f6e38e8925ec2403b0225de7937f821e8373a2d9f5", + "sha256_in_prefix": "ca13fd52c2c056658a5507f6e38e8925ec2403b0225de7937f821e8373a2d9f5", + "size_in_bytes": 1718 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/filter.py", + "path_type": "hardlink", + "sha256": "fc00cd3c2b240fcfc69a87478bafcba1580f537661df7e9a0424f970e79332cd", + "sha256_in_prefix": "fc00cd3c2b240fcfc69a87478bafcba1580f537661df7e9a0424f970e79332cd", + "size_in_bytes": 1910 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py", + "path_type": "hardlink", + "sha256": "45d79d2b629629794ac11edcbe47ebdcd523f588994203208a544c1548368cf0", + "sha256_in_prefix": "45d79d2b629629794ac11edcbe47ebdcd523f588994203208a544c1548368cf0", + "size_in_bytes": 40392 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "308ca76528726fd6e757175d14306569bd449dbc6f71a1df48e6a38491325b25", + "sha256_in_prefix": "308ca76528726fd6e757175d14306569bd449dbc6f71a1df48e6a38491325b25", + "size_in_bytes": 29584 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py", + "path_type": "hardlink", + "sha256": "8c35814e7765047d99e486191550e73f4aa7d426934234d6b7b8801ad0a72448", + "sha256_in_prefix": "8c35814e7765047d99e486191550e73f4aa7d426934234d6b7b8801ad0a72448", + "size_in_bytes": 4390 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py", + "path_type": "hardlink", + "sha256": "f0da3e354b3cac14d2481248bf8852110b76334705078870013d2c9d57364061", + "sha256_in_prefix": "f0da3e354b3cac14d2481248bf8852110b76334705078870013d2c9d57364061", + "size_in_bytes": 5385 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee489ce55e331e4863b4c1f5989447cedf4079cde6de152b9b2c77049bdfb37c", + "sha256_in_prefix": "ee489ce55e331e4863b4c1f5989447cedf4079cde6de152b9b2c77049bdfb37c", + "size_in_bytes": 4981 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b749e6a1b1fa455517ba630f066e9bf9a3eacf7d2fab04f9771d1c65ad839a62", + "sha256_in_prefix": "b749e6a1b1fa455517ba630f066e9bf9a3eacf7d2fab04f9771d1c65ad839a62", + "size_in_bytes": 3962 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "060d4a45d950d48b22230c604c2bd0474ed228862ee5de458b24fd74b168b0f4", + "sha256_in_prefix": "060d4a45d950d48b22230c604c2bd0474ed228862ee5de458b24fd74b168b0f4", + "size_in_bytes": 3057 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "66f3b75853bc5c2f4177f18c8a6d3bc81a5ff65dbe24b348c18a02c7b09ce1d8", + "sha256_in_prefix": "66f3b75853bc5c2f4177f18c8a6d3bc81a5ff65dbe24b348c18a02c7b09ce1d8", + "size_in_bytes": 4384 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "18938db16bcef7fa5cbeec0bd533ed61ba4fbde1b507e58338570f83e541157c", + "sha256_in_prefix": "18938db16bcef7fa5cbeec0bd533ed61ba4fbde1b507e58338570f83e541157c", + "size_in_bytes": 29336 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "63ac074490140c9ecbedc87a50ff7db1bd03f36f012a431efb51a4cc006776e2", + "sha256_in_prefix": "63ac074490140c9ecbedc87a50ff7db1bd03f36f012a431efb51a4cc006776e2", + "size_in_bytes": 18366 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "82a4f43d470ebcdb535ee8ca530676cc460a3c99a8100c733d508371c382d5b4", + "sha256_in_prefix": "82a4f43d470ebcdb535ee8ca530676cc460a3c99a8100c733d508371c382d5b4", + "size_in_bytes": 4060 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c0de95345e0cd5909e9f0ac1db72065f718ba6e7ff82fc34cf937de0380c9fa1", + "sha256_in_prefix": "c0de95345e0cd5909e9f0ac1db72065f718ba6e7ff82fc34cf937de0380c9fa1", + "size_in_bytes": 13854 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cf1c9e7707f715f6a1495b3f3615ff1f8c340e082f7ac01f8205a6487af2772a", + "sha256_in_prefix": "cf1c9e7707f715f6a1495b3f3615ff1f8c340e082f7ac01f8205a6487af2772a", + "size_in_bytes": 4772 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e00264ec6b5530c1e8f0a36624c3e6a127d56f64ebe0b6a4a59ce1f87d89dd3b", + "sha256_in_prefix": "e00264ec6b5530c1e8f0a36624c3e6a127d56f64ebe0b6a4a59ce1f87d89dd3b", + "size_in_bytes": 2076 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "41450d5b370681fae0ce15db080db329a5300b50b3d33e37ab1d7d67525703fb", + "sha256_in_prefix": "41450d5b370681fae0ce15db080db329a5300b50b3d33e37ab1d7d67525703fb", + "size_in_bytes": 8822 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "36e7c980ad6085cdf25a1b2bf5ef7c614e8a42c48b2e922ccb6db5ed28005d19", + "sha256_in_prefix": "36e7c980ad6085cdf25a1b2bf5ef7c614e8a42c48b2e922ccb6db5ed28005d19", + "size_in_bytes": 6281 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4a5f6fa4ecd5cfb3fe212859f626c0b4dc0f668cc01fe2a14b881fc11c6056db", + "sha256_in_prefix": "4a5f6fa4ecd5cfb3fe212859f626c0b4dc0f668cc01fe2a14b881fc11c6056db", + "size_in_bytes": 3961 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "646fa5712d9cb9609fe4640cb8d7dc13dcb70c08279c3b961af8748964fbc2c5", + "sha256_in_prefix": "646fa5712d9cb9609fe4640cb8d7dc13dcb70c08279c3b961af8748964fbc2c5", + "size_in_bytes": 9211 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py", + "path_type": "hardlink", + "sha256": "d42c37ec5b9094d69c9f144a9ad94f5f89f22e85fdfedb64a39670b1c354659e", + "sha256_in_prefix": "d42c37ec5b9094d69c9f144a9ad94f5f89f22e85fdfedb64a39670b1c354659e", + "size_in_bytes": 4176 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py", + "path_type": "hardlink", + "sha256": "dc940b238e6d72b43f91150c8ee69be82ec76f45d4b1b556aaa6d29fd70c8e42", + "sha256_in_prefix": "dc940b238e6d72b43f91150c8ee69be82ec76f45d4b1b556aaa6d29fd70c8e42", + "size_in_bytes": 3320 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py", + "path_type": "hardlink", + "sha256": "337f64d0f692499467c568ea05254f905d26bb5f95afb6e6e91b05becf8234de", + "sha256_in_prefix": "337f64d0f692499467c568ea05254f905d26bb5f95afb6e6e91b05becf8234de", + "size_in_bytes": 5106 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py", + "path_type": "hardlink", + "sha256": "484da3737602a9b312deb656f440260e501485d571279da003876295e12f0865", + "sha256_in_prefix": "484da3737602a9b312deb656f440260e501485d571279da003876295e12f0865", + "size_in_bytes": 35669 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py", + "path_type": "hardlink", + "sha256": "330038c563cb3b087a8fb61cea81f38eea923edd0cd5f879afee414c82147ec5", + "sha256_in_prefix": "330038c563cb3b087a8fb61cea81f38eea923edd0cd5f879afee414c82147ec5", + "size_in_bytes": 23287 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py", + "path_type": "hardlink", + "sha256": "769d59d25fce6c9e4d161f4c86a2c6839a6d1b986026a79d4f6564badb7dbf43", + "sha256_in_prefix": "769d59d25fce6c9e4d161f4c86a2c6839a6d1b986026a79d4f6564badb7dbf43", + "size_in_bytes": 4981 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py", + "path_type": "hardlink", + "sha256": "5cc9a1382a94283050b46e66189340158c40a6a682e69ba8e5c3263df2b7f78e", + "sha256_in_prefix": "5cc9a1382a94283050b46e66189340158c40a6a682e69ba8e5c3263df2b7f78e", + "size_in_bytes": 19306 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py", + "path_type": "hardlink", + "sha256": "e7a3cc24e9628a7fab01476744cd22d70b15d467543ddfddbd0ab4fd43df17d7", + "sha256_in_prefix": "e7a3cc24e9628a7fab01476744cd22d70b15d467543ddfddbd0ab4fd43df17d7", + "size_in_bytes": 5034 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py", + "path_type": "hardlink", + "sha256": "cb5e94d34695618105a5e09f19795805231a706e36e426dfa06f2829b29e8088", + "sha256_in_prefix": "cb5e94d34695618105a5e09f19795805231a706e36e426dfa06f2829b29e8088", + "size_in_bytes": 2218 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py", + "path_type": "hardlink", + "sha256": "653f7476670ac896e8201d2602b84bec8844e3aec65d13741bb4005201b4dd3a", + "sha256_in_prefix": "653f7476670ac896e8201d2602b84bec8844e3aec65d13741bb4005201b4dd3a", + "size_in_bytes": 11957 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py", + "path_type": "hardlink", + "sha256": "28ab22a2984fba91eec66d12a3e32c6d0116393e7820089217b8593e6c6d2971", + "sha256_in_prefix": "28ab22a2984fba91eec66d12a3e32c6d0116393e7820089217b8593e6c6d2971", + "size_in_bytes": 7174 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py", + "path_type": "hardlink", + "sha256": "0288cd1b83252aad8be88b02fd59d71eee006c70819fd3ada20eaee395efc5e2", + "sha256_in_prefix": "0288cd1b83252aad8be88b02fd59d71eee006c70819fd3ada20eaee395efc5e2", + "size_in_bytes": 4674 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py", + "path_type": "hardlink", + "sha256": "90690d515a37169c23cad2034b489fefd12e528ae8029adc5adde282b708a93d", + "sha256_in_prefix": "90690d515a37169c23cad2034b489fefd12e528ae8029adc5adde282b708a93d", + "size_in_bytes": 11753 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py", + "path_type": "hardlink", + "sha256": "4d81c3b7ffff80d5b86b14e5db3bcf65f7fe5508bc7cf68887938a45c5528d43", + "sha256_in_prefix": "4d81c3b7ffff80d5b86b14e5db3bcf65f7fe5508bc7cf68887938a45c5528d43", + "size_in_bytes": 35349 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py", + "path_type": "hardlink", + "sha256": "a48971c9026ebbfb3287d944d3cd1cabc71e55b11570aa74a2c0055397dac095", + "sha256_in_prefix": "a48971c9026ebbfb3287d944d3cd1cabc71e55b11570aa74a2c0055397dac095", + "size_in_bytes": 12115 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f4ff58efb6b7490bc973a699332091802f1848bb88ace95855afe25a07bead10", + "sha256_in_prefix": "f4ff58efb6b7490bc973a699332091802f1848bb88ace95855afe25a07bead10", + "size_in_bytes": 10023 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "49a3b9b43c42a67cc55155f55b1018ec16ac61aeb3bee7fa8937813159a606c3", + "sha256_in_prefix": "49a3b9b43c42a67cc55155f55b1018ec16ac61aeb3bee7fa8937813159a606c3", + "size_in_bytes": 64866 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5d53aee1c9a8b67b07a1fb14a5692de5bebe199b7c7f98fae560d14404084ed4", + "sha256_in_prefix": "5d53aee1c9a8b67b07a1fb14a5692de5bebe199b7c7f98fae560d14404084ed4", + "size_in_bytes": 30175 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py", + "path_type": "hardlink", + "sha256": "eb5fa1df3af5d379b4d4e4b9054abf01f5222fd608d3a55eb3d8a943b938bebe", + "sha256_in_prefix": "eb5fa1df3af5d379b4d4e4b9054abf01f5222fd608d3a55eb3d8a943b938bebe", + "size_in_bytes": 76097 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py", + "path_type": "hardlink", + "sha256": "d89fd826b3d3aff03a7c963fa8a88abf41a980fc0732b94c49ea39f6a3777dee", + "sha256_in_prefix": "d89fd826b3d3aff03a7c963fa8a88abf41a980fc0732b94c49ea39f6a3777dee", + "size_in_bytes": 53687 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py", + "path_type": "hardlink", + "sha256": "82d4586414be08a3820d71e1199a80a5ba0705a670187f20ce73773ba9eec63e", + "sha256_in_prefix": "82d4586414be08a3820d71e1199a80a5ba0705a670187f20ce73773ba9eec63e", + "size_in_bytes": 1005 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py", + "path_type": "hardlink", + "sha256": "8a8789dd07a827e510859a58f492fbbdbc6c4d5bb0c0cec10aef896fc9cdd005", + "sha256_in_prefix": "8a8789dd07a827e510859a58f492fbbdbc6c4d5bb0c0cec10aef896fc9cdd005", + "size_in_bytes": 1891 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py", + "path_type": "hardlink", + "sha256": "1e4cb8101d77ac85c41d050d930982ad8aad2259d70de84d477333b5a7d9e37c", + "sha256_in_prefix": "1e4cb8101d77ac85c41d050d930982ad8aad2259d70de84d477333b5a7d9e37c", + "size_in_bytes": 3072 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py", + "path_type": "hardlink", + "sha256": "343cb7a1f2bf7c74452b88480efc696a61bcef569ec2a72c21beac8138bb1619", + "sha256_in_prefix": "343cb7a1f2bf7c74452b88480efc696a61bcef569ec2a72c21beac8138bb1619", + "size_in_bytes": 3092 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py", + "path_type": "hardlink", + "sha256": "88ea6d24172a3863f0304276a7bd0fbf0a593c819dbdd67c771beaea4cf10e00", + "sha256_in_prefix": "88ea6d24172a3863f0304276a7bd0fbf0a593c819dbdd67c771beaea4cf10e00", + "size_in_bytes": 7981 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/style.py", + "path_type": "hardlink", + "sha256": "ad2099585a60d7f0f014c5c35349c456601c047a6e4067fd471bce3cf42f28b4", + "sha256_in_prefix": "ad2099585a60d7f0f014c5c35349c456601c047a6e4067fd471bce3cf42f28b4", + "size_in_bytes": 6420 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py", + "path_type": "hardlink", + "sha256": "a9493aff5cf92a64fc11d2456588044a61ba3ff1c917fdaf56b0c3ec74821986", + "sha256_in_prefix": "a9493aff5cf92a64fc11d2456588044a61ba3ff1c917fdaf56b0c3ec74821986", + "size_in_bytes": 2042 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fa84ef6364bcf75e1ca10c68c837a041fe9598b352b67d4db8f4e7f6e6fae57f", + "sha256_in_prefix": "fa84ef6364bcf75e1ca10c68c837a041fe9598b352b67d4db8f4e7f6e6fae57f", + "size_in_bytes": 2024 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3b4cde831946138a9c9febbe51bdfb5c9ed4f659cb3210f658d0fddf8fc60813", + "sha256_in_prefix": "3b4cde831946138a9c9febbe51bdfb5c9ed4f659cb3210f658d0fddf8fc60813", + "size_in_bytes": 3274 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/styles/_mapping.py", + "path_type": "hardlink", + "sha256": "ea5a2f154136f6dcfa12c5775d8638860a3327bab524bedc7cedd43a58274bcc", + "sha256_in_prefix": "ea5a2f154136f6dcfa12c5775d8638860a3327bab524bedc7cedd43a58274bcc", + "size_in_bytes": 3312 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/token.py", + "path_type": "hardlink", + "sha256": "a99c13ecb48fcb96016372600e3badeb8d820b2ec9750cc07e6a83f4d993e63d", + "sha256_in_prefix": "a99c13ecb48fcb96016372600e3badeb8d820b2ec9750cc07e6a83f4d993e63d", + "size_in_bytes": 6226 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py", + "path_type": "hardlink", + "sha256": "a797358be1e1a088567a6cbd094b1a37da37f68a266073715e59745dfc3ab440", + "sha256_in_prefix": "a797358be1e1a088567a6cbd094b1a37da37f68a266073715e59745dfc3ab440", + "size_in_bytes": 63208 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pygments/util.py", + "path_type": "hardlink", + "sha256": "dad8f69d2d57f7f3a972e4a37fc74e113d9b0d5661b3c70429dfee4faf85820f", + "sha256_in_prefix": "dad8f69d2d57f7f3a972e4a37fc74e113d9b0d5661b3c70429dfee4faf85820f", + "size_in_bytes": 10031 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__init__.py", + "path_type": "hardlink", + "sha256": "70f07f6bd2d7cf9c6fb116d7d68daac807632dab5925d43f2dce4c70d5fe5fb6", + "sha256_in_prefix": "70f07f6bd2d7cf9c6fb116d7d68daac807632dab5925d43f2dce4c70d5fe5fb6", + "size_in_bytes": 691 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6377693d91c2a4b31e3a6750a71b4b7c5073ac8ffc182134718d8bf2d82610ef", + "sha256_in_prefix": "6377693d91c2a4b31e3a6750a71b4b7c5073ac8ffc182134718d8bf2d82610ef", + "size_in_bytes": 662 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2ac0a8c97ebf0fdc13b67a81fdea43b27a3238160a37ab9ff75cfb9e08df8f61", + "sha256_in_prefix": "2ac0a8c97ebf0fdc13b67a81fdea43b27a3238160a37ab9ff75cfb9e08df8f61", + "size_in_bytes": 14056 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_impl.py", + "path_type": "hardlink", + "sha256": "8d8fab6b19e6c91c81e7baee022b6b25153311ec6e021193a6033282ac7aed9e", + "sha256_in_prefix": "8d8fab6b19e6c91c81e7baee022b6b25153311ec6e021193a6033282ac7aed9e", + "size_in_bytes": 14936 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py", + "path_type": "hardlink", + "sha256": "30934fa5f23170ef85821c6905bc641b5ac58907fa1ce51b5785399aad07167b", + "sha256_in_prefix": "30934fa5f23170ef85821c6905bc641b5ac58907fa1ce51b5785399aad07167b", + "size_in_bytes": 557 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4e0c7fb71742dd942f40c8930aba3b295fa4e63285e6c8fed1e0facb5f58f94e", + "sha256_in_prefix": "4e0c7fb71742dd942f40c8930aba3b295fa4e63285e6c8fed1e0facb5f58f94e", + "size_in_bytes": 786 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b27bd27d4390abcab6d302944a5bd78c0748efbf7aad7d597255636d1aa08672", + "sha256_in_prefix": "b27bd27d4390abcab6d302944a5bd78c0748efbf7aad7d597255636d1aa08672", + "size_in_bytes": 10447 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", + "path_type": "hardlink", + "sha256": "a9c5cc866c7ffcc209ab5d201875b7980e1397c772f18cc731c7309cda0a970d", + "sha256_in_prefix": "a9c5cc866c7ffcc209ab5d201875b7980e1397c772f18cc731c7309cda0a970d", + "size_in_bytes": 12216 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__init__.py", + "path_type": "hardlink", + "sha256": "1e507f1f386bcc6b5f0ff69a614c14875cd65cb67be7f6022f28adef9774573f", + "sha256_in_prefix": "1e507f1f386bcc6b5f0ff69a614c14875cd65cb67be7f6022f28adef9774573f", + "size_in_bytes": 5057 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d45d6072d96e539e9524498e4b60509f5ea22b0446a0b703daf9ecf01316f374", + "sha256_in_prefix": "d45d6072d96e539e9524498e4b60509f5ea22b0446a0b703daf9ecf01316f374", + "size_in_bytes": 3834 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cb43c2581c4422489da6a3f29c8f91b5501804b79b78b06f150ea3c2e6afdd1b", + "sha256_in_prefix": "cb43c2581c4422489da6a3f29c8f91b5501804b79b78b06f150ea3c2e6afdd1b", + "size_in_bytes": 512 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5675c01a977af9a94bcf7cc0489e1849a415b2159bdb4ca10666a70f990f8718", + "sha256_in_prefix": "5675c01a977af9a94bcf7cc0489e1849a415b2159bdb4ca10666a70f990f8718", + "size_in_bytes": 1588 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "022ae9dea7e698f788312af28b39034a44180fc4490584efaeecd2909ef3fea2", + "sha256_in_prefix": "022ae9dea7e698f788312af28b39034a44180fc4490584efaeecd2909ef3fea2", + "size_in_bytes": 22074 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee55c9569e6cb0026b0807f1464c2e96996246a7a72901e4c5b6f86b668cfd7e", + "sha256_in_prefix": "ee55c9569e6cb0026b0807f1464c2e96996246a7a72901e4c5b6f86b668cfd7e", + "size_in_bytes": 6688 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ab2c37c2eb0cf29684fd416b86a4e919a7dd07be22c9ba33d4b37fdc088b3d1e", + "sha256_in_prefix": "ab2c37c2eb0cf29684fd416b86a4e919a7dd07be22c9ba33d4b37fdc088b3d1e", + "size_in_bytes": 8084 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99df6ad77a9c54850a790744edec3f10c6dc396d07068f8b66e3418e309adf35", + "sha256_in_prefix": "99df6ad77a9c54850a790744edec3f10c6dc396d07068f8b66e3418e309adf35", + "size_in_bytes": 601 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f8d8f6682c8a170141875199e825b2bbd34d2ba6cbc39bff0a66b0dcb2c3664c", + "sha256_in_prefix": "f8d8f6682c8a170141875199e825b2bbd34d2ba6cbc39bff0a66b0dcb2c3664c", + "size_in_bytes": 1480 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "afbf0e84ead93eedd8f81d3bfb47ee7b00112e21a84bf7a4ca06fe853f9e14c5", + "sha256_in_prefix": "afbf0e84ead93eedd8f81d3bfb47ee7b00112e21a84bf7a4ca06fe853f9e14c5", + "size_in_bytes": 18683 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "918096a1687c56cb891c1bbcdc5bc660aee5fab475687d7a627b493a6b53065c", + "sha256_in_prefix": "918096a1687c56cb891c1bbcdc5bc660aee5fab475687d7a627b493a6b53065c", + "size_in_bytes": 6203 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f5f59a97b56ca3d18ba4406d7d22978a7f5b9058d03170f2a2bc6cb00330ac2f", + "sha256_in_prefix": "f5f59a97b56ca3d18ba4406d7d22978a7f5b9058d03170f2a2bc6cb00330ac2f", + "size_in_bytes": 2778 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99c60efc105dc1ff892beaea54ab30088dd1aba1744536b368320e3560197b87", + "sha256_in_prefix": "99c60efc105dc1ff892beaea54ab30088dd1aba1744536b368320e3560197b87", + "size_in_bytes": 956 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "75fab50d60101bbab89ab5256327d4212b6a7c0b53663c2a277bfcdec8279619", + "sha256_in_prefix": "75fab50d60101bbab89ab5256327d4212b6a7c0b53663c2a277bfcdec8279619", + "size_in_bytes": 24250 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3aa201d96ab6855b3a3677fd5e15e59dc3d0c27b4df96eb65813b66d0c57c742", + "sha256_in_prefix": "3aa201d96ab6855b3a3677fd5e15e59dc3d0c27b4df96eb65813b66d0c57c742", + "size_in_bytes": 702 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "61041b18cb574c44bc4df4c2205648436f83005bd2aefaf5f83186096f45c52b", + "sha256_in_prefix": "61041b18cb574c44bc4df4c2205648436f83005bd2aefaf5f83186096f45c52b", + "size_in_bytes": 19686 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8edac8d9926738f726a40f36cf361fb95ef5f5f1b9f1175415f76eb7ac59071d", + "sha256_in_prefix": "8edac8d9926738f726a40f36cf361fb95ef5f5f1b9f1175415f76eb7ac59071d", + "size_in_bytes": 4706 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c604e470ba17aeea3416a035512afc0ba87d9ba6cbfed3f3fff431c0d71f82e", + "sha256_in_prefix": "0c604e470ba17aeea3416a035512afc0ba87d9ba6cbfed3f3fff431c0d71f82e", + "size_in_bytes": 4400 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1af58ca9f37e38c5c5a007ab40c6d003d751a3d5630025d824e261039e6aee5b", + "sha256_in_prefix": "1af58ca9f37e38c5c5a007ab40c6d003d751a3d5630025d824e261039e6aee5b", + "size_in_bytes": 24600 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/__version__.py", + "path_type": "hardlink", + "sha256": "1557e09606663509e660f5e93a8843539f05e4451bffe5674936807ac4b5f3b8", + "sha256_in_prefix": "1557e09606663509e660f5e93a8843539f05e4451bffe5674936807ac4b5f3b8", + "size_in_bytes": 435 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py", + "path_type": "hardlink", + "sha256": "9cc4329abe21b37d93a95a3901b0ab99c24486f3d487bc57965bb2ab0b252e24", + "sha256_in_prefix": "9cc4329abe21b37d93a95a3901b0ab99c24486f3d487bc57965bb2ab0b252e24", + "size_in_bytes": 1495 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/adapters.py", + "path_type": "hardlink", + "sha256": "27b55e571281bdac1bb655f60c4455a34e49f415d371660b30735dd4169af9b9", + "sha256_in_prefix": "27b55e571281bdac1bb655f60c4455a34e49f415d371660b30735dd4169af9b9", + "size_in_bytes": 27607 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/api.py", + "path_type": "hardlink", + "sha256": "fd96fd39aeedcd5222cd32b016b3e30c463d7a3b66fce9d2444467003c46b10b", + "sha256_in_prefix": "fd96fd39aeedcd5222cd32b016b3e30c463d7a3b66fce9d2444467003c46b10b", + "size_in_bytes": 6449 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/auth.py", + "path_type": "hardlink", + "sha256": "905ef9b6a9cb72d67d31ffe19bd4d9223e1c4169cde6ec51cfca16b31e70991d", + "sha256_in_prefix": "905ef9b6a9cb72d67d31ffe19bd4d9223e1c4169cde6ec51cfca16b31e70991d", + "size_in_bytes": 10186 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/certs.py", + "path_type": "hardlink", + "sha256": "9070e590afdb7ae1d778c3dce63b5adb0825f2074a7945ade5fda74c356bbedf", + "sha256_in_prefix": "9070e590afdb7ae1d778c3dce63b5adb0825f2074a7945ade5fda74c356bbedf", + "size_in_bytes": 441 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/compat.py", + "path_type": "hardlink", + "sha256": "328f5ff7166979fa1df199be9fdfd2b497154e6c12ba45d1da9dc8432c955ef5", + "sha256_in_prefix": "328f5ff7166979fa1df199be9fdfd2b497154e6c12ba45d1da9dc8432c955ef5", + "size_in_bytes": 1485 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/cookies.py", + "path_type": "hardlink", + "sha256": "6cd8be8aa123e0d3d9d34fa86feac7bf392f39bccdde5129830de0ea9692dd7c", + "sha256_in_prefix": "6cd8be8aa123e0d3d9d34fa86feac7bf392f39bccdde5129830de0ea9692dd7c", + "size_in_bytes": 18590 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py", + "path_type": "hardlink", + "sha256": "0f5c2acd85a77b5992dab538ded3fd09e3751bb400cbb7aa2fda3582877a123c", + "sha256_in_prefix": "0f5c2acd85a77b5992dab538ded3fd09e3751bb400cbb7aa2fda3582877a123c", + "size_in_bytes": 4272 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/help.py", + "path_type": "hardlink", + "sha256": "85129a7fdbb41bb7ddc2ba8c1ed177a06d7a44a92d45fe8a8b0b52ab6168d7fd", + "sha256_in_prefix": "85129a7fdbb41bb7ddc2ba8c1ed177a06d7a44a92d45fe8a8b0b52ab6168d7fd", + "size_in_bytes": 3813 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/hooks.py", + "path_type": "hardlink", + "sha256": "0a2bb2b221c0dfd57951f702057148c7cdc8ac3a6ec1f37d45c4d482fdbc7ed4", + "sha256_in_prefix": "0a2bb2b221c0dfd57951f702057148c7cdc8ac3a6ec1f37d45c4d482fdbc7ed4", + "size_in_bytes": 733 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/models.py", + "path_type": "hardlink", + "sha256": "c782b80a61fe942d25d8a6fe88f7cc3787515f11c471b39a11604bfe2d3d0302", + "sha256_in_prefix": "c782b80a61fe942d25d8a6fe88f7cc3787515f11c471b39a11604bfe2d3d0302", + "size_in_bytes": 35483 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/packages.py", + "path_type": "hardlink", + "sha256": "fd94030894c9f123f79155ae9d2a81b1164d3f38f673558556a6ddaf4f29cf75", + "sha256_in_prefix": "fd94030894c9f123f79155ae9d2a81b1164d3f38f673558556a6ddaf4f29cf75", + "size_in_bytes": 1057 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/sessions.py", + "path_type": "hardlink", + "sha256": "ca44c8f145864a5b4e7c7d3b1caa25947ee44c11b0e168620556901a67244f0e", + "sha256_in_prefix": "ca44c8f145864a5b4e7c7d3b1caa25947ee44c11b0e168620556901a67244f0e", + "size_in_bytes": 30495 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py", + "path_type": "hardlink", + "sha256": "889500780db96da4ddc3ee8f7c3d1e178aa1a48343251248fb268cab1b382c42", + "sha256_in_prefix": "889500780db96da4ddc3ee8f7c3d1e178aa1a48343251248fb268cab1b382c42", + "size_in_bytes": 4322 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/structures.py", + "path_type": "hardlink", + "sha256": "f886e6855cf4e92fb968f499b94b6167afba0fd5ce8d1b935c739a6d8d38d573", + "sha256_in_prefix": "f886e6855cf4e92fb968f499b94b6167afba0fd5ce8d1b935c739a6d8d38d573", + "size_in_bytes": 2912 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/requests/utils.py", + "path_type": "hardlink", + "sha256": "2fbf6f9c56f32774852cab49c29a167b8d53a338b746566ff78a58d53148ca8c", + "sha256_in_prefix": "2fbf6f9c56f32774852cab49c29a167b8d53a338b746566ff78a58d53148ca8c", + "size_in_bytes": 33631 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py", + "path_type": "hardlink", + "sha256": "879d3d4dd11ca5be7ee382689da5377b1d93335e465412e333d08d08fc274d3b", + "sha256_in_prefix": "879d3d4dd11ca5be7ee382689da5377b1d93335e465412e333d08d08fc274d3b", + "size_in_bytes": 537 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "32e26a0878328f27b8efdf9db7dd7db70902f1f72d8d8fadc02876222e3793ad", + "sha256_in_prefix": "32e26a0878328f27b8efdf9db7dd7db70902f1f72d8d8fadc02876222e3793ad", + "size_in_bytes": 568 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4c87101fff11a57447bc75a3c1c6ac7dc54f5d4bcca707b2331ba0ff9b2220c9", + "sha256_in_prefix": "4c87101fff11a57447bc75a3c1c6ac7dc54f5d4bcca707b2331ba0ff9b2220c9", + "size_in_bytes": 6618 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a7caef157d3a07e136f8b3431e7fc7f225b030d6a7cff1d4c400719145743c77", + "sha256_in_prefix": "a7caef157d3a07e136f8b3431e7fc7f225b030d6a7cff1d4c400719145743c77", + "size_in_bytes": 2571 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "431039d09431cb04fa999bbfd86a46ee3264c2c4c2b48882a1d0925ab7b85ba3", + "sha256_in_prefix": "431039d09431cb04fa999bbfd86a46ee3264c2c4c2b48882a1d0925ab7b85ba3", + "size_in_bytes": 17399 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bdbd7f0ceaf8f0153ae6274db2854118b99ee815988216a270f3c05852d236cd", + "sha256_in_prefix": "bdbd7f0ceaf8f0153ae6274db2854118b99ee815988216a270f3c05852d236cd", + "size_in_bytes": 7227 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4cbd23defca5dcaca3c308773cb62c1c4609367582bda9e094600a708f8a1a25", + "sha256_in_prefix": "4cbd23defca5dcaca3c308773cb62c1c4609367582bda9e094600a708f8a1a25", + "size_in_bytes": 163 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2f3a14351f66b57204db149abb680d1b4446463d768226257a4ce58e796fb446", + "sha256_in_prefix": "2f3a14351f66b57204db149abb680d1b4446463d768226257a4ce58e796fb446", + "size_in_bytes": 339 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py", + "path_type": "hardlink", + "sha256": "bb2f31519f8d0c4c3dd7ab6e8145e6f0783008688c3b47fe45c767a647d77ceb", + "sha256_in_prefix": "bb2f31519f8d0c4c3dd7ab6e8145e6f0783008688c3b47fe45c767a647d77ceb", + "size_in_bytes": 156 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py", + "path_type": "hardlink", + "sha256": "7eebaf56b09eb6ee60b313c1e37111ca37cef1a45e4b7ac5407a4382222d6ece", + "sha256_in_prefix": "7eebaf56b09eb6ee60b313c1e37111ca37cef1a45e4b7ac5407a4382222d6ece", + "size_in_bytes": 5871 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py", + "path_type": "hardlink", + "sha256": "4d26d1996cd3736eb0d2082c5756f15697960c1f10348adeeadc1897b1886411", + "sha256_in_prefix": "4d26d1996cd3736eb0d2082c5756f15697960c1f10348adeeadc1897b1886411", + "size_in_bytes": 1601 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py", + "path_type": "hardlink", + "sha256": "1bcaec2d94aaeb883956622afa507b51c209d608c0c48409993178444665790d", + "sha256_in_prefix": "1bcaec2d94aaeb883956622afa507b51c209d608c0c48409993178444665790d", + "size_in_bytes": 20511 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py", + "path_type": "hardlink", + "sha256": "d3fd7f5cef33fc22e17a03f75697fd549df325c7cb9b434e1d133e8b4624cf7a", + "sha256_in_prefix": "d3fd7f5cef33fc22e17a03f75697fd549df325c7cb9b434e1d133e8b4624cf7a", + "size_in_bytes": 4963 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__init__.py", + "path_type": "hardlink", + "sha256": "751c6320bf926c5558d2adc88d232b7e00531eb9b52d90e02ceca0541c226197", + "sha256_in_prefix": "751c6320bf926c5558d2adc88d232b7e00531eb9b52d90e02ceca0541c226197", + "size_in_bytes": 6090 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__main__.py", + "path_type": "hardlink", + "sha256": "78eec2abc267ae01bccd5a1e226880b3ddaade15cd3087e9d30e6532c3bb4366", + "sha256_in_prefix": "78eec2abc267ae01bccd5a1e226880b3ddaade15cd3087e9d30e6532c3bb4366", + "size_in_bytes": 8477 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "eea24c1bbc86f4b4c1591338c10b0b1b2c3bef8305aa41ad0f673df2f625a26d", + "sha256_in_prefix": "eea24c1bbc86f4b4c1591338c10b0b1b2c3bef8305aa41ad0f673df2f625a26d", + "size_in_bytes": 6075 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5c325f0d5c79e4c811b2b94cb8144a684c2695beb4d8c88c080a36b574c2d755", + "sha256_in_prefix": "5c325f0d5c79e4c811b2b94cb8144a684c2695beb4d8c88c080a36b574c2d755", + "size_in_bytes": 7145 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8dc74cd1292b1fe44585abef1a14a9d34f69581c090701d4f38eccbb0027d45e", + "sha256_in_prefix": "8dc74cd1292b1fe44585abef1a14a9d34f69581c090701d4f38eccbb0027d45e", + "size_in_bytes": 7827 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1d2074a14c27ad278ea6512ccc3588217aa2a8d62af2b7e9bf2a9d70209924e9", + "sha256_in_prefix": "1d2074a14c27ad278ea6512ccc3588217aa2a8d62af2b7e9bf2a9d70209924e9", + "size_in_bytes": 360016 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d6307fbaf9a8da3696c188536a67c7e22a29c9d2e4849e319340f0b57b770e93", + "sha256_in_prefix": "d6307fbaf9a8da3696c188536a67c7e22a29c9d2e4849e319340f0b57b770e93", + "size_in_bytes": 1156 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6a86523e882a6f99b3b6945e1846ae45cdb60e7798fc4e6a9fe1bd75f0a43b03", + "sha256_in_prefix": "6a86523e882a6f99b3b6945e1846ae45cdb60e7798fc4e6a9fe1bd75f0a43b03", + "size_in_bytes": 2287 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "067df47a8ad90697c56fa4a59a10a2303262e6501c21073497bd66ea1f4a24ad", + "sha256_in_prefix": "067df47a8ad90697c56fa4a59a10a2303262e6501c21073497bd66ea1f4a24ad", + "size_in_bytes": 457 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "96cb17a1199473a777d649715c98580978b4f6a2a794e40fba4173718ed1bf74", + "sha256_in_prefix": "96cb17a1199473a777d649715c98580978b4f6a2a794e40fba4173718ed1bf74", + "size_in_bytes": 750 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ddc1b1b250ddce88715df0655384857d6f4b040f2f85dcac46feaa790643313f", + "sha256_in_prefix": "ddc1b1b250ddce88715df0655384857d6f4b040f2f85dcac46feaa790643313f", + "size_in_bytes": 8584 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6888944a7e427462911c1776dd379f8626538cf63d4ed59f395fa6bb167d8c2d", + "sha256_in_prefix": "6888944a7e427462911c1776dd379f8626538cf63d4ed59f395fa6bb167d8c2d", + "size_in_bytes": 2602 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f70fe5d33a18eedde6b6f412e002b26acef3bb7e88d515cad9afe01e399420ed", + "sha256_in_prefix": "f70fe5d33a18eedde6b6f412e002b26acef3bb7e88d515cad9afe01e399420ed", + "size_in_bytes": 1254 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a2d4d21991fb04dc32fc9a0e0ac9e4e99cb15de52b9d8ad9fd7a2fe8f5a3c219", + "sha256_in_prefix": "a2d4d21991fb04dc32fc9a0e0ac9e4e99cb15de52b9d8ad9fd7a2fe8f5a3c219", + "size_in_bytes": 3205 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "208ab194353eed7ea6ed4e1515ecce0b9e496a320bc90298d766908cb852659f", + "sha256_in_prefix": "208ab194353eed7ea6ed4e1515ecce0b9e496a320bc90298d766908cb852659f", + "size_in_bytes": 5059 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "da0bd7be48c28d088125c235eaf5fb2ad8721f4a7c651f5ca2945791a3a0a52c", + "sha256_in_prefix": "da0bd7be48c28d088125c235eaf5fb2ad8721f4a7c651f5ca2945791a3a0a52c", + "size_in_bytes": 602 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1a4d34e0546709e634bca3081193e6b400419c31b881b8df880da3ba37ebcfac", + "sha256_in_prefix": "1a4d34e0546709e634bca3081193e6b400419c31b881b8df880da3ba37ebcfac", + "size_in_bytes": 5119 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a7d514a491d8e1fd6adb618ecb103f6133ff2f225b0d66907eaeb65ad9cf92d1", + "sha256_in_prefix": "a7d514a491d8e1fd6adb618ecb103f6133ff2f225b0d66907eaeb65ad9cf92d1", + "size_in_bytes": 12233 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "caa0dbeb6c03677babbfee916f1490b67c46307c790a5ca586766e8208742bbb", + "sha256_in_prefix": "caa0dbeb6c03677babbfee916f1490b67c46307c790a5ca586766e8208742bbb", + "size_in_bytes": 800 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d2502aa1e3478217c8de0a26f641b55ff859d674ca704b6530972c97d5110361", + "sha256_in_prefix": "d2502aa1e3478217c8de0a26f641b55ff859d674ca704b6530972c97d5110361", + "size_in_bytes": 649 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7c353ce1454def702ecb9426efc4be3d4851fa608b8832c932b2bbf02d1ebfa0", + "sha256_in_prefix": "7c353ce1454def702ecb9426efc4be3d4851fa608b8832c932b2bbf02d1ebfa0", + "size_in_bytes": 18929 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "209f8e42b6aee791d03f8e81079415584427593c020f12910454c66b0eccc50d", + "sha256_in_prefix": "209f8e42b6aee791d03f8e81079415584427593c020f12910454c66b0eccc50d", + "size_in_bytes": 1751 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "71e33bc3c3d1483800590a6f036952e95f5da3129f30c6e189c8e9de5f97ae9f", + "sha256_in_prefix": "71e33bc3c3d1483800590a6f036952e95f5da3129f30c6e189c8e9de5f97ae9f", + "size_in_bytes": 2005 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b95948d7f43ec369bdd9c462c2faa6f10a59db68c187071b208a0db16d73b5f0", + "sha256_in_prefix": "b95948d7f43ec369bdd9c462c2faa6f10a59db68c187071b208a0db16d73b5f0", + "size_in_bytes": 2435 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ddf00e6e5ce0b81fb53de09d22c605d49038122b4477cee7c460b6b7b42a41b9", + "sha256_in_prefix": "ddf00e6e5ce0b81fb53de09d22c605d49038122b4477cee7c460b6b7b42a41b9", + "size_in_bytes": 1276 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "217772f0ca6fdf6c1a2a5edca37bdc3cf7a49ccb7ca7a995352cecfaeb4277ac", + "sha256_in_prefix": "217772f0ca6fdf6c1a2a5edca37bdc3cf7a49ccb7ca7a995352cecfaeb4277ac", + "size_in_bytes": 8008 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "641079d10f1b0ba5df66cad5186cba1e7cd92b95d10708eb53ea65423266b842", + "sha256_in_prefix": "641079d10f1b0ba5df66cad5186cba1e7cd92b95d10708eb53ea65423266b842", + "size_in_bytes": 5957 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fe96c779629651369c2984e71b1b8d56c0a90fc4936e174f8e5507eb5708030d", + "sha256_in_prefix": "fe96c779629651369c2984e71b1b8d56c0a90fc4936e174f8e5507eb5708030d", + "size_in_bytes": 2945 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "60ea45db245f67f60ec60cd7c03da57c7c8a9d838b8ae4e945f306f3815c8716", + "sha256_in_prefix": "60ea45db245f67f60ec60cd7c03da57c7c8a9d838b8ae4e945f306f3815c8716", + "size_in_bytes": 8365 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "18bda347ab6d5a75a9e05628484dc9ef2a8c5c33dbc319608c71db321c228e94", + "sha256_in_prefix": "18bda347ab6d5a75a9e05628484dc9ef2a8c5c33dbc319608c71db321c228e94", + "size_in_bytes": 4236 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7725d6988ccb26b626cd6e7ac6da9b3757241deecc37ac152fc9b50cb4249b2b", + "sha256_in_prefix": "7725d6988ccb26b626cd6e7ac6da9b3757241deecc37ac152fc9b50cb4249b2b", + "size_in_bytes": 17678 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ea4bab3852f6bc439db5381aac41310c2e08febef68d4feaabfb6119cae5fd24", + "sha256_in_prefix": "ea4bab3852f6bc439db5381aac41310c2e08febef68d4feaabfb6119cae5fd24", + "size_in_bytes": 1399 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f07c886060fff24da08bef7555d2acbce3700e310e05325ea162141a6ddbc548", + "sha256_in_prefix": "f07c886060fff24da08bef7555d2acbce3700e310e05325ea162141a6ddbc548", + "size_in_bytes": 6159 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "07b161e04583826284294ba69535155d7e8be607e5da7482b7adca90b3426643", + "sha256_in_prefix": "07b161e04583826284294ba69535155d7e8be607e5da7482b7adca90b3426643", + "size_in_bytes": 83513 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ebfe2dd85fbed41397c41fac68b6a73ca8d4be71b5898112aca830885e2e9769", + "sha256_in_prefix": "ebfe2dd85fbed41397c41fac68b6a73ca8d4be71b5898112aca830885e2e9769", + "size_in_bytes": 1716 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cd7ffde66ca177efd1704be0bd915320afb8548dc2913079f3b24fb75c57f80e", + "sha256_in_prefix": "cd7ffde66ca177efd1704be0bd915320afb8548dc2913079f3b24fb75c57f80e", + "size_in_bytes": 6453 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a5fea933b1965a6548bbd119095943f03722e3e88b97b7a80beab0688e07ab40", + "sha256_in_prefix": "a5fea933b1965a6548bbd119095943f03722e3e88b97b7a80beab0688e07ab40", + "size_in_bytes": 8121 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8c50ac62b2345ae6867054947270ad55826dea468267f5a4a55fa239e292fa5a", + "sha256_in_prefix": "8c50ac62b2345ae6867054947270ad55826dea468267f5a4a55fa239e292fa5a", + "size_in_bytes": 6259 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "57bd6f3d98afd1ba196c90982157b84605db49cbe776db85fc5682fab79226f9", + "sha256_in_prefix": "57bd6f3d98afd1ba196c90982157b84605db49cbe776db85fc5682fab79226f9", + "size_in_bytes": 1183 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b34c2d3ddab95400621881c9395ae98960b0481cfdb1a6ef475c6b5a1d9faa9e", + "sha256_in_prefix": "b34c2d3ddab95400621881c9395ae98960b0481cfdb1a6ef475c6b5a1d9faa9e", + "size_in_bytes": 3229 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8dacb0c55780f92ce5aa120dfff226e7d3feb0977b3140a7a1d55088e81831b4", + "sha256_in_prefix": "8dacb0c55780f92ce5aa120dfff226e7d3feb0977b3140a7a1d55088e81831b4", + "size_in_bytes": 1489 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ddad1f6cf5c02fab54984111970d6e1c209e697cf75b19afd1f93a71a496a008", + "sha256_in_prefix": "ddad1f6cf5c02fab54984111970d6e1c209e697cf75b19afd1f93a71a496a008", + "size_in_bytes": 2362 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f6bdfe19cd8d798f1bbee26a361aa6b968c39bb3dfff10bad1bf0ca85015924d", + "sha256_in_prefix": "f6bdfe19cd8d798f1bbee26a361aa6b968c39bb3dfff10bad1bf0ca85015924d", + "size_in_bytes": 2580 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "473e0d3883f6c6fa34797e2ed0dbff7fbe477bfe321cf12a43f900166f6c556d", + "sha256_in_prefix": "473e0d3883f6c6fa34797e2ed0dbff7fbe477bfe321cf12a43f900166f6c556d", + "size_in_bytes": 8023 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "613dea743ccb30fb0e40645d5d6c82ae5952f323305be604d25dff9cbc2d7f10", + "sha256_in_prefix": "613dea743ccb30fb0e40645d5d6c82ae5952f323305be604d25dff9cbc2d7f10", + "size_in_bytes": 4693 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8bfeae57b3968ff4ebca9b4b9d9302d30533566a8b8f17d86594f60a7f8b8207", + "sha256_in_prefix": "8bfeae57b3968ff4ebca9b4b9d9302d30533566a8b8f17d86594f60a7f8b8207", + "size_in_bytes": 3961 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c7402653f136130d85d99c93b6c092632a5c98312fc2ff321bc5f09dbaa91ee2", + "sha256_in_prefix": "c7402653f136130d85d99c93b6c092632a5c98312fc2ff321bc5f09dbaa91ee2", + "size_in_bytes": 14609 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8f5a20d3c65f524e77cce33a98144b9d40b0481358b3ee8e8960d054c465bd7a", + "sha256_in_prefix": "8f5a20d3c65f524e77cce33a98144b9d40b0481358b3ee8e8960d054c465bd7a", + "size_in_bytes": 11638 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "24e107369a423968f03447eb778eaab68b91dc0e138b7b5b2b1ac1b1dab9a81e", + "sha256_in_prefix": "24e107369a423968f03447eb778eaab68b91dc0e138b7b5b2b1ac1b1dab9a81e", + "size_in_bytes": 3364 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "626a1df01bfa50194fc3f90e6f416097efbce9bc15900aab7f9dadf3af08206f", + "sha256_in_prefix": "626a1df01bfa50194fc3f90e6f416097efbce9bc15900aab7f9dadf3af08206f", + "size_in_bytes": 10286 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0f6ef4addd786fdf45313229cd55e860c9934a61f132c9095012c41c56baf269", + "sha256_in_prefix": "0f6ef4addd786fdf45313229cd55e860c9934a61f132c9095012c41c56baf269", + "size_in_bytes": 6118 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ec0fec1f845e3dcb97a03841e4b21f3e0a4b49c4b86e4c3f12d71ba0cbd68ed9", + "sha256_in_prefix": "ec0fec1f845e3dcb97a03841e4b21f3e0a4b49c4b86e4c3f12d71ba0cbd68ed9", + "size_in_bytes": 5038 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f5ed7d3195d483ab0595ebbdff4c78e4ef04e9787a4e5f08bf2fa0ca7526e9e6", + "sha256_in_prefix": "f5ed7d3195d483ab0595ebbdff4c78e4ef04e9787a4e5f08bf2fa0ca7526e9e6", + "size_in_bytes": 4387 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "422afa85c70cf9c94cc91cb382c5c230608a84df91b9a19dbbced788b881d0a1", + "sha256_in_prefix": "422afa85c70cf9c94cc91cb382c5c230608a84df91b9a19dbbced788b881d0a1", + "size_in_bytes": 1438 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cb953e65abb866d1366abb1fc6ac58702412cdd91adcbd0934f302c42e8a7cf7", + "sha256_in_prefix": "cb953e65abb866d1366abb1fc6ac58702412cdd91adcbd0934f302c42e8a7cf7", + "size_in_bytes": 3670 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "abcaaf8293c8f971221d88accd3f4f8d5cf3def259bf0891fc4a1580199d2fa0", + "sha256_in_prefix": "abcaaf8293c8f971221d88accd3f4f8d5cf3def259bf0891fc4a1580199d2fa0", + "size_in_bytes": 7911 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6b2095708c8bc1b4355efff0fa36225870e7bce458371cae70807769cd2a0acd", + "sha256_in_prefix": "6b2095708c8bc1b4355efff0fa36225870e7bce458371cae70807769cd2a0acd", + "size_in_bytes": 27771 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "30ae7fc62f4d30a0b0ccbec2a291113fdc6efebb9d708155e6e8693a5acbb95b", + "sha256_in_prefix": "30ae7fc62f4d30a0b0ccbec2a291113fdc6efebb9d708155e6e8693a5acbb95b", + "size_in_bytes": 54501 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "441fd1f42977cc61d5a202926b93f54ffd1a62f1899677c5e3749ff64ea9c3f3", + "sha256_in_prefix": "441fd1f42977cc61d5a202926b93f54ffd1a62f1899677c5e3749ff64ea9c3f3", + "size_in_bytes": 6873 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "93dc690e78b5b8e98c2e450ec7fc80f3aa8904cedd5aaedebb8c3dc191418a39", + "sha256_in_prefix": "93dc690e78b5b8e98c2e450ec7fc80f3aa8904cedd5aaedebb8c3dc191418a39", + "size_in_bytes": 12157 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fb43d31b88eaa169c63e08976decf01474b6638a95b36a1ec791fe11b8470aec", + "sha256_in_prefix": "fb43d31b88eaa169c63e08976decf01474b6638a95b36a1ec791fe11b8470aec", + "size_in_bytes": 1314 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "da770609e01d5ccb610edf95cb0b8d7e2f16220a040150ac3ac69aa9b0fd3ad9", + "sha256_in_prefix": "da770609e01d5ccb610edf95cb0b8d7e2f16220a040150ac3ac69aa9b0fd3ad9", + "size_in_bytes": 489 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee6feacf3e9c278f294d5ad702ad8085c6f5c1977aa7a38178fce11447260625", + "sha256_in_prefix": "ee6feacf3e9c278f294d5ad702ad8085c6f5c1977aa7a38178fce11447260625", + "size_in_bytes": 4058 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "61e382e93eec6a542ea24acbe7e2459551996ca71e76c64bfdb3711375cfa1c1", + "sha256_in_prefix": "61e382e93eec6a542ea24acbe7e2459551996ca71e76c64bfdb3711375cfa1c1", + "size_in_bytes": 3905 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1a9cdac4182fd49132f3a5514ded1a41a0e7a668964598647d1845f043fbfdb8", + "sha256_in_prefix": "1a9cdac4182fd49132f3a5514ded1a41a0e7a668964598647d1845f043fbfdb8", + "size_in_bytes": 2951 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0283787a19e536fd1906086f9b66d0cf137553595181bdd396ebd24c0c53a07d", + "sha256_in_prefix": "0283787a19e536fd1906086f9b66d0cf137553595181bdd396ebd24c0c53a07d", + "size_in_bytes": 1841 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5ff54e3ef3b53e2b52bc18e4702cf36a14fc2d6b259d3e13d300c2cf34f3dcd9", + "sha256_in_prefix": "5ff54e3ef3b53e2b52bc18e4702cf36a14fc2d6b259d3e13d300c2cf34f3dcd9", + "size_in_bytes": 21175 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "904c54db510a74518c6fc4e5f5e7cec08f71980080438758c4d46bbaa09f79b7", + "sha256_in_prefix": "904c54db510a74518c6fc4e5f5e7cec08f71980080438758c4d46bbaa09f79b7", + "size_in_bytes": 4375 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "65412d1278ea3ea29b79dd914541868247aeebf14532a84f201e254c6bf28188", + "sha256_in_prefix": "65412d1278ea3ea29b79dd914541868247aeebf14532a84f201e254c6bf28188", + "size_in_bytes": 4555 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "622be15b8f46c152c2adc3ce7b27f16c5933de1b653a8876f8fd6c21e72247ec", + "sha256_in_prefix": "622be15b8f46c152c2adc3ce7b27f16c5933de1b653a8876f8fd6c21e72247ec", + "size_in_bytes": 21290 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0448aff9a45bcfb765c708da1beb39f039320d09d911d951c356a034e274a3aa", + "sha256_in_prefix": "0448aff9a45bcfb765c708da1beb39f039320d09d911d951c356a034e274a3aa", + "size_in_bytes": 1725 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fcbcc9820469c4bafe12252f468d46ee05dbd32c841240edf5bcfe8b5de97036", + "sha256_in_prefix": "fcbcc9820469c4bafe12252f468d46ee05dbd32c841240edf5bcfe8b5de97036", + "size_in_bytes": 26128 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9decf066b78e8e3715906b3eeb50d93fd5c9b954723744d66bb2f90f61bf85e9", + "sha256_in_prefix": "9decf066b78e8e3715906b3eeb50d93fd5c9b954723744d66bb2f90f61bf85e9", + "size_in_bytes": 30148 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "31aef49702f1d6214d56c7e9354fac061a6feb726a982cf1a1721bad9d48522d", + "sha256_in_prefix": "31aef49702f1d6214d56c7e9354fac061a6feb726a982cf1a1721bad9d48522d", + "size_in_bytes": 2978 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9a65779b1b01f38399af76e7db42be7427fc5decfc846b3674b269fa580e7aeb", + "sha256_in_prefix": "9a65779b1b01f38399af76e7db42be7427fc5decfc846b3674b269fa580e7aeb", + "size_in_bytes": 41741 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6771df8acc2a73ce0ef419933010c5ca744336d45eb45cc5581a02b091fa7017", + "sha256_in_prefix": "6771df8acc2a73ce0ef419933010c5ca744336d45eb45cc5581a02b091fa7017", + "size_in_bytes": 4794 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1230dcc8ff600bca2925ad6d7b5aa900c42f3ee253f94f1ee5107f49a903768e", + "sha256_in_prefix": "1230dcc8ff600bca2925ad6d7b5aa900c42f3ee253f94f1ee5107f49a903768e", + "size_in_bytes": 255 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6e29c6f437c467afb83f909c51f4b3d57fb0ed1a7e5a283d190ab4dc67713866", + "sha256_in_prefix": "6e29c6f437c467afb83f909c51f4b3d57fb0ed1a7e5a283d190ab4dc67713866", + "size_in_bytes": 22615 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6dc1f96c114ea638b9454866125bdc04cfe8996e7ec45a96653187559a1bc2e3", + "sha256_in_prefix": "6dc1f96c114ea638b9454866125bdc04cfe8996e7ec45a96653187559a1bc2e3", + "size_in_bytes": 7603 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py", + "path_type": "hardlink", + "sha256": "7db99ec9eb447478f313f571da5d6e2bbb673ce84cb365f59497cedefb0a0e90", + "sha256_in_prefix": "7db99ec9eb447478f313f571da5d6e2bbb673ce84cb365f59497cedefb0a0e90", + "size_in_bytes": 10209 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py", + "path_type": "hardlink", + "sha256": "86ed552fd9db55da6926b5688a356c85195c4517bfbf7763bb7326776b0a65d6", + "sha256_in_prefix": "86ed552fd9db55da6926b5688a356c85195c4517bfbf7763bb7326776b0a65d6", + "size_in_bytes": 140235 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py", + "path_type": "hardlink", + "sha256": "9fe91c7adb04531d99526850adf78c35cfad79e1a1a6e490e45f153c1b32bc3a", + "sha256_in_prefix": "9fe91c7adb04531d99526850adf78c35cfad79e1a1a6e490e45f153c1b32bc3a", + "size_in_bytes": 1064 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_export_format.py", + "path_type": "hardlink", + "sha256": "448d3ca52ae6e6d052ccf32f9db4ea6c3f5621a95a3a837977833545398bab56", + "sha256_in_prefix": "448d3ca52ae6e6d052ccf32f9db4ea6c3f5621a95a3a837977833545398bab56", + "size_in_bytes": 2128 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_extension.py", + "path_type": "hardlink", + "sha256": "5ede3b41a7022b062bbb38c38be80e06aef6e0945e0e3f429bdc548b97ebfb7e", + "sha256_in_prefix": "5ede3b41a7022b062bbb38c38be80e06aef6e0945e0e3f429bdc548b97ebfb7e", + "size_in_bytes": 265 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py", + "path_type": "hardlink", + "sha256": "1d66713f90b66a331b1ebcaf01066c79f9557d0a06cec28e1f3286b0b0fcca74", + "sha256_in_prefix": "1d66713f90b66a331b1ebcaf01066c79f9557d0a06cec28e1f3286b0b0fcca74", + "size_in_bytes": 799 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py", + "path_type": "hardlink", + "sha256": "40cd399441671684da16aa676f1fb304423a93ca082ab0f772f8c43903612a28", + "sha256_in_prefix": "40cd399441671684da16aa676f1fb304423a93ca082ab0f772f8c43903612a28", + "size_in_bytes": 9655 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py", + "path_type": "hardlink", + "sha256": "d41c88d0f035669c5963708624e2b9e218e5ab85fe073fdba088c8a8277c2a7b", + "sha256_in_prefix": "d41c88d0f035669c5963708624e2b9e218e5ab85fe073fdba088c8a8277c2a7b", + "size_in_bytes": 3225 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_loop.py", + "path_type": "hardlink", + "sha256": "855ffa08b7683e6d2f6b6d96a70e332aa334458b33dd36715e3d0fa12fbd7834", + "sha256_in_prefix": "855ffa08b7683e6d2f6b6d96a70e332aa334458b33dd36715e3d0fa12fbd7834", + "size_in_bytes": 1236 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_null_file.py", + "path_type": "hardlink", + "sha256": "00318aa75cadfa4ef414c295ead9ea0aa79c07ead2273a7e590b03ecb3cbfa48", + "sha256_in_prefix": "00318aa75cadfa4ef414c295ead9ea0aa79c07ead2273a7e590b03ecb3cbfa48", + "size_in_bytes": 1394 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py", + "path_type": "hardlink", + "sha256": "71d7afd4940a67426f960b95f62a478339d3767be52335050c16f422dd8fce32", + "sha256_in_prefix": "71d7afd4940a67426f960b95f62a478339d3767be52335050c16f422dd8fce32", + "size_in_bytes": 7063 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_pick.py", + "path_type": "hardlink", + "sha256": "7af0edf10378945e428b0ad421794e2429ed8ad0423ac23764b3c42005512c95", + "sha256_in_prefix": "7af0edf10378945e428b0ad421794e2429ed8ad0423ac23764b3c42005512c95", + "size_in_bytes": 423 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py", + "path_type": "hardlink", + "sha256": "66de7c6a9b3323a84001c5cfa607562a9bb7737d5405679b39e47899bca9b6f5", + "sha256_in_prefix": "66de7c6a9b3323a84001c5cfa607562a9bb7737d5405679b39e47899bca9b6f5", + "size_in_bytes": 5471 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py", + "path_type": "hardlink", + "sha256": "536af5fe0ff5cd28ec8e251d00449cda200c7378b8ae2fd2f0f60fea4439cf52", + "sha256_in_prefix": "536af5fe0ff5cd28ec8e251d00449cda200c7378b8ae2fd2f0f60fea4439cf52", + "size_in_bytes": 19919 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_stack.py", + "path_type": "hardlink", + "sha256": "f82f0e2bbaf19f7b0851d570c59041a5e1e12335f4788f9533731e9987da5e6d", + "sha256_in_prefix": "f82f0e2bbaf19f7b0851d570c59041a5e1e12335f4788f9533731e9987da5e6d", + "size_in_bytes": 351 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_timer.py", + "path_type": "hardlink", + "sha256": "cde9716d3ea83c566736bc163e973592d51e013f957387ee15c4592d018bb4c2", + "sha256_in_prefix": "cde9716d3ea83c566736bc163e973592d51e013f957387ee15c4592d018bb4c2", + "size_in_bytes": 417 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_win32_console.py", + "path_type": "hardlink", + "sha256": "05268344833004b2139ff9b499344b3ea304e6afaab8675232e60ca587982707", + "sha256_in_prefix": "05268344833004b2139ff9b499344b3ea304e6afaab8675232e60ca587982707", + "size_in_bytes": 22755 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_windows.py", + "path_type": "hardlink", + "sha256": "681c1a0ff4b9e926e0a2922f6b2566a64d18dbcbb06360b905a6f5c25dc1a7e2", + "sha256_in_prefix": "681c1a0ff4b9e926e0a2922f6b2566a64d18dbcbb06360b905a6f5c25dc1a7e2", + "size_in_bytes": 1925 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_windows_renderer.py", + "path_type": "hardlink", + "sha256": "b7be192f7c6e0c23f79e64e9f691f52f92e223671a909b9045095e1c225eae59", + "sha256_in_prefix": "b7be192f7c6e0c23f79e64e9f691f52f92e223671a909b9045095e1c225eae59", + "size_in_bytes": 2783 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py", + "path_type": "hardlink", + "sha256": "1654aca26e445f42d5900dca5b2df8c879c27cbb6a5fe6487a95ca87eef4ae97", + "sha256_in_prefix": "1654aca26e445f42d5900dca5b2df8c879c27cbb6a5fe6487a95ca87eef4ae97", + "size_in_bytes": 3404 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/abc.py", + "path_type": "hardlink", + "sha256": "38df84f99a924a1799f3c56b297d8cdcf5e915b18451464f31afc07f497ee1fd", + "sha256_in_prefix": "38df84f99a924a1799f3c56b297d8cdcf5e915b18451464f31afc07f497ee1fd", + "size_in_bytes": 890 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/align.py", + "path_type": "hardlink", + "sha256": "461fb769d9c368dd40a34ec48d1d8f86013ad8f18b3e03bc48cc09064bb5bab4", + "sha256_in_prefix": "461fb769d9c368dd40a34ec48d1d8f86013ad8f18b3e03bc48cc09064bb5bab4", + "size_in_bytes": 10469 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/ansi.py", + "path_type": "hardlink", + "sha256": "02fb352c76d275cc8ebc339da442d952850b7018987b063be9e341a7ab85061b", + "sha256_in_prefix": "02fb352c76d275cc8ebc339da442d952850b7018987b063be9e341a7ab85061b", + "size_in_bytes": 6921 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/bar.py", + "path_type": "hardlink", + "sha256": "95d6d51cecca24e9df95536ebf5c52ee0e9d2d7d84df03275e474f6e9cc94dcb", + "sha256_in_prefix": "95d6d51cecca24e9df95536ebf5c52ee0e9d2d7d84df03275e474f6e9cc94dcb", + "size_in_bytes": 3263 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/box.py", + "path_type": "hardlink", + "sha256": "9ebe5f608520841fe250212aeb2d19dcb9424fc8053c3af337dbb6927eed265e", + "sha256_in_prefix": "9ebe5f608520841fe250212aeb2d19dcb9424fc8053c3af337dbb6927eed265e", + "size_in_bytes": 10831 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/cells.py", + "path_type": "hardlink", + "sha256": "2ab4248f9f8b821082a492d23502320198e775ce1b9c4a8e1268b962e67d5026", + "sha256_in_prefix": "2ab4248f9f8b821082a492d23502320198e775ce1b9c4a8e1268b962e67d5026", + "size_in_bytes": 5130 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/color.py", + "path_type": "hardlink", + "sha256": "dc74942d50e3eea4245d47455afefc24e8926737f2e72d6791c6219dadbde95d", + "sha256_in_prefix": "dc74942d50e3eea4245d47455afefc24e8926737f2e72d6791c6219dadbde95d", + "size_in_bytes": 18211 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py", + "path_type": "hardlink", + "sha256": "de585091d25bbd63e82c33be0276089805a626f579765818342559f7b39168de", + "sha256_in_prefix": "de585091d25bbd63e82c33be0276089805a626f579765818342559f7b39168de", + "size_in_bytes": 1054 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/columns.py", + "path_type": "hardlink", + "sha256": "1d45f429c326f5db0a362d757d36e233f876883b65f3248269573195a944ceaf", + "sha256_in_prefix": "1d45f429c326f5db0a362d757d36e233f876883b65f3248269573195a944ceaf", + "size_in_bytes": 7131 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/console.py", + "path_type": "hardlink", + "sha256": "9ca8eb131ffbc72f0a1a60d54fe060348234479866d5c7b18401c3c1dc0d56a8", + "sha256_in_prefix": "9ca8eb131ffbc72f0a1a60d54fe060348234479866d5c7b18401c3c1dc0d56a8", + "size_in_bytes": 100156 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/constrain.py", + "path_type": "hardlink", + "sha256": "d5520fb82f0082d296adc9dc42b8c1758a80dc9556cacbba8d9a35aeb87b73b4", + "sha256_in_prefix": "d5520fb82f0082d296adc9dc42b8c1758a80dc9556cacbba8d9a35aeb87b73b4", + "size_in_bytes": 1288 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/containers.py", + "path_type": "hardlink", + "sha256": "73fe7a4f171e74662a0dea4704c4ee65d5088a38ad010827a31f9075ed19d6aa", + "sha256_in_prefix": "73fe7a4f171e74662a0dea4704c4ee65d5088a38ad010827a31f9075ed19d6aa", + "size_in_bytes": 5502 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/control.py", + "path_type": "hardlink", + "sha256": "0d29074d440ba2b7d211100a13fa1300450579f667669e1b41be2af2b1db2b0b", + "sha256_in_prefix": "0d29074d440ba2b7d211100a13fa1300450579f667669e1b41be2af2b1db2b0b", + "size_in_bytes": 6630 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py", + "path_type": "hardlink", + "sha256": "759c606920fd554cbb49741284edf768b622016b290abdac0906455ff24ad63e", + "sha256_in_prefix": "759c606920fd554cbb49741284edf768b622016b290abdac0906455ff24ad63e", + "size_in_bytes": 8159 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py", + "path_type": "hardlink", + "sha256": "6a7eaea2ec2128f025bd0858a4d3691aaf44272b1f3083afbc26cede84a8476e", + "sha256_in_prefix": "6a7eaea2ec2128f025bd0858a4d3691aaf44272b1f3083afbc26cede84a8476e", + "size_in_bytes": 972 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/emoji.py", + "path_type": "hardlink", + "sha256": "a264c5f5ab1a027b0ce322d8f78791ffd7604514a6d651d4b335f6d03d726024", + "sha256_in_prefix": "a264c5f5ab1a027b0ce322d8f78791ffd7604514a6d651d4b335f6d03d726024", + "size_in_bytes": 2501 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/errors.py", + "path_type": "hardlink", + "sha256": "e693f729ce5de1027f734285b31adfca18e23d57bb275ccea9215b140cdc57e6", + "sha256_in_prefix": "e693f729ce5de1027f734285b31adfca18e23d57bb275ccea9215b140cdc57e6", + "size_in_bytes": 642 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py", + "path_type": "hardlink", + "sha256": "4e5f531cc0d9f8f9395a6f2c23580683f5390e1bac9b10fe159d1f51b714d16d", + "sha256_in_prefix": "4e5f531cc0d9f8f9395a6f2c23580683f5390e1bac9b10fe159d1f51b714d16d", + "size_in_bytes": 1683 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/filesize.py", + "path_type": "hardlink", + "sha256": "fe2cfd948a5182f5bb30d49e0999cb83e1f0cdb3f81844e0e78dd6a83f1216cd", + "sha256_in_prefix": "fe2cfd948a5182f5bb30d49e0999cb83e1f0cdb3f81844e0e78dd6a83f1216cd", + "size_in_bytes": 2484 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py", + "path_type": "hardlink", + "sha256": "1bfb27fbc0ca8ccd6c1232c6fe8738a2f9169a25295af8fc6d78b4c9e7762e76", + "sha256_in_prefix": "1bfb27fbc0ca8ccd6c1232c6fe8738a2f9169a25295af8fc6d78b4c9e7762e76", + "size_in_bytes": 9586 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/json.py", + "path_type": "hardlink", + "sha256": "bd512829d6b0a094630056b23f05e43013cbcbb4524ecf9fe38c124034769c9d", + "sha256_in_prefix": "bd512829d6b0a094630056b23f05e43013cbcbb4524ecf9fe38c124034769c9d", + "size_in_bytes": 5031 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py", + "path_type": "hardlink", + "sha256": "432a0aa04ffc21d09baed8921e9f53b1348dc931d8d053b9c2113b8ce4ddf541", + "sha256_in_prefix": "432a0aa04ffc21d09baed8921e9f53b1348dc931d8d053b9c2113b8ce4ddf541", + "size_in_bytes": 3252 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/layout.py", + "path_type": "hardlink", + "sha256": "6a3912140b4456ff44153705b3ec38b997dfb7b9c45e13732fb655760ad3e6b2", + "sha256_in_prefix": "6a3912140b4456ff44153705b3ec38b997dfb7b9c45e13732fb655760ad3e6b2", + "size_in_bytes": 14004 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/live.py", + "path_type": "hardlink", + "sha256": "0e1cc03c49e34f142eabdff4636c61d8c53041c3ff6863e47a72df2844ec9703", + "sha256_in_prefix": "0e1cc03c49e34f142eabdff4636c61d8c53041c3ff6863e47a72df2844ec9703", + "size_in_bytes": 14270 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/live_render.py", + "path_type": "hardlink", + "sha256": "cc9b41e3bd631b3881b44c31739e31d76c0442d1f806e42bd5203cbfd914f36c", + "sha256_in_prefix": "cc9b41e3bd631b3881b44c31739e31d76c0442d1f806e42bd5203cbfd914f36c", + "size_in_bytes": 3666 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/logging.py", + "path_type": "hardlink", + "sha256": "660a4a30c058fc1b8c008fc1633a3e52d5da93ab79a07f552bc9bd4362e6d1fe", + "sha256_in_prefix": "660a4a30c058fc1b8c008fc1633a3e52d5da93ab79a07f552bc9bd4362e6d1fe", + "size_in_bytes": 12458 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/markup.py", + "path_type": "hardlink", + "sha256": "ddeb8628fe6ce353424306928d39c9c6eb398993078f1a483345ba7c2c6b6b7f", + "sha256_in_prefix": "ddeb8628fe6ce353424306928d39c9c6eb398993078f1a483345ba7c2c6b6b7f", + "size_in_bytes": 8451 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/measure.py", + "path_type": "hardlink", + "sha256": "1e6ac8257f2c5914c76e087c33111acbff37564a8d5bfef4b3c68a3f965c608f", + "sha256_in_prefix": "1e6ac8257f2c5914c76e087c33111acbff37564a8d5bfef4b3c68a3f965c608f", + "size_in_bytes": 5305 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/padding.py", + "path_type": "hardlink", + "sha256": "295108ded3b0a3db202b560d4ae1fffccd7f8d45a62d9c11555fca98eb55cf23", + "sha256_in_prefix": "295108ded3b0a3db202b560d4ae1fffccd7f8d45a62d9c11555fca98eb55cf23", + "size_in_bytes": 4908 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/pager.py", + "path_type": "hardlink", + "sha256": "48efc44c114a6e0de7fc080ecd79b8d52bf7e98c57032237fd1f8a398dbfb927", + "sha256_in_prefix": "48efc44c114a6e0de7fc080ecd79b8d52bf7e98c57032237fd1f8a398dbfb927", + "size_in_bytes": 828 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/palette.py", + "path_type": "hardlink", + "sha256": "9489ef4753830d3d9fdd464c7cbd60aeaedd63fa4374a1f0e1b75480e19a3386", + "sha256_in_prefix": "9489ef4753830d3d9fdd464c7cbd60aeaedd63fa4374a1f0e1b75480e19a3386", + "size_in_bytes": 3396 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/panel.py", + "path_type": "hardlink", + "sha256": "7c544772f897bd6864dd5df3c796709ac6ff44bf4a2777ac0feb14d0d604572c", + "sha256_in_prefix": "7c544772f897bd6864dd5df3c796709ac6ff44bf4a2777ac0feb14d0d604572c", + "size_in_bytes": 11235 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/pretty.py", + "path_type": "hardlink", + "sha256": "832dd2ef6bb8151836cada28ecdd590d60c8bc1e2e9dbcdde625067609bef1f7", + "sha256_in_prefix": "832dd2ef6bb8151836cada28ecdd590d60c8bc1e2e9dbcdde625067609bef1f7", + "size_in_bytes": 36391 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/progress.py", + "path_type": "hardlink", + "sha256": "32d9828d3939cd853f5ed447c511d30041c6ea117d3de17b10c59b10f95e202d", + "sha256_in_prefix": "32d9828d3939cd853f5ed447c511d30041c6ea117d3de17b10c59b10f95e202d", + "size_in_bytes": 60357 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py", + "path_type": "hardlink", + "sha256": "9994cfa4953071f71d8100934f3de4c98f9f73bf5d74bc2dc7a1a18717e8d3ae", + "sha256_in_prefix": "9994cfa4953071f71d8100934f3de4c98f9f73bf5d74bc2dc7a1a18717e8d3ae", + "size_in_bytes": 8162 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/prompt.py", + "path_type": "hardlink", + "sha256": "974461414fb45154d5f5ed3cc56d416c88f426ad885f20a15f8942d2514dcede", + "sha256_in_prefix": "974461414fb45154d5f5ed3cc56d416c88f426ad885f20a15f8942d2514dcede", + "size_in_bytes": 12447 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/protocol.py", + "path_type": "hardlink", + "sha256": "e611c70c3347724764f22587e7311b8becee215485e616d4da3228e3b47b9531", + "sha256_in_prefix": "e611c70c3347724764f22587e7311b8becee215485e616d4da3228e3b47b9531", + "size_in_bytes": 1391 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/region.py", + "path_type": "hardlink", + "sha256": "acd4fdc59ad56536085d90b43589f8d42250c1835b47e29e70f3b14e042f07c6", + "sha256_in_prefix": "acd4fdc59ad56536085d90b43589f8d42250c1835b47e29e70f3b14e042f07c6", + "size_in_bytes": 166 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/repr.py", + "path_type": "hardlink", + "sha256": "e4c64966638d802ea4b9df905befe6d68917c0bd9a47abbacbea54714089cf6f", + "sha256_in_prefix": "e4c64966638d802ea4b9df905befe6d68917c0bd9a47abbacbea54714089cf6f", + "size_in_bytes": 4431 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/rule.py", + "path_type": "hardlink", + "sha256": "d1f35a4bf68445add43117374f958ca4dfecba6b43c5f6a8af6cb7a1fd5fb419", + "sha256_in_prefix": "d1f35a4bf68445add43117374f958ca4dfecba6b43c5f6a8af6cb7a1fd5fb419", + "size_in_bytes": 4602 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/scope.py", + "path_type": "hardlink", + "sha256": "4cc514f2aa35eed872a9008faa30cb62983f514d64e6a55df96c2226f9c955ab", + "sha256_in_prefix": "4cc514f2aa35eed872a9008faa30cb62983f514d64e6a55df96c2226f9c955ab", + "size_in_bytes": 2843 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/screen.py", + "path_type": "hardlink", + "sha256": "628791784494871ef882ba9bd264926fd960861cac5a6147621b1b3154235cef", + "sha256_in_prefix": "628791784494871ef882ba9bd264926fd960861cac5a6147621b1b3154235cef", + "size_in_bytes": 1591 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/segment.py", + "path_type": "hardlink", + "sha256": "a2d9ca78a18457e591950568b1f2557850dc0f100a1e9bc9fe12f34aee65ba63", + "sha256_in_prefix": "a2d9ca78a18457e591950568b1f2557850dc0f100a1e9bc9fe12f34aee65ba63", + "size_in_bytes": 24743 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/spinner.py", + "path_type": "hardlink", + "sha256": "3d3e6a8173c6dd9a6a463ee7dc4650e8d5b9ea6c7795d66a64253b804332664e", + "sha256_in_prefix": "3d3e6a8173c6dd9a6a463ee7dc4650e8d5b9ea6c7795d66a64253b804332664e", + "size_in_bytes": 4364 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/status.py", + "path_type": "hardlink", + "sha256": "9243e987761e019068f97fb8c0fa7c813a99c94e3ae8d2f06410383d94d37b0a", + "sha256_in_prefix": "9243e987761e019068f97fb8c0fa7c813a99c94e3ae8d2f06410383d94d37b0a", + "size_in_bytes": 4424 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/style.py", + "path_type": "hardlink", + "sha256": "692a1435b5607cfd4f02776e02a81b6e5e00310cbaebcaacd92d45130af73aab", + "sha256_in_prefix": "692a1435b5607cfd4f02776e02a81b6e5e00310cbaebcaacd92d45130af73aab", + "size_in_bytes": 27067 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/styled.py", + "path_type": "hardlink", + "sha256": "799367cc6ac8e248bfe78a606373a3d13fb1de5c5d5d3621e3faf20c1db8c015", + "sha256_in_prefix": "799367cc6ac8e248bfe78a606373a3d13fb1de5c5d5d3621e3faf20c1db8c015", + "size_in_bytes": 1258 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/syntax.py", + "path_type": "hardlink", + "sha256": "aaa0271146782b9ecfa3cd7fe510719ecb94e0a47349dbc33c084ac3c99aff71", + "sha256_in_prefix": "aaa0271146782b9ecfa3cd7fe510719ecb94e0a47349dbc33c084ac3c99aff71", + "size_in_bytes": 35763 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/table.py", + "path_type": "hardlink", + "sha256": "c97614af462c3e91b8eba379d07080c366e96f9654baecdd73e1bae9993ea137", + "sha256_in_prefix": "c97614af462c3e91b8eba379d07080c366e96f9654baecdd73e1bae9993ea137", + "size_in_bytes": 40103 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py", + "path_type": "hardlink", + "sha256": "d63e7eb9f25f9ef940a3942c8bf0026625c39b0317cea826141c8e6d3f7ec896", + "sha256_in_prefix": "d63e7eb9f25f9ef940a3942c8bf0026625c39b0317cea826141c8e6d3f7ec896", + "size_in_bytes": 3370 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/text.py", + "path_type": "hardlink", + "sha256": "00eec93c2cfafa068dd6d8552d73019ed1260cf55816014d1b5a0ceb5fec6a75", + "sha256_in_prefix": "00eec93c2cfafa068dd6d8552d73019ed1260cf55816014d1b5a0ceb5fec6a75", + "size_in_bytes": 47552 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/theme.py", + "path_type": "hardlink", + "sha256": "a0dca15e119a82d0e56c3c9eded56eddeb16396934bcd92ec45c3efee9e568ad", + "sha256_in_prefix": "a0dca15e119a82d0e56c3c9eded56eddeb16396934bcd92ec45c3efee9e568ad", + "size_in_bytes": 3771 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/themes.py", + "path_type": "hardlink", + "sha256": "d318132e8cdf69b79b62d709b43742e50917e4855411abe2a83509261e185459", + "sha256_in_prefix": "d318132e8cdf69b79b62d709b43742e50917e4855411abe2a83509261e185459", + "size_in_bytes": 102 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/traceback.py", + "path_type": "hardlink", + "sha256": "cfc52837b35b4d0296e980c3515c0e87b17cb2765fea0627516b4eacab0b135c", + "sha256_in_prefix": "cfc52837b35b4d0296e980c3515c0e87b17cb2765fea0627516b4eacab0b135c", + "size_in_bytes": 31797 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/rich/tree.py", + "path_type": "hardlink", + "sha256": "c969d0eab02f446277a991aa06bc52d925b64ca05336b3f449d63c4313853eec", + "sha256_in_prefix": "c969d0eab02f446277a991aa06bc52d925b64ca05336b3f449d63c4313853eec", + "size_in_bytes": 9451 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py", + "path_type": "hardlink", + "sha256": "3e1370fdec8b81d9fb31c27a9eb00df32226ddd5c2ef9bebd6c546555c034a90", + "sha256_in_prefix": "3e1370fdec8b81d9fb31c27a9eb00df32226ddd5c2ef9bebd6c546555c034a90", + "size_in_bytes": 314 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3bd5857e68cf488f2db7914876a9ae6ac046b0013cb39849d8f313bbb3c32b0d", + "sha256_in_prefix": "3bd5857e68cf488f2db7914876a9ae6ac046b0013cb39849d8f313bbb3c32b0d", + "size_in_bytes": 287 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "872c66a6d1dab259a4b61edcf438312674aaf54c11d2253913b6763877a89d1a", + "sha256_in_prefix": "872c66a6d1dab259a4b61edcf438312674aaf54c11d2253913b6763877a89d1a", + "size_in_bytes": 18561 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "58beb922d7318d9fc17a9239e91e54918aecec251cbfd140b36a5a16d57f8ee1", + "sha256_in_prefix": "58beb922d7318d9fc17a9239e91e54918aecec251cbfd140b36a5a16d57f8ee1", + "size_in_bytes": 2957 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6f62223517e8f7698d4f860a7b35b803cdfa0bd3af20f3fd75309dce08643551", + "sha256_in_prefix": "6f62223517e8f7698d4f860a7b35b803cdfa0bd3af20f3fd75309dce08643551", + "size_in_bytes": 287 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py", + "path_type": "hardlink", + "sha256": "f70f0b1b48c1edfc26659581d2f5576de7a30c7725e00348271076b1c1270e50", + "sha256_in_prefix": "f70f0b1b48c1edfc26659581d2f5576de7a30c7725e00348271076b1c1270e50", + "size_in_bytes": 25591 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/_re.py", + "path_type": "hardlink", + "sha256": "b21e2c0434603bde0a259c0d22b81d73257fa906acb79d18bf3380506a510ca0", + "sha256_in_prefix": "b21e2c0434603bde0a259c0d22b81d73257fa906acb79d18bf3380506a510ca0", + "size_in_bytes": 3171 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/_types.py", + "path_type": "hardlink", + "sha256": "f864c6d9552a929c7032ace654ee05ef26ca75d21b027b801d77e65907138b74", + "sha256_in_prefix": "f864c6d9552a929c7032ace654ee05ef26ca75d21b027b801d77e65907138b74", + "size_in_bytes": 254 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/tomli/py.typed", + "path_type": "hardlink", + "sha256": "f0f8f2675695a10a5156fb7bd66bafbaae6a13e8d315990af862c792175e6e67", + "sha256_in_prefix": "f0f8f2675695a10a5156fb7bd66bafbaae6a13e8d315990af862c792175e6e67", + "size_in_bytes": 26 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__init__.py", + "path_type": "hardlink", + "sha256": "5880decb35a6ec4557e38837e78336e6fa515db798d65b0f1fa12650951cab8a", + "sha256_in_prefix": "5880decb35a6ec4557e38837e78336e6fa515db798d65b0f1fa12650951cab8a", + "size_in_bytes": 1264 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "aad7cc564387dbeab52f2f09b076e0d939f3c1c4311884204be9a96d0acced85", + "sha256_in_prefix": "aad7cc564387dbeab52f2f09b076e0d939f3c1c4311884204be9a96d0acced85", + "size_in_bytes": 931 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f313be2fecde579298283ab3aa4a13609ed61637f93b97ffc9376976b492171c", + "sha256_in_prefix": "f313be2fecde579298283ab3aa4a13609ed61637f93b97ffc9376976b492171c", + "size_in_bytes": 10364 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "37634c12857d9f09bf0ea2786598ce1452b3b19c0f22fe8910ab6e8c850bb4c6", + "sha256_in_prefix": "37634c12857d9f09bf0ea2786598ce1452b3b19c0f22fe8910ab6e8c850bb4c6", + "size_in_bytes": 10056 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cbc09b415206b867b6c2e9e52e5c45eacdbf2114351b0f80905d9a6949309579", + "sha256_in_prefix": "cbc09b415206b867b6c2e9e52e5c45eacdbf2114351b0f80905d9a6949309579", + "size_in_bytes": 1444 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "020773a1131340a0fcaa4998c0a9f49882422db21202465238fa997746e8708d", + "sha256_in_prefix": "020773a1131340a0fcaa4998c0a9f49882422db21202465238fa997746e8708d", + "size_in_bytes": 758 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3997b297bac4bd4793ec56b99b5447540a4c7f1846dd90f2810534da3fc09c7a", + "sha256_in_prefix": "3997b297bac4bd4793ec56b99b5447540a4c7f1846dd90f2810534da3fc09c7a", + "size_in_bytes": 10538 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/_api.py", + "path_type": "hardlink", + "sha256": "19e5d13539713d9de489fe2436887a258d28138411cd319c817afa97f5ff1a4d", + "sha256_in_prefix": "19e5d13539713d9de489fe2436887a258d28138411cd319c817afa97f5ff1a4d", + "size_in_bytes": 10555 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/_macos.py", + "path_type": "hardlink", + "sha256": "9d994b90e9accd413483aaf2470055198e423b33f2b9d72c889b4359aacce4b4", + "sha256_in_prefix": "9d994b90e9accd413483aaf2470055198e423b33f2b9d72c889b4359aacce4b4", + "size_in_bytes": 20503 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/_openssl.py", + "path_type": "hardlink", + "sha256": "2cb519ed919a8a8fa2e5da4a2a328249e4ae7e69fa4fca62f650dc167bd2caad", + "sha256_in_prefix": "2cb519ed919a8a8fa2e5da4a2a328249e4ae7e69fa4fca62f650dc167bd2caad", + "size_in_bytes": 2324 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/_ssl_constants.py", + "path_type": "hardlink", + "sha256": "3540f87d529d483d36ae2efe75bd2d9ced15a8b3fd687bb3992b5c5bbb40974f", + "sha256_in_prefix": "3540f87d529d483d36ae2efe75bd2d9ced15a8b3fd687bb3992b5c5bbb40974f", + "size_in_bytes": 1130 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/_windows.py", + "path_type": "hardlink", + "sha256": "ac01f22980fc33bb7e6d77c6f1580e55add3a5f85585bb78ad94253b8e58b8ff", + "sha256_in_prefix": "ac01f22980fc33bb7e6d77c6f1580e55add3a5f85585bb78ad94253b8e58b8ff", + "size_in_bytes": 17993 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/truststore/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/typing_extensions.py", + "path_type": "hardlink", + "sha256": "efc8459741e90d8fb29475150a759d5399d31f150fdbe4bedf011993a09098b9", + "sha256_in_prefix": "efc8459741e90d8fb29475150a759d5399d31f150fdbe4bedf011993a09098b9", + "size_in_bytes": 134499 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py", + "path_type": "hardlink", + "sha256": "8972dc6222724a7d0635b58e3990c30298012f52603f8e0467c8b5efad12f0c7", + "sha256_in_prefix": "8972dc6222724a7d0635b58e3990c30298012f52603f8e0467c8b5efad12f0c7", + "size_in_bytes": 3333 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5c23882a7c17623882d98244e0046411a39708e9090163cb19391d00ad565bb5", + "sha256_in_prefix": "5c23882a7c17623882d98244e0046411a39708e9090163cb19391d00ad565bb5", + "size_in_bytes": 2471 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3e27c2e7f60a8f061846448cfda6c6ecea19d05e67f9efdce2d0b2ba4b5f790e", + "sha256_in_prefix": "3e27c2e7f60a8f061846448cfda6c6ecea19d05e67f9efdce2d0b2ba4b5f790e", + "size_in_bytes": 11316 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3ee5b55f50f772bf85a8613ec39b923d623bd36b5f19bfb058cb5978a1d4c714", + "sha256_in_prefix": "3ee5b55f50f772bf85a8613ec39b923d623bd36b5f19bfb058cb5978a1d4c714", + "size_in_bytes": 176 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fbf696e642b16338feda995224012c957701f55a9e293d767592939d5539a3b8", + "sha256_in_prefix": "fbf696e642b16338feda995224012c957701f55a9e293d767592939d5539a3b8", + "size_in_bytes": 13663 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "95cd0febc66bce9443b35e1741a445e8ee7f19b524f37958fb558cca58b12cec", + "sha256_in_prefix": "95cd0febc66bce9443b35e1741a445e8ee7f19b524f37958fb558cca58b12cec", + "size_in_bytes": 25903 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1c06228d3422a51138f6f385b45c57ba91da156dee1b438d9583703fba4de958", + "sha256_in_prefix": "1c06228d3422a51138f6f385b45c57ba91da156dee1b438d9583703fba4de958", + "size_in_bytes": 10956 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "12f6a3a78c59ccbb312a570ab5a1519b0a5b20ed41b6cb88620fc080eddc150f", + "sha256_in_prefix": "12f6a3a78c59ccbb312a570ab5a1519b0a5b20ed41b6cb88620fc080eddc150f", + "size_in_bytes": 8145 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f457fa36e9370006de96a7292b1180aac574de646791f6c04eb8c0127ae89f9b", + "sha256_in_prefix": "f457fa36e9370006de96a7292b1180aac574de646791f6c04eb8c0127ae89f9b", + "size_in_bytes": 2712 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1c8b4116405b69449f5c8334aaf5d6e108ff86e4a31d12a7f46ccd0026be57be", + "sha256_in_prefix": "1c8b4116405b69449f5c8334aaf5d6e108ff86e4a31d12a7f46ccd0026be57be", + "size_in_bytes": 15122 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ace879cce61acd38ffcbcab39c2d1d0f907e89946d22078bebecf3fe37b49f3b", + "sha256_in_prefix": "ace879cce61acd38ffcbcab39c2d1d0f907e89946d22078bebecf3fe37b49f3b", + "size_in_bytes": 6344 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "86489404709af340165a36e7b2b58331aafebc6ac5b14fa92341f8eea37115ae", + "sha256_in_prefix": "86489404709af340165a36e7b2b58331aafebc6ac5b14fa92341f8eea37115ae", + "size_in_bytes": 22462 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py", + "path_type": "hardlink", + "sha256": "a72012249856ef074ea6a263f50240f05c8645fafc13cb94521a94be1174ef6f", + "sha256_in_prefix": "a72012249856ef074ea6a263f50240f05c8645fafc13cb94521a94be1174ef6f", + "size_in_bytes": 11372 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py", + "path_type": "hardlink", + "sha256": "b7dc0607aa283935d782263ae8ad66e81652d422725c7014f04a160d37ba4a19", + "sha256_in_prefix": "b7dc0607aa283935d782263ae8ad66e81652d422725c7014f04a160d37ba4a19", + "size_in_bytes": 64 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py", + "path_type": "hardlink", + "sha256": "b6d200f74f41adb4d4cf092a11efd3cd9561e0938e8fb83ad58b1e8b69abc068", + "sha256_in_prefix": "b6d200f74f41adb4d4cf092a11efd3cd9561e0938e8fb83ad58b1e8b69abc068", + "size_in_bytes": 20314 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py", + "path_type": "hardlink", + "sha256": "7b67a203035b14d08ac63e1bc0328d2bec3b1c8752cf73a633153f4c8b7e7af4", + "sha256_in_prefix": "7b67a203035b14d08ac63e1bc0328d2bec3b1c8752cf73a633153f4c8b7e7af4", + "size_in_bytes": 40408 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "276641758af41d0453dd34c6252e1f09c3e5837806572e1e7324bd6356ab59ed", + "sha256_in_prefix": "276641758af41d0453dd34c6252e1f09c3e5837806572e1e7324bd6356ab59ed", + "size_in_bytes": 161 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "139d016a16fc1e28d353106dd8e7800b32c6177ed998be7a57b8ddf459b2f27e", + "sha256_in_prefix": "139d016a16fc1e28d353106dd8e7800b32c6177ed998be7a57b8ddf459b2f27e", + "size_in_bytes": 1341 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dc68394b857f8f6d7caf265686f3ac8e6d1bb4d83c004337c6afd02fc4d20bdc", + "sha256_in_prefix": "dc68394b857f8f6d7caf265686f3ac8e6d1bb4d83c004337c6afd02fc4d20bdc", + "size_in_bytes": 8158 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3db4fe32c854e04b235035643b5812a2605189e632f070ca125049f043693542", + "sha256_in_prefix": "3db4fe32c854e04b235035643b5812a2605189e632f070ca125049f043693542", + "size_in_bytes": 3585 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c915d5e9cb23cdceb62847c2e811b8c2c1258cb06eb797952408862f0fa6c8b", + "sha256_in_prefix": "0c915d5e9cb23cdceb62847c2e811b8c2c1258cb06eb797952408862f0fa6c8b", + "size_in_bytes": 15771 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f2e9716963ed2ce262b21049fd5931bdea2ac556a2d6ed920c4859d361ffb218", + "sha256_in_prefix": "f2e9716963ed2ce262b21049fd5931bdea2ac556a2d6ed920c4859d361ffb218", + "size_in_bytes": 21900 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "294526545db2d2bfac9960a2ff25f226f058eeb0e228fd2089061f887120c65a", + "sha256_in_prefix": "294526545db2d2bfac9960a2ff25f226f058eeb0e228fd2089061f887120c65a", + "size_in_bytes": 5563 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py", + "path_type": "hardlink", + "sha256": "6c36f2384856d8228b25c42a00a032ac41cdf9a925b321c52aaeaf17c645b269", + "sha256_in_prefix": "6c36f2384856d8228b25c42a00a032ac41cdf9a925b321c52aaeaf17c645b269", + "size_in_bytes": 957 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dc7b5e3bc8a9abe0d6ca4698d3794383b3992f200159be6d46acae43c0b5c139", + "sha256_in_prefix": "dc7b5e3bc8a9abe0d6ca4698d3794383b3992f200159be6d46acae43c0b5c139", + "size_in_bytes": 178 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "72e1cd089323ec0fcc811ee9a8a063fcaf8fc2c9da6ae42d31b789de25f89e3b", + "sha256_in_prefix": "72e1cd089323ec0fcc811ee9a8a063fcaf8fc2c9da6ae42d31b789de25f89e3b", + "size_in_bytes": 10674 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ff9fb136dce213043dbf17385d27b39706fdca6860261ddaae75c85f6f9be88b", + "sha256_in_prefix": "ff9fb136dce213043dbf17385d27b39706fdca6860261ddaae75c85f6f9be88b", + "size_in_bytes": 9061 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py", + "path_type": "hardlink", + "sha256": "e1793ae2a2243c1b74f40e6af9120552e0e135cf665e29556a99bb5a7627cd1c", + "sha256_in_prefix": "e1793ae2a2243c1b74f40e6af9120552e0e135cf665e29556a99bb5a7627cd1c", + "size_in_bytes": 17632 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py", + "path_type": "hardlink", + "sha256": "076241076fcd44fd36c4ae8309ad4f6bd22ec6b3f0c730f365b8b14246fb53d3", + "sha256_in_prefix": "076241076fcd44fd36c4ae8309ad4f6bd22ec6b3f0c730f365b8b14246fb53d3", + "size_in_bytes": 13922 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py", + "path_type": "hardlink", + "sha256": "551ebc780544d77ee5c53823043c029dae5488165338a6b4d408fffb905a0b3e", + "sha256_in_prefix": "551ebc780544d77ee5c53823043c029dae5488165338a6b4d408fffb905a0b3e", + "size_in_bytes": 11036 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py", + "path_type": "hardlink", + "sha256": "3657e45bb58c756f338aab9da298c7a16dbdf688350535a2d0878889baae1709", + "sha256_in_prefix": "3657e45bb58c756f338aab9da298c7a16dbdf688350535a2d0878889baae1709", + "size_in_bytes": 4528 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", + "path_type": "hardlink", + "sha256": "843261e0c87263fa7ea0a9457187106954110efe86326046b96f728f1c9e7a33", + "sha256_in_prefix": "843261e0c87263fa7ea0a9457187106954110efe86326046b96f728f1c9e7a33", + "size_in_bytes": 17081 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py", + "path_type": "hardlink", + "sha256": "15e7f5208514147aa97afcd78833db20690329c858d8554a79578b191d50ab78", + "sha256_in_prefix": "15e7f5208514147aa97afcd78833db20690329c858d8554a79578b191d50ab78", + "size_in_bytes": 34446 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py", + "path_type": "hardlink", + "sha256": "6918bd7965e8f5911bf795d4c5e7f8676d421659e78db122028f473ac7a832de", + "sha256_in_prefix": "6918bd7965e8f5911bf795d4c5e7f8676d421659e78db122028f473ac7a832de", + "size_in_bytes": 7097 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py", + "path_type": "hardlink", + "sha256": "d0c9e7a372874cd7d745f63beb7f0db9f38f9146fa9973a6f8baa3fb8c76c3c0", + "sha256_in_prefix": "d0c9e7a372874cd7d745f63beb7f0db9f38f9146fa9973a6f8baa3fb8c76c3c0", + "size_in_bytes": 8217 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py", + "path_type": "hardlink", + "sha256": "92f2c30a0fc9987d652e3514118fc52d2f14858ee106f0cfb951136d8f2676b3", + "sha256_in_prefix": "92f2c30a0fc9987d652e3514118fc52d2f14858ee106f0cfb951136d8f2676b3", + "size_in_bytes": 8579 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py", + "path_type": "hardlink", + "sha256": "e5bfeaaa04475652fbb8bb5d018073061f861e653901f255b7fd8dd174b73de6", + "sha256_in_prefix": "e5bfeaaa04475652fbb8bb5d018073061f861e653901f255b7fd8dd174b73de6", + "size_in_bytes": 2440 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9bfd37cdde08facb4ea98d1fc8bb95ef7f9328b5e3180ab7546d332db2b6cc48", + "sha256_in_prefix": "9bfd37cdde08facb4ea98d1fc8bb95ef7f9328b5e3180ab7546d332db2b6cc48", + "size_in_bytes": 162 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fae1291e2ecad00ba03482269c234f6a2b9c43fdd8f0a8c9af526d830d1f21b8", + "sha256_in_prefix": "fae1291e2ecad00ba03482269c234f6a2b9c43fdd8f0a8c9af526d830d1f21b8", + "size_in_bytes": 27616 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5d074444d234bea04a990b7abd43e6168b15755749d25c55236a55593021216a", + "sha256_in_prefix": "5d074444d234bea04a990b7abd43e6168b15755749d25c55236a55593021216a", + "size_in_bytes": 172 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fcb1166557549881044909e5e752805cfeef51db5db2e1a067cc797b6783c119", + "sha256_in_prefix": "fcb1166557549881044909e5e752805cfeef51db5db2e1a067cc797b6783c119", + "size_in_bytes": 1272 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0dab7624ca5d6c1d5768b9a2cbe11b1d7c67f57d585ce541794b67220858865d", + "sha256_in_prefix": "0dab7624ca5d6c1d5768b9a2cbe11b1d7c67f57d585ce541794b67220858865d", + "size_in_bytes": 4870 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py", + "path_type": "hardlink", + "sha256": "9dbcedde2d1a80f54fd3b8eaaa08e16988cc9ae022fd6e44d04cb0662bd53bc1", + "sha256_in_prefix": "9dbcedde2d1a80f54fd3b8eaaa08e16988cc9ae022fd6e44d04cb0662bd53bc1", + "size_in_bytes": 1417 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py", + "path_type": "hardlink", + "sha256": "b5109a97938084d491c9bd03847a7edfc02d2250ac44ff01c45dcd5feeaba880", + "sha256_in_prefix": "b5109a97938084d491c9bd03847a7edfc02d2250ac44ff01c45dcd5feeaba880", + "size_in_bytes": 5343 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py", + "path_type": "hardlink", + "sha256": "6fd2ccd30057bfb13b4ab6c28c09b8c3037e86b1fe88dc6fd7c2e058d30c28fa", + "sha256_in_prefix": "6fd2ccd30057bfb13b4ab6c28c09b8c3037e86b1fe88dc6fd7c2e058d30c28fa", + "size_in_bytes": 34665 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py", + "path_type": "hardlink", + "sha256": "696ca15d1b4d3b82549c249556a29329077c1174ef526d5537da60b366dc38da", + "sha256_in_prefix": "696ca15d1b4d3b82549c249556a29329077c1174ef526d5537da60b366dc38da", + "size_in_bytes": 19990 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/request.py", + "path_type": "hardlink", + "sha256": "61358536bed023087b1355bd75d7bd2ccefbbf65564c9e55efc5ee4d3c3b0f50", + "sha256_in_prefix": "61358536bed023087b1355bd75d7bd2ccefbbf65564c9e55efc5ee4d3c3b0f50", + "size_in_bytes": 6691 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/response.py", + "path_type": "hardlink", + "sha256": "7e60c9005906ef5b854e7fac5524e1d88c345a6717418aa46d18e286fc018d4f", + "sha256_in_prefix": "7e60c9005906ef5b854e7fac5524e1d88c345a6717418aa46d18e286fc018d4f", + "size_in_bytes": 30641 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py", + "path_type": "hardlink", + "sha256": "2449929a6aaa2f26b0f0fe75814226661f06c20f62d7349ef83a2a022b67da77", + "sha256_in_prefix": "2449929a6aaa2f26b0f0fe75814226661f06c20f62d7349ef83a2a022b67da77", + "size_in_bytes": 1155 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "10acc40ece15c7c6d838206695ed505997b4d4f76038f1f314bbb270729d6a99", + "sha256_in_prefix": "10acc40ece15c7c6d838206695ed505997b4d4f76038f1f314bbb270729d6a99", + "size_in_bytes": 1071 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "25ba6a9bc9d6321227f6e5770f180e09ca9c8dcab95383d70a942c1906f3d79d", + "sha256_in_prefix": "25ba6a9bc9d6321227f6e5770f180e09ca9c8dcab95383d70a942c1906f3d79d", + "size_in_bytes": 3399 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "30e79b259770647a87436854220b5fc98cfd7d8a054466f2f6dee88c61880412", + "sha256_in_prefix": "30e79b259770647a87436854220b5fc98cfd7d8a054466f2f6dee88c61880412", + "size_in_bytes": 1304 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e0e329b3470870d87cd00138a4fca7739a087c3f0f5cdea04b53f91118435e36", + "sha256_in_prefix": "e0e329b3470870d87cd00138a4fca7739a087c3f0f5cdea04b53f91118435e36", + "size_in_bytes": 1026 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d21eb97cacce010ae413c85dd516ca4ea0c02d03506f77101e44d383e730523b", + "sha256_in_prefix": "d21eb97cacce010ae413c85dd516ca4ea0c02d03506f77101e44d383e730523b", + "size_in_bytes": 3333 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e564f604f3115eab17e6078523ae787b73b1e2a85104beebb6bed65c6240b6dd", + "sha256_in_prefix": "e564f604f3115eab17e6078523ae787b73b1e2a85104beebb6bed65c6240b6dd", + "size_in_bytes": 2319 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "da62cfcf4e5647d13998f68684717c34d7cd3c5e97bc2bf1f0251d7cb61d8585", + "sha256_in_prefix": "da62cfcf4e5647d13998f68684717c34d7cd3c5e97bc2bf1f0251d7cb61d8585", + "size_in_bytes": 16146 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d070d4235f5df534664957413ef4153236599ff3f9ee4135723a7de46bb8f01a", + "sha256_in_prefix": "d070d4235f5df534664957413ef4153236599ff3f9ee4135723a7de46bb8f01a", + "size_in_bytes": 11513 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8b4f915ee48ba37fddc132dd18dc22f9c75bedad7c618b76cf09dcb4e7751e45", + "sha256_in_prefix": "8b4f915ee48ba37fddc132dd18dc22f9c75bedad7c618b76cf09dcb4e7751e45", + "size_in_bytes": 3223 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fe56e36a9929565272e9d0f5814792d36028f1d667e7dd850d5d6ad976423ad0", + "sha256_in_prefix": "fe56e36a9929565272e9d0f5814792d36028f1d667e7dd850d5d6ad976423ad0", + "size_in_bytes": 7361 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fcfd6f4eb963d57849dd91c0a4bfcfc1bf68cebde543a5c8470f8bc37b22c064", + "sha256_in_prefix": "fcfd6f4eb963d57849dd91c0a4bfcfc1bf68cebde543a5c8470f8bc37b22c064", + "size_in_bytes": 9098 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6489bf87db817ae5202a6378d8a3b4af6b41ce20982d4dafb0a128f838dcae85", + "sha256_in_prefix": "6489bf87db817ae5202a6378d8a3b4af6b41ce20982d4dafb0a128f838dcae85", + "size_in_bytes": 10675 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7ac6fe8dabb9734dc5e944b2efa2f13dd36d3576b3a988deecc534e38d3526d9", + "sha256_in_prefix": "7ac6fe8dabb9734dc5e944b2efa2f13dd36d3576b3a988deecc534e38d3526d9", + "size_in_bytes": 3055 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py", + "path_type": "hardlink", + "sha256": "e4bc760753d6dbd2b1067d93d3190dd420604416b780654904aa10a11a201159", + "sha256_in_prefix": "e4bc760753d6dbd2b1067d93d3190dd420604416b780654904aa10a11a201159", + "size_in_bytes": 4901 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py", + "path_type": "hardlink", + "sha256": "cd4bcf3c226ba7a74e17437818055b39c97aa3ee2e5ca4ab1a24e492be6f512e", + "sha256_in_prefix": "cd4bcf3c226ba7a74e17437818055b39c97aa3ee2e5ca4ab1a24e492be6f512e", + "size_in_bytes": 1605 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py", + "path_type": "hardlink", + "sha256": "9d1817f3f797fbf564bf1a17d3de905a8cfc3ecd101d4004c482c263fecf9dc3", + "sha256_in_prefix": "9d1817f3f797fbf564bf1a17d3de905a8cfc3ecd101d4004c482c263fecf9dc3", + "size_in_bytes": 498 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py", + "path_type": "hardlink", + "sha256": "0b4394b76b5c53a2d189027b61834ff46bcfad2be5ef388805e910fb99e50599", + "sha256_in_prefix": "0b4394b76b5c53a2d189027b61834ff46bcfad2be5ef388805e910fb99e50599", + "size_in_bytes": 3997 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py", + "path_type": "hardlink", + "sha256": "189a60dc4822f6a6895d1c01879c2ff8c36e4566a7e4122ee34a117a8c563f6f", + "sha256_in_prefix": "189a60dc4822f6a6895d1c01879c2ff8c36e4566a7e4122ee34a117a8c563f6f", + "size_in_bytes": 3510 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py", + "path_type": "hardlink", + "sha256": "e8436f399f0f043ce1f24822c69aa5f6522b6f67711fe93b66605a9c9176360e", + "sha256_in_prefix": "e8436f399f0f043ce1f24822c69aa5f6522b6f67711fe93b66605a9c9176360e", + "size_in_bytes": 22050 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py", + "path_type": "hardlink", + "sha256": "403bae4f13d20a3d6b62d678c690fb531fabdb44c3e74687caa2b2850ec1ab80", + "sha256_in_prefix": "403bae4f13d20a3d6b62d678c690fb531fabdb44c3e74687caa2b2850ec1ab80", + "size_in_bytes": 17460 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py", + "path_type": "hardlink", + "sha256": "22be1c65512398093c8140081d64a2ef0b4e3bcdd4098001636c450f5425fd60", + "sha256_in_prefix": "22be1c65512398093c8140081d64a2ef0b4e3bcdd4098001636c450f5425fd60", + "size_in_bytes": 5758 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py", + "path_type": "hardlink", + "sha256": "340faee6b313ac3143142f10cd129410a306d39eb584e0f8a814ebdd9e29bfa1", + "sha256_in_prefix": "340faee6b313ac3143142f10cd129410a306d39eb584e0f8a814ebdd9e29bfa1", + "size_in_bytes": 6895 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py", + "path_type": "hardlink", + "sha256": "730ab874c93cee624748192d2b59a2609fbce46fb74f74664f6d2fed2142a67a", + "sha256_in_prefix": "730ab874c93cee624748192d2b59a2609fbce46fb74f74664f6d2fed2142a67a", + "size_in_bytes": 10168 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py", + "path_type": "hardlink", + "sha256": "942004ecce66c80f040dd5b4b09bb2c9985507d2bf8f7f258d684702715a5a81", + "sha256_in_prefix": "942004ecce66c80f040dd5b4b09bb2c9985507d2bf8f7f258d684702715a5a81", + "size_in_bytes": 14296 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py", + "path_type": "hardlink", + "sha256": "7ce5f4fdf6a8cc6d8fee25688d0a04d666f277078dc93726fa15c47c5ad3b4b2", + "sha256_in_prefix": "7ce5f4fdf6a8cc6d8fee25688d0a04d666f277078dc93726fa15c47c5ad3b4b2", + "size_in_bytes": 5403 + }, + { + "_path": "lib/python3.10/site-packages/pip/_vendor/vendor.txt", + "path_type": "hardlink", + "sha256": "116f84ddc1395c402d545cc62278a402b38c0f118fd032d45b35e96384597c56", + "sha256_in_prefix": "116f84ddc1395c402d545cc62278a402b38c0f118fd032d45b35e96384597c56", + "size_in_bytes": 333 + }, + { + "_path": "lib/python3.10/site-packages/pip/py.typed", + "path_type": "hardlink", + "sha256": "10156fbcf4539ff788a73e5ee50ced48276b317ed0c1ded53fddd14a82256762", + "sha256_in_prefix": "10156fbcf4539ff788a73e5ee50ced48276b317ed0c1ded53fddd14a82256762", + "size_in_bytes": 286 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "708c8bd43ea54c6f9eb17d1cd1cd0aad92f6146551941dd52b59ae3ec7e0e872", + "size": 2430997, + "subdir": "linux-64", + "timestamp": 1737992065000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/pip-25.0-py310h06a4308_0.conda", + "version": "25.0" +} \ No newline at end of file diff --git a/deepseek/conda-meta/setuptools-75.8.0-py310h06a4308_0.json b/deepseek/conda-meta/setuptools-75.8.0-py310h06a4308_0.json new file mode 100644 index 0000000000000000000000000000000000000000..d189e89cc95d397bc2dbfaf3c810ed2a7637b8e2 --- /dev/null +++ b/deepseek/conda-meta/setuptools-75.8.0-py310h06a4308_0.json @@ -0,0 +1,6849 @@ +{ + "build": "py310h06a4308_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "python >=3.10,<3.11.0a0" + ], + "extracted_package_dir": "/opt/conda/pkgs/setuptools-75.8.0-py310h06a4308_0", + "files": [ + "lib/python3.10/site-packages/_distutils_hack/__init__.py", + "lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc", + "lib/python3.10/site-packages/_distutils_hack/override.py", + "lib/python3.10/site-packages/distutils-precedence.pth", + "lib/python3.10/site-packages/pkg_resources/__init__.py", + "lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/api_tests.txt", + "lib/python3.10/site-packages/pkg_resources/py.typed", + "lib/python3.10/site-packages/pkg_resources/tests/__init__.py", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/PKG-INFO", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/SOURCES.txt", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe", + "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_zipped-egg/my_test_package-1.0-py3.7.egg", + "lib/python3.10/site-packages/pkg_resources/tests/test_find_distributions.py", + "lib/python3.10/site-packages/pkg_resources/tests/test_integration_zope_interface.py", + "lib/python3.10/site-packages/pkg_resources/tests/test_markers.py", + "lib/python3.10/site-packages/pkg_resources/tests/test_pkg_resources.py", + "lib/python3.10/site-packages/pkg_resources/tests/test_resources.py", + "lib/python3.10/site-packages/pkg_resources/tests/test_working_set.py", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/PKG-INFO", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/SOURCES.txt", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/dependency_links.txt", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/entry_points.txt", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/requires.txt", + "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/__init__.py", + "lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_core_metadata.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_normalization.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_path.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_shutil.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/_static.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/logging.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/modified.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/warnings.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_core_metadata.py", + "lib/python3.10/site-packages/setuptools/_distutils/__init__.py", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_log.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/_log.py", + "lib/python3.10/site-packages/setuptools/_distutils/_macos_compat.py", + "lib/python3.10/site-packages/setuptools/_distutils/_modified.py", + "lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/archive_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/cmd.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/command/_framework_compat.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/build.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/check.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/clean.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/config.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py", + "lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py", + "lib/python3.10/site-packages/setuptools/_distutils/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/compat/py39.py", + "lib/python3.10/site-packages/setuptools/_distutils/core.py", + "lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/debug.py", + "lib/python3.10/site-packages/setuptools/_distutils/dep_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/dir_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/dist.py", + "lib/python3.10/site-packages/setuptools/_distutils/errors.py", + "lib/python3.10/site-packages/setuptools/_distutils/extension.py", + "lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py", + "lib/python3.10/site-packages/setuptools/_distutils/file_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/filelist.py", + "lib/python3.10/site-packages/setuptools/_distutils/log.py", + "lib/python3.10/site-packages/setuptools/_distutils/spawn.py", + "lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__init__.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/py39.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/support.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_archive_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_clib.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_ext.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_py.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_scripts.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_ccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_check.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_clean.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_cmd.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_config_cmd.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_core.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_dir_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_dist.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_extension.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_file_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_filelist.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_data.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_headers.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_lib.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_scripts.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_log.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_modified.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_msvccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_sdist.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_spawn.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_sysconfig.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_text_file.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_unixccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_util.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_version.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/test_versionpredicate.py", + "lib/python3.10/site-packages/setuptools/_distutils/tests/unix_compat.py", + "lib/python3.10/site-packages/setuptools/_distutils/text_file.py", + "lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py", + "lib/python3.10/site-packages/setuptools/_distutils/util.py", + "lib/python3.10/site-packages/setuptools/_distutils/version.py", + "lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py", + "lib/python3.10/site-packages/setuptools/_distutils/zosccompiler.py", + "lib/python3.10/site-packages/setuptools/_entry_points.py", + "lib/python3.10/site-packages/setuptools/_imp.py", + "lib/python3.10/site-packages/setuptools/_importlib.py", + "lib/python3.10/site-packages/setuptools/_itertools.py", + "lib/python3.10/site-packages/setuptools/_normalization.py", + "lib/python3.10/site-packages/setuptools/_path.py", + "lib/python3.10/site-packages/setuptools/_reqs.py", + "lib/python3.10/site-packages/setuptools/_shutil.py", + "lib/python3.10/site-packages/setuptools/_static.py", + "lib/python3.10/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autoasync.py", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autocommand.py", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/automain.py", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autoparse.py", + "lib/python3.10/site-packages/setuptools/_vendor/autocommand/errors.py", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/backports/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__main__.py", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_collections.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_compat.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_functools.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_meta.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_text.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py", + "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/py38.py", + "lib/python3.10/site-packages/setuptools/_vendor/inflect/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/context.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/layouts.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py", + "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.pyi", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.pyi", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py", + "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.pyi", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE.APACHE", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE.BSD", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_elffile.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_parser.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/_tokenizer.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/metadata.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py", + "lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/licenses/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__main__.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/android.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/api.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/macos.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/unix.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/version.py", + "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/windows.py", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/_parser.py", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/_re.py", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/_types.py", + "lib/python3.10/site-packages/setuptools/_vendor/tomli/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/entry_points.txt", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_checkers.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_config.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_decorators.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_exceptions.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_functions.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_importhook.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_memo.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_suppression.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_transformer.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_union_transformer.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_utils.py", + "lib/python3.10/site-packages/setuptools/_vendor/typeguard/py.typed", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/LICENSE.txt", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/entry_points.txt", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__main__.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/bdist_wheel.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/convert.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/pack.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/tags.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/unpack.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/macosx_libfile.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/metadata.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/util.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt", + "lib/python3.10/site-packages/setuptools/_vendor/wheel/wheelfile.py", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/LICENSE", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/METADATA", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/RECORD", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL", + "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/py310.py", + "lib/python3.10/site-packages/setuptools/_vendor/zipp/glob.py", + "lib/python3.10/site-packages/setuptools/archive_util.py", + "lib/python3.10/site-packages/setuptools/build_meta.py", + "lib/python3.10/site-packages/setuptools/cli-32.exe", + "lib/python3.10/site-packages/setuptools/cli-64.exe", + "lib/python3.10/site-packages/setuptools/cli-arm64.exe", + "lib/python3.10/site-packages/setuptools/cli.exe", + "lib/python3.10/site-packages/setuptools/command/__init__.py", + "lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/command/_requirestxt.py", + "lib/python3.10/site-packages/setuptools/command/alias.py", + "lib/python3.10/site-packages/setuptools/command/bdist_egg.py", + "lib/python3.10/site-packages/setuptools/command/bdist_rpm.py", + "lib/python3.10/site-packages/setuptools/command/bdist_wheel.py", + "lib/python3.10/site-packages/setuptools/command/build.py", + "lib/python3.10/site-packages/setuptools/command/build_clib.py", + "lib/python3.10/site-packages/setuptools/command/build_ext.py", + "lib/python3.10/site-packages/setuptools/command/build_py.py", + "lib/python3.10/site-packages/setuptools/command/develop.py", + "lib/python3.10/site-packages/setuptools/command/dist_info.py", + "lib/python3.10/site-packages/setuptools/command/easy_install.py", + "lib/python3.10/site-packages/setuptools/command/editable_wheel.py", + "lib/python3.10/site-packages/setuptools/command/egg_info.py", + "lib/python3.10/site-packages/setuptools/command/install.py", + "lib/python3.10/site-packages/setuptools/command/install_egg_info.py", + "lib/python3.10/site-packages/setuptools/command/install_lib.py", + "lib/python3.10/site-packages/setuptools/command/install_scripts.py", + "lib/python3.10/site-packages/setuptools/command/launcher manifest.xml", + "lib/python3.10/site-packages/setuptools/command/rotate.py", + "lib/python3.10/site-packages/setuptools/command/saveopts.py", + "lib/python3.10/site-packages/setuptools/command/sdist.py", + "lib/python3.10/site-packages/setuptools/command/setopt.py", + "lib/python3.10/site-packages/setuptools/command/test.py", + "lib/python3.10/site-packages/setuptools/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/compat/__pycache__/py310.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/compat/__pycache__/py311.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/compat/__pycache__/py312.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/compat/__pycache__/py39.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/compat/py310.py", + "lib/python3.10/site-packages/setuptools/compat/py311.py", + "lib/python3.10/site-packages/setuptools/compat/py312.py", + "lib/python3.10/site-packages/setuptools/compat/py39.py", + "lib/python3.10/site-packages/setuptools/config/NOTICE", + "lib/python3.10/site-packages/setuptools/config/__init__.py", + "lib/python3.10/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/NOTICE", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__init__.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/error_reporting.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/extra_validations.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py", + "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/formats.py", + "lib/python3.10/site-packages/setuptools/config/distutils.schema.json", + "lib/python3.10/site-packages/setuptools/config/expand.py", + "lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py", + "lib/python3.10/site-packages/setuptools/config/setupcfg.py", + "lib/python3.10/site-packages/setuptools/config/setuptools.schema.json", + "lib/python3.10/site-packages/setuptools/depends.py", + "lib/python3.10/site-packages/setuptools/discovery.py", + "lib/python3.10/site-packages/setuptools/dist.py", + "lib/python3.10/site-packages/setuptools/errors.py", + "lib/python3.10/site-packages/setuptools/extension.py", + "lib/python3.10/site-packages/setuptools/glob.py", + "lib/python3.10/site-packages/setuptools/gui-32.exe", + "lib/python3.10/site-packages/setuptools/gui-64.exe", + "lib/python3.10/site-packages/setuptools/gui-arm64.exe", + "lib/python3.10/site-packages/setuptools/gui.exe", + "lib/python3.10/site-packages/setuptools/installer.py", + "lib/python3.10/site-packages/setuptools/launch.py", + "lib/python3.10/site-packages/setuptools/logging.py", + "lib/python3.10/site-packages/setuptools/modified.py", + "lib/python3.10/site-packages/setuptools/monkey.py", + "lib/python3.10/site-packages/setuptools/msvc.py", + "lib/python3.10/site-packages/setuptools/namespaces.py", + "lib/python3.10/site-packages/setuptools/package_index.py", + "lib/python3.10/site-packages/setuptools/sandbox.py", + "lib/python3.10/site-packages/setuptools/script (dev).tmpl", + "lib/python3.10/site-packages/setuptools/script.tmpl", + "lib/python3.10/site-packages/setuptools/tests/__init__.py", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/contexts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/environment.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/fixtures.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/namespaces.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/server.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_depends.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_develop.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_dist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_extern.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_glob.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_logging.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/text.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/__pycache__/textwrap.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/compat/__init__.py", + "lib/python3.10/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/compat/py39.py", + "lib/python3.10/site-packages/setuptools/tests/config/__init__.py", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/downloads/__init__.py", + "lib/python3.10/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/config/downloads/preload.py", + "lib/python3.10/site-packages/setuptools/tests/config/setupcfg_examples.txt", + "lib/python3.10/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py", + "lib/python3.10/site-packages/setuptools/tests/config/test_expand.py", + "lib/python3.10/site-packages/setuptools/tests/config/test_pyprojecttoml.py", + "lib/python3.10/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py", + "lib/python3.10/site-packages/setuptools/tests/config/test_setupcfg.py", + "lib/python3.10/site-packages/setuptools/tests/contexts.py", + "lib/python3.10/site-packages/setuptools/tests/environment.py", + "lib/python3.10/site-packages/setuptools/tests/fixtures.py", + "lib/python3.10/site-packages/setuptools/tests/indexes/test_links_priority/external.html", + "lib/python3.10/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html", + "lib/python3.10/site-packages/setuptools/tests/integration/__init__.py", + "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-310.pyc", + "lib/python3.10/site-packages/setuptools/tests/integration/helpers.py", + "lib/python3.10/site-packages/setuptools/tests/integration/test_pip_install_sdist.py", + "lib/python3.10/site-packages/setuptools/tests/mod_with_constant.py", + "lib/python3.10/site-packages/setuptools/tests/namespaces.py", + "lib/python3.10/site-packages/setuptools/tests/script-with-bom.py", + "lib/python3.10/site-packages/setuptools/tests/server.py", + "lib/python3.10/site-packages/setuptools/tests/test_archive_util.py", + "lib/python3.10/site-packages/setuptools/tests/test_bdist_deprecations.py", + "lib/python3.10/site-packages/setuptools/tests/test_bdist_egg.py", + "lib/python3.10/site-packages/setuptools/tests/test_bdist_wheel.py", + "lib/python3.10/site-packages/setuptools/tests/test_build.py", + "lib/python3.10/site-packages/setuptools/tests/test_build_clib.py", + "lib/python3.10/site-packages/setuptools/tests/test_build_ext.py", + "lib/python3.10/site-packages/setuptools/tests/test_build_meta.py", + "lib/python3.10/site-packages/setuptools/tests/test_build_py.py", + "lib/python3.10/site-packages/setuptools/tests/test_config_discovery.py", + "lib/python3.10/site-packages/setuptools/tests/test_core_metadata.py", + "lib/python3.10/site-packages/setuptools/tests/test_depends.py", + "lib/python3.10/site-packages/setuptools/tests/test_develop.py", + "lib/python3.10/site-packages/setuptools/tests/test_dist.py", + "lib/python3.10/site-packages/setuptools/tests/test_dist_info.py", + "lib/python3.10/site-packages/setuptools/tests/test_distutils_adoption.py", + "lib/python3.10/site-packages/setuptools/tests/test_easy_install.py", + "lib/python3.10/site-packages/setuptools/tests/test_editable_install.py", + "lib/python3.10/site-packages/setuptools/tests/test_egg_info.py", + "lib/python3.10/site-packages/setuptools/tests/test_extern.py", + "lib/python3.10/site-packages/setuptools/tests/test_find_packages.py", + "lib/python3.10/site-packages/setuptools/tests/test_find_py_modules.py", + "lib/python3.10/site-packages/setuptools/tests/test_glob.py", + "lib/python3.10/site-packages/setuptools/tests/test_install_scripts.py", + "lib/python3.10/site-packages/setuptools/tests/test_logging.py", + "lib/python3.10/site-packages/setuptools/tests/test_manifest.py", + "lib/python3.10/site-packages/setuptools/tests/test_namespaces.py", + "lib/python3.10/site-packages/setuptools/tests/test_packageindex.py", + "lib/python3.10/site-packages/setuptools/tests/test_sandbox.py", + "lib/python3.10/site-packages/setuptools/tests/test_sdist.py", + "lib/python3.10/site-packages/setuptools/tests/test_setopt.py", + "lib/python3.10/site-packages/setuptools/tests/test_setuptools.py", + "lib/python3.10/site-packages/setuptools/tests/test_shutil_wrapper.py", + "lib/python3.10/site-packages/setuptools/tests/test_unicode_utils.py", + "lib/python3.10/site-packages/setuptools/tests/test_virtualenv.py", + "lib/python3.10/site-packages/setuptools/tests/test_warnings.py", + "lib/python3.10/site-packages/setuptools/tests/test_wheel.py", + "lib/python3.10/site-packages/setuptools/tests/test_windows_wrappers.py", + "lib/python3.10/site-packages/setuptools/tests/text.py", + "lib/python3.10/site-packages/setuptools/tests/textwrap.py", + "lib/python3.10/site-packages/setuptools/unicode_utils.py", + "lib/python3.10/site-packages/setuptools/version.py", + "lib/python3.10/site-packages/setuptools/warnings.py", + "lib/python3.10/site-packages/setuptools/wheel.py", + "lib/python3.10/site-packages/setuptools/windows_support.py" + ], + "fn": "setuptools-75.8.0-py310h06a4308_0.conda", + "license": "MIT", + "link": { + "source": "/opt/conda/pkgs/setuptools-75.8.0-py310h06a4308_0", + "type": 1 + }, + "md5": "8daba4d89dde2ee2a114981c5b3da378", + "name": "setuptools", + "package_tarball_full_path": "/opt/conda/pkgs/setuptools-75.8.0-py310h06a4308_0.conda", + "paths_data": { + "paths": [ + { + "_path": "lib/python3.10/site-packages/_distutils_hack/__init__.py", + "path_type": "hardlink", + "sha256": "df81e6bcba34ee3e3952f776551fb669143b9490fdd6c4caeb32609f97e985b4", + "sha256_in_prefix": "df81e6bcba34ee3e3952f776551fb669143b9490fdd6c4caeb32609f97e985b4", + "size_in_bytes": 6755 + }, + { + "_path": "lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d38b3e6a556029de3a3ddc792f0ee730dc0ee97b4a80dfdd55012830f75fe179", + "sha256_in_prefix": "d38b3e6a556029de3a3ddc792f0ee730dc0ee97b4a80dfdd55012830f75fe179", + "size_in_bytes": 8206 + }, + { + "_path": "lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee3c2e40e001bbb39a3e58e51bdab3386746eb49957f78b6b6eec7378f421840", + "sha256_in_prefix": "ee3c2e40e001bbb39a3e58e51bdab3386746eb49957f78b6b6eec7378f421840", + "size_in_bytes": 200 + }, + { + "_path": "lib/python3.10/site-packages/_distutils_hack/override.py", + "path_type": "hardlink", + "sha256": "12efecf8d17a5486780aa774b5b6c0e70b56932d8864f35df1eb7a18bb759b3a", + "sha256_in_prefix": "12efecf8d17a5486780aa774b5b6c0e70b56932d8864f35df1eb7a18bb759b3a", + "size_in_bytes": 44 + }, + { + "_path": "lib/python3.10/site-packages/distutils-precedence.pth", + "path_type": "hardlink", + "sha256": "2638ce9e2500e572a5e0de7faed6661eb569d1b696fcba07b0dd223da5f5d224", + "sha256_in_prefix": "2638ce9e2500e572a5e0de7faed6661eb569d1b696fcba07b0dd223da5f5d224", + "size_in_bytes": 151 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/__init__.py", + "path_type": "hardlink", + "sha256": "7eec9d77ef3ba27df5fb73f4c13353662167d2aba2635f2965d3facd15da950b", + "sha256_in_prefix": "7eec9d77ef3ba27df5fb73f4c13353662167d2aba2635f2965d3facd15da950b", + "size_in_bytes": 126098 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "191fd421685d609268ca1cf8363261f6cc101d545a1bc2b3ba669e28e3512464", + "sha256_in_prefix": "191fd421685d609268ca1cf8363261f6cc101d545a1bc2b3ba669e28e3512464", + "size_in_bytes": 115599 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/api_tests.txt", + "path_type": "hardlink", + "sha256": "5c476fcb88a01c7aeadaa34734c1e795f3ba5d240a36a3b22c76e5e907297c02", + "sha256_in_prefix": "5c476fcb88a01c7aeadaa34734c1e795f3ba5d240a36a3b22c76e5e907297c02", + "size_in_bytes": 12595 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5a5fd92dbceccc317cda29769bf6790043fb3e95e73bdba96c8947edb3a8b280", + "sha256_in_prefix": "5a5fd92dbceccc317cda29769bf6790043fb3e95e73bdba96c8947edb3a8b280", + "size_in_bytes": 153 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9bc8ada4992329bab913599917054a2fb80089eb556d39c17651c40f018f3148", + "sha256_in_prefix": "9bc8ada4992329bab913599917054a2fb80089eb556d39c17651c40f018f3148", + "size_in_bytes": 2354 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "460b5dafb6562acee1dd9357e50e7563a5923775eacd1b01badec31a9a8d0a55", + "sha256_in_prefix": "460b5dafb6562acee1dd9357e50e7563a5923775eacd1b01badec31a9a8d0a55", + "size_in_bytes": 1555 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bcb31a0e74bff2d93ff7946f904bbe72e9b33efe9338be3ae49e5674bb4f3342", + "sha256_in_prefix": "bcb31a0e74bff2d93ff7946f904bbe72e9b33efe9338be3ae49e5674bb4f3342", + "size_in_bytes": 493 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "29ddee5858df0a591e000ebfa2853970edf658a92aab1887244b0eb755c548c6", + "sha256_in_prefix": "29ddee5858df0a591e000ebfa2853970edf658a92aab1887244b0eb755c548c6", + "size_in_bytes": 13568 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9c6bfef7e0865d4679b058b04b7bee0f692f49395b865c036bd7c18cbb6b782e", + "sha256_in_prefix": "9c6bfef7e0865d4679b058b04b7bee0f692f49395b865c036bd7c18cbb6b782e", + "size_in_bytes": 28152 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2c93af3d8dacdb28eaf11e6793ce467481283bdc38fcc5d017432a09fd9943a0", + "sha256_in_prefix": "2c93af3d8dacdb28eaf11e6793ce467481283bdc38fcc5d017432a09fd9943a0", + "size_in_bytes": 8410 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a4ea4bf8180159f5a372104fe438c9d0cb066d51dfa314a6c400fad64fae2c26", + "sha256_in_prefix": "a4ea4bf8180159f5a372104fe438c9d0cb066d51dfa314a6c400fad64fae2c26", + "size_in_bytes": 283 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py", + "path_type": "hardlink", + "sha256": "d55a1b84065b31beccf667e16ff344f0fc03b2fba4a162ecf5a5004b4a5885ef", + "sha256_in_prefix": "d55a1b84065b31beccf667e16ff344f0fc03b2fba4a162ecf5a5004b4a5885ef", + "size_in_bytes": 105 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip", + "path_type": "hardlink", + "sha256": "01845c437f4655e3cf9cc4fc4e49cfd607431f22675e1b611129a90239f34822", + "sha256_in_prefix": "01845c437f4655e3cf9cc4fc4e49cfd607431f22675e1b611129a90239f34822", + "size_in_bytes": 1809 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/PKG-INFO", + "path_type": "hardlink", + "sha256": "26f5aff48a363c0b98c04130d9f056e1073962f75b92c729297d6498bceca079", + "sha256_in_prefix": "26f5aff48a363c0b98c04130d9f056e1073962f75b92c729297d6498bceca079", + "size_in_bytes": 187 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/SOURCES.txt", + "path_type": "hardlink", + "sha256": "e029641fc793a2f66b755ac916c56ec5d6cc105fbe941552b8aa270c03c4e497", + "sha256_in_prefix": "e029641fc793a2f66b755ac916c56ec5d6cc105fbe941552b8aa270c03c4e497", + "size_in_bytes": 208 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt", + "path_type": "hardlink", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size_in_bytes": 1 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt", + "path_type": "hardlink", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size_in_bytes": 1 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe", + "path_type": "hardlink", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size_in_bytes": 1 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package_zipped-egg/my_test_package-1.0-py3.7.egg", + "path_type": "hardlink", + "sha256": "65394c1b18d11a2283364880d9cef98db407d93588b5e3f4d22ac5f60bdccdba", + "sha256_in_prefix": "65394c1b18d11a2283364880d9cef98db407d93588b5e3f4d22ac5f60bdccdba", + "size_in_bytes": 843 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_find_distributions.py", + "path_type": "hardlink", + "sha256": "53dd5ca2fe4bd423802162cdab75f2e29954eff327384d56b5732eea2576c1a3", + "sha256_in_prefix": "53dd5ca2fe4bd423802162cdab75f2e29954eff327384d56b5732eea2576c1a3", + "size_in_bytes": 1972 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_integration_zope_interface.py", + "path_type": "hardlink", + "sha256": "9f35682b9e7b29940dd15dc3210d6c55e6823a0b782a997e08e0c05ac3bba667", + "sha256_in_prefix": "9f35682b9e7b29940dd15dc3210d6c55e6823a0b782a997e08e0c05ac3bba667", + "size_in_bytes": 1652 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_markers.py", + "path_type": "hardlink", + "sha256": "d28aca83b50c0dfedf9ee350bd130e73e105f4400ffc94d09e4e26b4681b5b9d", + "sha256_in_prefix": "d28aca83b50c0dfedf9ee350bd130e73e105f4400ffc94d09e4e26b4681b5b9d", + "size_in_bytes": 241 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_pkg_resources.py", + "path_type": "hardlink", + "sha256": "50c8054c117c58dfb204e69672c98a96bd70a84cfb72ed81f4e9cf79732690c2", + "sha256_in_prefix": "50c8054c117c58dfb204e69672c98a96bd70a84cfb72ed81f4e9cf79732690c2", + "size_in_bytes": 15207 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_resources.py", + "path_type": "hardlink", + "sha256": "2b42ea300506a5143da546fd2b4bf223b19eb2fb6542f4c7d3be26f84d95425a", + "sha256_in_prefix": "2b42ea300506a5143da546fd2b4bf223b19eb2fb6542f4c7d3be26f84d95425a", + "size_in_bytes": 31252 + }, + { + "_path": "lib/python3.10/site-packages/pkg_resources/tests/test_working_set.py", + "path_type": "hardlink", + "sha256": "65427c4aee3bbf561f44391ff01ea704f1dc742855773811731a691d3c09b3d9", + "sha256_in_prefix": "65427c4aee3bbf561f44391ff01ea704f1dc742855773811731a691d3c09b3d9", + "size_in_bytes": 8539 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/PKG-INFO", + "path_type": "hardlink", + "sha256": "8a38c979e7476630c10f727747d74b73a3735b054b00c83797f06a8521332e49", + "sha256_in_prefix": "8a38c979e7476630c10f727747d74b73a3735b054b00c83797f06a8521332e49", + "size_in_bytes": 6670 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/SOURCES.txt", + "path_type": "hardlink", + "sha256": "970b9f3b051f0faea3698b003c438cc13e98e16c4969da6f65653d2502763dc4", + "sha256_in_prefix": "970b9f3b051f0faea3698b003c438cc13e98e16c4969da6f65653d2502763dc4", + "size_in_bytes": 23773 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/dependency_links.txt", + "path_type": "hardlink", + "sha256": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "sha256_in_prefix": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + "size_in_bytes": 1 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/entry_points.txt", + "path_type": "hardlink", + "sha256": "ce482d8697ff15af4d544f69e85293dd793d0d1d5f680711538728820b15ee30", + "sha256_in_prefix": "ce482d8697ff15af4d544f69e85293dd793d0d1d5f680711538728820b15ee30", + "size_in_bytes": 2449 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/requires.txt", + "path_type": "hardlink", + "sha256": "16b1af3f936778ac0ed4d4a41aad8eba95c4fcadaa7085e9542ea6b10d1d3e7c", + "sha256_in_prefix": "16b1af3f936778ac0ed4d4a41aad8eba95c4fcadaa7085e9542ea6b10d1d3e7c", + "size_in_bytes": 1260 + }, + { + "_path": "lib/python3.10/site-packages/setuptools-75.8.0-py3.10.egg-info/top_level.txt", + "path_type": "hardlink", + "sha256": "77dc8bdfdbff5bbaa62830d21fab13e1b1348ff2ecd4cdcfd7ad4e1a076c9b88", + "sha256_in_prefix": "77dc8bdfdbff5bbaa62830d21fab13e1b1348ff2ecd4cdcfd7ad4e1a076c9b88", + "size_in_bytes": 41 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__init__.py", + "path_type": "hardlink", + "sha256": "010b0c791156cfd090f5a06d71291b0780e7f2ddb0f3af863eb8a4969a008dec", + "sha256_in_prefix": "010b0c791156cfd090f5a06d71291b0780e7f2ddb0f3af863eb8a4969a008dec", + "size_in_bytes": 10406 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8a8d3cbf33124cf53a2c56621474616cad8ef24230726e83f2f1a9d404799e5d", + "sha256_in_prefix": "8a8d3cbf33124cf53a2c56621474616cad8ef24230726e83f2f1a9d404799e5d", + "size_in_bytes": 11058 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_core_metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ad236cf56452b40a4b5daf01d75450169207f30d9faa82fc8bff9d71074fb65e", + "sha256_in_prefix": "ad236cf56452b40a4b5daf01d75450169207f30d9faa82fc8bff9d71074fb65e", + "size_in_bytes": 8995 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3cb5ea5e4a79f4c85e85b8898a0ef03aca732e8cc794ecf741ef2d3c6c442ef5", + "sha256_in_prefix": "3cb5ea5e4a79f4c85e85b8898a0ef03aca732e8cc794ecf741ef2d3c6c442ef5", + "size_in_bytes": 3229 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fe655cf62786e709bc0c8e689e483d3a99d3a51725dd2742092ccaa759efce1f", + "sha256_in_prefix": "fe655cf62786e709bc0c8e689e483d3a99d3a51725dd2742092ccaa759efce1f", + "size_in_bytes": 2065 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2a62c2f5ff3ee4388a75734d50645af6cebc67e3319edce9cd92f81d4a0edf22", + "sha256_in_prefix": "2a62c2f5ff3ee4388a75734d50645af6cebc67e3319edce9cd92f81d4a0edf22", + "size_in_bytes": 321 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fc6d48a277f89632782c9b13be876046ed529faa8f6decc73c4359f747865828", + "sha256_in_prefix": "fc6d48a277f89632782c9b13be876046ed529faa8f6decc73c4359f747865828", + "size_in_bytes": 862 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_normalization.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "54096af62983a88fefe82b0f691570ef1bda5eebcaa28eafcdd133c613b0fd70", + "sha256_in_prefix": "54096af62983a88fefe82b0f691570ef1bda5eebcaa28eafcdd133c613b0fd70", + "size_in_bytes": 4621 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_path.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "818df69b0f3e143859e5bceeb9b60319e5cba5c6a128ce40c062cbecbe90c3b6", + "sha256_in_prefix": "818df69b0f3e143859e5bceeb9b60319e5cba5c6a128ce40c062cbecbe90c3b6", + "size_in_bytes": 2885 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f768d9c599fe77f3c32ab3023453d4c695f8b06522c0ada27d187c8bf5cea992", + "sha256_in_prefix": "f768d9c599fe77f3c32ab3023453d4c695f8b06522c0ada27d187c8bf5cea992", + "size_in_bytes": 1621 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_shutil.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "985ca7899504786ae26969e68b0d830c9b3ff5f6e5d4c4e3037afca8df41561b", + "sha256_in_prefix": "985ca7899504786ae26969e68b0d830c9b3ff5f6e5d4c4e3037afca8df41561b", + "size_in_bytes": 1711 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/_static.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "632c3724a94c55316fc400abbf5fc2bfbe1c936df8c4545928141af24de3092f", + "sha256_in_prefix": "632c3724a94c55316fc400abbf5fc2bfbe1c936df8c4545928141af24de3092f", + "size_in_bytes": 5152 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "57ee85a55ba0ae7a14cef4b4a8a44d4ec4950dfb1dc7a2a22baca636d050ac38", + "sha256_in_prefix": "57ee85a55ba0ae7a14cef4b4a8a44d4ec4950dfb1dc7a2a22baca636d050ac38", + "size_in_bytes": 6181 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "05be982b911f1f2ae265a48f3b3e5f96d4a7703060acacfb0d28d843ebdb93ae", + "sha256_in_prefix": "05be982b911f1f2ae265a48f3b3e5f96d4a7703060acacfb0d28d843ebdb93ae", + "size_in_bytes": 18355 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ca3aafff6ae14b61bd60ded9daab78616918356afb7c448bfb97b9ddb562d3a0", + "sha256_in_prefix": "ca3aafff6ae14b61bd60ded9daab78616918356afb7c448bfb97b9ddb562d3a0", + "size_in_bytes": 5441 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "74366f869bac268db8c145c37e4be679787d9890927b6157230c559ce92dc130", + "sha256_in_prefix": "74366f869bac268db8c145c37e4be679787d9890927b6157230c559ce92dc130", + "size_in_bytes": 21167 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "76f41cbd918e5a740cd875052bd3fc5d0bd5f122a77394185b9ed5ebeceff597", + "sha256_in_prefix": "76f41cbd918e5a740cd875052bd3fc5d0bd5f122a77394185b9ed5ebeceff597", + "size_in_bytes": 32571 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8471738724d60f3a655a45ee8151dd367adc230b2cba6ddc57ad293b4baa4ffa", + "sha256_in_prefix": "8471738724d60f3a655a45ee8151dd367adc230b2cba6ddc57ad293b4baa4ffa", + "size_in_bytes": 2841 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "32de661d1659ff989f97efe7b67be208eb6e14616e5a30107f4529b960faf74f", + "sha256_in_prefix": "32de661d1659ff989f97efe7b67be208eb6e14616e5a30107f4529b960faf74f", + "size_in_bytes": 6279 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4c3ef86e8b306f9022f98511c879967275bc79e82ee2851be74f60aad5d7ce5a", + "sha256_in_prefix": "4c3ef86e8b306f9022f98511c879967275bc79e82ee2851be74f60aad5d7ce5a", + "size_in_bytes": 5103 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "48f9e527705e5e234026292a26bbc4ec9a30802c4d26667d76ce8458fdc6a837", + "sha256_in_prefix": "48f9e527705e5e234026292a26bbc4ec9a30802c4d26667d76ce8458fdc6a837", + "size_in_bytes": 4139 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "035a81636d226e340bc86b116500f4d4439540d5bc90e3f96e0c3dde1590b6db", + "sha256_in_prefix": "035a81636d226e340bc86b116500f4d4439540d5bc90e3f96e0c3dde1590b6db", + "size_in_bytes": 891 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/logging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e0a4e3ad466a35fe133fc106a91e6c006ce7b60ac1b0aa55a79b40a9f94fbdcf", + "sha256_in_prefix": "e0a4e3ad466a35fe133fc106a91e6c006ce7b60ac1b0aa55a79b40a9f94fbdcf", + "size_in_bytes": 1270 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/modified.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "652afee2efe1c135806f5096b70fa7d5882f19b364f18e3a4886a3c8c477b2f9", + "sha256_in_prefix": "652afee2efe1c135806f5096b70fa7d5882f19b364f18e3a4886a3c8c477b2f9", + "size_in_bytes": 408 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b4e0711061a050a1ab846344970e3e5196f22dd1319f1d18384d9dbacf2fe6ad", + "sha256_in_prefix": "b4e0711061a050a1ab846344970e3e5196f22dd1319f1d18384d9dbacf2fe6ad", + "size_in_bytes": 3624 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a074fbaad5116ad72f1db6d9c531d6ee9b99dad558ce6833bded610d6c05f490", + "sha256_in_prefix": "a074fbaad5116ad72f1db6d9c531d6ee9b99dad558ce6833bded610d6c05f490", + "size_in_bytes": 36079 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9162173e15d801ff733add2db235f37b5c00a5e9898660bcb8d2aed33451c198", + "sha256_in_prefix": "9162173e15d801ff733add2db235f37b5c00a5e9898660bcb8d2aed33451c198", + "size_in_bytes": 3724 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "58a1ed578bd4c709eb352ac71aa3dc30c23e93da5706510078086e05b212d1fa", + "sha256_in_prefix": "58a1ed578bd4c709eb352ac71aa3dc30c23e93da5706510078086e05b212d1fa", + "size_in_bytes": 33581 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6a30c8934a99a61484265a0a127209c419b08f96d2bf701a64b44671cf549a81", + "sha256_in_prefix": "6a30c8934a99a61484265a0a127209c419b08f96d2bf701a64b44671cf549a81", + "size_in_bytes": 16346 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "383aa6db5da6f30f1a2e921f904890ad8197e935e70bf33e08005cc09c41dc2e", + "sha256_in_prefix": "383aa6db5da6f30f1a2e921f904890ad8197e935e70bf33e08005cc09c41dc2e", + "size_in_bytes": 3148 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6cad69d12bdfd8532ed5ae6a533195806de2f93c4c11268f4a170cda6d51c9f2", + "sha256_in_prefix": "6cad69d12bdfd8532ed5ae6a533195806de2f93c4c11268f4a170cda6d51c9f2", + "size_in_bytes": 299 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/warnings.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2d0b6ee2f8562625cc54d129853fc33dd48eb019e086585fbf9ed0ae8d4649a7", + "sha256_in_prefix": "2d0b6ee2f8562625cc54d129853fc33dd48eb019e086585fbf9ed0ae8d4649a7", + "size_in_bytes": 3963 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a627be45cdda99d6e35c50643fa64afa3318a5d38c2305b07e4cba42d525ae20", + "sha256_in_prefix": "a627be45cdda99d6e35c50643fa64afa3318a5d38c2305b07e4cba42d525ae20", + "size_in_bytes": 7765 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cc765e8e8c9c1ead6b095d5aac1a9ec1b218c70e3d2c01d174883c733032ab65", + "sha256_in_prefix": "cc765e8e8c9c1ead6b095d5aac1a9ec1b218c70e3d2c01d174883c733032ab65", + "size_in_bytes": 1013 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_core_metadata.py", + "path_type": "hardlink", + "sha256": "dfc90134dc417b5490010f96b671fd732a3b47f60d378ec0750a9dd0e4f422ea", + "sha256_in_prefix": "dfc90134dc417b5490010f96b671fd732a3b47f60d378ec0750a9dd0e4f422ea", + "size_in_bytes": 11070 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__init__.py", + "path_type": "hardlink", + "sha256": "c4662e856c0b1b4ec9d10e3d0559c48cfcbac320dc77abde24c0c95fb9639723", + "sha256_in_prefix": "c4662e856c0b1b4ec9d10e3d0559c48cfcbac320dc77abde24c0c95fb9639723", + "size_in_bytes": 359 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "29503dcac1a4721bee1ab4fcef5813fa0afbc6885e2b9d68e4338e59807f6dbf", + "sha256_in_prefix": "29503dcac1a4721bee1ab4fcef5813fa0afbc6885e2b9d68e4338e59807f6dbf", + "size_in_bytes": 345 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_log.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "61f016069f95329a884b5e9751ae0f5f25cad796c2eeebcaba80c68fce3d4767", + "sha256_in_prefix": "61f016069f95329a884b5e9751ae0f5f25cad796c2eeebcaba80c68fce3d4767", + "size_in_bytes": 196 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8725d505371dfbd26ced4c4ac690d23c19aae2d3cdd613387dd31211529fad75", + "sha256_in_prefix": "8725d505371dfbd26ced4c4ac690d23c19aae2d3cdd613387dd31211529fad75", + "size_in_bytes": 419 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b2fb7783104f95bec5163d010a22258d1d0452c463b36d292b49c84a628ea5b1", + "sha256_in_prefix": "b2fb7783104f95bec5163d010a22258d1d0452c463b36d292b49c84a628ea5b1", + "size_in_bytes": 2950 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3db92899c529f8b328c5abda3227130980f0553cc1f3573efab39625577c9330", + "sha256_in_prefix": "3db92899c529f8b328c5abda3227130980f0553cc1f3573efab39625577c9330", + "size_in_bytes": 14773 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e8e58cf570f370b85d5c5bfb1deb420c29e859f551998ef1bb7df1179cab879c", + "sha256_in_prefix": "e8e58cf570f370b85d5c5bfb1deb420c29e859f551998ef1bb7df1179cab879c", + "size_in_bytes": 6110 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fd4f9de9e9308e70a6e548256ce84ea0faf3f0aea3771ebf401df0eee833fd6c", + "sha256_in_prefix": "fd4f9de9e9308e70a6e548256ce84ea0faf3f0aea3771ebf401df0eee833fd6c", + "size_in_bytes": 35959 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ed462e36a5d4f4dd21cd0b2811c9ae42347fa2b009e20719a773517bfe2e78ea", + "sha256_in_prefix": "ed462e36a5d4f4dd21cd0b2811c9ae42347fa2b009e20719a773517bfe2e78ea", + "size_in_bytes": 14642 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4ac6ab2f79262848f334365e33ec23a05e7928a3b11eb7e340b820d069d768c8", + "sha256_in_prefix": "4ac6ab2f79262848f334365e33ec23a05e7928a3b11eb7e340b820d069d768c8", + "size_in_bytes": 7184 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7cfb91b19e34afb6b981b9faeb7672e4ef0e66685a663d33d54545505577b775", + "sha256_in_prefix": "7cfb91b19e34afb6b981b9faeb7672e4ef0e66685a663d33d54545505577b775", + "size_in_bytes": 8126 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "62cb0afe08970a28d569954d4a972fd30258afed71360f7886f6281ac12ffe35", + "sha256_in_prefix": "62cb0afe08970a28d569954d4a972fd30258afed71360f7886f6281ac12ffe35", + "size_in_bytes": 218 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99460db21215631b8b7f0a4d5121e38107fa0f837e8b8018f56bfcb8902f009d", + "sha256_in_prefix": "99460db21215631b8b7f0a4d5121e38107fa0f837e8b8018f56bfcb8902f009d", + "size_in_bytes": 554 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee72906c5b5d4bcb5dd6c02c0ba80cd4ff7cb1fd9c628186cca92cdb10206cc1", + "sha256_in_prefix": "ee72906c5b5d4bcb5dd6c02c0ba80cd4ff7cb1fd9c628186cca92cdb10206cc1", + "size_in_bytes": 7225 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0f2ba4fed1131050dcc39ffa04ce1fedefb7c29773447b631db3d5189260dca7", + "sha256_in_prefix": "0f2ba4fed1131050dcc39ffa04ce1fedefb7c29773447b631db3d5189260dca7", + "size_in_bytes": 36731 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e9c1dc1d42a9f10b1e15be1da46204dc90b75451a182162e0ac08ebb62198ca3", + "sha256_in_prefix": "e9c1dc1d42a9f10b1e15be1da46204dc90b75451a182162e0ac08ebb62198ca3", + "size_in_bytes": 4693 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f5d4578ff85ecaf6a9ac89904d45960580e1781434b13da6de63b72f9d0eaab8", + "sha256_in_prefix": "f5d4578ff85ecaf6a9ac89904d45960580e1781434b13da6de63b72f9d0eaab8", + "size_in_bytes": 7186 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1424cf732584965fbdc87562f970303d384e7c7138f1c934f9173e708b8b25a0", + "sha256_in_prefix": "1424cf732584965fbdc87562f970303d384e7c7138f1c934f9173e708b8b25a0", + "size_in_bytes": 10860 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c07f2eb2b8de6173e80c3f07973679a3128a3a6357383672a102846e2dfe66d4", + "sha256_in_prefix": "c07f2eb2b8de6173e80c3f07973679a3128a3a6357383672a102846e2dfe66d4", + "size_in_bytes": 6008 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "338e605ee315eeeb939b3adb917ca7601fe5336560dfeafb791c671b56f0cc63", + "sha256_in_prefix": "338e605ee315eeeb939b3adb917ca7601fe5336560dfeafb791c671b56f0cc63", + "size_in_bytes": 10754 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "67e27931a37fb6f3322651e28c71d82dea77f46824ef8a3325b62749ef2e2196", + "sha256_in_prefix": "67e27931a37fb6f3322651e28c71d82dea77f46824ef8a3325b62749ef2e2196", + "size_in_bytes": 1665 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6651f3c79bf2c08d30459194450fb811e425e702efe17e0f56a573a5dc33e12a", + "sha256_in_prefix": "6651f3c79bf2c08d30459194450fb811e425e702efe17e0f56a573a5dc33e12a", + "size_in_bytes": 3475 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "27b8c757bbfdd66a97b47a0f9e550fabfb5e0bda250a0776dfbab3e30643086c", + "sha256_in_prefix": "27b8c757bbfdd66a97b47a0f9e550fabfb5e0bda250a0776dfbab3e30643086c", + "size_in_bytes": 14495 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "65133f380eff48de4ac25e4a852821d16df47812af168d80f9c3ddf701a5c0cc", + "sha256_in_prefix": "65133f380eff48de4ac25e4a852821d16df47812af168d80f9c3ddf701a5c0cc", + "size_in_bytes": 8243 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0bfbeacd89b8f3028d3f74903d6bd782332d77e028242fcd98300ff8ec257a44", + "sha256_in_prefix": "0bfbeacd89b8f3028d3f74903d6bd782332d77e028242fcd98300ff8ec257a44", + "size_in_bytes": 10306 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "74ae4dd8a72c968a367f75e3fc7d2965855f37930d5098f71dc1b39ca33273a5", + "sha256_in_prefix": "74ae4dd8a72c968a367f75e3fc7d2965855f37930d5098f71dc1b39ca33273a5", + "size_in_bytes": 13414 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1892d6749161bc2019c80caac059b2f4ad1f720612954ae3b8c65ab4d1efc1e2", + "sha256_in_prefix": "1892d6749161bc2019c80caac059b2f4ad1f720612954ae3b8c65ab4d1efc1e2", + "size_in_bytes": 8094 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2a663f8e1b3044a840f98d5ea9665278ede61d25322831c25bda3f5e030ad24e", + "sha256_in_prefix": "2a663f8e1b3044a840f98d5ea9665278ede61d25322831c25bda3f5e030ad24e", + "size_in_bytes": 5267 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bdba4d2a91409ac63c146f40f6a727cf782c6607210ad2cdf9643e872b3451ce", + "sha256_in_prefix": "bdba4d2a91409ac63c146f40f6a727cf782c6607210ad2cdf9643e872b3451ce", + "size_in_bytes": 4247 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/_log.py", + "path_type": "hardlink", + "sha256": "8be94d4d37174bc4e65884c9e833831afb56e73e6d31ab6d250efa87cad9c505", + "sha256_in_prefix": "8be94d4d37174bc4e65884c9e833831afb56e73e6d31ab6d250efa87cad9c505", + "size_in_bytes": 42 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/_macos_compat.py", + "path_type": "hardlink", + "sha256": "273506845e04e722084c76d468fa1b6445a318776badc355eb7cfce92e118c17", + "sha256_in_prefix": "273506845e04e722084c76d468fa1b6445a318776badc355eb7cfce92e118c17", + "size_in_bytes": 239 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/_modified.py", + "path_type": "hardlink", + "sha256": "259bc850a1e27673bfc9d74e692f68697752ad69f240c89f6ad68092fa6c9c85", + "sha256_in_prefix": "259bc850a1e27673bfc9d74e692f68697752ad69f240c89f6ad68092fa6c9c85", + "size_in_bytes": 2446 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py", + "path_type": "hardlink", + "sha256": "e045f2facc92015955ba273207a0b6dacf030b4f57e89d9dd677f729f275e391", + "sha256_in_prefix": "e045f2facc92015955ba273207a0b6dacf030b4f57e89d9dd677f729f275e391", + "size_in_bytes": 21195 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/archive_util.py", + "path_type": "hardlink", + "sha256": "d798c76cb9820dc9d9ef9276b451720a608feb2176696133573fa5bac69ecabe", + "sha256_in_prefix": "d798c76cb9820dc9d9ef9276b451720a608feb2176696133573fa5bac69ecabe", + "size_in_bytes": 7844 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py", + "path_type": "hardlink", + "sha256": "38acf0316edfd394d15c0113b0a837e0f5757f7b116c69808f58f5eb9d0907e1", + "sha256_in_prefix": "38acf0316edfd394d15c0113b0a837e0f5757f7b116c69808f58f5eb9d0907e1", + "size_in_bytes": 49190 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/cmd.py", + "path_type": "hardlink", + "sha256": "fcb4cb73078d02c0a62af50907d147e200ad779f7f779f57d0c24b1e5c0e6ee1", + "sha256_in_prefix": "fcb4cb73078d02c0a62af50907d147e200ad779f7f779f57d0c24b1e5c0e6ee1", + "size_in_bytes": 18668 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py", + "path_type": "hardlink", + "sha256": "19f140cdb06a935ab1487e0175a2a2a0a4b88514670f8e01026c0437ce42e2ef", + "sha256_in_prefix": "19f140cdb06a935ab1487e0175a2a2a0a4b88514670f8e01026c0437ce42e2ef", + "size_in_bytes": 386 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3b1398730534626cf5efa0496d46b11579bc188404347efce09640db4b0b53cd", + "sha256_in_prefix": "3b1398730534626cf5efa0496d46b11579bc188404347efce09640db4b0b53cd", + "size_in_bytes": 464 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e277fbbe0af961f72e5ac826908d61f743bcb0a1eb700249751e864d1a5aa704", + "sha256_in_prefix": "e277fbbe0af961f72e5ac826908d61f743bcb0a1eb700249751e864d1a5aa704", + "size_in_bytes": 1885 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "23de136e4fe8ea4d8ede22cd031a33535912ff195d121699e7f0b90189213354", + "sha256_in_prefix": "23de136e4fe8ea4d8ede22cd031a33535912ff195d121699e7f0b90189213354", + "size_in_bytes": 4172 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3b357656e4811288c878dda6b48f0694bf636e18ecd3aae75e84f42a7504eabb", + "sha256_in_prefix": "3b357656e4811288c878dda6b48f0694bf636e18ecd3aae75e84f42a7504eabb", + "size_in_bytes": 3561 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bab189635d1190d23ff075d360470ecd6853ad5d86f50741d1d1ca6f2aa022f4", + "sha256_in_prefix": "bab189635d1190d23ff075d360470ecd6853ad5d86f50741d1d1ca6f2aa022f4", + "size_in_bytes": 12248 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3240ed5de26a54a5164a2bd69938d772dd51a6f0800338e9ee6cbfe16be35500", + "sha256_in_prefix": "3240ed5de26a54a5164a2bd69938d772dd51a6f0800338e9ee6cbfe16be35500", + "size_in_bytes": 3926 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7a0ba5b590f200d3d938a5d8be5c62a23fb906423bf35e45958fe24db723d4f6", + "sha256_in_prefix": "7a0ba5b590f200d3d938a5d8be5c62a23fb906423bf35e45958fe24db723d4f6", + "size_in_bytes": 4927 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1642a534cec3dc592e07df97b0fc72c173a20361ea6f8797208dae0f617ff446", + "sha256_in_prefix": "1642a534cec3dc592e07df97b0fc72c173a20361ea6f8797208dae0f617ff446", + "size_in_bytes": 16847 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0228a3c558ea64c5f397aca7b7459ffe13c50043af0e4b4366db7a4aff6d6766", + "sha256_in_prefix": "0228a3c558ea64c5f397aca7b7459ffe13c50043af0e4b4366db7a4aff6d6766", + "size_in_bytes": 9769 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0e489495f966109f20f56d340b4995b969a40e2499eda0db30ae149e00efcab7", + "sha256_in_prefix": "0e489495f966109f20f56d340b4995b969a40e2499eda0db30ae149e00efcab7", + "size_in_bytes": 4655 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee7917c54a3d9104b299bd54c0fb9037ab2cf5d3642dfffd1426bbb840936c80", + "sha256_in_prefix": "ee7917c54a3d9104b299bd54c0fb9037ab2cf5d3642dfffd1426bbb840936c80", + "size_in_bytes": 4859 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f11026be72e83f3639a045a4238a57293fc428600eb53baeead582212a5e3787", + "sha256_in_prefix": "f11026be72e83f3639a045a4238a57293fc428600eb53baeead582212a5e3787", + "size_in_bytes": 2091 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5cf4a22111ffb10cc192a3345bb82ce046141d2ab83c444cefc77cc0e32eac34", + "sha256_in_prefix": "5cf4a22111ffb10cc192a3345bb82ce046141d2ab83c444cefc77cc0e32eac34", + "size_in_bytes": 10578 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e64c6eeba0d614db057d44dcc0abda9ea7e2346d8cf9c7611dc8fe060d0e3da8", + "sha256_in_prefix": "e64c6eeba0d614db057d44dcc0abda9ea7e2346d8cf9c7611dc8fe060d0e3da8", + "size_in_bytes": 17107 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "561d047f145272ceff5991da7f46a7add2250b6b97e825dec1720950a6e45e52", + "sha256_in_prefix": "561d047f145272ceff5991da7f46a7add2250b6b97e825dec1720950a6e45e52", + "size_in_bytes": 2882 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c6992d3d4d6dcb969876500ca64d6cc7132940ba125bc6d08feee97fefe1e4c", + "sha256_in_prefix": "0c6992d3d4d6dcb969876500ca64d6cc7132940ba125bc6d08feee97fefe1e4c", + "size_in_bytes": 3432 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ea282a84c7595be2f24b7b41781a197d9ec10a2eea228e7e65226b8174fa790e", + "sha256_in_prefix": "ea282a84c7595be2f24b7b41781a197d9ec10a2eea228e7e65226b8174fa790e", + "size_in_bytes": 1837 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "03aa2b1cd2ffcbb0c0ddd8f883c6f8e8370396c62620c5cff5678549b550abdc", + "sha256_in_prefix": "03aa2b1cd2ffcbb0c0ddd8f883c6f8e8370396c62620c5cff5678549b550abdc", + "size_in_bytes": 5261 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "72974061444292d66af8c320213ef9ff7b59f8458fae1893854221ab3796f4c0", + "sha256_in_prefix": "72974061444292d66af8c320213ef9ff7b59f8458fae1893854221ab3796f4c0", + "size_in_bytes": 2163 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "932c42d3b0278ded567b9d20334d7cee4b31d2233c0d79240fde482af9818d26", + "sha256_in_prefix": "932c42d3b0278ded567b9d20334d7cee4b31d2233c0d79240fde482af9818d26", + "size_in_bytes": 14477 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/_framework_compat.py", + "path_type": "hardlink", + "sha256": "d2265d4896331915820afcd10ca13e474fbfc9a018bc531dd729576f67985ee8", + "sha256_in_prefix": "d2265d4896331915820afcd10ca13e474fbfc9a018bc531dd729576f67985ee8", + "size_in_bytes": 1609 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py", + "path_type": "hardlink", + "sha256": "bad80254deb1214bc0140adcfd9fcee531375f81b4d028ab878e909c539aa280", + "sha256_in_prefix": "bad80254deb1214bc0140adcfd9fcee531375f81b4d028ab878e909c539aa280", + "size_in_bytes": 5423 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py", + "path_type": "hardlink", + "sha256": "1a2fddd4dcf897a1b3ff15382d17d1551281ae2db65a834f33bb98c97da4b1d9", + "sha256_in_prefix": "1a2fddd4dcf897a1b3ff15382d17d1551281ae2db65a834f33bb98c97da4b1d9", + "size_in_bytes": 4582 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py", + "path_type": "hardlink", + "sha256": "0df660bcf9a6dcf4c0777f58ccb790f1f99bc9119a5e8fa79a7533604b5c720d", + "sha256_in_prefix": "0df660bcf9a6dcf4c0777f58ccb790f1f99bc9119a5e8fa79a7533604b5c720d", + "size_in_bytes": 21686 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/build.py", + "path_type": "hardlink", + "sha256": "89b6f008474d6d725294359fd3546deb0442b04dc59b0aa2cc6a9ff642e72f92", + "sha256_in_prefix": "89b6f008474d6d725294359fd3546deb0442b04dc59b0aa2cc6a9ff642e72f92", + "size_in_bytes": 5768 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py", + "path_type": "hardlink", + "sha256": "30027e4993aa9f486fcb44e721b468cdb7a20d38870b32c61af0892b0db50eef", + "sha256_in_prefix": "30027e4993aa9f486fcb44e721b468cdb7a20d38870b32c61af0892b0db50eef", + "size_in_bytes": 7727 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", + "path_type": "hardlink", + "sha256": "2ca2eb10ba08c361d3936fc510156ab980bbadfa85ce332669648551010d6b45", + "sha256_in_prefix": "2ca2eb10ba08c361d3936fc510156ab980bbadfa85ce332669648551010d6b45", + "size_in_bytes": 32048 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py", + "path_type": "hardlink", + "sha256": "70d7bcbf0321c8f27680dea3a2df5c398e4eb943d4bd3ea3f5f205702f857229", + "sha256_in_prefix": "70d7bcbf0321c8f27680dea3a2df5c398e4eb943d4bd3ea3f5f205702f857229", + "size_in_bytes": 16552 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py", + "path_type": "hardlink", + "sha256": "775425bff6774f6744c0fde7bceef111e5635c5fd54e7fc95aa1baf13a426b6d", + "sha256_in_prefix": "775425bff6774f6744c0fde7bceef111e5635c5fd54e7fc95aa1baf13a426b6d", + "size_in_bytes": 5600 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/check.py", + "path_type": "hardlink", + "sha256": "a625fe8c7c91e92d6d7b618a3b5abe8275b715ea8cea633283cb309c75ab36d4", + "sha256_in_prefix": "a625fe8c7c91e92d6d7b618a3b5abe8275b715ea8cea633283cb309c75ab36d4", + "size_in_bytes": 4912 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/clean.py", + "path_type": "hardlink", + "sha256": "aa52ad87be2358b66329ada7c4e6b2ff616e6ba315353ae80296903af6b67707", + "sha256_in_prefix": "aa52ad87be2358b66329ada7c4e6b2ff616e6ba315353ae80296903af6b67707", + "size_in_bytes": 2595 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/config.py", + "path_type": "hardlink", + "sha256": "14a776bd44953a9d2ba5551eaf86e3e83f78f9fcb1c85f072718ad46564573d7", + "sha256_in_prefix": "14a776bd44953a9d2ba5551eaf86e3e83f78f9fcb1c85f072718ad46564573d7", + "size_in_bytes": 13008 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install.py", + "path_type": "hardlink", + "sha256": "9974f09e1a3d7b8918202288e7e642e2b57b253d1ce8cf02f2355801fa1f785d", + "sha256_in_prefix": "9974f09e1a3d7b8918202288e7e642e2b57b253d1ce8cf02f2355801fa1f785d", + "size_in_bytes": 30122 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py", + "path_type": "hardlink", + "sha256": "4dc5859587793500de7ea89056790b3de14fd27d5b7b17e1e880ecf24f475d30", + "sha256_in_prefix": "4dc5859587793500de7ea89056790b3de14fd27d5b7b17e1e880ecf24f475d30", + "size_in_bytes": 2810 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py", + "path_type": "hardlink", + "sha256": "7df88ba14d62bd027cab6fd62fb6728196d470eb207452ca2fba2d1082565a42", + "sha256_in_prefix": "7df88ba14d62bd027cab6fd62fb6728196d470eb207452ca2fba2d1082565a42", + "size_in_bytes": 2868 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py", + "path_type": "hardlink", + "sha256": "d5016e91e009c52b5c93c747889cdeea9e170924eeb4194f108311e6fcca972e", + "sha256_in_prefix": "d5016e91e009c52b5c93c747889cdeea9e170924eeb4194f108311e6fcca972e", + "size_in_bytes": 1251 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py", + "path_type": "hardlink", + "sha256": "a4a2cd135ae7a9da12a3c6eaf5e7d06d0b90a6b8394c6b30169bca91ad45dc58", + "sha256_in_prefix": "a4a2cd135ae7a9da12a3c6eaf5e7d06d0b90a6b8394c6b30169bca91ad45dc58", + "size_in_bytes": 8330 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py", + "path_type": "hardlink", + "sha256": "430f0aac2db899c21e244bdc04d28848ca62ef99e94a6ea3cd6e813b303d1bb8", + "sha256_in_prefix": "430f0aac2db899c21e244bdc04d28848ca62ef99e94a6ea3cd6e813b303d1bb8", + "size_in_bytes": 1937 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py", + "path_type": "hardlink", + "sha256": "14d4b3edc448e10d6fee80c7a1503104029da3283a6991dd6076b6e53ac79b6e", + "sha256_in_prefix": "14d4b3edc448e10d6fee80c7a1503104029da3283a6991dd6076b6e53ac79b6e", + "size_in_bytes": 18837 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/compat/__init__.py", + "path_type": "hardlink", + "sha256": "b40d2bcfea679742cf326789abbc8b94cc0a04cbf02be1699c8c2589890afa21", + "sha256_in_prefix": "b40d2bcfea679742cf326789abbc8b94cc0a04cbf02be1699c8c2589890afa21", + "size_in_bytes": 396 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7485f356040d9f51621150f8830a4ca1c19033f07913156dd096e5f9daab4343", + "sha256_in_prefix": "7485f356040d9f51621150f8830a4ca1c19033f07913156dd096e5f9daab4343", + "size_in_bytes": 850 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8cdee058c904186f42433483bc12f0eeeeacadcf7ebe20b43366b55ef0e8eb43", + "sha256_in_prefix": "8cdee058c904186f42433483bc12f0eeeeacadcf7ebe20b43366b55ef0e8eb43", + "size_in_bytes": 1900 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/compat/py39.py", + "path_type": "hardlink", + "sha256": "84eb03ea5c192ea66832769c349dcfea7500f8b250844a55b584f3547d28f7a3", + "sha256_in_prefix": "84eb03ea5c192ea66832769c349dcfea7500f8b250844a55b584f3547d28f7a3", + "size_in_bytes": 1964 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/core.py", + "path_type": "hardlink", + "sha256": "1841ca6850b8f13de8fbf4a61f8f3ae06bcacb1d4881b542e884883d5971edae", + "sha256_in_prefix": "1841ca6850b8f13de8fbf4a61f8f3ae06bcacb1d4881b542e884883d5971edae", + "size_in_bytes": 9364 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py", + "path_type": "hardlink", + "sha256": "d4b40ed29f80c0348dccb264fca3c82a9eb67a20e99066787cc32cd8dde8f78c", + "sha256_in_prefix": "d4b40ed29f80c0348dccb264fca3c82a9eb67a20e99066787cc32cd8dde8f78c", + "size_in_bytes": 11891 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/debug.py", + "path_type": "hardlink", + "sha256": "37a32b4c0a8aea5f52564ead5b0791d74f0f33c3a5eea3657f257e9c770b86c6", + "sha256_in_prefix": "37a32b4c0a8aea5f52564ead5b0791d74f0f33c3a5eea3657f257e9c770b86c6", + "size_in_bytes": 139 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/dep_util.py", + "path_type": "hardlink", + "sha256": "c4def9a7a6691e13221c473eae92f65e29494329c79c336269f1ed79a678b635", + "sha256_in_prefix": "c4def9a7a6691e13221c473eae92f65e29494329c79c336269f1ed79a678b635", + "size_in_bytes": 349 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/dir_util.py", + "path_type": "hardlink", + "sha256": "0d73d495f5551ac83d07e26083802dfe3f53eef33ad0e8303579101ea4e8efe2", + "sha256_in_prefix": "0d73d495f5551ac83d07e26083802dfe3f53eef33ad0e8303579101ea4e8efe2", + "size_in_bytes": 7236 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/dist.py", + "path_type": "hardlink", + "sha256": "f4d39a17b4f3df6b80f6d97548c9307b96dbf1833a844b68d353c6beea3eb835", + "sha256_in_prefix": "f4d39a17b4f3df6b80f6d97548c9307b96dbf1833a844b68d353c6beea3eb835", + "size_in_bytes": 51529 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/errors.py", + "path_type": "hardlink", + "sha256": "6d9ddc2f5629998547258120c3c50cf2f96c2cc2297805ea8ba203495f58aa1c", + "sha256_in_prefix": "6d9ddc2f5629998547258120c3c50cf2f96c2cc2297805ea8ba203495f58aa1c", + "size_in_bytes": 3325 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/extension.py", + "path_type": "hardlink", + "sha256": "37a1b288cb3fab13320e370e5ee2918842026f315c5576d80f70ee0fdfe10f99", + "sha256_in_prefix": "37a1b288cb3fab13320e370e5ee2918842026f315c5576d80f70ee0fdfe10f99", + "size_in_bytes": 10755 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py", + "path_type": "hardlink", + "sha256": "3e374ef9b5825b48a657f50df8c184c3d47618fd8e884f291e32138264c06374", + "sha256_in_prefix": "3e374ef9b5825b48a657f50df8c184c3d47618fd8e884f291e32138264c06374", + "size_in_bytes": 17895 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/file_util.py", + "path_type": "hardlink", + "sha256": "60540bfe90f784bb8447d208fc7ebe8430bf608184a2891d778c1e74bba24d6d", + "sha256_in_prefix": "60540bfe90f784bb8447d208fc7ebe8430bf608184a2891d778c1e74bba24d6d", + "size_in_bytes": 7978 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/filelist.py", + "path_type": "hardlink", + "sha256": "0d7ddd5a70d3026124e5eed290661d5fa4491c50b36451fcaad226eea14069b1", + "sha256_in_prefix": "0d7ddd5a70d3026124e5eed290661d5fa4491c50b36451fcaad226eea14069b1", + "size_in_bytes": 13567 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/log.py", + "path_type": "hardlink", + "sha256": "57206ce63ef3e3e2ba5d310405385473d1f2329a0f2c6b50a4446a6f3e72970c", + "sha256_in_prefix": "57206ce63ef3e3e2ba5d310405385473d1f2329a0f2c6b50a4446a6f3e72970c", + "size_in_bytes": 1200 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/spawn.py", + "path_type": "hardlink", + "sha256": "902b440052603e94995dba33ad57ee07b078a2661486bfa12daba4a6e5c65d88", + "sha256_in_prefix": "902b440052603e94995dba33ad57ee07b078a2661486bfa12daba4a6e5c65d88", + "size_in_bytes": 3634 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py", + "path_type": "hardlink", + "sha256": "33ff692920a02176bf7adbc8cf387600ebaf04b008581ef45a69f4113e2168a9", + "sha256_in_prefix": "33ff692920a02176bf7adbc8cf387600ebaf04b008581ef45a69f4113e2168a9", + "size_in_bytes": 19266 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__init__.py", + "path_type": "hardlink", + "sha256": "8fe2283d912d42fdc438fbaa353c1a96be862f2463cc20be38e68dbd9ce61ec2", + "sha256_in_prefix": "8fe2283d912d42fdc438fbaa353c1a96be862f2463cc20be38e68dbd9ce61ec2", + "size_in_bytes": 1485 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9538765e7af6249f88626056dd3adcb204e22596ca39862b957e5da450a0885f", + "sha256_in_prefix": "9538765e7af6249f88626056dd3adcb204e22596ca39862b957e5da450a0885f", + "size_in_bytes": 1488 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "057ee38c9a7b7119374e0d559a67695844e97d2a4eb4f2b1a4a670f361f98849", + "sha256_in_prefix": "057ee38c9a7b7119374e0d559a67695844e97d2a4eb4f2b1a4a670f361f98849", + "size_in_bytes": 5089 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1916bf9855840a7ee46e347ff7eb2cb49bea6d27cd6fc1110ab57e65f0f3ee94", + "sha256_in_prefix": "1916bf9855840a7ee46e347ff7eb2cb49bea6d27cd6fc1110ab57e65f0f3ee94", + "size_in_bytes": 10685 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "05b09fc7c19d61df9c8bfeb05eb02be5cafbe2d5a28f66ea9299d14631540bc1", + "sha256_in_prefix": "05b09fc7c19d61df9c8bfeb05eb02be5cafbe2d5a28f66ea9299d14631540bc1", + "size_in_bytes": 1297 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "37e78a6a710514e02c41ce816f43f27fb076949cbae2467f88271e6ca57dc113", + "sha256_in_prefix": "37e78a6a710514e02c41ce816f43f27fb076949cbae2467f88271e6ca57dc113", + "size_in_bytes": 2093 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "eaa2e06615e170b8295c69823f017e7dddc1c673e8f741ed44fcf2320d70b227", + "sha256_in_prefix": "eaa2e06615e170b8295c69823f017e7dddc1c673e8f741ed44fcf2320d70b227", + "size_in_bytes": 3003 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6be43297d8502fbf3b2a5deb39969edc988120da3a4917bb25d0b768e93c05b9", + "sha256_in_prefix": "6be43297d8502fbf3b2a5deb39969edc988120da3a4917bb25d0b768e93c05b9", + "size_in_bytes": 1449 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f4ebc3073733befb225dcc39126158454d67876ef92f5c6d81a84efbc7881640", + "sha256_in_prefix": "f4ebc3073733befb225dcc39126158454d67876ef92f5c6d81a84efbc7881640", + "size_in_bytes": 3744 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c6e03960a94ac5ae3b20a612e47caf45bab4fe1946de133c7c6d6d5e8fde039e", + "sha256_in_prefix": "c6e03960a94ac5ae3b20a612e47caf45bab4fe1946de133c7c6d6d5e8fde039e", + "size_in_bytes": 13690 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "55cbdb0bea34e14e6169eb817469c9b7b25a29e958f29f02c40fdb3ad44e32f9", + "sha256_in_prefix": "55cbdb0bea34e14e6169eb817469c9b7b25a29e958f29f02c40fdb3ad44e32f9", + "size_in_bytes": 5570 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "493b002e12eb9f1c79f8d95b59763b15e8d5cbd0162dfdce4ef324c77a3f94ed", + "sha256_in_prefix": "493b002e12eb9f1c79f8d95b59763b15e8d5cbd0162dfdce4ef324c77a3f94ed", + "size_in_bytes": 3106 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ba3aff28de19cbd15f1b5e53e98208efd960347485f9e9ec2c0c3fd088f2bd64", + "sha256_in_prefix": "ba3aff28de19cbd15f1b5e53e98208efd960347485f9e9ec2c0c3fd088f2bd64", + "size_in_bytes": 2746 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "79eee44be99074ef88b2bb98f94243a5045b26287a69014555ff82fc4de18ebd", + "sha256_in_prefix": "79eee44be99074ef88b2bb98f94243a5045b26287a69014555ff82fc4de18ebd", + "size_in_bytes": 4414 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "08e228ad09bb9f836c66e3ba9009b9742ee9f3c76c87d161a6cc7e1cf5469842", + "sha256_in_prefix": "08e228ad09bb9f836c66e3ba9009b9742ee9f3c76c87d161a6cc7e1cf5469842", + "size_in_bytes": 1310 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "de3d567a93c3053e9df145f8bfdaac713f9fe04c6aeeb8e81a41df0cff6bde92", + "sha256_in_prefix": "de3d567a93c3053e9df145f8bfdaac713f9fe04c6aeeb8e81a41df0cff6bde92", + "size_in_bytes": 4066 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "73a92f38478e9e9e00b9c52615addc1d439643b65186f303da1707949d618b4d", + "sha256_in_prefix": "73a92f38478e9e9e00b9c52615addc1d439643b65186f303da1707949d618b4d", + "size_in_bytes": 3024 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "eaaccc317df4f46d60716fc9ccbd7bc92657c86e67d98a92c24445ccc315e230", + "sha256_in_prefix": "eaaccc317df4f46d60716fc9ccbd7bc92657c86e67d98a92c24445ccc315e230", + "size_in_bytes": 3963 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b8b59539b2830778d8250511279c48263fa05938ef4a3c6e69ba555e17ff7762", + "sha256_in_prefix": "b8b59539b2830778d8250511279c48263fa05938ef4a3c6e69ba555e17ff7762", + "size_in_bytes": 2930 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9f6325772d0892773b5a6c54690869c21b5b54d9c8c5e6d32d9efd60b310a61d", + "sha256_in_prefix": "9f6325772d0892773b5a6c54690869c21b5b54d9c8c5e6d32d9efd60b310a61d", + "size_in_bytes": 4944 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0f9ee2370feb9bdc47c992ae89274947b3fcb4e33892f6fe6071e7e27a8cc9f7", + "sha256_in_prefix": "0f9ee2370feb9bdc47c992ae89274947b3fcb4e33892f6fe6071e7e27a8cc9f7", + "size_in_bytes": 16757 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "62661501b32c7e1c614720522f16bb987ede15e2bbc80a798f9554cf47a6a204", + "sha256_in_prefix": "62661501b32c7e1c614720522f16bb987ede15e2bbc80a798f9554cf47a6a204", + "size_in_bytes": 2595 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8d4ec430ea25c6d025305d0e2b12a1075ba606ee1d5f6a8d162a68ab85130b19", + "sha256_in_prefix": "8d4ec430ea25c6d025305d0e2b12a1075ba606ee1d5f6a8d162a68ab85130b19", + "size_in_bytes": 3486 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "44e536b044449dbcd76a0ca3086575df4810f4717c5a28879dd49378bc8271ae", + "sha256_in_prefix": "44e536b044449dbcd76a0ca3086575df4810f4717c5a28879dd49378bc8271ae", + "size_in_bytes": 8297 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d03b66f73acd7bf34fe1f45b5e1c8a8f8c76cc82ff4a83dd423868517874fffc", + "sha256_in_prefix": "d03b66f73acd7bf34fe1f45b5e1c8a8f8c76cc82ff4a83dd423868517874fffc", + "size_in_bytes": 7394 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2dee21c0ceeaf9ec3c60a20c5f67e8d37b1a6dc87166f8f3c60da57b49281cd0", + "sha256_in_prefix": "2dee21c0ceeaf9ec3c60a20c5f67e8d37b1a6dc87166f8f3c60da57b49281cd0", + "size_in_bytes": 1849 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "59dbb0e2f9f135f70db878696a835a093fc56ef9925a4fd68176224e4ac214d2", + "sha256_in_prefix": "59dbb0e2f9f135f70db878696a835a093fc56ef9925a4fd68176224e4ac214d2", + "size_in_bytes": 1149 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f3d9ffb61b38bfbaca11ba0c4464a8416872256fb6ee26d5e91eb67f34d2a9f7", + "sha256_in_prefix": "f3d9ffb61b38bfbaca11ba0c4464a8416872256fb6ee26d5e91eb67f34d2a9f7", + "size_in_bytes": 3112 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c1be3fd1b66b52abddedff2ef1c294d0be1c07736db5500e090ef604985ec4b9", + "sha256_in_prefix": "c1be3fd1b66b52abddedff2ef1c294d0be1c07736db5500e090ef604985ec4b9", + "size_in_bytes": 1666 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "149c12c6c5a17f3a1a413eb7e6b381622212efd7aa5a44cdecc391f18c8e1d7d", + "sha256_in_prefix": "149c12c6c5a17f3a1a413eb7e6b381622212efd7aa5a44cdecc391f18c8e1d7d", + "size_in_bytes": 700 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "558397406a84e048cd38a855d5017cd0cd13163ce889eb53b3ed0dadd35232b4", + "sha256_in_prefix": "558397406a84e048cd38a855d5017cd0cd13163ce889eb53b3ed0dadd35232b4", + "size_in_bytes": 2562 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "33628cff02984eb2a8ea32d43afd9c314940752dbe9d73e63a677bbe320508de", + "sha256_in_prefix": "33628cff02984eb2a8ea32d43afd9c314940752dbe9d73e63a677bbe320508de", + "size_in_bytes": 4185 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ea2fc011099560be79d9a12d9464152d085c1bda1b2b8d90f062d5642fdf69c7", + "sha256_in_prefix": "ea2fc011099560be79d9a12d9464152d085c1bda1b2b8d90f062d5642fdf69c7", + "size_in_bytes": 5175 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f6331ac21e20ebc98ce110bd0ea4b4f762a229fb5ecffc3678c1509385fad84e", + "sha256_in_prefix": "f6331ac21e20ebc98ce110bd0ea4b4f762a229fb5ecffc3678c1509385fad84e", + "size_in_bytes": 11193 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d34bcbe1abdf81e719b7711584fdf0da26323913558673ffbe95166ec7d69629", + "sha256_in_prefix": "d34bcbe1abdf81e719b7711584fdf0da26323913558673ffbe95166ec7d69629", + "size_in_bytes": 3595 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4fb6fbd1228e60e4fffe3a8695d9f142999d09f6d39f7c5f8cff714d24e7579c", + "sha256_in_prefix": "4fb6fbd1228e60e4fffe3a8695d9f142999d09f6d39f7c5f8cff714d24e7579c", + "size_in_bytes": 10862 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "95847463c9c05518aac2eef227f2fec7cf1f835643600c8072e7ffdb47a72cf8", + "sha256_in_prefix": "95847463c9c05518aac2eef227f2fec7cf1f835643600c8072e7ffdb47a72cf8", + "size_in_bytes": 2156 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2f1779d9a918df52ff811f8d7da8e9888ebdf215b38f3c978353dbe6c7bb8ff2", + "sha256_in_prefix": "2f1779d9a918df52ff811f8d7da8e9888ebdf215b38f3c978353dbe6c7bb8ff2", + "size_in_bytes": 9333 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fa14e1b4ec8fee91c4ba1c7a89f7f28811dfbed7b28e4df9dfb72c73f175a2ef", + "sha256_in_prefix": "fa14e1b4ec8fee91c4ba1c7a89f7f28811dfbed7b28e4df9dfb72c73f175a2ef", + "size_in_bytes": 7884 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "637ce29e59ecac79bb58b7159af8dea2117945ae67c819248dfa8c19b7aeac1d", + "sha256_in_prefix": "637ce29e59ecac79bb58b7159af8dea2117945ae67c819248dfa8c19b7aeac1d", + "size_in_bytes": 2459 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3ce7b23abfdd5df21738bdaaf0627f023c9c927ddb7da6009c177d8839aa9442", + "sha256_in_prefix": "3ce7b23abfdd5df21738bdaaf0627f023c9c927ddb7da6009c177d8839aa9442", + "size_in_bytes": 174 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1536b9468ae3a89e39d45fdf5c431abb205f4f8553e376dbbef8963142274d3c", + "sha256_in_prefix": "1536b9468ae3a89e39d45fdf5c431abb205f4f8553e376dbbef8963142274d3c", + "size_in_bytes": 510 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6f90a5901f4d4166d1cdb76fe2e0520925c8c99218f22ac71dea42389afe77ab", + "sha256_in_prefix": "6f90a5901f4d4166d1cdb76fe2e0520925c8c99218f22ac71dea42389afe77ab", + "size_in_bytes": 168 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "661203943ee96f5268c73d0ff1d321dc882eb5d3955fdcd2c276ba7c37fc5cc9", + "sha256_in_prefix": "661203943ee96f5268c73d0ff1d321dc882eb5d3955fdcd2c276ba7c37fc5cc9", + "size_in_bytes": 583 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/compat/py39.py", + "path_type": "hardlink", + "sha256": "b741814ccfb7d235fef7309f93094d045b73cda6de9b1eb4eb9989d1df7f551c", + "sha256_in_prefix": "b741814ccfb7d235fef7309f93094d045b73cda6de9b1eb4eb9989d1df7f551c", + "size_in_bytes": 1026 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/support.py", + "path_type": "hardlink", + "sha256": "b63b18b32c6fa532b836b902b1e876ba3bc320657431ffdbe522397cfd93d323", + "sha256_in_prefix": "b63b18b32c6fa532b836b902b1e876ba3bc320657431ffdbe522397cfd93d323", + "size_in_bytes": 4099 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_archive_util.py", + "path_type": "hardlink", + "sha256": "8e8ce2992c0f045f89a097cdfef0da895199a7ae8135c5991a1df81655b9ec34", + "sha256_in_prefix": "8e8ce2992c0f045f89a097cdfef0da895199a7ae8135c5991a1df81655b9ec34", + "size_in_bytes": 11787 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist.py", + "path_type": "hardlink", + "sha256": "c4d1f152c2e51ec6504709332dbfe2483db8b3ef4c93e357d9f7c15b03b23f27", + "sha256_in_prefix": "c4d1f152c2e51ec6504709332dbfe2483db8b3ef4c93e357d9f7c15b03b23f27", + "size_in_bytes": 1396 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py", + "path_type": "hardlink", + "sha256": "405d393073613ce759ca1f3c5e9c3c2ac3bae2cee9445925f0a2fe4685785cad", + "sha256_in_prefix": "405d393073613ce759ca1f3c5e9c3c2ac3bae2cee9445925f0a2fe4685785cad", + "size_in_bytes": 2247 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py", + "path_type": "hardlink", + "sha256": "1dd9bea705a0c9aa067466c470665af1c461194e39cbc8072bcba639a9d38e29", + "sha256_in_prefix": "1dd9bea705a0c9aa067466c470665af1c461194e39cbc8072bcba639a9d38e29", + "size_in_bytes": 3932 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build.py", + "path_type": "hardlink", + "sha256": "2496395e9399728db9658d29b2dc65fa223c987b163f4ba37f9a3c68eb6e6586", + "sha256_in_prefix": "2496395e9399728db9658d29b2dc65fa223c987b163f4ba37f9a3c68eb6e6586", + "size_in_bytes": 1742 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_clib.py", + "path_type": "hardlink", + "sha256": "328d5915be02d555c160e1af9da965c0ded80a74edaf6e1a90b0cef198b80ac6", + "sha256_in_prefix": "328d5915be02d555c160e1af9da965c0ded80a74edaf6e1a90b0cef198b80ac6", + "size_in_bytes": 4331 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_ext.py", + "path_type": "hardlink", + "sha256": "23a1d4cd7e8c8035b6e6fe01dfd5c12ea3df553f12c863a5d56fb7d9e84864e3", + "sha256_in_prefix": "23a1d4cd7e8c8035b6e6fe01dfd5c12ea3df553f12c863a5d56fb7d9e84864e3", + "size_in_bytes": 19954 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_py.py", + "path_type": "hardlink", + "sha256": "36c7e646ba2338705734ca9647f9a9e60e0f2d3823843ee264551f7c664521dc", + "sha256_in_prefix": "36c7e646ba2338705734ca9647f9a9e60e0f2d3823843ee264551f7c664521dc", + "size_in_bytes": 6882 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_build_scripts.py", + "path_type": "hardlink", + "sha256": "703f85472fa85f9e6c5d15f9133e7140269e1eb59a8f229ce17bb0bf67dee3cc", + "sha256_in_prefix": "703f85472fa85f9e6c5d15f9133e7140269e1eb59a8f229ce17bb0bf67dee3cc", + "size_in_bytes": 2880 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_ccompiler.py", + "path_type": "hardlink", + "sha256": "b8bbdd69a135f052769d31fe310ebb20f927a98686d4e43ecf4d28934263c0c0", + "sha256_in_prefix": "b8bbdd69a135f052769d31fe310ebb20f927a98686d4e43ecf4d28934263c0c0", + "size_in_bytes": 3026 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_check.py", + "path_type": "hardlink", + "sha256": "847495d3ba9fed8a12c46b136dbb1443db6cb19cf945135d6eb635b364b06852", + "sha256_in_prefix": "847495d3ba9fed8a12c46b136dbb1443db6cb19cf945135d6eb635b364b06852", + "size_in_bytes": 6226 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_clean.py", + "path_type": "hardlink", + "sha256": "84f1fa8df22918552bbd66c5d6dc6488d55235a031b76c2ae578d5e3df733b81", + "sha256_in_prefix": "84f1fa8df22918552bbd66c5d6dc6488d55235a031b76c2ae578d5e3df733b81", + "size_in_bytes": 1240 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_cmd.py", + "path_type": "hardlink", + "sha256": "6e0441efd9a2b6838a4753a2c991e70a882f1b1b77a56931793a880b4e254164", + "sha256_in_prefix": "6e0441efd9a2b6838a4753a2c991e70a882f1b1b77a56931793a880b4e254164", + "size_in_bytes": 3254 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_config_cmd.py", + "path_type": "hardlink", + "sha256": "66ce965f421fc43be6b82d7d5f3b953676029d3afd63e865ef74c09834813786", + "sha256_in_prefix": "66ce965f421fc43be6b82d7d5f3b953676029d3afd63e865ef74c09834813786", + "size_in_bytes": 2664 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_core.py", + "path_type": "hardlink", + "sha256": "2fb5ca540c5af8c1a8019780368a67b8af5f44a9de621912429830f1742f705f", + "sha256_in_prefix": "2fb5ca540c5af8c1a8019780368a67b8af5f44a9de621912429830f1742f705f", + "size_in_bytes": 3829 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py", + "path_type": "hardlink", + "sha256": "8aac6c0f2d19e594d183133c011ccf5da922b50a1dd95f1a1b9a9eb7f279b538", + "sha256_in_prefix": "8aac6c0f2d19e594d183133c011ccf5da922b50a1dd95f1a1b9a9eb7f279b538", + "size_in_bytes": 2753 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_dir_util.py", + "path_type": "hardlink", + "sha256": "13ce250be938ae2554c1447259a43426ac76ba2dbe8a8fb446e25adcceea909b", + "sha256_in_prefix": "13ce250be938ae2554c1447259a43426ac76ba2dbe8a8fb446e25adcceea909b", + "size_in_bytes": 4500 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_dist.py", + "path_type": "hardlink", + "sha256": "6bac257397d025de6a43a1ce9ddcdcba93618d3c6f8fafbf24bb69b98bda3f53", + "sha256_in_prefix": "6bac257397d025de6a43a1ce9ddcdcba93618d3c6f8fafbf24bb69b98bda3f53", + "size_in_bytes": 18793 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_extension.py", + "path_type": "hardlink", + "sha256": "f987a32e0642bb2705ace05deb8a551f426fc0c73d3708731ef431bef8d71ea9", + "sha256_in_prefix": "f987a32e0642bb2705ace05deb8a551f426fc0c73d3708731ef431bef8d71ea9", + "size_in_bytes": 3670 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_file_util.py", + "path_type": "hardlink", + "sha256": "962be39e5dc592295096b076ac574542af67be3115647ca73726b46dfceffdbe", + "sha256_in_prefix": "962be39e5dc592295096b076ac574542af67be3115647ca73726b46dfceffdbe", + "size_in_bytes": 3522 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_filelist.py", + "path_type": "hardlink", + "sha256": "ac9c24a8251f9060e05a50f6d93a33b13f3271bba930707c0d7a93873c13d53e", + "sha256_in_prefix": "ac9c24a8251f9060e05a50f6d93a33b13f3271bba930707c0d7a93873c13d53e", + "size_in_bytes": 10766 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install.py", + "path_type": "hardlink", + "sha256": "4df081d32921231c9d202d90e12b93019cd21efb5e30782b04bf708684a02bd4", + "sha256_in_prefix": "4df081d32921231c9d202d90e12b93019cd21efb5e30782b04bf708684a02bd4", + "size_in_bytes": 8618 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_data.py", + "path_type": "hardlink", + "sha256": "bcaab72bdee4d210409ce837f279b011d7fb7040d5afdad357209e2689606f80", + "sha256_in_prefix": "bcaab72bdee4d210409ce837f279b011d7fb7040d5afdad357209e2689606f80", + "size_in_bytes": 2464 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_headers.py", + "path_type": "hardlink", + "sha256": "3d5018a68fed625f7cd107fae033ce9a64afc9e7c81dd534e9fed5b09799ca41", + "sha256_in_prefix": "3d5018a68fed625f7cd107fae033ce9a64afc9e7c81dd534e9fed5b09799ca41", + "size_in_bytes": 936 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_lib.py", + "path_type": "hardlink", + "sha256": "aab8ba465fa668d4d0acd0d5f036de5cd974863b1f4482a2238adf64bae65812", + "sha256_in_prefix": "aab8ba465fa668d4d0acd0d5f036de5cd974863b1f4482a2238adf64bae65812", + "size_in_bytes": 3612 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_install_scripts.py", + "path_type": "hardlink", + "sha256": "284defd1c0e4156fbdd083880fe3a665918cda6872f99904bae5bb5174b6487c", + "sha256_in_prefix": "284defd1c0e4156fbdd083880fe3a665918cda6872f99904bae5bb5174b6487c", + "size_in_bytes": 1600 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_log.py", + "path_type": "hardlink", + "sha256": "8ac16d3ae7e5a02c84759690395edc554af8e86c2d755323e37986041e571fb9", + "sha256_in_prefix": "8ac16d3ae7e5a02c84759690395edc554af8e86c2d755323e37986041e571fb9", + "size_in_bytes": 323 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py", + "path_type": "hardlink", + "sha256": "98197c5bc4083b6c72e1e3a3e9a0045689b89686f0a4733e1ef154217bbaab47", + "sha256_in_prefix": "98197c5bc4083b6c72e1e3a3e9a0045689b89686f0a4733e1ef154217bbaab47", + "size_in_bytes": 2202 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_modified.py", + "path_type": "hardlink", + "sha256": "875fbe6ce5a6b49a356e9555eae4617674bd6ebef508188d0ccd4c0f0486a6e8", + "sha256_in_prefix": "875fbe6ce5a6b49a356e9555eae4617674bd6ebef508188d0ccd4c0f0486a6e8", + "size_in_bytes": 4221 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_msvccompiler.py", + "path_type": "hardlink", + "sha256": "c54adfc82c023b9ec312cc5ca0beacf981b760865196562c2ae6a065b04f149d", + "sha256_in_prefix": "c54adfc82c023b9ec312cc5ca0beacf981b760865196562c2ae6a065b04f149d", + "size_in_bytes": 4301 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_sdist.py", + "path_type": "hardlink", + "sha256": "227b1b534f5a795749b63f10cb04449d466e577d9bbe2e3b791987de2590c249", + "sha256_in_prefix": "227b1b534f5a795749b63f10cb04449d466e577d9bbe2e3b791987de2590c249", + "size_in_bytes": 15058 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_spawn.py", + "path_type": "hardlink", + "sha256": "792f30f43edb4f1c852d2c916a12567ae87c29cd45f11596898fdd486e41e417", + "sha256_in_prefix": "792f30f43edb4f1c852d2c916a12567ae87c29cd45f11596898fdd486e41e417", + "size_in_bytes": 4803 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_sysconfig.py", + "path_type": "hardlink", + "sha256": "97133c2ec522d53a268c35781e860af2ee6752806478d2fad14abc3d8d437305", + "sha256_in_prefix": "97133c2ec522d53a268c35781e860af2ee6752806478d2fad14abc3d8d437305", + "size_in_bytes": 11986 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_text_file.py", + "path_type": "hardlink", + "sha256": "59059207901f7410d968c03c045822a493e7b096ffd9228c7cbf747d291156dc", + "sha256_in_prefix": "59059207901f7410d968c03c045822a493e7b096ffd9228c7cbf747d291156dc", + "size_in_bytes": 3460 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_unixccompiler.py", + "path_type": "hardlink", + "sha256": "5b0084d333d8344da75520ee4d8270b51f81a66134b6e4c99423507de57f24e2", + "sha256_in_prefix": "5b0084d333d8344da75520ee4d8270b51f81a66134b6e4c99423507de57f24e2", + "size_in_bytes": 11835 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_util.py", + "path_type": "hardlink", + "sha256": "1fdce5678cf8561e137e33580c1b313fbc20b902e9c427c963239c9b5c995377", + "sha256_in_prefix": "1fdce5678cf8561e137e33580c1b313fbc20b902e9c427c963239c9b5c995377", + "size_in_bytes": 7988 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_version.py", + "path_type": "hardlink", + "sha256": "6a17e0fe63fcc11cb5b20c18fbf3f1e61ae381febfba94c8a670a0a51e325919", + "sha256_in_prefix": "6a17e0fe63fcc11cb5b20c18fbf3f1e61ae381febfba94c8a670a0a51e325919", + "size_in_bytes": 2750 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/test_versionpredicate.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/tests/unix_compat.py", + "path_type": "hardlink", + "sha256": "cfea29e82da255d5f56aae4120147b72a3b18a3284f7b6a537026a1cd74ba682", + "sha256_in_prefix": "cfea29e82da255d5f56aae4120147b72a3b18a3284f7b6a537026a1cd74ba682", + "size_in_bytes": 386 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/text_file.py", + "path_type": "hardlink", + "sha256": "cf876438906bf41a362c6d1336a9bcb03eb72c411a29248fd09d1b581ac51b77", + "sha256_in_prefix": "cf876438906bf41a362c6d1336a9bcb03eb72c411a29248fd09d1b581ac51b77", + "size_in_bytes": 12101 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py", + "path_type": "hardlink", + "sha256": "4091cd71088cb5670e4385b3ba9cc8bf59d0c0110da3e6cd91e542495993e099", + "sha256_in_prefix": "4091cd71088cb5670e4385b3ba9cc8bf59d0c0110da3e6cd91e542495993e099", + "size_in_bytes": 15437 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/util.py", + "path_type": "hardlink", + "sha256": "6d785fb6ecfad68b331afc335d4b6ff64b5e18d7beed89854c4bb7dc3ea94217", + "sha256_in_prefix": "6d785fb6ecfad68b331afc335d4b6ff64b5e18d7beed89854c4bb7dc3ea94217", + "size_in_bytes": 17493 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/version.py", + "path_type": "hardlink", + "sha256": "bc8993e7e1025e4436d6828bd17605893a8ae8dc8cd3d729cc136803fdf80905", + "sha256_in_prefix": "bc8993e7e1025e4436d6828bd17605893a8ae8dc8cd3d729cc136803fdf80905", + "size_in_bytes": 12619 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py", + "path_type": "hardlink", + "sha256": "a81590eb04e3d76383cada13988c9d79f218da36f8b98d6c75b81bb8b9fe2093", + "sha256_in_prefix": "a81590eb04e3d76383cada13988c9d79f218da36f8b98d6c75b81bb8b9fe2093", + "size_in_bytes": 5205 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_distutils/zosccompiler.py", + "path_type": "hardlink", + "sha256": "6dbd9d4281a7b2fe0b9a84017e3843b1a3a9b7fa7947bcbfdbc975725b661bde", + "sha256_in_prefix": "6dbd9d4281a7b2fe0b9a84017e3843b1a3a9b7fa7947bcbfdbc975725b661bde", + "size_in_bytes": 6589 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_entry_points.py", + "path_type": "hardlink", + "sha256": "63741413d24a156fd8caab839e97df3564ace9fde3284b757be767c7efbdf8ac", + "sha256_in_prefix": "63741413d24a156fd8caab839e97df3564ace9fde3284b757be767c7efbdf8ac", + "size_in_bytes": 2310 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_imp.py", + "path_type": "hardlink", + "sha256": "618d448d910dfb4cd8722d5cc4ed7407f69d0043abee2f1e2bc26809cf487ab7", + "sha256_in_prefix": "618d448d910dfb4cd8722d5cc4ed7407f69d0043abee2f1e2bc26809cf487ab7", + "size_in_bytes": 2435 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_importlib.py", + "path_type": "hardlink", + "sha256": "68a22370ad07297373d83f974ebc5a8b11a7fe3b9390e3709aeddd72178c385d", + "sha256_in_prefix": "68a22370ad07297373d83f974ebc5a8b11a7fe3b9390e3709aeddd72178c385d", + "size_in_bytes": 223 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_itertools.py", + "path_type": "hardlink", + "sha256": "8d645fb08ae90bb9b2a28cf78435118fd1adbe9b3065e2978361da926121363a", + "sha256_in_prefix": "8d645fb08ae90bb9b2a28cf78435118fd1adbe9b3065e2978361da926121363a", + "size_in_bytes": 657 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_normalization.py", + "path_type": "hardlink", + "sha256": "b7e49e5dcd23536c1e418f41037a869514e1cc1343d6860ae47a73835ff9df78", + "sha256_in_prefix": "b7e49e5dcd23536c1e418f41037a869514e1cc1343d6860ae47a73835ff9df78", + "size_in_bytes": 4536 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_path.py", + "path_type": "hardlink", + "sha256": "70fbf8d6fd371c3eee118a82228f84fdc1917e93d5af8972c010a22be1d2ac28", + "sha256_in_prefix": "70fbf8d6fd371c3eee118a82228f84fdc1917e93d5af8972c010a22be1d2ac28", + "size_in_bytes": 2685 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_reqs.py", + "path_type": "hardlink", + "sha256": "408dc2f6e38148d45c72edb4f2a3e78b11f1e759f10abcbbfe73d32096926313", + "sha256_in_prefix": "408dc2f6e38148d45c72edb4f2a3e78b11f1e759f10abcbbfe73d32096926313", + "size_in_bytes": 1438 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_shutil.py", + "path_type": "hardlink", + "sha256": "7003a595ca323135ece492e8c9b422dbdc88e6000193cda17a9272381bf66ccc", + "sha256_in_prefix": "7003a595ca323135ece492e8c9b422dbdc88e6000193cda17a9272381bf66ccc", + "size_in_bytes": 1496 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_static.py", + "path_type": "hardlink", + "sha256": "c35d1bbf4e8d4a938587008d0b715091e54dcdc899bc8ccd669f0d5f7d356e1b", + "sha256_in_prefix": "c35d1bbf4e8d4a938587008d0b715091e54dcdc899bc8ccd669f0d5f7d356e1b", + "size_in_bytes": 4855 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "aae0f0b825e60b4e208c23a96717f1de76acea5b4be62a5c78d0dd99c5ae7ab3", + "sha256_in_prefix": "aae0f0b825e60b4e208c23a96717f1de76acea5b4be62a5c78d0dd99c5ae7ab3", + "size_in_bytes": 100312 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "ade78d04982d69972d444a8e14a94f87a2334dd3855cc80348ea8e240aa0df2d", + "sha256_in_prefix": "ade78d04982d69972d444a8e14a94f87a2334dd3855cc80348ea8e240aa0df2d", + "size_in_bytes": 7634 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "3800d9b91dceea2065a6ed6279383362e97ac38b8e56b9343f404ee531860099", + "sha256_in_prefix": "3800d9b91dceea2065a6ed6279383362e97ac38b8e56b9343f404ee531860099", + "size_in_bytes": 15006 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "822bba66b41526fa547186b80221f85da50d652bee5493dbfe5d14085112f0c3", + "sha256_in_prefix": "822bba66b41526fa547186b80221f85da50d652bee5493dbfe5d14085112f0c3", + "size_in_bytes": 1308 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "db07a93359e4e034b8785a58ad6d534ea3dca0635f1e184efe2e66e1c3a299ba", + "sha256_in_prefix": "db07a93359e4e034b8785a58ad6d534ea3dca0635f1e184efe2e66e1c3a299ba", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "0337e180a292f04740c16513485f2681e5506d7398f64a241c1ea44aac30aaed", + "sha256_in_prefix": "0337e180a292f04740c16513485f2681e5506d7398f64a241c1ea44aac30aaed", + "size_in_bytes": 12 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__init__.py", + "path_type": "hardlink", + "sha256": "ce4a39467be896f6fe5178c2c7fd80acf4c6056c142b9418e0b21020a611ec0b", + "sha256_in_prefix": "ce4a39467be896f6fe5178c2c7fd80acf4c6056c142b9418e0b21020a611ec0b", + "size_in_bytes": 1037 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d8178b618b83681cfd21398087975eba2b7e453c1094bf4cd0ddafa1f0cca707", + "sha256_in_prefix": "d8178b618b83681cfd21398087975eba2b7e453c1094bf4cd0ddafa1f0cca707", + "size_in_bytes": 359 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "739de80c3dc8be4cb5a919533336cf5efb4cdf1d6761653ade6fe85dd1c224ca", + "sha256_in_prefix": "739de80c3dc8be4cb5a919533336cf5efb4cdf1d6761653ade6fe85dd1c224ca", + "size_in_bytes": 4152 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "94c236f4713de9b77c9c8f79d86d81c518484b333cfc7a04b37d58062cc83510", + "sha256_in_prefix": "94c236f4713de9b77c9c8f79d86d81c518484b333cfc7a04b37d58062cc83510", + "size_in_bytes": 1004 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "284c2fe969548d93e364c7fa0b08876a9488d857e4ec507544f95188610afd7f", + "sha256_in_prefix": "284c2fe969548d93e364c7fa0b08876a9488d857e4ec507544f95188610afd7f", + "size_in_bytes": 1642 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "10e68cea803d8fb8da5eaebe2511f43c3cc771a009d53cca9a5b37e0032b1c61", + "sha256_in_prefix": "10e68cea803d8fb8da5eaebe2511f43c3cc771a009d53cca9a5b37e0032b1c61", + "size_in_bytes": 8359 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fd297f760cb15956254d51efe823f69dcd93eda18aed861c67c9aa5318a504d4", + "sha256_in_prefix": "fd297f760cb15956254d51efe823f69dcd93eda18aed861c67c9aa5318a504d4", + "size_in_bytes": 389 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autoasync.py", + "path_type": "hardlink", + "sha256": "00c772af1352e29a9625f3ffc6ea0e70898e1d60fea93ef1d3ac2628dd55a7e5", + "sha256_in_prefix": "00c772af1352e29a9625f3ffc6ea0e70898e1d60fea93ef1d3ac2628dd55a7e5", + "size_in_bytes": 5680 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autocommand.py", + "path_type": "hardlink", + "sha256": "866904990ef61ed2f9e609d44558c33a7b1f62519de652d76ef4f8286e3de90c", + "sha256_in_prefix": "866904990ef61ed2f9e609d44558c33a7b1f62519de652d76ef4f8286e3de90c", + "size_in_bytes": 2505 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/automain.py", + "path_type": "hardlink", + "sha256": "0366fc8bbe7833173f0e353d585afabea6035a5873d1c9fc9a2bbc77c12cc55f", + "sha256_in_prefix": "0366fc8bbe7833173f0e353d585afabea6035a5873d1c9fc9a2bbc77c12cc55f", + "size_in_bytes": 2076 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/autoparse.py", + "path_type": "hardlink", + "sha256": "5955a66493dc6f350a5cfe34ada430ff41c3f2a3c9d95f551b57851669a7171c", + "sha256_in_prefix": "5955a66493dc6f350a5cfe34ada430ff41c3f2a3c9d95f551b57851669a7171c", + "size_in_bytes": 11642 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/autocommand/errors.py", + "path_type": "hardlink", + "sha256": "eda6b7ae887d1deaddea720aa501cd584b25584f28abb1a21d8554b91a8e4670", + "sha256_in_prefix": "eda6b7ae887d1deaddea720aa501cd584b25584f28abb1a21d8554b91a8e4670", + "size_in_bytes": 886 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "8215c54ead77d9dc5a108a25c6bdc72b5999aa6f62c9499a440359412afa5a51", + "sha256_in_prefix": "8215c54ead77d9dc5a108a25c6bdc72b5999aa6f62c9499a440359412afa5a51", + "size_in_bytes": 2020 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "258a1f1c849e1175069a55a5d6ce357afdd04e34cd5de27093e4acec7a9d2ce1", + "sha256_in_prefix": "258a1f1c849e1175069a55a5d6ce357afdd04e34cd5de27093e4acec7a9d2ce1", + "size_in_bytes": 1360 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "7068da2cc3a8051d452b4029a23b73595995893b49ec91882bf1f05e212cbed5", + "sha256_in_prefix": "7068da2cc3a8051d452b4029a23b73595995893b49ec91882bf1f05e212cbed5", + "size_in_bytes": 10 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/__init__.py", + "path_type": "hardlink", + "sha256": "88e10cc2794e4567b374ef3edafc4120f491dfb0fb2468e5b99f1fe79bf3c65b", + "sha256_in_prefix": "88e10cc2794e4567b374ef3edafc4120f491dfb0fb2468e5b99f1fe79bf3c65b", + "size_in_bytes": 81 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4014b76e8d14cd040c61fd514d402b40dca4a950d2b249fa8036d8b7e37d6c7a", + "sha256_in_prefix": "4014b76e8d14cd040c61fd514d402b40dca4a950d2b249fa8036d8b7e37d6c7a", + "size_in_bytes": 229 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__init__.py", + "path_type": "hardlink", + "sha256": "3f07f6a9421f0744a89493c229cc77bf3dd412efda89db38838b007f1cbde2a8", + "sha256_in_prefix": "3f07f6a9421f0744a89493c229cc77bf3dd412efda89db38838b007f1cbde2a8", + "size_in_bytes": 108491 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__main__.py", + "path_type": "hardlink", + "sha256": "630da8193d5a7ebcf6781b24cdd3d82fc45e07fde5880a6684590dd846c399ce", + "sha256_in_prefix": "630da8193d5a7ebcf6781b24cdd3d82fc45e07fde5880a6684590dd846c399ce", + "size_in_bytes": 59 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7d029fd359bb027d8b13ae8af475f7f3e731b3ce37c1d6fbc502ba03ca1643ed", + "sha256_in_prefix": "7d029fd359bb027d8b13ae8af475f7f3e731b3ce37c1d6fbc502ba03ca1643ed", + "size_in_bytes": 71901 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fbb351939fdc6c7aa2553b034ce5ba7c0a0ed706bece45d71dd4bcd060eaded5", + "sha256_in_prefix": "fbb351939fdc6c7aa2553b034ce5ba7c0a0ed706bece45d71dd4bcd060eaded5", + "size_in_bytes": 243 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1a3f6ca7fb4f5d33be9dc4329934915f1b32b06d25e1d3f8351aa72c3f82a789", + "sha256_in_prefix": "1a3f6ca7fb4f5d33be9dc4329934915f1b32b06d25e1d3f8351aa72c3f82a789", + "size_in_bytes": 177 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ae8593b3488fd0bbbe13bf1702fdd06e2da0cc803fa4fa8a5f7744d70d10d5fc", + "sha256_in_prefix": "ae8593b3488fd0bbbe13bf1702fdd06e2da0cc803fa4fa8a5f7744d70d10d5fc", + "size_in_bytes": 759 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py", + "path_type": "hardlink", + "sha256": "898932b7f82f5a32f31944c90fd4ee4df30c8ce93e7abb17666465bd060ddaa1", + "sha256_in_prefix": "898932b7f82f5a32f31944c90fd4ee4df30c8ce93e7abb17666465bd060ddaa1", + "size_in_bytes": 568 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30", + "sha256_in_prefix": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30", + "size_in_bytes": 11358 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "6a7b90effee1e09d5b484cdf7232016a43e2d9cc9543bcbb8e494b1ec05e1f59", + "sha256_in_prefix": "6a7b90effee1e09d5b484cdf7232016a43e2d9cc9543bcbb8e494b1ec05e1f59", + "size_in_bytes": 4648 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "0d8d3c6eeb9ebbe86cac7d60861552433c329da9ea51248b61d02be2e5e64030", + "sha256_in_prefix": "0d8d3c6eeb9ebbe86cac7d60861552433c329da9ea51248b61d02be2e5e64030", + "size_in_bytes": 2518 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "9a0b8c95618c5fe5479cca4a3a38d089d228d6cb1194216ee1ae26069cf5b363", + "sha256_in_prefix": "9a0b8c95618c5fe5479cca4a3a38d089d228d6cb1194216ee1ae26069cf5b363", + "size_in_bytes": 91 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "08eddf0fdcb29403625e4acca38a872d5fe6a972f6b02e4914a82dd725804fe0", + "sha256_in_prefix": "08eddf0fdcb29403625e4acca38a872d5fe6a972f6b02e4914a82dd725804fe0", + "size_in_bytes": 19 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", + "path_type": "hardlink", + "sha256": "b59341fb6de1f018b18bdb82ad0aa3f587f469e0bef89a2c772dc8651210781d", + "sha256_in_prefix": "b59341fb6de1f018b18bdb82ad0aa3f587f469e0bef89a2c772dc8651210781d", + "size_in_bytes": 33798 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9430220e52151010d661ea8c0182d62b42de5f0e845ad87d10dd9770a03e03d4", + "sha256_in_prefix": "9430220e52151010d661ea8c0182d62b42de5f0e845ad87d10dd9770a03e03d4", + "size_in_bytes": 40239 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99e696b41743f91238c6d88a5a623629056bdb4a346ca9a6f846f09f1f32a494", + "sha256_in_prefix": "99e696b41743f91238c6d88a5a623629056bdb4a346ca9a6f846f09f1f32a494", + "size_in_bytes": 2857 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cc429254b95f87ed34cf699989e57d6af49ad2260ff89cc58d1ee592a3678159", + "sha256_in_prefix": "cc429254b95f87ed34cf699989e57d6af49ad2260ff89cc58d1ee592a3678159", + "size_in_bytes": 1547 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d170d1a6274806b88cea60a95a0de258317f56acd415e005dff58a71c95836d5", + "sha256_in_prefix": "d170d1a6274806b88cea60a95a0de258317f56acd415e005dff58a71c95836d5", + "size_in_bytes": 1879 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c073758bafc642c5d00d5a403a3bfb9628b606fce27d9caf705c64ef4f70860b", + "sha256_in_prefix": "c073758bafc642c5d00d5a403a3bfb9628b606fce27d9caf705c64ef4f70860b", + "size_in_bytes": 3137 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4f645bdc119aa0009b6441d177ca4bcf9c23198aba42c4cb7e860826872567c6", + "sha256_in_prefix": "4f645bdc119aa0009b6441d177ca4bcf9c23198aba42c4cb7e860826872567c6", + "size_in_bytes": 2018 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "45943933ec4376b32978bd05ba956fc992541761e19c9ca34b25c993d506e84d", + "sha256_in_prefix": "45943933ec4376b32978bd05ba956fc992541761e19c9ca34b25c993d506e84d", + "size_in_bytes": 3344 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d37acd9235cca46ebea992a053e32f832a7d1d9caf85e62ab456ce013eba74e5", + "sha256_in_prefix": "d37acd9235cca46ebea992a053e32f832a7d1d9caf85e62ab456ce013eba74e5", + "size_in_bytes": 3070 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4447c98cac04f949cc01650ad7ba3e2d705141423fccfb3258d6eb1d29909829", + "sha256_in_prefix": "4447c98cac04f949cc01650ad7ba3e2d705141423fccfb3258d6eb1d29909829", + "size_in_bytes": 839 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py", + "path_type": "hardlink", + "sha256": "ac88564f006f600d5b57b8bee457d55f7f2a1170d35c5792e5c6f9c49b4fde4b", + "sha256_in_prefix": "ac88564f006f600d5b57b8bee457d55f7f2a1170d35c5792e5c6f9c49b4fde4b", + "size_in_bytes": 2317 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_collections.py", + "path_type": "hardlink", + "sha256": "089d0e4c21c88d6034648552e2fa0e440b27d91e11d9c40112d3ec6442690126", + "sha256_in_prefix": "089d0e4c21c88d6034648552e2fa0e440b27d91e11d9c40112d3ec6442690126", + "size_in_bytes": 743 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_compat.py", + "path_type": "hardlink", + "sha256": "ef740aacdf4a368699ce16d7e723c20996be15a00bc177bc4cf94347bd898015", + "sha256_in_prefix": "ef740aacdf4a368699ce16d7e723c20996be15a00bc177bc4cf94347bd898015", + "size_in_bytes": 1314 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_functools.py", + "path_type": "hardlink", + "sha256": "3ec636fb8aeb297e1155e442d681a9d65075a660bd78a37cf3f7fe6c3f6e3a80", + "sha256_in_prefix": "3ec636fb8aeb297e1155e442d681a9d65075a660bd78a37cf3f7fe6c3f6e3a80", + "size_in_bytes": 2895 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py", + "path_type": "hardlink", + "sha256": "72faffdaff0145bc5c225e71e6575fa9d1e3848f188bcb3cca4e741bf9e6ea34", + "sha256_in_prefix": "72faffdaff0145bc5c225e71e6575fa9d1e3848f188bcb3cca4e741bf9e6ea34", + "size_in_bytes": 2068 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_meta.py", + "path_type": "hardlink", + "sha256": "9f167b0bc19595c04500a5b254e9ff767ee8b7fb7005c6e6d4d9af8c87ad0472", + "sha256_in_prefix": "9f167b0bc19595c04500a5b254e9ff767ee8b7fb7005c6e6d4d9af8c87ad0472", + "size_in_bytes": 1801 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/_text.py", + "path_type": "hardlink", + "sha256": "1c2b0592c66924b7933f734493f9e0ac079755146d4ebb7287d78e001a113f80", + "sha256_in_prefix": "1c2b0592c66924b7933f734493f9e0ac079755146d4ebb7287d78e001a113f80", + "size_in_bytes": 2166 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f528de9d2a10fb9e89687921c1db26250fcef915699ad33467f249057b8090c0", + "sha256_in_prefix": "f528de9d2a10fb9e89687921c1db26250fcef915699ad33467f249057b8090c0", + "size_in_bytes": 178 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3a0c157a1d1b18c7ba7c4ee1522507a364e7be48891d779ae0e610febf6085a8", + "sha256_in_prefix": "3a0c157a1d1b18c7ba7c4ee1522507a364e7be48891d779ae0e610febf6085a8", + "size_in_bytes": 1020 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cab37bbf5f5b1e7ea0af3eaff559da7494ab483669ab451b7f0e6cd26c2e2f1a", + "sha256_in_prefix": "cab37bbf5f5b1e7ea0af3eaff559da7494ab483669ab451b7f0e6cd26c2e2f1a", + "size_in_bytes": 1173 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py", + "path_type": "hardlink", + "sha256": "baa9be2beba88728f5d38d931f86bd12bfc8e68efaebb0efba5703fa00bf7d20", + "sha256_in_prefix": "baa9be2beba88728f5d38d931f86bd12bfc8e68efaebb0efba5703fa00bf7d20", + "size_in_bytes": 608 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py", + "path_type": "hardlink", + "sha256": "70f90cbfafb48a52bed09c3f4e49f4c586ce28965ce1624a407a30d1cd93e38c", + "sha256_in_prefix": "70f90cbfafb48a52bed09c3f4e49f4c586ce28965ce1624a407a30d1cd93e38c", + "size_in_bytes": 1102 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py", + "path_type": "hardlink", + "sha256": "9e4491322a309669212d884a86f0a0f60966b7fd750a8c7e1262f311ba984daf", + "sha256_in_prefix": "9e4491322a309669212d884a86f0a0f60966b7fd750a8c7e1262f311ba984daf", + "size_in_bytes": 379 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/importlib_metadata/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "66030d634580651b3e53cc19895d9231f8d22aa06b327817c8332cfc20303308", + "sha256_in_prefix": "66030d634580651b3e53cc19895d9231f8d22aa06b327817c8332cfc20303308", + "size_in_bytes": 21079 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "5d7834ac1ba2612c6801050fde57a7b98b0f36acf88c3c2d4f376fd8911b3091", + "sha256_in_prefix": "5d7834ac1ba2612c6801050fde57a7b98b0f36acf88c3c2d4f376fd8911b3091", + "size_in_bytes": 943 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "cb8997f92397e1f6089289ec0060393743b2fbcfe0238157c391cd235c6abd68", + "sha256_in_prefix": "cb8997f92397e1f6089289ec0060393743b2fbcfe0238157c391cd235c6abd68", + "size_in_bytes": 91 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "9b9dae8dda75d02a93ea38755d0c594fa9049ed727bfeed397b52218d4f35990", + "sha256_in_prefix": "9b9dae8dda75d02a93ea38755d0c594fa9049ed727bfeed397b52218d4f35990", + "size_in_bytes": 8 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/__init__.py", + "path_type": "hardlink", + "sha256": "271cb51c95d9899f3990778b021926bf3e84313745a817be76ebeddf847a20e7", + "sha256_in_prefix": "271cb51c95d9899f3990778b021926bf3e84313745a817be76ebeddf847a20e7", + "size_in_bytes": 103796 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "84cccccdf36fbcbd21bb811132839891de4dc4b3469605b3e27805fb9ddaf936", + "sha256_in_prefix": "84cccccdf36fbcbd21bb811132839891de4dc4b3469605b3e27805fb9ddaf936", + "size_in_bytes": 74049 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "97f2ded843edcfdbe59a0f738f521c5cf77ce361de9ad7acb547d74a6932245a", + "sha256_in_prefix": "97f2ded843edcfdbe59a0f738f521c5cf77ce361de9ad7acb547d74a6932245a", + "size_in_bytes": 167 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6cc43d62e929a05a6657cd0cf534293d179ee8d5e6dfd890b3c770ed439e77ff", + "sha256_in_prefix": "6cc43d62e929a05a6657cd0cf534293d179ee8d5e6dfd890b3c770ed439e77ff", + "size_in_bytes": 293 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/compat/py38.py", + "path_type": "hardlink", + "sha256": "a0e6d57d59d65fdfcea673ae1099f59856c9c55870c91e5ea5b8933570c36aca", + "sha256_in_prefix": "a0e6d57d59d65fdfcea673ae1099f59856c9c55870c91e5ea5b8933570c36aca", + "size_in_bytes": 160 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/inflect/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "20c51a96236c0395f53b1f4c5d458e6a0721e51e16c1bff733b7aba76f5d06d8", + "sha256_in_prefix": "20c51a96236c0395f53b1f4c5d458e6a0721e51e16c1bff733b7aba76f5d06d8", + "size_in_bytes": 3933 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "1e9b62bd70e4a5fa26e9594cbb80860ffeca3debfee8773daefa774cd259ca06", + "sha256_in_prefix": "1e9b62bd70e4a5fa26e9594cbb80860ffeca3debfee8773daefa774cd259ca06", + "size_in_bytes": 873 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "31d8bd3c3370119a6d3a34e551c02d87b5c90c5b4aac761a40c3ee9597810a24", + "sha256_in_prefix": "31d8bd3c3370119a6d3a34e551c02d87b5c90c5b4aac761a40c3ee9597810a24", + "size_in_bytes": 91 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.collections-5.1.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "sha256_in_prefix": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "size_in_bytes": 7 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "c43b60b897a3d2d37d8845c252fc44261d9aef171e21154111a9012d2afffed6", + "sha256_in_prefix": "c43b60b897a3d2d37d8845c252fc44261d9aef171e21154111a9012d2afffed6", + "size_in_bytes": 4020 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "55197b88a78443297bb2d827a75baae740b33896251d872835d4b4c75ec2f57e", + "sha256_in_prefix": "55197b88a78443297bb2d827a75baae740b33896251d872835d4b4c75ec2f57e", + "size_in_bytes": 641 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "sha256_in_prefix": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "size_in_bytes": 7 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "8b86946900d7fa38dd1102b9c1ebe17a0cb1f09c8b7e29f61f2bda4a4dc51eca", + "sha256_in_prefix": "8b86946900d7fa38dd1102b9c1ebe17a0cb1f09c8b7e29f61f2bda4a4dc51eca", + "size_in_bytes": 2891 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "632aa7c04f7c4bcc01c027af5b9bc76fe8958f4a181035b957a3bd3014ba248b", + "sha256_in_prefix": "632aa7c04f7c4bcc01c027af5b9bc76fe8958f4a181035b957a3bd3014ba248b", + "size_in_bytes": 843 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "sha256_in_prefix": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "size_in_bytes": 7 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "03359d9ba56231f0ce3e840c7cb5a7db380141218949ccaa78ddbd4dcb965d52", + "sha256_in_prefix": "03359d9ba56231f0ce3e840c7cb5a7db380141218949ccaa78ddbd4dcb965d52", + "size_in_bytes": 3658 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "816d945741dca246099388ca3eed74fc0667acbaa36f70b559b2494c3979b1f6", + "sha256_in_prefix": "816d945741dca246099388ca3eed74fc0667acbaa36f70b559b2494c3979b1f6", + "size_in_bytes": 1500 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "sha256_in_prefix": "d099cddcb7d71f82c845f5cbf9014e18227341664edc42f1e11d5dfe5a2ea103", + "size_in_bytes": 7 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "48796989f8594b7bba3adfa576eecdfa1493b2c30ea0daa7a48533db02138cb5", + "sha256_in_prefix": "48796989f8594b7bba3adfa576eecdfa1493b2c30ea0daa7a48533db02138cb5", + "size_in_bytes": 11068 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/__init__.py", + "path_type": "hardlink", + "sha256": "3dcd7e4aa8d69bcd5a7753f4f86b6da64c0efcb5a59da63a814abc81c2a1dafd", + "sha256_in_prefix": "3dcd7e4aa8d69bcd5a7753f4f86b6da64c0efcb5a59da63a814abc81c2a1dafd", + "size_in_bytes": 26640 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7d6b0734a6d616e9f26ce91ef67a2b9e7749ce7e5d2cc74698baa379a023ebc4", + "sha256_in_prefix": "7d6b0734a6d616e9f26ce91ef67a2b9e7749ce7e5d2cc74698baa379a023ebc4", + "size_in_bytes": 32209 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/collections/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/context.py", + "path_type": "hardlink", + "sha256": "444a0b2310e43b931f118a30b7f5a8ba9342468c414b9bfb617d8f6d6f2521cb", + "sha256_in_prefix": "444a0b2310e43b931f118a30b7f5a8ba9342468c414b9bfb617d8f6d6f2521cb", + "size_in_bytes": 9552 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__init__.py", + "path_type": "hardlink", + "sha256": "844009692dae49946e17f258e02c421c8621efd669c5a3e9f4e887cabf44275c", + "sha256_in_prefix": "844009692dae49946e17f258e02c421c8621efd669c5a3e9f4e887cabf44275c", + "size_in_bytes": 16642 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi", + "path_type": "hardlink", + "sha256": "824dddb201f3a3917f53be07cc0be9362bc500f0a43c9d5bdbec8277ad9d7e7c", + "sha256_in_prefix": "824dddb201f3a3917f53be07cc0be9362bc500f0a43c9d5bdbec8277ad9d7e7c", + "size_in_bytes": 3878 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "eeda0af83923a03490e688f01b6775ede1ab5c3ef87f93bbab846ffe05887d6a", + "sha256_in_prefix": "eeda0af83923a03490e688f01b6775ede1ab5c3ef87f93bbab846ffe05887d6a", + "size_in_bytes": 19225 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt", + "path_type": "hardlink", + "sha256": "37fedcffbf73c4eb9f058f47677cb33203a436ff9390e4d38a8e01c9dad28e0b", + "sha256_in_prefix": "37fedcffbf73c4eb9f058f47677cb33203a436ff9390e4d38a8e01c9dad28e0b", + "size_in_bytes": 1335 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__init__.py", + "path_type": "hardlink", + "sha256": "636614a9747fa2b5280da6384a43d17ba65985be4750707f021f5108db15ca1a", + "sha256_in_prefix": "636614a9747fa2b5280da6384a43d17ba65985be4750707f021f5108db15ca1a", + "size_in_bytes": 16250 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7d5e73475bcab8a8b99aca4016f60195d0eaf695c33c989d7543d5a35eb64bab", + "sha256_in_prefix": "7d5e73475bcab8a8b99aca4016f60195d0eaf695c33c989d7543d5a35eb64bab", + "size_in_bytes": 20444 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8848e7a36d48020164b702ae9c7871b930d1e23e06e9f3c331cfb04ec8c5897e", + "sha256_in_prefix": "8848e7a36d48020164b702ae9c7871b930d1e23e06e9f3c331cfb04ec8c5897e", + "size_in_bytes": 880 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "34e9cbb22834901a96dac9b469f1a3af0f8113a9117e75dc8acd3451746f4a88", + "sha256_in_prefix": "34e9cbb22834901a96dac9b469f1a3af0f8113a9117e75dc8acd3451746f4a88", + "size_in_bytes": 1102 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5e633e36b05c144e0ae1d50a1c0aec5806dfb20638d5ee6f8d3d9e2acd5f3f8b", + "sha256_in_prefix": "5e633e36b05c144e0ae1d50a1c0aec5806dfb20638d5ee6f8d3d9e2acd5f3f8b", + "size_in_bytes": 650 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "070464eae686808d79a6c08e0637b06c5afc1a48671b75c1c3d3b8b9e8e4cd5a", + "sha256_in_prefix": "070464eae686808d79a6c08e0637b06c5afc1a48671b75c1c3d3b8b9e8e4cd5a", + "size_in_bytes": 306 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a227a3d4ac4caa93bf57bbadc9c5f6c2baa9e2c7764a003443d288666a9223c3", + "sha256_in_prefix": "a227a3d4ac4caa93bf57bbadc9c5f6c2baa9e2c7764a003443d288666a9223c3", + "size_in_bytes": 306 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/layouts.py", + "path_type": "hardlink", + "sha256": "1d30bc6924cb67bb978a9c8e5daa51302d79f23b9e7232ba455c22b5f999f7fc", + "sha256_in_prefix": "1d30bc6924cb67bb978a9c8e5daa51302d79f23b9e7232ba455c22b5f999f7fc", + "size_in_bytes": 643 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py", + "path_type": "hardlink", + "sha256": "58641aeb97bc97285bf762d438ba959fa29a0ada1e560570b3a5ad49198b93ac", + "sha256_in_prefix": "58641aeb97bc97285bf762d438ba959fa29a0ada1e560570b3a5ad49198b93ac", + "size_in_bytes": 904 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py", + "path_type": "hardlink", + "sha256": "35f55757c255368ea7a9cb980127cc57bff2e04a3cccc42a942386bc09d1215c", + "sha256_in_prefix": "35f55757c255368ea7a9cb980127cc57bff2e04a3cccc42a942386bc09d1215c", + "size_in_bytes": 412 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py", + "path_type": "hardlink", + "sha256": "d5235c6d2b2f212a575e0f8b9f26c81c763e45414e42bdfacdc1e4635a5616ac", + "sha256_in_prefix": "d5235c6d2b2f212a575e0f8b9f26c81c763e45414e42bdfacdc1e4635a5616ac", + "size_in_bytes": 119 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py", + "path_type": "hardlink", + "sha256": "b3850c4149cfc059ff741e6e642dbb06eac7390718a277417f322954be69133c", + "sha256_in_prefix": "b3850c4149cfc059ff741e6e642dbb06eac7390718a277417f322954be69133c", + "size_in_bytes": 119 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "09f1c8c9e941af3e584d59641ea9b87d83c0cb0fd007eb5ef391a7e2643c1a46", + "sha256_in_prefix": "09f1c8c9e941af3e584d59641ea9b87d83c0cb0fd007eb5ef391a7e2643c1a46", + "size_in_bytes": 1053 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "0453bdd0ef9f2cd89540ca63ee8212e73b73809514419dd3037d8fe471f737e0", + "sha256_in_prefix": "0453bdd0ef9f2cd89540ca63ee8212e73b73809514419dd3037d8fe471f737e0", + "size_in_bytes": 36293 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "77c8e73e018dc0fd7e9ed6c80b05a4404545f641fb085220ce42b368b59aa3d3", + "sha256_in_prefix": "77c8e73e018dc0fd7e9ed6c80b05a4404545f641fb085220ce42b368b59aa3d3", + "size_in_bytes": 1259 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "ad282afc9a4717d7c7475971e77ab083fd7ed8bca9644fea99cb976d552af78f", + "sha256_in_prefix": "ad282afc9a4717d7c7475971e77ab083fd7ed8bca9644fea99cb976d552af78f", + "size_in_bytes": 81 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py", + "path_type": "hardlink", + "sha256": "76d01b1a34c39a7fe08625396177e1c83cb4a610255d576de649590397d46be4", + "sha256_in_prefix": "76d01b1a34c39a7fe08625396177e1c83cb4a610255d576de649590397d46be4", + "size_in_bytes": 149 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.pyi", + "path_type": "hardlink", + "sha256": "e41dde4f338dd4106e38ba1bd6f09f97211bda549deaeb17410f82bfe85791e0", + "sha256_in_prefix": "e41dde4f338dd4106e38ba1bd6f09f97211bda549deaeb17410f82bfe85791e0", + "size_in_bytes": 43 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6c7b71b06bd4eb2ef44cc64aa825459d17e02cce1bd5f3913398bb8d25a1fc97", + "sha256_in_prefix": "6c7b71b06bd4eb2ef44cc64aa825459d17e02cce1bd5f3913398bb8d25a1fc97", + "size_in_bytes": 309 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a29978deee94c64619445fc042926f0fe515aafecb26d5e071b5df8adfcaa49d", + "sha256_in_prefix": "a29978deee94c64619445fc042926f0fe515aafecb26d5e071b5df8adfcaa49d", + "size_in_bytes": 138269 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a994b1852ed68a9a21488c89adf5ed13629d86e348b1eb67b9836464d0d5d8be", + "sha256_in_prefix": "a994b1852ed68a9a21488c89adf5ed13629d86e348b1eb67b9836464d0d5d8be", + "size_in_bytes": 29202 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py", + "path_type": "hardlink", + "sha256": "d44e64cc59dc44a4c3c34718bf5c915cc80376e9ecb4b41dd504ad7272fa53dd", + "sha256_in_prefix": "d44e64cc59dc44a4c3c34718bf5c915cc80376e9ecb4b41dd504ad7272fa53dd", + "size_in_bytes": 148370 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.pyi", + "path_type": "hardlink", + "sha256": "8975deaade3c3717bc5469885a99155ee2a947615836ebb60d4f2740b5820aed", + "sha256_in_prefix": "8975deaade3c3717bc5469885a99155ee2a947615836ebb60d4f2740b5820aed", + "size_in_bytes": 21484 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py", + "path_type": "hardlink", + "sha256": "59e76185f846560aface28bc7c86c62559914f0d1929188b2a76010c626fe276", + "sha256_in_prefix": "59e76185f846560aface28bc7c86c62559914f0d1929188b2a76010c626fe276", + "size_in_bytes": 28591 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.pyi", + "path_type": "hardlink", + "sha256": "4ff99d1a970575facfdc94966f0cd83fd272355f86a3eed13dfa717dfb405a50", + "sha256_in_prefix": "4ff99d1a970575facfdc94966f0cd83fd272355f86a3eed13dfa717dfb405a50", + "size_in_bytes": 4617 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "cad1ef5bd340d73e074ba614d26f7deaca5c7940c3d8c34852e65c4909686c48", + "sha256_in_prefix": "cad1ef5bd340d73e074ba614d26f7deaca5c7940c3d8c34852e65c4909686c48", + "size_in_bytes": 197 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE.APACHE", + "path_type": "hardlink", + "sha256": "0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594", + "sha256_in_prefix": "0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594", + "size_in_bytes": 10174 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/LICENSE.BSD", + "path_type": "hardlink", + "sha256": "b70e7e9b742f1cc6f948b34c16aa39ffece94196364bc88ff0d2180f0028fac5", + "sha256_in_prefix": "b70e7e9b742f1cc6f948b34c16aa39ffece94196364bc88ff0d2180f0028fac5", + "size_in_bytes": 1344 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "a211fceacea4e6621f4316364d2d0b7127c00de3856b8062082f9bc5957ea4db", + "sha256_in_prefix": "a211fceacea4e6621f4316364d2d0b7127c00de3856b8062082f9bc5957ea4db", + "size_in_bytes": 3204 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "6380eb5ccd0a63402b7f385b0046b52d814fc16dd612011e2f8882a977be03e3", + "sha256_in_prefix": "6380eb5ccd0a63402b7f385b0046b52d814fc16dd612011e2f8882a977be03e3", + "size_in_bytes": 2009 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging-24.2.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "0a950253178741b44de54191407611268acee407fe432fdf1cc72d710f034862", + "sha256_in_prefix": "0a950253178741b44de54191407611268acee407fe432fdf1cc72d710f034862", + "size_in_bytes": 82 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py", + "path_type": "hardlink", + "sha256": "764e136bfbe67552716070dc7f286f40dc3c5773e0481a2628d5ea83e0f62436", + "sha256_in_prefix": "764e136bfbe67552716070dc7f286f40dc3c5773e0481a2628d5ea83e0f62436", + "size_in_bytes": 494 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1433806572e428feca172632dce2fb0ca5cf469111c80418ed1eb83d8f0a3920", + "sha256_in_prefix": "1433806572e428feca172632dce2fb0ca5cf469111c80418ed1eb83d8f0a3920", + "size_in_bytes": 492 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ab12b182b39e263266f129f815c36c6eb0e4c7fb5bbad20b6239f352a72e513b", + "sha256_in_prefix": "ab12b182b39e263266f129f815c36c6eb0e4c7fb5bbad20b6239f352a72e513b", + "size_in_bytes": 3367 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "998d90e745a64f6ae402979cda7b19c6973f59bff980b3a7c2f0d382f8b1910e", + "sha256_in_prefix": "998d90e745a64f6ae402979cda7b19c6973f59bff980b3a7c2f0d382f8b1910e", + "size_in_bytes": 6557 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "785e770986370939fe22a3f3945a88056555833247580f5894f59dcdebcf1dce", + "sha256_in_prefix": "785e770986370939fe22a3f3945a88056555833247580f5894f59dcdebcf1dce", + "size_in_bytes": 3416 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "018c344a06f07ec857d57116ca7c1742efa7d22f00aaf0729bfe2a16200537e6", + "sha256_in_prefix": "018c344a06f07ec857d57116ca7c1742efa7d22f00aaf0729bfe2a16200537e6", + "size_in_bytes": 9232 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a9a5fce82d07427ff9e2576983203f65b42956182b795b097610e1daaf71972e", + "sha256_in_prefix": "a9a5fce82d07427ff9e2576983203f65b42956182b795b097610e1daaf71972e", + "size_in_bytes": 2674 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6a34baee2f7760b0cbf3b6f121012c932b8e3216efff39ea83d850972882150a", + "sha256_in_prefix": "6a34baee2f7760b0cbf3b6f121012c932b8e3216efff39ea83d850972882150a", + "size_in_bytes": 5886 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5cb74367c26411657ae0c67ededcc3b1660b97392bc26369d22f24eb82990fdf", + "sha256_in_prefix": "5cb74367c26411657ae0c67ededcc3b1660b97392bc26369d22f24eb82990fdf", + "size_in_bytes": 7853 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5e8bbb0ef839aae33495c9264d9f39a55d77efde7f8799d9a773ad939bc81ef0", + "sha256_in_prefix": "5e8bbb0ef839aae33495c9264d9f39a55d77efde7f8799d9a773ad939bc81ef0", + "size_in_bytes": 18717 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b3a4310c102a346a9e0a6a71e083e7a37f5efa2f7248154c13279ac3316d3552", + "sha256_in_prefix": "b3a4310c102a346a9e0a6a71e083e7a37f5efa2f7248154c13279ac3316d3552", + "size_in_bytes": 2886 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "276cb707aeeebb314cb5de217df4e967e2ce79cb0fbf03983b6a94e3854c9764", + "sha256_in_prefix": "276cb707aeeebb314cb5de217df4e967e2ce79cb0fbf03983b6a94e3854c9764", + "size_in_bytes": 31360 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a8a8f44d2a4915a0b5f8ba628d030f1d75337a0bdcaf7b3f0bf1d569a361a522", + "sha256_in_prefix": "a8a8f44d2a4915a0b5f8ba628d030f1d75337a0bdcaf7b3f0bf1d569a361a522", + "size_in_bytes": 15186 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4d0e37b73c649dce7323da49a5188bcfb49364c898ea4a57f21a3ec428180b7d", + "sha256_in_prefix": "4d0e37b73c649dce7323da49a5188bcfb49364c898ea4a57f21a3ec428180b7d", + "size_in_bytes": 4620 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a7aed3cc180bceb1700e98a16a9c6bd38dd78fb4268b85089cfe5a3ed5350787", + "sha256_in_prefix": "a7aed3cc180bceb1700e98a16a9c6bd38dd78fb4268b85089cfe5a3ed5350787", + "size_in_bytes": 15009 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_elffile.py", + "path_type": "hardlink", + "sha256": "71f940400904db9b738589aafda0a2ef641f6d3fed9fcf75b4fcdfa5b7873b01", + "sha256_in_prefix": "71f940400904db9b738589aafda0a2ef641f6d3fed9fcf75b4fcdfa5b7873b01", + "size_in_bytes": 3306 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py", + "path_type": "hardlink", + "sha256": "be5e4e0a8cf8931f341f9af05ca7975a397d58d2121a6af86604e94cff6553d7", + "sha256_in_prefix": "be5e4e0a8cf8931f341f9af05ca7975a397d58d2121a6af86604e94cff6553d7", + "size_in_bytes": 9612 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py", + "path_type": "hardlink", + "sha256": "a7d66a35888e22d19e7bc29c64578717f61c76157018774aeabfbc9608b1bc64", + "sha256_in_prefix": "a7d66a35888e22d19e7bc29c64578717f61c76157018774aeabfbc9608b1bc64", + "size_in_bytes": 2694 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_parser.py", + "path_type": "hardlink", + "sha256": "b3f4ef4ef0cd2b436b336401dd529385d58533835cd0fe899e439b925dcc8e93", + "sha256_in_prefix": "b3f4ef4ef0cd2b436b336401dd529385d58533835cd0fe899e439b925dcc8e93", + "size_in_bytes": 10236 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py", + "path_type": "hardlink", + "sha256": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "sha256_in_prefix": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "size_in_bytes": 1431 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/_tokenizer.py", + "path_type": "hardlink", + "sha256": "27abf91fb273bdbfa0f35c69ff640008ac0eecbc47400ea292bc8c53bcd7c0df", + "sha256_in_prefix": "27abf91fb273bdbfa0f35c69ff640008ac0eecbc47400ea292bc8c53bcd7c0df", + "size_in_bytes": 5273 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__init__.py", + "path_type": "hardlink", + "sha256": "d71e4cd671188dc83011b2edd1d5f0cf6ba48ebd7c0e20b30b4b2b690a89f96c", + "sha256_in_prefix": "d71e4cd671188dc83011b2edd1d5f0cf6ba48ebd7c0e20b30b4b2b690a89f96c", + "size_in_bytes": 5715 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2d70ced89c59fdc959c050f8accda8d9c398f85d7c4165194634e59215fa7f22", + "sha256_in_prefix": "2d70ced89c59fdc959c050f8accda8d9c398f85d7c4165194634e59215fa7f22", + "size_in_bytes": 2579 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d596259599ef71b73599fc11aedaa8e0feedbab27881e7ccb700a0d32d58d317", + "sha256_in_prefix": "d596259599ef71b73599fc11aedaa8e0feedbab27881e7ccb700a0d32d58d317", + "size_in_bytes": 40951 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py", + "path_type": "hardlink", + "sha256": "a009b5ced3c5c25b2608a7bb94002cbff38839f4b57160eef5b34191ebbeda7b", + "sha256_in_prefix": "a009b5ced3c5c25b2608a7bb94002cbff38839f4b57160eef5b34191ebbeda7b", + "size_in_bytes": 48398 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py", + "path_type": "hardlink", + "sha256": "73cf5337307b65d198864a2f9ba3d89aa1b21f15e561568b5b9f753c750d283f", + "sha256_in_prefix": "73cf5337307b65d198864a2f9ba3d89aa1b21f15e561568b5b9f753c750d283f", + "size_in_bytes": 10561 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/metadata.py", + "path_type": "hardlink", + "sha256": "60989b33b1987b8adef3ed1adce9579864be5c38131283b8b6506ddaadb90678", + "sha256_in_prefix": "60989b33b1987b8adef3ed1adce9579864be5c38131283b8b6506ddaadb90678", + "size_in_bytes": 34762 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py", + "path_type": "hardlink", + "sha256": "818c9148075bac8c8a0d8ebaba02035108d132fc641f600b8a84e65f7b672faa", + "sha256_in_prefix": "818c9148075bac8c8a0d8ebaba02035108d132fc641f600b8a84e65f7b672faa", + "size_in_bytes": 2947 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py", + "path_type": "hardlink", + "sha256": "186d703cd31c2f47cc24eebcbc5e77c0a31dc277de84371a23eafd3694df8a50", + "sha256_in_prefix": "186d703cd31c2f47cc24eebcbc5e77c0a31dc277de84371a23eafd3694df8a50", + "size_in_bytes": 40074 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py", + "path_type": "hardlink", + "sha256": "085aab2730337365cd19ec5eac7fff4fe639230abb59bb185ec88b1112d6c58d", + "sha256_in_prefix": "085aab2730337365cd19ec5eac7fff4fe639230abb59bb185ec88b1112d6c58d", + "size_in_bytes": 21014 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py", + "path_type": "hardlink", + "sha256": "d05dc787d385b9182b8538066549792b6d85bf560fdad665d73ff680eea42620", + "sha256_in_prefix": "d05dc787d385b9182b8538066549792b6d85bf560fdad665d73ff680eea42620", + "size_in_bytes": 5050 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py", + "path_type": "hardlink", + "sha256": "a257f2ba4fc33db7e5364278c0159eb57435edcef8c770c1e74d5d7a052fec36", + "sha256_in_prefix": "a257f2ba4fc33db7e5364278c0159eb57435edcef8c770c1e74d5d7a052fec36", + "size_in_bytes": 16676 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "ce6b227b4d46d4cb57474c2022fe57a557933bb89daf4596bdf9b12ac296b869", + "sha256_in_prefix": "ce6b227b4d46d4cb57474c2022fe57a557933bb89daf4596bdf9b12ac296b869", + "size_in_bytes": 11429 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "4c211d76d42ed40efc3acfcc866d8912a718afbca2b7e51849442366d6e99fe8", + "sha256_in_prefix": "4c211d76d42ed40efc3acfcc866d8912a718afbca2b7e51849442366d6e99fe8", + "size_in_bytes": 1642 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "cc431c46bf4aaf4df1d68cc6c20e6ff4d4012a7de49dda7a2d2a1295583e8e15", + "sha256_in_prefix": "cc431c46bf4aaf4df1d68cc6c20e6ff4d4012a7de49dda7a2d2a1295583e8e15", + "size_in_bytes": 87 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/licenses/LICENSE", + "path_type": "hardlink", + "sha256": "29e0fd62e929850e86eb28c3fdccf0cefdf4fa94879011cffb3d0d4bed6d4db6", + "sha256_in_prefix": "29e0fd62e929850e86eb28c3fdccf0cefdf4fa94879011cffb3d0d4bed6d4db6", + "size_in_bytes": 1089 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__init__.py", + "path_type": "hardlink", + "sha256": "10c184f2a787451f42cc316bf242f7b40f217596678988d705565dd1419358ad", + "sha256_in_prefix": "10c184f2a787451f42cc316bf242f7b40f217596678988d705565dd1419358ad", + "size_in_bytes": 22225 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__main__.py", + "path_type": "hardlink", + "sha256": "1e7b14407a6205a893c70726c15c3e9c568f755359b5021d8b57960ed23e3332", + "sha256_in_prefix": "1e7b14407a6205a893c70726c15c3e9c568f755359b5021d8b57960ed23e3332", + "size_in_bytes": 1493 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b947aaede656a9a073fb5d59c8b971145b8c889c26643dafb5f63d49098b1d7a", + "sha256_in_prefix": "b947aaede656a9a073fb5d59c8b971145b8c889c26643dafb5f63d49098b1d7a", + "size_in_bytes": 15763 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ea97ffa2ca96dea2e9327f64fb7a18652c3f3779168da0b0480b7b5d7b7598da", + "sha256_in_prefix": "ea97ffa2ca96dea2e9327f64fb7a18652c3f3779168da0b0480b7b5d7b7598da", + "size_in_bytes": 1360 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5a03b0c627cab0c4c2403ec90282155af6f8fae9f248aca4c3f8723ada8cf92a", + "sha256_in_prefix": "5a03b0c627cab0c4c2403ec90282155af6f8fae9f248aca4c3f8723ada8cf92a", + "size_in_bytes": 7380 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f693a6124e600ecb62862a30eaac1185d3186a804f73e2cecb3b783a2cb6fcd0", + "sha256_in_prefix": "f693a6124e600ecb62862a30eaac1185d3186a804f73e2cecb3b783a2cb6fcd0", + "size_in_bytes": 9899 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e9691a985d50dcc48aee55c02ad0bdc45bac39e6cb0f5a7746916a8ae95d7b60", + "sha256_in_prefix": "e9691a985d50dcc48aee55c02ad0bdc45bac39e6cb0f5a7746916a8ae95d7b60", + "size_in_bytes": 5865 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c889abaaa61255a125f2c99f375c5fef8bc09913a7515ac43444d0191c3a25f1", + "sha256_in_prefix": "c889abaaa61255a125f2c99f375c5fef8bc09913a7515ac43444d0191c3a25f1", + "size_in_bytes": 10721 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d25d46d6b7a77075243dd24aa352095171c27a889a0d8ebd8bf3c7b878511e17", + "sha256_in_prefix": "d25d46d6b7a77075243dd24aa352095171c27a889a0d8ebd8bf3c7b878511e17", + "size_in_bytes": 487 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e714c1c47404a4812b4bd7c8220ae100488a9e63dad8197f580f71260ee50634", + "sha256_in_prefix": "e714c1c47404a4812b4bd7c8220ae100488a9e63dad8197f580f71260ee50634", + "size_in_bytes": 9060 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/android.py", + "path_type": "hardlink", + "sha256": "c595d8f49778e963acc53d94ebee47b0db4367e210ab170452b04b977858938a", + "sha256_in_prefix": "c595d8f49778e963acc53d94ebee47b0db4367e210ab170452b04b977858938a", + "size_in_bytes": 9016 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/api.py", + "path_type": "hardlink", + "sha256": "40161d51a736782e76d5e93fcb9dee0f50dcabe9495fc22049155de089c2eae7", + "sha256_in_prefix": "40161d51a736782e76d5e93fcb9dee0f50dcabe9495fc22049155de089c2eae7", + "size_in_bytes": 8996 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/macos.py", + "path_type": "hardlink", + "sha256": "c1fb6c6ecbeaea767458e4574a20ab64d9111f3fd62ae92d9746ba982ecc1642", + "sha256_in_prefix": "c1fb6c6ecbeaea767458e4574a20ab64d9111f3fd62ae92d9746ba982ecc1642", + "size_in_bytes": 5580 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/unix.py", + "path_type": "hardlink", + "sha256": "09c8bd5aab77e5d00cb20e874fd9d11874815b9a1b6f4a51dc01352499ec0978", + "sha256_in_prefix": "09c8bd5aab77e5d00cb20e874fd9d11874815b9a1b6f4a51dc01352499ec0978", + "size_in_bytes": 10643 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/version.py", + "path_type": "hardlink", + "sha256": "afb17bead6518e040aceba71fc8d3f64c40e314f8f4bb7869c70fbcc42b7281d", + "sha256_in_prefix": "afb17bead6518e040aceba71fc8d3f64c40e314f8f4bb7869c70fbcc42b7281d", + "size_in_bytes": 411 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/platformdirs/windows.py", + "path_type": "hardlink", + "sha256": "205a62a21501c313ed0b39722b036dc725b8264f2169ae96f28e7d99fac35d5a", + "sha256_in_prefix": "205a62a21501c313ed0b39722b036dc725b8264f2169ae96f28e7d99fac35d5a", + "size_in_bytes": 10125 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "b80816b0d530b8accb4c2211783790984a6e3b61922c2b5ee92f3372ab2742fe", + "sha256_in_prefix": "b80816b0d530b8accb4c2211783790984a6e3b61922c2b5ee92f3372ab2742fe", + "size_in_bytes": 1072 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "ccf0dc78a98fc0918b5ad67292b1e2c4bed65575a6246cd9d63c914f9942a0f2", + "sha256_in_prefix": "ccf0dc78a98fc0918b5ad67292b1e2c4bed65575a6246cd9d63c914f9942a0f2", + "size_in_bytes": 8875 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "0cb9f9a451a1e365ac54b4c88662e1da0cb54a72d16a5258fb0abff9d3e1c022", + "sha256_in_prefix": "0cb9f9a451a1e365ac54b4c88662e1da0cb54a72d16a5258fb0abff9d3e1c022", + "size_in_bytes": 999 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "8cf311fc3ce47385f889c42d9b3f35967358fe402c7e883baf2eeaa11bd82d7c", + "sha256_in_prefix": "8cf311fc3ce47385f889c42d9b3f35967358fe402c7e883baf2eeaa11bd82d7c", + "size_in_bytes": 81 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/__init__.py", + "path_type": "hardlink", + "sha256": "26153057ae830758381efb7551009531d7c2bbe220015f055e6bc353da27c5de", + "sha256_in_prefix": "26153057ae830758381efb7551009531d7c2bbe220015f055e6bc353da27c5de", + "size_in_bytes": 396 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "01eaafa8bfb6cca414bd515d5268b51722966160be8031a50c3d9f0603b64c25", + "sha256_in_prefix": "01eaafa8bfb6cca414bd515d5268b51722966160be8031a50c3d9f0603b64c25", + "size_in_bytes": 324 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f4b6a81ba1c369651d5d4e1ff0ec731700d83d77c305ed156d707568ac51076d", + "sha256_in_prefix": "f4b6a81ba1c369651d5d4e1ff0ec731700d83d77c305ed156d707568ac51076d", + "size_in_bytes": 17038 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5dfa686b380140a806159835518e6852cbbab989fc48468c28405bc9b1be5964", + "sha256_in_prefix": "5dfa686b380140a806159835518e6852cbbab989fc48468c28405bc9b1be5964", + "size_in_bytes": 2870 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "02aa5b3e27fee15322c9401b401ee57d8c13b3e46cdef639dc37701d6ad1741e", + "sha256_in_prefix": "02aa5b3e27fee15322c9401b401ee57d8c13b3e46cdef639dc37701d6ad1741e", + "size_in_bytes": 294 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/_parser.py", + "path_type": "hardlink", + "sha256": "83df8435a00b4be07c768918a42bb35056a55a5a20ed3f922183232d9496aed3", + "sha256_in_prefix": "83df8435a00b4be07c768918a42bb35056a55a5a20ed3f922183232d9496aed3", + "size_in_bytes": 22633 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/_re.py", + "path_type": "hardlink", + "sha256": "75b8e0e428594f6dca6bdcfd0c73977ddb52a4fc147dd80c5e78fc34ea25cbec", + "sha256_in_prefix": "75b8e0e428594f6dca6bdcfd0c73977ddb52a4fc147dd80c5e78fc34ea25cbec", + "size_in_bytes": 2943 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/_types.py", + "path_type": "hardlink", + "sha256": "f864c6d9552a929c7032ace654ee05ef26ca75d21b027b801d77e65907138b74", + "sha256_in_prefix": "f864c6d9552a929c7032ace654ee05ef26ca75d21b027b801d77e65907138b74", + "size_in_bytes": 254 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/tomli/py.typed", + "path_type": "hardlink", + "sha256": "f0f8f2675695a10a5156fb7bd66bafbaae6a13e8d315990af862c792175e6e67", + "sha256_in_prefix": "f0f8f2675695a10a5156fb7bd66bafbaae6a13e8d315990af862c792175e6e67", + "size_in_bytes": 26 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "6163f7987dfb38d6bc320ce2b70b2f02b862bc41126516d552ef1cd43247e758", + "sha256_in_prefix": "6163f7987dfb38d6bc320ce2b70b2f02b862bc41126516d552ef1cd43247e758", + "size_in_bytes": 1130 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "cf675c1c0a744f08580855390de87cc77d676b312582e8d4cfdb5bb8fd298d21", + "sha256_in_prefix": "cf675c1c0a744f08580855390de87cc77d676b312582e8d4cfdb5bb8fd298d21", + "size_in_bytes": 3717 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "48a51959582478352275428ceecd78ef77d79ac9dae796e39a2eaf2540282552", + "sha256_in_prefix": "48a51959582478352275428ceecd78ef77d79ac9dae796e39a2eaf2540282552", + "size_in_bytes": 2402 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/entry_points.txt", + "path_type": "hardlink", + "sha256": "aa9ecd43568bb624a0310aa8ea05a57c6a72d08217ce830999e4132e9cea1594", + "sha256_in_prefix": "aa9ecd43568bb624a0310aa8ea05a57c6a72d08217ce830999e4132e9cea1594", + "size_in_bytes": 48 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "e33dbc021b83a1dc114bf73527f97c1f9d6de50bb07d3b1eb24633971a7a82bb", + "sha256_in_prefix": "e33dbc021b83a1dc114bf73527f97c1f9d6de50bb07d3b1eb24633971a7a82bb", + "size_in_bytes": 10 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__init__.py", + "path_type": "hardlink", + "sha256": "3a7878c37f1e94f0a3b65714dc963d93787bd0d8ecc5722401f966427f99d056", + "sha256_in_prefix": "3a7878c37f1e94f0a3b65714dc963d93787bd0d8ecc5722401f966427f99d056", + "size_in_bytes": 2071 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c3d619c8755183ce2c9c9649fd8be2b16a5709724c95902bfd61193d45d344fb", + "sha256_in_prefix": "c3d619c8755183ce2c9c9649fd8be2b16a5709724c95902bfd61193d45d344fb", + "size_in_bytes": 1748 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dd198b516e27a4283d6675cbfd181fb588f9eba92496dc539db674650719c0cb", + "sha256_in_prefix": "dd198b516e27a4283d6675cbfd181fb588f9eba92496dc539db674650719c0cb", + "size_in_bytes": 19794 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "213a831b9d86ec71dbbc86cc7b9c2318d8d920ef0502d07fd4181855ec88aeaf", + "sha256_in_prefix": "213a831b9d86ec71dbbc86cc7b9c2318d8d920ef0502d07fd4181855ec88aeaf", + "size_in_bytes": 3418 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a9ebade15f0e0a6a372a631a1b50ccf771d3fb94c249d2339ace90847aac3703", + "sha256_in_prefix": "a9ebade15f0e0a6a372a631a1b50ccf771d3fb94c249d2339ace90847aac3703", + "size_in_bytes": 7123 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1660c875fd8de227bb7befd5c266a28484acc967bc20abaa86274e0ab407b7f8", + "sha256_in_prefix": "1660c875fd8de227bb7befd5c266a28484acc967bc20abaa86274e0ab407b7f8", + "size_in_bytes": 2141 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "906d3c3d2afae85c444e6d9c4e62e1897e118b5f69267c164114cb082f18dcff", + "sha256_in_prefix": "906d3c3d2afae85c444e6d9c4e62e1897e118b5f69267c164114cb082f18dcff", + "size_in_bytes": 7684 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4fba23a2b80085a4ab9e7757251298d29a47fe145ae9c206a0bf5fb601c75e11", + "sha256_in_prefix": "4fba23a2b80085a4ab9e7757251298d29a47fe145ae9c206a0bf5fb601c75e11", + "size_in_bytes": 6986 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5ebd3915360194ed925504dcaabd1ad3250a3d5bb4750b98fea3e3543a9f4535", + "sha256_in_prefix": "5ebd3915360194ed925504dcaabd1ad3250a3d5bb4750b98fea3e3543a9f4535", + "size_in_bytes": 1610 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8b1db0ba561f1c154c35a5f89a53fc26c694403fc1a5a68808a73d06af421f76", + "sha256_in_prefix": "8b1db0ba561f1c154c35a5f89a53fc26c694403fc1a5a68808a73d06af421f76", + "size_in_bytes": 4056 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bcf93c046e834161a14d7bff357a996e4ea0892c513d21590a0e7e49bfdc9e32", + "sha256_in_prefix": "bcf93c046e834161a14d7bff357a996e4ea0892c513d21590a0e7e49bfdc9e32", + "size_in_bytes": 2679 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f9655349268996a28704f534c830800b3d335d4a58f815800ab07dd7b2648bd8", + "sha256_in_prefix": "f9655349268996a28704f534c830800b3d335d4a58f815800ab07dd7b2648bd8", + "size_in_bytes": 28121 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7b66c7862e09db8e2d072ad22aa5909f3027508dca78eb05efcfdd870053f2fc", + "sha256_in_prefix": "7b66c7862e09db8e2d072ad22aa5909f3027508dca78eb05efcfdd870053f2fc", + "size_in_bytes": 1886 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a2b25939e5b75971e622821cc75ff5d8b90790bf4cf95473c62d597d94f4fba5", + "sha256_in_prefix": "a2b25939e5b75971e622821cc75ff5d8b90790bf4cf95473c62d597d94f4fba5", + "size_in_bytes": 5167 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_checkers.py", + "path_type": "hardlink", + "sha256": "251ae02a271d3847c8068344b5e81808422586969df9ad6ed449bb1828f45822", + "sha256_in_prefix": "251ae02a271d3847c8068344b5e81808422586969df9ad6ed449bb1828f45822", + "size_in_bytes": 31360 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_config.py", + "path_type": "hardlink", + "sha256": "9c8cfc4300dafa814edcbf4ef3feacaf396677df6949bcb6c0e33859bec5fc1d", + "sha256_in_prefix": "9c8cfc4300dafa814edcbf4ef3feacaf396677df6949bcb6c0e33859bec5fc1d", + "size_in_bytes": 2846 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_decorators.py", + "path_type": "hardlink", + "sha256": "bfa76c21e5af3e113118b3ffc1717e4660d4ca365ffc0936f20ee0049fefd3ed", + "sha256_in_prefix": "bfa76c21e5af3e113118b3ffc1717e4660d4ca365ffc0936f20ee0049fefd3ed", + "size_in_bytes": 9033 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_exceptions.py", + "path_type": "hardlink", + "sha256": "6483de895f8505de449b0d8469677616f96caf08b8a1cc13d9f54604802d1dc4", + "sha256_in_prefix": "6483de895f8505de449b0d8469677616f96caf08b8a1cc13d9f54604802d1dc4", + "size_in_bytes": 1121 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_functions.py", + "path_type": "hardlink", + "sha256": "89b81200a6b9a6d226d5e47d0111b4052a3300524f14d01266a84f57241eaa28", + "sha256_in_prefix": "89b81200a6b9a6d226d5e47d0111b4052a3300524f14d01266a84f57241eaa28", + "size_in_bytes": 10393 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_importhook.py", + "path_type": "hardlink", + "sha256": "ba08c20ef15c756314ed4ba0aa5246f7522954da44231b51afef7db3487593b3", + "sha256_in_prefix": "ba08c20ef15c756314ed4ba0aa5246f7522954da44231b51afef7db3487593b3", + "size_in_bytes": 6389 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_memo.py", + "path_type": "hardlink", + "sha256": "d63b9057fbf19c3d8960a6d2ade6e242e8f8a0a1f3ea7ebbbfda5803e0822128", + "sha256_in_prefix": "d63b9057fbf19c3d8960a6d2ade6e242e8f8a0a1f3ea7ebbbfda5803e0822128", + "size_in_bytes": 1303 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py", + "path_type": "hardlink", + "sha256": "f9f712aa4bf9e2b21f205f290dabd8e5840f923e0e5fc18cb7f94bec24120f82", + "sha256_in_prefix": "f9f712aa4bf9e2b21f205f290dabd8e5840f923e0e5fc18cb7f94bec24120f82", + "size_in_bytes": 4416 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_suppression.py", + "path_type": "hardlink", + "sha256": "5507f3c5cc086eede27f47fb54190a33b86460e03bb4d170f5aee3301b26320e", + "sha256_in_prefix": "5507f3c5cc086eede27f47fb54190a33b86460e03bb4d170f5aee3301b26320e", + "size_in_bytes": 2266 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_transformer.py", + "path_type": "hardlink", + "sha256": "f476bbfd085dc285278bfea1bdd63e8596ee11eae0a301eb34bdafcc721a9056", + "sha256_in_prefix": "f476bbfd085dc285278bfea1bdd63e8596ee11eae0a301eb34bdafcc721a9056", + "size_in_bytes": 44937 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_union_transformer.py", + "path_type": "hardlink", + "sha256": "bffe36afbfba1ee457d92a05c27c89f84e4f9715e955e5093c9475f8753da92a", + "sha256_in_prefix": "bffe36afbfba1ee457d92a05c27c89f84e4f9715e955e5093c9475f8753da92a", + "size_in_bytes": 1354 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/_utils.py", + "path_type": "hardlink", + "sha256": "e4784ed6b3e7e5fd4ceb29a454012fed79a5cf5717fa3d0e9d3325c87aaaad1f", + "sha256_in_prefix": "e4784ed6b3e7e5fd4ceb29a454012fed79a5cf5717fa3d0e9d3325c87aaaad1f", + "size_in_bytes": 5270 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typeguard/py.typed", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf", + "sha256_in_prefix": "3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf", + "size_in_bytes": 13936 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "05e51021af1c9d86eb8d6c7e37c4cece733d5065b91a6d8389c5690ed440f16d", + "sha256_in_prefix": "05e51021af1c9d86eb8d6c7e37c4cece733d5065b91a6d8389c5690ed440f16d", + "size_in_bytes": 3018 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "7710002d81971e632aa6a2fc33dc5d74aaf5d7caae22040a65d3e31503b05ee9", + "sha256_in_prefix": "7710002d81971e632aa6a2fc33dc5d74aaf5d7caae22040a65d3e31503b05ee9", + "size_in_bytes": 571 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "1196c6921ec87b83e865f450f08d19b8ff5592537f4ef719e83484e546abe33e", + "sha256_in_prefix": "1196c6921ec87b83e865f450f08d19b8ff5592537f4ef719e83484e546abe33e", + "size_in_bytes": 81 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/typing_extensions.py", + "path_type": "hardlink", + "sha256": "8307a4a721bd0d51b797158a5f89e2f2eee793759ee6c946f7c980f45dc3250c", + "sha256_in_prefix": "8307a4a721bd0d51b797158a5f89e2f2eee793759ee6c946f7c980f45dc3250c", + "size_in_bytes": 134451 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/LICENSE.txt", + "path_type": "hardlink", + "sha256": "30c23618679108f3e8ea1d2a658c7ca417bdfc891c98ef1a89fa4ff0c9828654", + "sha256_in_prefix": "30c23618679108f3e8ea1d2a658c7ca417bdfc891c98ef1a89fa4ff0c9828654", + "size_in_bytes": 1107 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "59bac22b00a59d3e5608a56b8cf8efc43831a36b72792ee4389c9cd4669c7841", + "sha256_in_prefix": "59bac22b00a59d3e5608a56b8cf8efc43831a36b72792ee4389c9cd4669c7841", + "size_in_bytes": 2153 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "783e654742611af88cd9f00bf01a431a219db536556e63ff981c7bd673070ac9", + "sha256_in_prefix": "783e654742611af88cd9f00bf01a431a219db536556e63ff981c7bd673070ac9", + "size_in_bytes": 4557 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "1196c6921ec87b83e865f450f08d19b8ff5592537f4ef719e83484e546abe33e", + "sha256_in_prefix": "1196c6921ec87b83e865f450f08d19b8ff5592537f4ef719e83484e546abe33e", + "size_in_bytes": 81 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/entry_points.txt", + "path_type": "hardlink", + "sha256": "ad363505b90f1e1906326e10dc5d29233241cd6da4331a06d68ae27dfbc6740d", + "sha256_in_prefix": "ad363505b90f1e1906326e10dc5d29233241cd6da4331a06d68ae27dfbc6740d", + "size_in_bytes": 104 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__init__.py", + "path_type": "hardlink", + "sha256": "0fa8e11f4d1e3336e0ad718078ec157c3e62fa508030cc9cb86d4bd2eb1e0e5a", + "sha256_in_prefix": "0fa8e11f4d1e3336e0ad718078ec157c3e62fa508030cc9cb86d4bd2eb1e0e5a", + "size_in_bytes": 59 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__main__.py", + "path_type": "hardlink", + "sha256": "3643149ee4c219c3a4818d0804b8010950bf04619c58e471d8af236064b5d941", + "sha256_in_prefix": "3643149ee4c219c3a4818d0804b8010950bf04619c58e471d8af236064b5d941", + "size_in_bytes": 455 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "66be47f59b0a26d844d718c333dda204fb19f1d6ad9843c83e4f9fcd7c90ebb5", + "sha256_in_prefix": "66be47f59b0a26d844d718c333dda204fb19f1d6ad9843c83e4f9fcd7c90ebb5", + "size_in_bytes": 231 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a0761e3a198993607a2082c2c5ff889a3e7e6bf0945e8016d3540420f3e7be9d", + "sha256_in_prefix": "a0761e3a198993607a2082c2c5ff889a3e7e6bf0945e8016d3540420f3e7be9d", + "size_in_bytes": 629 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "23218e963d6beb0773a041bb9ddd3623252bee091c58881a0ccb0f0da9803a56", + "sha256_in_prefix": "23218e963d6beb0773a041bb9ddd3623252bee091c58881a0ccb0f0da9803a56", + "size_in_bytes": 935 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "32e3346f6a0e365d144ebfd74d779d463e25cdde64b163949a38c577102cbe53", + "sha256_in_prefix": "32e3346f6a0e365d144ebfd74d779d463e25cdde64b163949a38c577102cbe53", + "size_in_bytes": 14203 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "118c239dcdf0437f29420a9d8acfdabc0280051536b77dc79733f57fbf9cde04", + "sha256_in_prefix": "118c239dcdf0437f29420a9d8acfdabc0280051536b77dc79733f57fbf9cde04", + "size_in_bytes": 9902 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cc484ab035d32cffc522f41d68c29f49a8fdf293e649783c456a3d41ea05bbf0", + "sha256_in_prefix": "cc484ab035d32cffc522f41d68c29f49a8fdf293e649783c456a3d41ea05bbf0", + "size_in_bytes": 5824 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8fa5b77985f9c817046d95ade0f6d1e500b51e0a8d38e9a8101e56d042c57e89", + "sha256_in_prefix": "8fa5b77985f9c817046d95ade0f6d1e500b51e0a8d38e9a8101e56d042c57e89", + "size_in_bytes": 867 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "989a4ddfdddb5116fcab0bfef2194b2f4a7d6c770fb4ed03ffa1273dc6d1e5e6", + "sha256_in_prefix": "989a4ddfdddb5116fcab0bfef2194b2f4a7d6c770fb4ed03ffa1273dc6d1e5e6", + "size_in_bytes": 5636 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py", + "path_type": "hardlink", + "sha256": "3680a78c9e03144678e44a3ed817572ec5890b01a46a2b75b69ff5ee96a5795c", + "sha256_in_prefix": "3680a78c9e03144678e44a3ed817572ec5890b01a46a2b75b69ff5ee96a5795c", + "size_in_bytes": 746 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/bdist_wheel.py", + "path_type": "hardlink", + "sha256": "38a272a7d13cdf5cc9af1a117e633d0203a30721b5081fa9cc5e645d016668a9", + "sha256_in_prefix": "38a272a7d13cdf5cc9af1a117e633d0203a30721b5081fa9cc5e645d016668a9", + "size_in_bytes": 20938 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__init__.py", + "path_type": "hardlink", + "sha256": "7813619cfc164ed74a0091f2efb96fcfb80e43912edc66af1ae817c614ac9fe5", + "sha256_in_prefix": "7813619cfc164ed74a0091f2efb96fcfb80e43912edc66af1ae817c614ac9fe5", + "size_in_bytes": 4264 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dbc978880e5439a278b4949df97d82a3a428ad96024f303472514f2d91881183", + "sha256_in_prefix": "dbc978880e5439a278b4949df97d82a3a428ad96024f303472514f2d91881183", + "size_in_bytes": 4520 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a0cc94a9f01798f5b8e71532bf6e46847b10284e564af86f5d1264224ed85ed0", + "sha256_in_prefix": "a0cc94a9f01798f5b8e71532bf6e46847b10284e564af86f5d1264224ed85ed0", + "size_in_bytes": 6357 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0b4ee59994854fc4146506d4e0124ecdf07351a9b87c117730bf145fa6d044fd", + "sha256_in_prefix": "0b4ee59994854fc4146506d4e0124ecdf07351a9b87c117730bf145fa6d044fd", + "size_in_bytes": 3099 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "af51c70f2bfb1d3a21f512d2a30cef427cdcd4689a29534d0bb863c181aa13fe", + "sha256_in_prefix": "af51c70f2bfb1d3a21f512d2a30cef427cdcd4689a29534d0bb863c181aa13fe", + "size_in_bytes": 3848 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "656cedf8d80e562c9de73256249ee63df0fd7be0c6fada283d5c818245c61685", + "sha256_in_prefix": "656cedf8d80e562c9de73256249ee63df0fd7be0c6fada283d5c818245c61685", + "size_in_bytes": 1101 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/convert.py", + "path_type": "hardlink", + "sha256": "a897296062aa75fc353fa05e9603751e7fecb8d80ce9bbf211616565eb925b1d", + "sha256_in_prefix": "a897296062aa75fc353fa05e9603751e7fecb8d80ce9bbf211616565eb925b1d", + "size_in_bytes": 9439 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/pack.py", + "path_type": "hardlink", + "sha256": "08015c1dd055ba5bec1d82659dd2953bb28c23d26a053673e628b43cac7108eb", + "sha256_in_prefix": "08015c1dd055ba5bec1d82659dd2953bb28c23d26a053673e628b43cac7108eb", + "size_in_bytes": 3103 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/tags.py", + "path_type": "hardlink", + "sha256": "947c3e2da5ab912e49cbfa96730fbaa528de34ceb20230e7a8a2371392534c25", + "sha256_in_prefix": "947c3e2da5ab912e49cbfa96730fbaa528de34ceb20230e7a8a2371392534c25", + "size_in_bytes": 4760 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/cli/unpack.py", + "path_type": "hardlink", + "sha256": "63f27bca7c4f4a81454d3ec7d1f3206c195512bc320c670e6e099ee4c06ecf9f", + "sha256_in_prefix": "63f27bca7c4f4a81454d3ec7d1f3206c195512bc320c670e6e099ee4c06ecf9f", + "size_in_bytes": 1021 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/macosx_libfile.py", + "path_type": "hardlink", + "sha256": "1e75ba38f74df7dde9b12b6fc25e3dc6dc76930ee1a156deea7bf099ff16b0a2", + "sha256_in_prefix": "1e75ba38f74df7dde9b12b6fc25e3dc6dc76930ee1a156deea7bf099ff16b0a2", + "size_in_bytes": 16103 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/metadata.py", + "path_type": "hardlink", + "sha256": "abec420aa4802bb1f3c99c4af40ebf1c05a686a4b5a01e01170d7eac74310624", + "sha256_in_prefix": "abec420aa4802bb1f3c99c4af40ebf1c05a686a4b5a01e01170d7eac74310624", + "size_in_bytes": 5884 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/util.py", + "path_type": "hardlink", + "sha256": "7b48e99ec6db33d42169a312c9aa7efd9814c5cc70a722c393a44772b76e3cb8", + "sha256_in_prefix": "7b48e99ec6db33d42169a312c9aa7efd9814c5cc70a722c393a44772b76e3cb8", + "size_in_bytes": 621 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "46cdee1904e97f41c537dddd501e1437a0816cd8047a7674136a22180407264d", + "sha256_in_prefix": "46cdee1904e97f41c537dddd501e1437a0816cd8047a7674136a22180407264d", + "size_in_bytes": 167 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "25b25c8bac6db1c71e59d5e386290a0e303010be76abf34deb71b8c10ef54420", + "sha256_in_prefix": "25b25c8bac6db1c71e59d5e386290a0e303010be76abf34deb71b8c10ef54420", + "size_in_bytes": 177 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4ae93b7e09768c9ab1aaa49614c74ffa33b820bd4723e4a11de027222d3f470a", + "sha256_in_prefix": "4ae93b7e09768c9ab1aaa49614c74ffa33b820bd4723e4a11de027222d3f470a", + "size_in_bytes": 3299 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "29dc1ead2e50fda9af61cee34b716bfc9c4533812f566e8f9f38bbac34a670ac", + "sha256_in_prefix": "29dc1ead2e50fda9af61cee34b716bfc9c4533812f566e8f9f38bbac34a670ac", + "size_in_bytes": 6408 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ff4d048e504829f47ff4b52338a4c55cb42b132a3484c76d40184704a046e624", + "sha256_in_prefix": "ff4d048e504829f47ff4b52338a4c55cb42b132a3484c76d40184704a046e624", + "size_in_bytes": 3327 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "51c6548a2d09495fc12a398a9de8539a60d7651544fe77c9f2df6404cedf0b02", + "sha256_in_prefix": "51c6548a2d09495fc12a398a9de8539a60d7651544fe77c9f2df6404cedf0b02", + "size_in_bytes": 8951 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c2b42616826b691fac411008051567676626bcf3dc4905c33ce0b18938644b17", + "sha256_in_prefix": "c2b42616826b691fac411008051567676626bcf3dc4905c33ce0b18938644b17", + "size_in_bytes": 2689 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "133014ebc6a7b1f4065eb5c739b5fdcaa008838f57ea3a87c4d30ded18f84400", + "sha256_in_prefix": "133014ebc6a7b1f4065eb5c739b5fdcaa008838f57ea3a87c4d30ded18f84400", + "size_in_bytes": 5809 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b6c8be4409b157ad1d403960b1fc9c65186bf57dbbc975fac9aa371030961153", + "sha256_in_prefix": "b6c8be4409b157ad1d403960b1fc9c65186bf57dbbc975fac9aa371030961153", + "size_in_bytes": 6895 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d31fa9ce1a2f10b29f179b1628fc58d5030f128165ad8b4bf42ad6c837f8ccb0", + "sha256_in_prefix": "d31fa9ce1a2f10b29f179b1628fc58d5030f128165ad8b4bf42ad6c837f8ccb0", + "size_in_bytes": 2822 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "74661eabeea8f8caf34198cab8df132001b8e2396050945b1b523c7e245e8bed", + "sha256_in_prefix": "74661eabeea8f8caf34198cab8df132001b8e2396050945b1b523c7e245e8bed", + "size_in_bytes": 30981 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d5ad85ac9bcf2acb72a61c02513cffd309b7e5311ddb992bd424c684e332fba3", + "sha256_in_prefix": "d5ad85ac9bcf2acb72a61c02513cffd309b7e5311ddb992bd424c684e332fba3", + "size_in_bytes": 13789 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7c02ea088a68391f62416e4b5aeb8f0e780f2a83464dc24b6f3d9e985e87041a", + "sha256_in_prefix": "7c02ea088a68391f62416e4b5aeb8f0e780f2a83464dc24b6f3d9e985e87041a", + "size_in_bytes": 4507 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fae4458143585988fc5315a071db48f054bbdec021d7e0abe76050d92845103a", + "sha256_in_prefix": "fae4458143585988fc5315a071db48f054bbdec021d7e0abe76050d92845103a", + "size_in_bytes": 14152 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py", + "path_type": "hardlink", + "sha256": "85b98af0e0fa67b7d8ea1c229c7114703d5bcbb73390688d62eed28671449369", + "sha256_in_prefix": "85b98af0e0fa67b7d8ea1c229c7114703d5bcbb73390688d62eed28671449369", + "size_in_bytes": 3266 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py", + "path_type": "hardlink", + "sha256": "3fbb1d479ffb5c1634f4b55860f8479b274c2482303d75ac878a2593be14ba3e", + "sha256_in_prefix": "3fbb1d479ffb5c1634f4b55860f8479b274c2482303d75ac878a2593be14ba3e", + "size_in_bytes": 9588 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py", + "path_type": "hardlink", + "sha256": "cf5b3c4e8da1434be99ff77e3b68b9ab11b010af1698694bb7777fdba57b35e6", + "sha256_in_prefix": "cf5b3c4e8da1434be99ff77e3b68b9ab11b010af1698694bb7777fdba57b35e6", + "size_in_bytes": 2674 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py", + "path_type": "hardlink", + "sha256": "e2d4f87a64a5daa4da53b553404d576bda358cc3c2b017b3b18071c8d31437eb", + "sha256_in_prefix": "e2d4f87a64a5daa4da53b553404d576bda358cc3c2b017b3b18071c8d31437eb", + "size_in_bytes": 10347 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py", + "path_type": "hardlink", + "sha256": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "sha256_in_prefix": "ab77953666d62461bf4b40e2b7f4b7028f2a42acffe4f6135c500a0597b9cabe", + "size_in_bytes": 1431 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py", + "path_type": "hardlink", + "sha256": "6a50ad6f05e138502614667a050fb0093485a11009db3fb2b087fbfff31327f9", + "sha256_in_prefix": "6a50ad6f05e138502614667a050fb0093485a11009db3fb2b087fbfff31327f9", + "size_in_bytes": 5292 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py", + "path_type": "hardlink", + "sha256": "fd348f2350612583bb069f40cd398743122a1c45576938e60e1f46fb0f2accf0", + "sha256_in_prefix": "fd348f2350612583bb069f40cd398743122a1c45576938e60e1f46fb0f2accf0", + "size_in_bytes": 8232 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py", + "path_type": "hardlink", + "sha256": "760a01795a6b3eed9813a43c9c67f038f4e30131db45afd918bc978451259fa4", + "sha256_in_prefix": "760a01795a6b3eed9813a43c9c67f038f4e30131db45afd918bc978451259fa4", + "size_in_bytes": 2933 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py", + "path_type": "hardlink", + "sha256": "2164add12acb48fef685e5a1002f142f4786bdab3b5c84078ea8958957e63ca1", + "sha256_in_prefix": "2164add12acb48fef685e5a1002f142f4786bdab3b5c84078ea8958957e63ca1", + "size_in_bytes": 39778 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py", + "path_type": "hardlink", + "sha256": "7de7475e2387901c4d6535e8b57bfcb973e630553d69ef93281ba38181e281c0", + "sha256_in_prefix": "7de7475e2387901c4d6535e8b57bfcb973e630553d69ef93281ba38181e281c0", + "size_in_bytes": 18950 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py", + "path_type": "hardlink", + "sha256": "5e07663f7cb1f7ec101058ceecebcc8fd46311fe49951e4714547af6fed243d1", + "sha256_in_prefix": "5e07663f7cb1f7ec101058ceecebcc8fd46311fe49951e4714547af6fed243d1", + "size_in_bytes": 5268 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py", + "path_type": "hardlink", + "sha256": "3c525a6190f1060cb191f6211f7490c38a9f13d202096ad39a2b6fab5e32ddbb", + "sha256_in_prefix": "3c525a6190f1060cb191f6211f7490c38a9f13d202096ad39a2b6fab5e32ddbb", + "size_in_bytes": 16234 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt", + "path_type": "hardlink", + "sha256": "67610d8c1d62e69adf7b3f0274cd5276bddce99c6fdab451a253292e60677001", + "sha256_in_prefix": "67610d8c1d62e69adf7b3f0274cd5276bddce99c6fdab451a253292e60677001", + "size_in_bytes": 16 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/wheel/wheelfile.py", + "path_type": "hardlink", + "sha256": "0ed2435a864cbe7061e2578d3033c63a9ad053d77f769eaaf8c995d14fbee317", + "sha256_in_prefix": "0ed2435a864cbe7061e2578d3033c63a9ad053d77f769eaaf8c995d14fbee317", + "size_in_bytes": 7694 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER", + "path_type": "hardlink", + "sha256": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "sha256_in_prefix": "d0edee15f91b406f3f99726e44eb990be6e34fd0345b52b910c568e0eef6a2a8", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/LICENSE", + "path_type": "hardlink", + "sha256": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "sha256_in_prefix": "86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741", + "size_in_bytes": 1023 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/METADATA", + "path_type": "hardlink", + "sha256": "508ae4fe43081c64b0b0a2828588b3a8cc3430c6693d1676662569400b0dfdb1", + "sha256_in_prefix": "508ae4fe43081c64b0b0a2828588b3a8cc3430c6693d1676662569400b0dfdb1", + "size_in_bytes": 3575 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/RECORD", + "path_type": "hardlink", + "sha256": "f316f2e03fd9ade7ebbc0b154706848e2bb8fd568b90935109f0d8e3ce2b9bfe", + "sha256_in_prefix": "f316f2e03fd9ade7ebbc0b154706848e2bb8fd568b90935109f0d8e3ce2b9bfe", + "size_in_bytes": 1039 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL", + "path_type": "hardlink", + "sha256": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "sha256_in_prefix": "189eedfe4581172c1b6a02b97a8f48a14c0b5baa3239e4ca990fbd8871553714", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt", + "path_type": "hardlink", + "sha256": "8806dda121df686a817d56f65ee47d26a4901c2a0eb0eb46eb2f42fcb4a9a85c", + "sha256_in_prefix": "8806dda121df686a817d56f65ee47d26a4901c2a0eb0eb46eb2f42fcb4a9a85c", + "size_in_bytes": 5 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/__init__.py", + "path_type": "hardlink", + "sha256": "42e235834d06e1f440706b7e1ea6d5d285889264a079d086198b071d8ccd6bc0", + "sha256_in_prefix": "42e235834d06e1f440706b7e1ea6d5d285889264a079d086198b071d8ccd6bc0", + "size_in_bytes": 13412 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0ee5f54a7545f0038be8e951f92694104cf33f33046024b0db4f00d0e09708de", + "sha256_in_prefix": "0ee5f54a7545f0038be8e951f92694104cf33f33046024b0db4f00d0e09708de", + "size_in_bytes": 16175 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6119bbb54e297ee3d860b456f055123b8fb638b974815a0e6cba61badf22b414", + "sha256_in_prefix": "6119bbb54e297ee3d860b456f055123b8fb638b974815a0e6cba61badf22b414", + "size_in_bytes": 3937 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e1aaa0966a483a4c1262d8358f26c415bc21d48460a59de4bba69e5f422a36d3", + "sha256_in_prefix": "e1aaa0966a483a4c1262d8358f26c415bc21d48460a59de4bba69e5f422a36d3", + "size_in_bytes": 164 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cc0665fccd0d0765d63098cb8e0ab3961ffa9fcc55d809c2d62eb5e5811acd8d", + "sha256_in_prefix": "cc0665fccd0d0765d63098cb8e0ab3961ffa9fcc55d809c2d62eb5e5811acd8d", + "size_in_bytes": 405 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/compat/py310.py", + "path_type": "hardlink", + "sha256": "799a645b4cd1b6e9e484487c8e35f780219edb67a6a0a081270ef666de119210", + "sha256_in_prefix": "799a645b4cd1b6e9e484487c8e35f780219edb67a6a0a081270ef666de119210", + "size_in_bytes": 219 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/_vendor/zipp/glob.py", + "path_type": "hardlink", + "sha256": "7ad5a99df1284727d4beb52c8bab13886984aef3f07ba1f363aa53f2383f9542", + "sha256_in_prefix": "7ad5a99df1284727d4beb52c8bab13886984aef3f07ba1f363aa53f2383f9542", + "size_in_bytes": 3082 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/archive_util.py", + "path_type": "hardlink", + "sha256": "4e5ffae21493b5ce32f31ef16bdf2b15551b1b6e2802ba63ccb0181983f6fec2", + "sha256_in_prefix": "4e5ffae21493b5ce32f31ef16bdf2b15551b1b6e2802ba63ccb0181983f6fec2", + "size_in_bytes": 7356 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/build_meta.py", + "path_type": "hardlink", + "sha256": "aebcbe2e8c2abd616cc46e909b94167ad1c919e113cd1762439f9bb386ce923a", + "sha256_in_prefix": "aebcbe2e8c2abd616cc46e909b94167ad1c919e113cd1762439f9bb386ce923a", + "size_in_bytes": 20446 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/cli-32.exe", + "path_type": "hardlink", + "sha256": "32acc1bc543116cbe2cff10cb867772df2f254ff2634c870aef0b46c4b696fdb", + "sha256_in_prefix": "32acc1bc543116cbe2cff10cb867772df2f254ff2634c870aef0b46c4b696fdb", + "size_in_bytes": 11776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/cli-64.exe", + "path_type": "hardlink", + "sha256": "bbb3de5707629e6a60a0c238cd477b28f07f0066982fda953fa6fcec39073a4a", + "sha256_in_prefix": "bbb3de5707629e6a60a0c238cd477b28f07f0066982fda953fa6fcec39073a4a", + "size_in_bytes": 14336 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/cli-arm64.exe", + "path_type": "hardlink", + "sha256": "b9a7d08da880dfac8bcf548eba4b06fb59b6f09b17d33148a0f6618328926c61", + "sha256_in_prefix": "b9a7d08da880dfac8bcf548eba4b06fb59b6f09b17d33148a0f6618328926c61", + "size_in_bytes": 13824 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/cli.exe", + "path_type": "hardlink", + "sha256": "32acc1bc543116cbe2cff10cb867772df2f254ff2634c870aef0b46c4b696fdb", + "sha256_in_prefix": "32acc1bc543116cbe2cff10cb867772df2f254ff2634c870aef0b46c4b696fdb", + "size_in_bytes": 11776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__init__.py", + "path_type": "hardlink", + "sha256": "c1d4ab94d4743fa9c2cfdfe816d08088091e14932c65ad633dca574f9ddfd123", + "sha256_in_prefix": "c1d4ab94d4743fa9c2cfdfe816d08088091e14932c65ad633dca574f9ddfd123", + "size_in_bytes": 803 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fbfee668cd7eaf301eb9d14c203fdf2cefa3adbb6c009cd273fc370b8db36473", + "sha256_in_prefix": "fbfee668cd7eaf301eb9d14c203fdf2cefa3adbb6c009cd273fc370b8db36473", + "size_in_bytes": 410 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "98afe9170ccf53096e058454f9fc982c8de0a7b79d5c8ab74db01dd48af525d1", + "sha256_in_prefix": "98afe9170ccf53096e058454f9fc982c8de0a7b79d5c8ab74db01dd48af525d1", + "size_in_bytes": 4664 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "21d457c3149313268981f8206c25fd60d9619da3d9c5096da1a662e3b43de9f3", + "sha256_in_prefix": "21d457c3149313268981f8206c25fd60d9619da3d9c5096da1a662e3b43de9f3", + "size_in_bytes": 2363 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "bb08f4628cf61f6116c57128769ba767ed63fccbc0ed75c7baae2af05415974d", + "sha256_in_prefix": "bb08f4628cf61f6116c57128769ba767ed63fccbc0ed75c7baae2af05415974d", + "size_in_bytes": 13710 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "093db24de19b72c0a87617248a597800873f6cb2371d28a95ac0ea96ea91ec59", + "sha256_in_prefix": "093db24de19b72c0a87617248a597800873f6cb2371d28a95ac0ea96ea91ec59", + "size_in_bytes": 1783 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5d59927e37dff3e8d41b0c7c26b53b44bd0b910b584d4ced2477209f0f07ffdb", + "sha256_in_prefix": "5d59927e37dff3e8d41b0c7c26b53b44bd0b910b584d4ced2477209f0f07ffdb", + "size_in_bytes": 15481 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "76657b469b8fb59205af27dc11ad57c7a6145bd0fc384d1c24910318f93d4c84", + "sha256_in_prefix": "76657b469b8fb59205af27dc11ad57c7a6145bd0fc384d1c24910318f93d4c84", + "size_in_bytes": 5283 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b6df820ca2450cb43289fb1656a47d1c85b384bc04eab91a06a13a83408c3cf7", + "sha256_in_prefix": "b6df820ca2450cb43289fb1656a47d1c85b384bc04eab91a06a13a83408c3cf7", + "size_in_bytes": 2499 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "081c42b21fe801038866d75d651cee5aaf891c16bb504c46526620224173da08", + "sha256_in_prefix": "081c42b21fe801038866d75d651cee5aaf891c16bb504c46526620224173da08", + "size_in_bytes": 14049 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "536dbe3f979158623d4888689b25ea6b87c13ee86a659b7a610af80662d27b8a", + "sha256_in_prefix": "536dbe3f979158623d4888689b25ea6b87c13ee86a659b7a610af80662d27b8a", + "size_in_bytes": 14970 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c204a7d9ce6bee8bfe62ed670a2207b030ce57213e4849b1280cbab46914fe4c", + "sha256_in_prefix": "c204a7d9ce6bee8bfe62ed670a2207b030ce57213e4849b1280cbab46914fe4c", + "size_in_bytes": 6095 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6e10eabf1e10daeb40f2737b51630c24190754b7df449ccb42a8a07b4d3195ef", + "sha256_in_prefix": "6e10eabf1e10daeb40f2737b51630c24190754b7df449ccb42a8a07b4d3195ef", + "size_in_bytes": 3255 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b555035146e036c6243af432c44ba5829606b62d721b225f09da30746daa0295", + "sha256_in_prefix": "b555035146e036c6243af432c44ba5829606b62d721b225f09da30746daa0295", + "size_in_bytes": 65192 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9d6d55edffeda898f144933414d2641de4d956cd38f0045b30ea801b1f6fdb30", + "sha256_in_prefix": "9d6d55edffeda898f144933414d2641de4d956cd38f0045b30ea801b1f6fdb30", + "size_in_bytes": 35776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "96ae7b16ee3597b2e6554e077c069724512822841a7323f5a35123178b225e88", + "sha256_in_prefix": "96ae7b16ee3597b2e6554e077c069724512822841a7323f5a35123178b225e88", + "size_in_bytes": 22272 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1f7bba99054daa537937515e8fe2ebe7fcd258aacf6513f144fcda658eedc973", + "sha256_in_prefix": "1f7bba99054daa537937515e8fe2ebe7fcd258aacf6513f144fcda658eedc973", + "size_in_bytes": 5424 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a278bf1781bb6ea94b83fe473f5bebac3ad6edba260fc936f7ab95ffc24e6977", + "sha256_in_prefix": "a278bf1781bb6ea94b83fe473f5bebac3ad6edba260fc936f7ab95ffc24e6977", + "size_in_bytes": 2373 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b320e5108a1a5445c35509e58eb53593c12d9c6b0e5ce7c512a5d452ff586b4d", + "sha256_in_prefix": "b320e5108a1a5445c35509e58eb53593c12d9c6b0e5ce7c512a5d452ff586b4d", + "size_in_bytes": 4515 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "805447f389267cf47c1305e41cb68cb00315fee9ed3466dbb22c6800fcf87ef5", + "sha256_in_prefix": "805447f389267cf47c1305e41cb68cb00315fee9ed3466dbb22c6800fcf87ef5", + "size_in_bytes": 2582 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "468a64509c10a3c194e53c1d977a134dee314d9b4c113ec7f060bc0f34fde3b3", + "sha256_in_prefix": "468a64509c10a3c194e53c1d977a134dee314d9b4c113ec7f060bc0f34fde3b3", + "size_in_bytes": 2629 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "a602ca41185a7228104112c9a58fc1f9d7520d373a0fce9d03fcc1f2583ba54d", + "sha256_in_prefix": "a602ca41185a7228104112c9a58fc1f9d7520d373a0fce9d03fcc1f2583ba54d", + "size_in_bytes": 911 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "486342a25a04d7ed77de41f3feb314521f6f125aa9614aba160a98d1a1f7bbf4", + "sha256_in_prefix": "486342a25a04d7ed77de41f3feb314521f6f125aa9614aba160a98d1a1f7bbf4", + "size_in_bytes": 7982 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "df26d18ceb9b6a61a69e78698d6c3e16bdd990725703a19d0ae5b37221e78693", + "sha256_in_prefix": "df26d18ceb9b6a61a69e78698d6c3e16bdd990725703a19d0ae5b37221e78693", + "size_in_bytes": 4753 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0d435c4611a892dc1a9fcf63a43621753d8493930370b63261a6089c1848918d", + "sha256_in_prefix": "0d435c4611a892dc1a9fcf63a43621753d8493930370b63261a6089c1848918d", + "size_in_bytes": 1713 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/_requirestxt.py", + "path_type": "hardlink", + "sha256": "22d60c4c91a1fe2e53950b2d5ff9c5a29a848640b83c915a7412f665ddd5ebbd", + "sha256_in_prefix": "22d60c4c91a1fe2e53950b2d5ff9c5a29a848640b83c915a7412f665ddd5ebbd", + "size_in_bytes": 4228 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/alias.py", + "path_type": "hardlink", + "sha256": "ac376b32ddf60d2eaa7f72bbb63659c870ff74c2ab9bbec05dc02dc7e9c14342", + "sha256_in_prefix": "ac376b32ddf60d2eaa7f72bbb63659c870ff74c2ab9bbec05dc02dc7e9c14342", + "size_in_bytes": 2380 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/bdist_egg.py", + "path_type": "hardlink", + "sha256": "dde0ee710e1f75e60cb0b3bd3e105f63526470c2e1657827008ffd15d14db041", + "sha256_in_prefix": "dde0ee710e1f75e60cb0b3bd3e105f63526470c2e1657827008ffd15d14db041", + "size_in_bytes": 16972 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/bdist_rpm.py", + "path_type": "hardlink", + "sha256": "2f2a88e3dc38f122a4d059ae1ec13d30bcd7d52b978cbed830d6d930566a1482", + "sha256_in_prefix": "2f2a88e3dc38f122a4d059ae1ec13d30bcd7d52b978cbed830d6d930566a1482", + "size_in_bytes": 1435 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/bdist_wheel.py", + "path_type": "hardlink", + "sha256": "402b649748922e133917ae6100285afad006c4e771bbd76d24d0612826b8c0b2", + "sha256_in_prefix": "402b649748922e133917ae6100285afad006c4e771bbd76d24d0612826b8c0b2", + "size_in_bytes": 22274 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/build.py", + "path_type": "hardlink", + "sha256": "788ed24cc111186644a73935b6f24df29f483a30005cc7062f3963bf69b02373", + "sha256_in_prefix": "788ed24cc111186644a73935b6f24df29f483a30005cc7062f3963bf69b02373", + "size_in_bytes": 6052 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/build_clib.py", + "path_type": "hardlink", + "sha256": "01b8293c817fdea2fc7d9af724879b23e5874cc4c188c7eb164550cfc2b8d06e", + "sha256_in_prefix": "01b8293c817fdea2fc7d9af724879b23e5874cc4c188c7eb164550cfc2b8d06e", + "size_in_bytes": 4528 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/build_ext.py", + "path_type": "hardlink", + "sha256": "6d41f8334362cda249aefd74c0af990f7b98d13c42499958403862c30cc7b253", + "sha256_in_prefix": "6d41f8334362cda249aefd74c0af990f7b98d13c42499958403862c30cc7b253", + "size_in_bytes": 18377 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/build_py.py", + "path_type": "hardlink", + "sha256": "0c26e3bc1d7c9242fec542b9aef9739b40bab704de3b1361caf243c716bb7c82", + "sha256_in_prefix": "0c26e3bc1d7c9242fec542b9aef9739b40bab704de3b1361caf243c716bb7c82", + "size_in_bytes": 15539 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/develop.py", + "path_type": "hardlink", + "sha256": "cd7db6d75f6c2351b581f27580d084e21920db36cb2b1d2e530bcd982e5b22ef", + "sha256_in_prefix": "cd7db6d75f6c2351b581f27580d084e21920db36cb2b1d2e530bcd982e5b22ef", + "size_in_bytes": 6886 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/dist_info.py", + "path_type": "hardlink", + "sha256": "1d4ef9da22cb9a660c1dbb03060cf6b9b4639202686ee80ea7c1fbd4bcf30f2b", + "sha256_in_prefix": "1d4ef9da22cb9a660c1dbb03060cf6b9b4639202686ee80ea7c1fbd4bcf30f2b", + "size_in_bytes": 3450 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/easy_install.py", + "path_type": "hardlink", + "sha256": "d19e2416513bf007b601f1d7613c591546b6b77aa536a5c2b50bb8275371f220", + "sha256_in_prefix": "d19e2416513bf007b601f1d7613c591546b6b77aa536a5c2b50bb8275371f220", + "size_in_bytes": 87870 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/editable_wheel.py", + "path_type": "hardlink", + "sha256": "11fa32d549d3f863bb203d417681cd75e1f3364bce5d8adc8804df11f6322dd1", + "sha256_in_prefix": "11fa32d549d3f863bb203d417681cd75e1f3364bce5d8adc8804df11f6322dd1", + "size_in_bytes": 35626 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/egg_info.py", + "path_type": "hardlink", + "sha256": "596528cd1dc3642ad6b134211d73b280c88451cae32d6a61113d3e66ca1cb26e", + "sha256_in_prefix": "596528cd1dc3642ad6b134211d73b280c88451cae32d6a61113d3e66ca1cb26e", + "size_in_bytes": 25982 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/install.py", + "path_type": "hardlink", + "sha256": "d4f29fa04e05f5f4c31e671c7e50e791bdbcf4221c95d63768fb47c98baeb073", + "sha256_in_prefix": "d4f29fa04e05f5f4c31e671c7e50e791bdbcf4221c95d63768fb47c98baeb073", + "size_in_bytes": 7045 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/install_egg_info.py", + "path_type": "hardlink", + "sha256": "dc8f483c21fb0f9f5287ee9a558cfe87ac30cb1abec24c6b2b02a0de70dd26ab", + "sha256_in_prefix": "dc8f483c21fb0f9f5287ee9a558cfe87ac30cb1abec24c6b2b02a0de70dd26ab", + "size_in_bytes": 2075 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/install_lib.py", + "path_type": "hardlink", + "sha256": "f67d7f53cdde1dc1112ff6bfaeffcb8470a485794b76ac99e12741a30fbda9c1", + "sha256_in_prefix": "f67d7f53cdde1dc1112ff6bfaeffcb8470a485794b76ac99e12741a30fbda9c1", + "size_in_bytes": 4319 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/install_scripts.py", + "path_type": "hardlink", + "sha256": "b553828f77bc39322b9282ff6c66d3e693a4b1dc597d06e51ff6dd2380ed555e", + "sha256_in_prefix": "b553828f77bc39322b9282ff6c66d3e693a4b1dc597d06e51ff6dd2380ed555e", + "size_in_bytes": 2637 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/launcher manifest.xml", + "path_type": "hardlink", + "sha256": "c652db8d6ac1d35b4a0b4fa195590e2a48923dbccc9a5d9e38fb49fee7029db1", + "sha256_in_prefix": "c652db8d6ac1d35b4a0b4fa195590e2a48923dbccc9a5d9e38fb49fee7029db1", + "size_in_bytes": 628 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/rotate.py", + "path_type": "hardlink", + "sha256": "5cd77f04410e5802475b515c2d3314596978401eb302e93b6fc556420dc51e8b", + "sha256_in_prefix": "5cd77f04410e5802475b515c2d3314596978401eb302e93b6fc556420dc51e8b", + "size_in_bytes": 2187 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/saveopts.py", + "path_type": "hardlink", + "sha256": "369d0f55bed20fba136eef59f6ca2c4bb0fe0a4908914ef1e2096ee44b35b630", + "sha256_in_prefix": "369d0f55bed20fba136eef59f6ca2c4bb0fe0a4908914ef1e2096ee44b35b630", + "size_in_bytes": 692 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/sdist.py", + "path_type": "hardlink", + "sha256": "25a426dbe79b5c8da4bf2ac18c928ff3234b3dae5e31b31e8acf3c09704c6259", + "sha256_in_prefix": "25a426dbe79b5c8da4bf2ac18c928ff3234b3dae5e31b31e8acf3c09704c6259", + "size_in_bytes": 7374 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/setopt.py", + "path_type": "hardlink", + "sha256": "c59176442738001bc4f5e1c7033179d3e7e4420ddabbc7dc45455519de7c9375", + "sha256_in_prefix": "c59176442738001bc4f5e1c7033179d3e7e4420ddabbc7dc45455519de7c9375", + "size_in_bytes": 5100 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/command/test.py", + "path_type": "hardlink", + "sha256": "93bc5cabb0fb6c47a18316ab6f0f9d5b702d98664e46acfc1e3291e85189de39", + "sha256_in_prefix": "93bc5cabb0fb6c47a18316ab6f0f9d5b702d98664e46acfc1e3291e85189de39", + "size_in_bytes": 1343 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4f8084bf380c30012428a8dab8bd03d504d6d6e96c73c5e1771294c0366a57cc", + "sha256_in_prefix": "4f8084bf380c30012428a8dab8bd03d504d6d6e96c73c5e1771294c0366a57cc", + "size_in_bytes": 151 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__pycache__/py310.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6692bf10255a7fd1423dec0593acef82d34a594e58d042772db1dccf6cc51271", + "sha256_in_prefix": "6692bf10255a7fd1423dec0593acef82d34a594e58d042772db1dccf6cc51271", + "size_in_bytes": 263 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__pycache__/py311.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5f345490e620bb898ed934b38e122f65080c83924e4a70d0320e1469efd6b086", + "sha256_in_prefix": "5f345490e620bb898ed934b38e122f65080c83924e4a70d0320e1469efd6b086", + "size_in_bytes": 1175 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__pycache__/py312.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "698f52d2b64d3af1a0e96746c3aa3c8e8d0b96815cb19772c2ffc6990b9fcc94", + "sha256_in_prefix": "698f52d2b64d3af1a0e96746c3aa3c8e8d0b96815cb19772c2ffc6990b9fcc94", + "size_in_bytes": 382 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/__pycache__/py39.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "99e40da8eaa30a409ecaf3f3f5233aa87c6b133c2b150fe7be8fc3abcb3e0111", + "sha256_in_prefix": "99e40da8eaa30a409ecaf3f3f5233aa87c6b133c2b150fe7be8fc3abcb3e0111", + "size_in_bytes": 237 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/py310.py", + "path_type": "hardlink", + "sha256": "f2cab059ccc872b9337806e16a29b8a4a55de2d5d975caa679b81dbf38e2d2b7", + "sha256_in_prefix": "f2cab059ccc872b9337806e16a29b8a4a55de2d5d975caa679b81dbf38e2d2b7", + "size_in_bytes": 141 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/py311.py", + "path_type": "hardlink", + "sha256": "7bab49005c1910ff36866301975d0761e4b2a5e968fd38b6c138ca65528bc0e1", + "sha256_in_prefix": "7bab49005c1910ff36866301975d0761e4b2a5e968fd38b6c138ca65528bc0e1", + "size_in_bytes": 790 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/py312.py", + "path_type": "hardlink", + "sha256": "bd8295b5dadd393b0efd1f747499045ec1707cc245b881497e5848807ae327e6", + "sha256_in_prefix": "bd8295b5dadd393b0efd1f747499045ec1707cc245b881497e5848807ae327e6", + "size_in_bytes": 366 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/compat/py39.py", + "path_type": "hardlink", + "sha256": "04932d9e47dcab24df71caa3610c5fa11b54da74e759a104481564b214e25ea6", + "sha256_in_prefix": "04932d9e47dcab24df71caa3610c5fa11b54da74e759a104481564b214e25ea6", + "size_in_bytes": 493 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/NOTICE", + "path_type": "hardlink", + "sha256": "2dddf08818297a3b89d43d95ff659d8da85741108c9136dfa3a4d856c0623bd8", + "sha256_in_prefix": "2dddf08818297a3b89d43d95ff659d8da85741108c9136dfa3a4d856c0623bd8", + "size_in_bytes": 493 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__init__.py", + "path_type": "hardlink", + "sha256": "6a23e72fd0499f53ba31f9ae357ca7f16d8ba7cbbdaa2cd156ac0f88e74f2236", + "sha256_in_prefix": "6a23e72fd0499f53ba31f9ae357ca7f16d8ba7cbbdaa2cd156ac0f88e74f2236", + "size_in_bytes": 1499 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "45fb34bece73415450ef56ea44ab0be5bd6ad8445ddbd4324de28289f3ba42ce", + "sha256_in_prefix": "45fb34bece73415450ef56ea44ab0be5bd6ad8445ddbd4324de28289f3ba42ce", + "size_in_bytes": 1610 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "dc1e4044977a8cf7b71655d8880cf393cf34b5eb80d1baf615f9c1d7ae06e64e", + "sha256_in_prefix": "dc1e4044977a8cf7b71655d8880cf393cf34b5eb80d1baf615f9c1d7ae06e64e", + "size_in_bytes": 16862 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f5f98a32c75c1de50fb1f3a7fad04b5465e1a97fb695a01109f12f2e78df7254", + "sha256_in_prefix": "f5f98a32c75c1de50fb1f3a7fad04b5465e1a97fb695a01109f12f2e78df7254", + "size_in_bytes": 18214 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1e7ec4983382788d40e85eda6659c03df6b84f3d055e96e42f61db7ea2a5c47a", + "sha256_in_prefix": "1e7ec4983382788d40e85eda6659c03df6b84f3d055e96e42f61db7ea2a5c47a", + "size_in_bytes": 15999 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "5c3f68536d1f8a5f98f5fbd152d5353d51349d38a818a914006ca97ca041f8f4", + "sha256_in_prefix": "5c3f68536d1f8a5f98f5fbd152d5353d51349d38a818a914006ca97ca041f8f4", + "size_in_bytes": 24174 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py", + "path_type": "hardlink", + "sha256": "3d3798419b484b9091330d8bd65c2737b8e9b4991c090663b18aade27fc7d37a", + "sha256_in_prefix": "3d3798419b484b9091330d8bd65c2737b8e9b4991c090663b18aade27fc7d37a", + "size_in_bytes": 16988 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/NOTICE", + "path_type": "hardlink", + "sha256": "09c9bcea95ca086f8bc5bed174e40bc835b297d40fb5f86bbbb570fe0a5581a7", + "sha256_in_prefix": "09c9bcea95ca086f8bc5bed174e40bc835b297d40fb5f86bbbb570fe0a5581a7", + "size_in_bytes": 18737 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__init__.py", + "path_type": "hardlink", + "sha256": "767a7a4fb78f3f5479cf83ae0bb15dd9d905948aed21f8b351fbe91893fa9f3d", + "sha256_in_prefix": "767a7a4fb78f3f5479cf83ae0bb15dd9d905948aed21f8b351fbe91893fa9f3d", + "size_in_bytes": 1042 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "50e0fa648c24c7d93553978b4a062f201b96d3b03bff1921aca6d9ee20be6aeb", + "sha256_in_prefix": "50e0fa648c24c7d93553978b4a062f201b96d3b03bff1921aca6d9ee20be6aeb", + "size_in_bytes": 1490 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8918b24b145894c9afb13c88481efdd53e8b39145d8288d3b199af44625ed34f", + "sha256_in_prefix": "8918b24b145894c9afb13c88481efdd53e8b39145d8288d3b199af44625ed34f", + "size_in_bytes": 12010 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f0b4875b303c9a45bb5833f48f1a7e0498b07f46f71c4d4919d832a8b36438dd", + "sha256_in_prefix": "f0b4875b303c9a45bb5833f48f1a7e0498b07f46f71c4d4919d832a8b36438dd", + "size_in_bytes": 1584 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "22e0dd40845c7d444d9d0efa048a8c2f6b73875010080658a334932f1a1dfb18", + "sha256_in_prefix": "22e0dd40845c7d444d9d0efa048a8c2f6b73875010080658a334932f1a1dfb18", + "size_in_bytes": 2416 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "44cb3d63e450206fe925c000e374c4204c43e43df4eac30627f7c16568637502", + "sha256_in_prefix": "44cb3d63e450206fe925c000e374c4204c43e43df4eac30627f7c16568637502", + "size_in_bytes": 85764 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "59fa309a3f22d2fdfdedaa8e08f1097d56cf94349202481c7edd093a41f30c43", + "sha256_in_prefix": "59fa309a3f22d2fdfdedaa8e08f1097d56cf94349202481c7edd093a41f30c43", + "size_in_bytes": 12501 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/error_reporting.py", + "path_type": "hardlink", + "sha256": "99e95d0fb9c141da25421bc6fb8debd547be814d67ece440251f3abe1dd1aef9", + "sha256_in_prefix": "99e95d0fb9c141da25421bc6fb8debd547be814d67ece440251f3abe1dd1aef9", + "size_in_bytes": 11813 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/extra_validations.py", + "path_type": "hardlink", + "sha256": "91dd12598aeca7721717d28600cf10a5e68aa46c8cb0d80bfad8e1f533df8726", + "sha256_in_prefix": "91dd12598aeca7721717d28600cf10a5e68aa46c8cb0d80bfad8e1f533df8726", + "size_in_bytes": 1625 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py", + "path_type": "hardlink", + "sha256": "c3be3d260a8a8bc72504570e6dd71b655aac985e2827f401ca16754866d414dc", + "sha256_in_prefix": "c3be3d260a8a8bc72504570e6dd71b655aac985e2827f401ca16754866d414dc", + "size_in_bytes": 1612 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py", + "path_type": "hardlink", + "sha256": "4fc46f2528b9dd805f0c1e2644fb85ea0b0fc71f3ebbc2985f9eb2deaa24a7fe", + "sha256_in_prefix": "4fc46f2528b9dd805f0c1e2644fb85ea0b0fc71f3ebbc2985f9eb2deaa24a7fe", + "size_in_bytes": 335460 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/_validate_pyproject/formats.py", + "path_type": "hardlink", + "sha256": "323cfa463c7504c0f0d974cc01f4beb0ce71e45bf9697d9993fab933feeb7ff7", + "sha256_in_prefix": "323cfa463c7504c0f0d974cc01f4beb0ce71e45bf9697d9993fab933feeb7ff7", + "size_in_bytes": 12814 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/distutils.schema.json", + "path_type": "hardlink", + "sha256": "4dca77da44678703911b0ffda7a1848b4f258f6875e6d411cce6016f31a67015", + "sha256_in_prefix": "4dca77da44678703911b0ffda7a1848b4f258f6875e6d411cce6016f31a67015", + "size_in_bytes": 972 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/expand.py", + "path_type": "hardlink", + "sha256": "24d024b510accb2441fab42875b3e70ae7262d6a9c62fcc20c2f046e7d99ef13", + "sha256_in_prefix": "24d024b510accb2441fab42875b3e70ae7262d6a9c62fcc20c2f046e7d99ef13", + "size_in_bytes": 16041 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py", + "path_type": "hardlink", + "sha256": "60cbb93dd6c9248e5ace9ea447f6e833599f95fe67a8e03e227178b3a2e72e0c", + "sha256_in_prefix": "60cbb93dd6c9248e5ace9ea447f6e833599f95fe67a8e03e227178b3a2e72e0c", + "size_in_bytes": 18320 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/setupcfg.py", + "path_type": "hardlink", + "sha256": "5590e4c04ec362fe3949b69d243f02c0aac3b625ef8e09652fc3d84afa110b28", + "sha256_in_prefix": "5590e4c04ec362fe3949b69d243f02c0aac3b625ef8e09652fc3d84afa110b28", + "size_in_bytes": 26575 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/config/setuptools.schema.json", + "path_type": "hardlink", + "sha256": "759051b921276646ada1596dd645701bca1c4de45d3bb043d31bce58a1f9e0f6", + "sha256_in_prefix": "759051b921276646ada1596dd645701bca1c4de45d3bb043d31bce58a1f9e0f6", + "size_in_bytes": 16071 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/depends.py", + "path_type": "hardlink", + "sha256": "8ca61f8e6b7fd9941856085bf0bf5b53b2c9e9eac7279cdef8afdf295d413179", + "sha256_in_prefix": "8ca61f8e6b7fd9941856085bf0bf5b53b2c9e9eac7279cdef8afdf295d413179", + "size_in_bytes": 5965 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/discovery.py", + "path_type": "hardlink", + "sha256": "fb8d9cdd7870ce47e874328a3f9d02d98073af5d5f9dc020994cc174145bd3e4", + "sha256_in_prefix": "fb8d9cdd7870ce47e874328a3f9d02d98073af5d5f9dc020994cc174145bd3e4", + "size_in_bytes": 21258 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/dist.py", + "path_type": "hardlink", + "sha256": "f61cdee6922879848f14eaaf873d218adb9ac443ec578c0df6c63785c7f785f8", + "sha256_in_prefix": "f61cdee6922879848f14eaaf873d218adb9ac443ec578c0df6c63785c7f785f8", + "size_in_bytes": 38815 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/errors.py", + "path_type": "hardlink", + "sha256": "818db1d8f21a220cb4d724403510becdc0b0c430aa09272026808e6457b4ca2a", + "sha256_in_prefix": "818db1d8f21a220cb4d724403510becdc0b0c430aa09272026808e6457b4ca2a", + "size_in_bytes": 3024 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/extension.py", + "path_type": "hardlink", + "sha256": "2829eff69ded826d1956ab60138e757f220bb26e210b2bce894b4ebbbf3b0fee", + "sha256_in_prefix": "2829eff69ded826d1956ab60138e757f220bb26e210b2bce894b4ebbbf3b0fee", + "size_in_bytes": 6683 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/glob.py", + "path_type": "hardlink", + "sha256": "002fc1df70d8f20f821c42f10ec26bb7016ba62b9c48066c6a43c5752390ce17", + "sha256_in_prefix": "002fc1df70d8f20f821c42f10ec26bb7016ba62b9c48066c6a43c5752390ce17", + "size_in_bytes": 6062 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/gui-32.exe", + "path_type": "hardlink", + "sha256": "85dae1e95d77845f2cb59bcac3d4afe74bbe4c91a9bcc5bf4a71cd43104dbe7c", + "sha256_in_prefix": "85dae1e95d77845f2cb59bcac3d4afe74bbe4c91a9bcc5bf4a71cd43104dbe7c", + "size_in_bytes": 11776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/gui-64.exe", + "path_type": "hardlink", + "sha256": "3471b6140eadc6412277dbbefe3fef8c345a0f1a59776086b80a3618c3a83e3b", + "sha256_in_prefix": "3471b6140eadc6412277dbbefe3fef8c345a0f1a59776086b80a3618c3a83e3b", + "size_in_bytes": 14336 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/gui-arm64.exe", + "path_type": "hardlink", + "sha256": "e694f4743405c8b5926ff457db6fe7f1a12dec7c16a9c3864784d3f4e07ae097", + "sha256_in_prefix": "e694f4743405c8b5926ff457db6fe7f1a12dec7c16a9c3864784d3f4e07ae097", + "size_in_bytes": 13824 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/gui.exe", + "path_type": "hardlink", + "sha256": "85dae1e95d77845f2cb59bcac3d4afe74bbe4c91a9bcc5bf4a71cd43104dbe7c", + "sha256_in_prefix": "85dae1e95d77845f2cb59bcac3d4afe74bbe4c91a9bcc5bf4a71cd43104dbe7c", + "size_in_bytes": 11776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/installer.py", + "path_type": "hardlink", + "sha256": "ff859e831e2bdcbd39b0ca37f8896a169f8ebb19d6c81aa3c8c67b2d64179a1f", + "sha256_in_prefix": "ff859e831e2bdcbd39b0ca37f8896a169f8ebb19d6c81aa3c8c67b2d64179a1f", + "size_in_bytes": 5110 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/launch.py", + "path_type": "hardlink", + "sha256": "2016f9944bfaf42cae67d7b022b98a957875e7891d2e63f6f4b29f4cc9318a61", + "sha256_in_prefix": "2016f9944bfaf42cae67d7b022b98a957875e7891d2e63f6f4b29f4cc9318a61", + "size_in_bytes": 820 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/logging.py", + "path_type": "hardlink", + "sha256": "5b5ea21c9d477025d8434471cab11f27cdc54f8d7be6d0ada1883e13ab92a552", + "sha256_in_prefix": "5b5ea21c9d477025d8434471cab11f27cdc54f8d7be6d0ada1883e13ab92a552", + "size_in_bytes": 1261 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/modified.py", + "path_type": "hardlink", + "sha256": "6706df05f0853fcf25b6f6effdd243cfeb752ec4239ccf895298199e74198e33", + "sha256_in_prefix": "6706df05f0853fcf25b6f6effdd243cfeb752ec4239ccf895298199e74198e33", + "size_in_bytes": 568 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/monkey.py", + "path_type": "hardlink", + "sha256": "1703169769f5bf66c76dea81cbea3d83cc9435a0246056eccc26d77bd77965af", + "sha256_in_prefix": "1703169769f5bf66c76dea81cbea3d83cc9435a0246056eccc26d77bd77965af", + "size_in_bytes": 3717 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/msvc.py", + "path_type": "hardlink", + "sha256": "b7777f1d9ea032acaa9e1cf974f441b8ccb04d33e4dcbca5216933b744425673", + "sha256_in_prefix": "b7777f1d9ea032acaa9e1cf974f441b8ccb04d33e4dcbca5216933b744425673", + "size_in_bytes": 41255 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/namespaces.py", + "path_type": "hardlink", + "sha256": "d861aa618d4134312132d05cd6b1d3bfb92582635545d92c25e5be2f57fefb2b", + "sha256_in_prefix": "d861aa618d4134312132d05cd6b1d3bfb92582635545d92c25e5be2f57fefb2b", + "size_in_bytes": 3171 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/package_index.py", + "path_type": "hardlink", + "sha256": "5c125b84d2017bb097808f73ce17b12826890cf5a28253bd9e81c4dbf8b0a689", + "sha256_in_prefix": "5c125b84d2017bb097808f73ce17b12826890cf5a28253bd9e81c4dbf8b0a689", + "size_in_bytes": 39315 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/sandbox.py", + "path_type": "hardlink", + "sha256": "7ccaad70eba2a473ba44a3e1d58079a3b77df3974b2a8efa5a1a77beb21e8b61", + "sha256_in_prefix": "7ccaad70eba2a473ba44a3e1d58079a3b77df3974b2a8efa5a1a77beb21e8b61", + "size_in_bytes": 14906 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/script (dev).tmpl", + "path_type": "hardlink", + "sha256": "454cd0cc2414697b7074bb581d661b21098e6844b906baaad45bd403fb6efb92", + "sha256_in_prefix": "454cd0cc2414697b7074bb581d661b21098e6844b906baaad45bd403fb6efb92", + "size_in_bytes": 218 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/script.tmpl", + "path_type": "hardlink", + "sha256": "5864ede6989eccedbb73e0dbc7a9794384f715fdb4039cfbf3bda1bf76808586", + "sha256_in_prefix": "5864ede6989eccedbb73e0dbc7a9794384f715fdb4039cfbf3bda1bf76808586", + "size_in_bytes": 138 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__init__.py", + "path_type": "hardlink", + "sha256": "02705f96cda225b4c343398c29e2d1b7ef65c6168e1d454e644817bfcf54c2fb", + "sha256_in_prefix": "02705f96cda225b4c343398c29e2d1b7ef65c6168e1d454e644817bfcf54c2fb", + "size_in_bytes": 335 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2c57160ed5ce77a3531e16a05dc7aa7da9f60e799a606414b12f847a67b9493b", + "sha256_in_prefix": "2c57160ed5ce77a3531e16a05dc7aa7da9f60e799a606414b12f847a67b9493b", + "size_in_bytes": 457 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/contexts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "733eba37d53ca3254a317f8dad358b6f92b13d41bdefc613c54fb9bdaeb19501", + "sha256_in_prefix": "733eba37d53ca3254a317f8dad358b6f92b13d41bdefc613c54fb9bdaeb19501", + "size_in_bytes": 3929 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/environment.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4eeabf9ae0bea66e7ae7c576d41b2a1b7fbf16e4353bcbb1a1eab0ba9c78e0ef", + "sha256_in_prefix": "4eeabf9ae0bea66e7ae7c576d41b2a1b7fbf16e4353bcbb1a1eab0ba9c78e0ef", + "size_in_bytes": 2094 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/fixtures.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "de2e079531d23450d91c445610ab699539967ba2162b6f8668f27ace78ea2471", + "sha256_in_prefix": "de2e079531d23450d91c445610ab699539967ba2162b6f8668f27ace78ea2471", + "size_in_bytes": 4112 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "01dde633bdbdd3f0fa6d7835834828d105ab031be9e67f34a3b1f4cd9775822b", + "sha256_in_prefix": "01dde633bdbdd3f0fa6d7835834828d105ab031be9e67f34a3b1f4cd9775822b", + "size_in_bytes": 180 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/namespaces.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7dc46d464fdff34f94b17bf1efa43ff55df1e5d2c380aa5e4d4e70d17c0b2f59", + "sha256_in_prefix": "7dc46d464fdff34f94b17bf1efa43ff55df1e5d2c380aa5e4d4e70d17c0b2f59", + "size_in_bytes": 2730 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0311a429de558f575a1a21497741080e5e1c1d4c41f0bb2b90bcfbd36a58edc5", + "sha256_in_prefix": "0311a429de558f575a1a21497741080e5e1c1d4c41f0bb2b90bcfbd36a58edc5", + "size_in_bytes": 174 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/server.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "ee670cfceba7dfd32605e7274a41170568ebb01d35f1e8687e4ab3f5b7de7407", + "sha256_in_prefix": "ee670cfceba7dfd32605e7274a41170568ebb01d35f1e8687e4ab3f5b7de7407", + "size_in_bytes": 3380 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "05d93873df6ac28b6adc911fba4b3089faab3fc4a56b03c43246b44ba54fff0d", + "sha256_in_prefix": "05d93873df6ac28b6adc911fba4b3089faab3fc4a56b03c43246b44ba54fff0d", + "size_in_bytes": 1148 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "871b7fa5ac676d43f41f375066cef150fb3b0b9edbe407da0a9ac5c002bad9cc", + "sha256_in_prefix": "871b7fa5ac676d43f41f375066cef150fb3b0b9edbe407da0a9ac5c002bad9cc", + "size_in_bytes": 1025 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "18ce2ab5ec7a8180f432c3460bcb84af82fa1ff24f1588b7852dc121df5540e1", + "sha256_in_prefix": "18ce2ab5ec7a8180f432c3460bcb84af82fa1ff24f1588b7852dc121df5540e1", + "size_in_bytes": 2359 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "cc543663eca67ac7526a3d0c6470f88c7659c5e503052ee15c9c3c848212ff9c", + "sha256_in_prefix": "cc543663eca67ac7526a3d0c6470f88c7659c5e503052ee15c9c3c848212ff9c", + "size_in_bytes": 20311 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0c3d9d4601af4cefa61304e38d9b761d8971a989727bf8c37c98dc2433078c2b", + "sha256_in_prefix": "0c3d9d4601af4cefa61304e38d9b761d8971a989727bf8c37c98dc2433078c2b", + "size_in_bytes": 1382 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "41d26a1d90e0d3ba1e6987bd4eccad4ef65c7bd23efceebbef989bdfa9c6cce5", + "sha256_in_prefix": "41d26a1d90e0d3ba1e6987bd4eccad4ef65c7bd23efceebbef989bdfa9c6cce5", + "size_in_bytes": 2255 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2b9fe76171bc68be4e5f55b8591ccdacb6626f8c717ad228f0c0a2f33ab8caf8", + "sha256_in_prefix": "2b9fe76171bc68be4e5f55b8591ccdacb6626f8c717ad228f0c0a2f33ab8caf8", + "size_in_bytes": 9367 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "45a39ac915c9b8e91aedb87108f3f0961057d14df12aa2228d0ce0e63bb81ddd", + "sha256_in_prefix": "45a39ac915c9b8e91aedb87108f3f0961057d14df12aa2228d0ce0e63bb81ddd", + "size_in_bytes": 28764 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fbf5842b576d023f4acd7f99f8a46f2310ac6c267bbb03f6a9ad20c9e31d4276", + "sha256_in_prefix": "fbf5842b576d023f4acd7f99f8a46f2310ac6c267bbb03f6a9ad20c9e31d4276", + "size_in_bytes": 10841 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "549e0ae5801f771d44217a2ba05b87538664d5deb342204f2efd664f45b83d8f", + "sha256_in_prefix": "549e0ae5801f771d44217a2ba05b87538664d5deb342204f2efd664f45b83d8f", + "size_in_bytes": 20525 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2edcc8b012130870dc1bb6faecb001286ea70722149ea94f7770c4004af48bea", + "sha256_in_prefix": "2edcc8b012130870dc1bb6faecb001286ea70722149ea94f7770c4004af48bea", + "size_in_bytes": 14864 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_depends.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "f96d7be75d676a9ceb648e8c8aeef2c8441d651f2cfaf459bfc23ddf68e21173", + "sha256_in_prefix": "f96d7be75d676a9ceb648e8c8aeef2c8441d651f2cfaf459bfc23ddf68e21173", + "size_in_bytes": 759 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_develop.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0e01771f7e0580f1a13646164252fd318d0a04defbcac12893aa0b243aaa29f9", + "sha256_in_prefix": "0e01771f7e0580f1a13646164252fd318d0a04defbcac12893aa0b243aaa29f9", + "size_in_bytes": 5690 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_dist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2dad38021c580965335f92c4ee8c2b8d7f6e65b0c0028a1e4fab34013d16d0de", + "sha256_in_prefix": "2dad38021c580965335f92c4ee8c2b8d7f6e65b0c0028a1e4fab34013d16d0de", + "size_in_bytes": 6928 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6d49924b132b889d6a1e26505a2d76bcde23305e9e4728f8c9139f56fa0d23bd", + "sha256_in_prefix": "6d49924b132b889d6a1e26505a2d76bcde23305e9e4728f8c9139f56fa0d23bd", + "size_in_bytes": 7036 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "8489ab89cf5fe71ada9de876882e622e679f60dac606445b03eff29b81c845fc", + "sha256_in_prefix": "8489ab89cf5fe71ada9de876882e622e679f60dac606445b03eff29b81c845fc", + "size_in_bytes": 5616 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0afd0ee9d4474f48ddd1ce0740fc602c25c0ca3cd28d01a51c3d7dd34d118baa", + "sha256_in_prefix": "0afd0ee9d4474f48ddd1ce0740fc602c25c0ca3cd28d01a51c3d7dd34d118baa", + "size_in_bytes": 44443 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "49f6c48fea0b1691423a26b7da7cbaff614e2d97b021653f68c8cafd841ef9ab", + "sha256_in_prefix": "49f6c48fea0b1691423a26b7da7cbaff614e2d97b021653f68c8cafd841ef9ab", + "size_in_bytes": 36926 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "2b38a38699b66dbe2d838f1761a16d5d0b3178298ae40216d63f8d1f9fa68e41", + "sha256_in_prefix": "2b38a38699b66dbe2d838f1761a16d5d0b3178298ae40216d63f8d1f9fa68e41", + "size_in_bytes": 30671 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_extern.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1c17be7650cec0a0ba0e2c94be15e681e7394bbb9eaa9e667c48ecdb92d57ab6", + "sha256_in_prefix": "1c17be7650cec0a0ba0e2c94be15e681e7394bbb9eaa9e667c48ecdb92d57ab6", + "size_in_bytes": 605 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "88b349b996e7ccd419b2b5e66a5e14ffe83821b96f4803de1120f26c729d1d4a", + "sha256_in_prefix": "88b349b996e7ccd419b2b5e66a5e14ffe83821b96f4803de1120f26c729d1d4a", + "size_in_bytes": 8137 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3fa421da2f98bf3b0b1b7032e500110124db0231e11bf185e8a80c17b928b4ec", + "sha256_in_prefix": "3fa421da2f98bf3b0b1b7032e500110124db0231e11bf185e8a80c17b928b4ec", + "size_in_bytes": 2674 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_glob.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0d9f2301343fabfe425cb96fb7c434fb6f07c0e6c59a522e683f6b55640abbdd", + "sha256_in_prefix": "0d9f2301343fabfe425cb96fb7c434fb6f07c0e6c59a522e683f6b55640abbdd", + "size_in_bytes": 964 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "0cbb198620209752dc87b276ccb2dbcd79ef60b9f9bdbbe28dd2e690e249e990", + "sha256_in_prefix": "0cbb198620209752dc87b276ccb2dbcd79ef60b9f9bdbbe28dd2e690e249e990", + "size_in_bytes": 3658 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_logging.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e750f0ee481c9ad88ad16c69d5a5f5f61cc8a465562dae64b80ec1bc0f2eeeb2", + "sha256_in_prefix": "e750f0ee481c9ad88ad16c69d5a5f5f61cc8a465562dae64b80ec1bc0f2eeeb2", + "size_in_bytes": 2036 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "265e0ae0b6c01bececf97b6e180b3a4e5f52ac27ece158740476f515a498c5a4", + "sha256_in_prefix": "265e0ae0b6c01bececf97b6e180b3a4e5f52ac27ece158740476f515a498c5a4", + "size_in_bytes": 15925 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e755b5af3c26ba51459f75a1876692c56c737ca50580bd5ee53c847f6a803a2d", + "sha256_in_prefix": "e755b5af3c26ba51459f75a1876692c56c737ca50580bd5ee53c847f6a803a2d", + "size_in_bytes": 3478 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6bf6af6416791c1d950eec0875c81da5b611efe6e6f8235f6afe4eb2da566915", + "sha256_in_prefix": "6bf6af6416791c1d950eec0875c81da5b611efe6e6f8235f6afe4eb2da566915", + "size_in_bytes": 13933 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b6b4d0cbf5cb812e937a9d8468be143685b5b8e066682b53137a8eff88964ed", + "sha256_in_prefix": "9b6b4d0cbf5cb812e937a9d8468be143685b5b8e066682b53137a8eff88964ed", + "size_in_bytes": 6249 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "1ec5458ef9775513bb7ce21f426a3168a2dbd670ec842557dd88ab43c44865b4", + "sha256_in_prefix": "1ec5458ef9775513bb7ce21f426a3168a2dbd670ec842557dd88ab43c44865b4", + "size_in_bytes": 28189 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "e03f0ce58c351e1064661543fc575221a55312b2e12d1ad7e83298b4ab545767", + "sha256_in_prefix": "e03f0ce58c351e1064661543fc575221a55312b2e12d1ad7e83298b4ab545767", + "size_in_bytes": 1898 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "52201c3aacc3d2e273903166c5ca5f36ae5d1d37a7a53b018ac1adb9c8309a5d", + "sha256_in_prefix": "52201c3aacc3d2e273903166c5ca5f36ae5d1d37a7a53b018ac1adb9c8309a5d", + "size_in_bytes": 9925 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "da143c3c28856f8f5c2ee607024bff8c66d06a50a69561fa8b1a00d4f265574f", + "sha256_in_prefix": "da143c3c28856f8f5c2ee607024bff8c66d06a50a69561fa8b1a00d4f265574f", + "size_in_bytes": 830 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7b0b48494970a6725e708d3f2069581c840e5d2eeb14da084c7470789709b79a", + "sha256_in_prefix": "7b0b48494970a6725e708d3f2069581c840e5d2eeb14da084c7470789709b79a", + "size_in_bytes": 686 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "49b15f0c9edf19a068e7e5ed6a28c5d4f7d36e2e8fa2e8d94b941be912065186", + "sha256_in_prefix": "49b15f0c9edf19a068e7e5ed6a28c5d4f7d36e2e8fa2e8d94b941be912065186", + "size_in_bytes": 2776 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "19e9f6e428978cb68062ff107f43313e65abfbba84de6b7017b0dec46d73b361", + "sha256_in_prefix": "19e9f6e428978cb68062ff107f43313e65abfbba84de6b7017b0dec46d73b361", + "size_in_bytes": 3201 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b6eab81655beef98ef1c19d334461966a2615fc488a082c6fbeaafd5bbf9bb2f", + "sha256_in_prefix": "b6eab81655beef98ef1c19d334461966a2615fc488a082c6fbeaafd5bbf9bb2f", + "size_in_bytes": 13210 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "6157c1a4a722ba19c4fa2411be66827dc0c0fb0fcb5b0e58a2b6ab233c14b5fd", + "sha256_in_prefix": "6157c1a4a722ba19c4fa2411be66827dc0c0fb0fcb5b0e58a2b6ab233c14b5fd", + "size_in_bytes": 7414 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/text.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "fddf4424ed94ae302b6f0740b171e4946db4da0f15aefee75314716bb5bc3c26", + "sha256_in_prefix": "fddf4424ed94ae302b6f0740b171e4946db4da0f15aefee75314716bb5bc3c26", + "size_in_bytes": 394 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/__pycache__/textwrap.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "d46f1a5ca65244e5c5883362160ff134abda54a8b5df201653ecfec85f92ebe5", + "sha256_in_prefix": "d46f1a5ca65244e5c5883362160ff134abda54a8b5df201653ecfec85f92ebe5", + "size_in_bytes": 319 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/compat/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "40b4a67e328708c54e71876073ac95120af75b7da740ae87b0f48c81389f969c", + "sha256_in_prefix": "40b4a67e328708c54e71876073ac95120af75b7da740ae87b0f48c81389f969c", + "size_in_bytes": 157 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "70570d81ded5af8860ec31a80fb7ac5169c05a942ecb92b979d6a0d34ac4085c", + "sha256_in_prefix": "70570d81ded5af8860ec31a80fb7ac5169c05a942ecb92b979d6a0d34ac4085c", + "size_in_bytes": 282 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/compat/py39.py", + "path_type": "hardlink", + "sha256": "794cbbfc5fba2914ce20a97ebdeb2152ee88d0475349d059321d04574959d7e8", + "sha256_in_prefix": "794cbbfc5fba2914ce20a97ebdeb2152ee88d0475349d059321d04574959d7e8", + "size_in_bytes": 135 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "60e733abafcc39fd7f35dfd6d1fb33374894ef96260b801c8c3e18a46dd0468d", + "sha256_in_prefix": "60e733abafcc39fd7f35dfd6d1fb33374894ef96260b801c8c3e18a46dd0468d", + "size_in_bytes": 157 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "56c39793a2a74a3130f548bbbf3e16ae1dbb49f8244b790d8ef92ea9b75cdd23", + "sha256_in_prefix": "56c39793a2a74a3130f548bbbf3e16ae1dbb49f8244b790d8ef92ea9b75cdd23", + "size_in_bytes": 19085 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "b24d7cb1d16189a36c657597ff11cadd5b478023012fc4e1237236f62c971d9f", + "sha256_in_prefix": "b24d7cb1d16189a36c657597ff11cadd5b478023012fc4e1237236f62c971d9f", + "size_in_bytes": 7785 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "3eb3d92ce897107e2afe85db076b12dde7fae661b7792aad4fb0e4fbdf825c02", + "sha256_in_prefix": "3eb3d92ce897107e2afe85db076b12dde7fae661b7792aad4fb0e4fbdf825c02", + "size_in_bytes": 11073 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "4e10a9deec3aec15e3aefdfe6794149f33a2b724bf0a3790e9709d3d5a7444b7", + "sha256_in_prefix": "4e10a9deec3aec15e3aefdfe6794149f33a2b724bf0a3790e9709d3d5a7444b7", + "size_in_bytes": 3371 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "39be62617d3546d59a3ab5ca9f651fcb70115acbe79ef38a1ddef4e9fd9aa6f6", + "sha256_in_prefix": "39be62617d3546d59a3ab5ca9f651fcb70115acbe79ef38a1ddef4e9fd9aa6f6", + "size_in_bytes": 27925 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/downloads/__init__.py", + "path_type": "hardlink", + "sha256": "f62c670c47722ff6ab29b5337ee8897ed023f5b1b12b3f0cf5a94e159323c7d6", + "sha256_in_prefix": "f62c670c47722ff6ab29b5337ee8897ed023f5b1b12b3f0cf5a94e159323c7d6", + "size_in_bytes": 1827 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "c48ac9dbfb818f8b9a78340413862dc564eca5d6eef13297fc589defddfadd1c", + "sha256_in_prefix": "c48ac9dbfb818f8b9a78340413862dc564eca5d6eef13297fc589defddfadd1c", + "size_in_bytes": 2147 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7e13992ecfedd1b6c4c6362f34ecf10efc35b6cb03bf2091c9bd4ebeb89c2bee", + "sha256_in_prefix": "7e13992ecfedd1b6c4c6362f34ecf10efc35b6cb03bf2091c9bd4ebeb89c2bee", + "size_in_bytes": 650 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/downloads/preload.py", + "path_type": "hardlink", + "sha256": "b081866696377263293308896186181c6da27d9264bc9804a2d445b62ba55752", + "sha256_in_prefix": "b081866696377263293308896186181c6da27d9264bc9804a2d445b62ba55752", + "size_in_bytes": 450 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/setupcfg_examples.txt", + "path_type": "hardlink", + "sha256": "7006d5bc26e4159b9350beb1451cd182ac81d2b2ef2537efc370f7d20968d8e1", + "sha256_in_prefix": "7006d5bc26e4159b9350beb1451cd182ac81d2b2ef2537efc370f7d20968d8e1", + "size_in_bytes": 1912 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py", + "path_type": "hardlink", + "sha256": "5637e79abdbfec666609c063f2afab53df60836786ac93dba898eafdd4add6e5", + "sha256_in_prefix": "5637e79abdbfec666609c063f2afab53df60836786ac93dba898eafdd4add6e5", + "size_in_bytes": 20286 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/test_expand.py", + "path_type": "hardlink", + "sha256": "4b4a13e89be003fa2e8d1e184b8454b9fe6098eb75093415eba4500f357cc5de", + "sha256_in_prefix": "4b4a13e89be003fa2e8d1e184b8454b9fe6098eb75093415eba4500f357cc5de", + "size_in_bytes": 8933 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/test_pyprojecttoml.py", + "path_type": "hardlink", + "sha256": "d0b79f4a58d4840e8caad279015ccb8689aa65c62214a76eff57240de313d4b6", + "sha256_in_prefix": "d0b79f4a58d4840e8caad279015ccb8689aa65c62214a76eff57240de313d4b6", + "size_in_bytes": 12406 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py", + "path_type": "hardlink", + "sha256": "f56ef7fb22e16499af0a23b8ad3890a01a594f9c0d03dd176dde67d870ac85de", + "sha256_in_prefix": "f56ef7fb22e16499af0a23b8ad3890a01a594f9c0d03dd176dde67d870ac85de", + "size_in_bytes": 3271 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/config/test_setupcfg.py", + "path_type": "hardlink", + "sha256": "af965027a9adea6c9b6f175fbfcbba3e5e0ae4fb453623545b1728862c33f00c", + "sha256_in_prefix": "af965027a9adea6c9b6f175fbfcbba3e5e0ae4fb453623545b1728862c33f00c", + "size_in_bytes": 33189 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/contexts.py", + "path_type": "hardlink", + "sha256": "4c07592b19a6a1dc75131315a34d68e10a518e9229a385f72162aafc19e3c695", + "sha256_in_prefix": "4c07592b19a6a1dc75131315a34d68e10a518e9229a385f72162aafc19e3c695", + "size_in_bytes": 3480 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/environment.py", + "path_type": "hardlink", + "sha256": "f79fd4b536918aebf0602f5e5ca1076e7d36903b59cacbd9ab75192663d48f52", + "sha256_in_prefix": "f79fd4b536918aebf0602f5e5ca1076e7d36903b59cacbd9ab75192663d48f52", + "size_in_bytes": 3102 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/fixtures.py", + "path_type": "hardlink", + "sha256": "f95ee20fa05e136134470e9d56f4ce0a6dfa246f194d39eb5e13741884a582b8", + "sha256_in_prefix": "f95ee20fa05e136134470e9d56f4ce0a6dfa246f194d39eb5e13741884a582b8", + "size_in_bytes": 5197 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/indexes/test_links_priority/external.html", + "path_type": "hardlink", + "sha256": "78bf5eb8eb84f7724a65daa55f104e9476cac08b8db8876aec6051a6c68f31c5", + "sha256_in_prefix": "78bf5eb8eb84f7724a65daa55f104e9476cac08b8db8876aec6051a6c68f31c5", + "size_in_bytes": 92 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html", + "path_type": "hardlink", + "sha256": "0c3f932abed4538cc08c71f3e157b1603352033476ee57af4a1d5cfa4dd974b1", + "sha256_in_prefix": "0c3f932abed4538cc08c71f3e157b1603352033476ee57af4a1d5cfa4dd974b1", + "size_in_bytes": 174 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/__init__.py", + "path_type": "hardlink", + "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "sha256_in_prefix": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size_in_bytes": 0 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "de9c2bcb37661f704b7b128921544e53fa6db4fa62ba53548aa6a5405fb64f8e", + "sha256_in_prefix": "de9c2bcb37661f704b7b128921544e53fa6db4fa62ba53548aa6a5405fb64f8e", + "size_in_bytes": 162 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "7bfa75942bc28d642209a4e9ec11b68ab9cfcd9ed8579ba25a784d5a5d50a45a", + "sha256_in_prefix": "7bfa75942bc28d642209a4e9ec11b68ab9cfcd9ed8579ba25a784d5a5d50a45a", + "size_in_bytes": 3180 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-310.pyc", + "path_type": "hardlink", + "sha256": "9b687187ad432e71a58a19acfe8c32664af4bfcaae281e6c918936479327328a", + "sha256_in_prefix": "9b687187ad432e71a58a19acfe8c32664af4bfcaae281e6c918936479327328a", + "size_in_bytes": 6100 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/helpers.py", + "path_type": "hardlink", + "sha256": "dcf1dc4bd48203e7f05499943f669de4d40eb6d240113239367a1cff1ae83b99", + "sha256_in_prefix": "dcf1dc4bd48203e7f05499943f669de4d40eb6d240113239367a1cff1ae83b99", + "size_in_bytes": 2522 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/integration/test_pip_install_sdist.py", + "path_type": "hardlink", + "sha256": "b995b4dded78d69fbe035e8eb78600ba0052de1eb20211253da4324d22409f32", + "sha256_in_prefix": "b995b4dded78d69fbe035e8eb78600ba0052de1eb20211253da4324d22409f32", + "size_in_bytes": 8204 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/mod_with_constant.py", + "path_type": "hardlink", + "sha256": "5ff2a3f34339e70d6d990e1feee658f7565300ba3884a553e841f1818a1c50c4", + "sha256_in_prefix": "5ff2a3f34339e70d6d990e1feee658f7565300ba3884a553e841f1818a1c50c4", + "size_in_bytes": 22 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/namespaces.py", + "path_type": "hardlink", + "sha256": "1cf708de74793021565e96800c82757f02b1ca671080192ec3cec87393d44804", + "sha256_in_prefix": "1cf708de74793021565e96800c82757f02b1ca671080192ec3cec87393d44804", + "size_in_bytes": 2774 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/script-with-bom.py", + "path_type": "hardlink", + "sha256": "851460222cc450b1a21bf653368318e3a1e12a1c6959fcb9146703e906e1e5f7", + "sha256_in_prefix": "851460222cc450b1a21bf653368318e3a1e12a1c6959fcb9146703e906e1e5f7", + "size_in_bytes": 18 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/server.py", + "path_type": "hardlink", + "sha256": "d050d97f471222708fe67d6168aec0c47a378c3dbad512bb0f7f918cff85e779", + "sha256_in_prefix": "d050d97f471222708fe67d6168aec0c47a378c3dbad512bb0f7f918cff85e779", + "size_in_bytes": 2397 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_archive_util.py", + "path_type": "hardlink", + "sha256": "6eeb8a758f17916dba3dedc8280a014461c6d0c0ee9a7b8da0f8365ac010cc88", + "sha256_in_prefix": "6eeb8a758f17916dba3dedc8280a014461c6d0c0ee9a7b8da0f8365ac010cc88", + "size_in_bytes": 845 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_bdist_deprecations.py", + "path_type": "hardlink", + "sha256": "ef95eade0627efd2c8232bac125b5b1da9f46c4800b767bf09a2fb28b4bcf8a4", + "sha256_in_prefix": "ef95eade0627efd2c8232bac125b5b1da9f46c4800b767bf09a2fb28b4bcf8a4", + "size_in_bytes": 775 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_bdist_egg.py", + "path_type": "hardlink", + "sha256": "e8f6983751772436c8875b8ad2eaefef2245731f7ccf9767f52389f0cbfdd65f", + "sha256_in_prefix": "e8f6983751772436c8875b8ad2eaefef2245731f7ccf9767f52389f0cbfdd65f", + "size_in_bytes": 1957 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_bdist_wheel.py", + "path_type": "hardlink", + "sha256": "0b73e9ee9d9f5021afb87d0876af25082d80061b2ee06da237925aa1cc8d1d0c", + "sha256_in_prefix": "0b73e9ee9d9f5021afb87d0876af25082d80061b2ee06da237925aa1cc8d1d0c", + "size_in_bytes": 19906 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_build.py", + "path_type": "hardlink", + "sha256": "c0980ccf68701c00dc2c583e9d7af045586eb3b8639807841a0ae9210c021a70", + "sha256_in_prefix": "c0980ccf68701c00dc2c583e9d7af045586eb3b8639807841a0ae9210c021a70", + "size_in_bytes": 798 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_build_clib.py", + "path_type": "hardlink", + "sha256": "6d7e755d101fe2e3bb22e1c5a6378f9e82bc984ef837682ca1e12a17ea1f830b", + "sha256_in_prefix": "6d7e755d101fe2e3bb22e1c5a6378f9e82bc984ef837682ca1e12a17ea1f830b", + "size_in_bytes": 3123 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_build_ext.py", + "path_type": "hardlink", + "sha256": "7b8652c6c60f079cead4a4aa184b804d9d2dd0f250ccc8638e4289fa12237207", + "sha256_in_prefix": "7b8652c6c60f079cead4a4aa184b804d9d2dd0f250ccc8638e4289fa12237207", + "size_in_bytes": 10099 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_build_meta.py", + "path_type": "hardlink", + "sha256": "891a0639fe6f7a196d4e575b82173dee91e3fbc9c3c9afcd97df81b1dca5f10d", + "sha256_in_prefix": "891a0639fe6f7a196d4e575b82173dee91e3fbc9c3c9afcd97df81b1dca5f10d", + "size_in_bytes": 33574 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_build_py.py", + "path_type": "hardlink", + "sha256": "fb50e71042606af4053f3a0b80773e42b885bf496568ea75604afb2c35c2481a", + "sha256_in_prefix": "fb50e71042606af4053f3a0b80773e42b885bf496568ea75604afb2c35c2481a", + "size_in_bytes": 14187 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_config_discovery.py", + "path_type": "hardlink", + "sha256": "16a57e94eb64a9a23e6b2cd4db3a1c49d0f94da4408026678b13438a5280e854", + "sha256_in_prefix": "16a57e94eb64a9a23e6b2cd4db3a1c49d0f94da4408026678b13438a5280e854", + "size_in_bytes": 22580 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_core_metadata.py", + "path_type": "hardlink", + "sha256": "1699cf8ecb919c0fbc8d10ef05eda823fdef8afc233533ee1760acc0238d5c0e", + "sha256_in_prefix": "1699cf8ecb919c0fbc8d10ef05eda823fdef8afc233533ee1760acc0238d5c0e", + "size_in_bytes": 19102 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_depends.py", + "path_type": "hardlink", + "sha256": "c90057a106cd425262b7a99b455a33e816f9e777f7b0daead369598a6373e576", + "sha256_in_prefix": "c90057a106cd425262b7a99b455a33e816f9e777f7b0daead369598a6373e576", + "size_in_bytes": 424 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_develop.py", + "path_type": "hardlink", + "sha256": "08bcd767cf9be7e5454ee6aee0fe325c474bc7551dc9315c39fad5d2ac9421d1", + "sha256_in_prefix": "08bcd767cf9be7e5454ee6aee0fe325c474bc7551dc9315c39fad5d2ac9421d1", + "size_in_bytes": 5142 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_dist.py", + "path_type": "hardlink", + "sha256": "1db4d9a7b0f93732c08776edad4f0b7ae66fe127c00036bd115b9b799caede21", + "sha256_in_prefix": "1db4d9a7b0f93732c08776edad4f0b7ae66fe127c00036bd115b9b799caede21", + "size_in_bytes": 8897 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_dist_info.py", + "path_type": "hardlink", + "sha256": "020cb72f4337845e5dc57c12a4b27021b809237383cbf6ec1f6ddc1144763a53", + "sha256_in_prefix": "020cb72f4337845e5dc57c12a4b27021b809237383cbf6ec1f6ddc1144763a53", + "size_in_bytes": 7094 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_distutils_adoption.py", + "path_type": "hardlink", + "sha256": "fdeca7ace7f212a5c51268d4261ce97bc1973f24d43ef35239bb38a80026072f", + "sha256_in_prefix": "fdeca7ace7f212a5c51268d4261ce97bc1973f24d43ef35239bb38a80026072f", + "size_in_bytes": 5987 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_easy_install.py", + "path_type": "hardlink", + "sha256": "0fc86c93e67485872b2a8c8a33c027291d087557e05c3951db20114a85c3cd37", + "sha256_in_prefix": "0fc86c93e67485872b2a8c8a33c027291d087557e05c3951db20114a85c3cd37", + "size_in_bytes": 53308 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_editable_install.py", + "path_type": "hardlink", + "sha256": "ede4c4b694f493b41e572660eb87a1de4667f928dc92e07d2dca243ae577ec32", + "sha256_in_prefix": "ede4c4b694f493b41e572660eb87a1de4667f928dc92e07d2dca243ae577ec32", + "size_in_bytes": 43383 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_egg_info.py", + "path_type": "hardlink", + "sha256": "d018b6f489be3f3fd2bcab4a564abbb32dad60476bbdfbc23b27b17d3c778f2a", + "sha256_in_prefix": "d018b6f489be3f3fd2bcab4a564abbb32dad60476bbdfbc23b27b17d3c778f2a", + "size_in_bytes": 43963 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_extern.py", + "path_type": "hardlink", + "sha256": "ae9294ea809c92cba62f07f94de2a50e5b854344d47db3f04cb41ba71705ac25", + "sha256_in_prefix": "ae9294ea809c92cba62f07f94de2a50e5b854344d47db3f04cb41ba71705ac25", + "size_in_bytes": 296 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_find_packages.py", + "path_type": "hardlink", + "sha256": "0932c0713cd619604b09c776680b14564bcede26eb96a7b114174328e58fa2af", + "sha256_in_prefix": "0932c0713cd619604b09c776680b14564bcede26eb96a7b114174328e58fa2af", + "size_in_bytes": 7819 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_find_py_modules.py", + "path_type": "hardlink", + "sha256": "cd08ee8481b94d03764893e2c7d011a380cbff0f382e7f10b070d48e36ebb404", + "sha256_in_prefix": "cd08ee8481b94d03764893e2c7d011a380cbff0f382e7f10b070d48e36ebb404", + "size_in_bytes": 2404 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_glob.py", + "path_type": "hardlink", + "sha256": "3f726fa47fa45d0e01677cef445fb32b13a0c325b3c08690233d161ddc52d249", + "sha256_in_prefix": "3f726fa47fa45d0e01677cef445fb32b13a0c325b3c08690233d161ddc52d249", + "size_in_bytes": 887 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_install_scripts.py", + "path_type": "hardlink", + "sha256": "b1c22b27a6bfb2c2aa838bc804d6948e600a1c460b51467d58a9cf78a9c4ea07", + "sha256_in_prefix": "b1c22b27a6bfb2c2aa838bc804d6948e600a1c460b51467d58a9cf78a9c4ea07", + "size_in_bytes": 3433 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_logging.py", + "path_type": "hardlink", + "sha256": "ce51390e595dba40bb25ce7814dbc357feeec7712b024adfacde424ac9cd3944", + "sha256_in_prefix": "ce51390e595dba40bb25ce7814dbc357feeec7712b024adfacde424ac9cd3944", + "size_in_bytes": 2099 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_manifest.py", + "path_type": "hardlink", + "sha256": "78c83ae69200e760e2cc1ea6a64b5253e6fc0a3c1a3424b931280bfd5d4bac52", + "sha256_in_prefix": "78c83ae69200e760e2cc1ea6a64b5253e6fc0a3c1a3424b931280bfd5d4bac52", + "size_in_bytes": 18562 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_namespaces.py", + "path_type": "hardlink", + "sha256": "63abada1ee4f1c7a8bfc39606b0a81f45f17a6c5033efbf0d6c40c7a72b4e1ed", + "sha256_in_prefix": "63abada1ee4f1c7a8bfc39606b0a81f45f17a6c5033efbf0d6c40c7a72b4e1ed", + "size_in_bytes": 4515 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_packageindex.py", + "path_type": "hardlink", + "sha256": "a848cb1e94aeda00247a0c04b2dcc7413f8e9b5b902188c0f3378dcc45fbf6ea", + "sha256_in_prefix": "a848cb1e94aeda00247a0c04b2dcc7413f8e9b5b902188c0f3378dcc45fbf6ea", + "size_in_bytes": 8775 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_sandbox.py", + "path_type": "hardlink", + "sha256": "b2151613b7cb4d67bb27375f8ba36178159ab86de852e91b515e3a700ac3d2ed", + "sha256_in_prefix": "b2151613b7cb4d67bb27375f8ba36178159ab86de852e91b515e3a700ac3d2ed", + "size_in_bytes": 4330 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_sdist.py", + "path_type": "hardlink", + "sha256": "d1221f95729fde0d2134f63c6596eac7fcd5e122b5a28e97e80f39dec80a621e", + "sha256_in_prefix": "d1221f95729fde0d2134f63c6596eac7fcd5e122b5a28e97e80f39dec80a621e", + "size_in_bytes": 32428 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_setopt.py", + "path_type": "hardlink", + "sha256": "dd5c713380137cff8fe001a70e3a160a71ebe7e8bd0921104c5614d7e1539ef2", + "sha256_in_prefix": "dd5c713380137cff8fe001a70e3a160a71ebe7e8bd0921104c5614d7e1539ef2", + "size_in_bytes": 1365 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_setuptools.py", + "path_type": "hardlink", + "sha256": "fde221a8a7f8e7e3ad1eac517f6d0a9dd39926525d4b43ee14b5c13b733e2cdf", + "sha256_in_prefix": "fde221a8a7f8e7e3ad1eac517f6d0a9dd39926525d4b43ee14b5c13b733e2cdf", + "size_in_bytes": 9008 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_shutil_wrapper.py", + "path_type": "hardlink", + "sha256": "835e44d753ed6711be227076056345c87facbce6d7c765dc32180c2c93ee1677", + "sha256_in_prefix": "835e44d753ed6711be227076056345c87facbce6d7c765dc32180c2c93ee1677", + "size_in_bytes": 641 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_unicode_utils.py", + "path_type": "hardlink", + "sha256": "c567c4125f239100adf68b615135c97c599dc804c0160809b36b53c636ee99bc", + "sha256_in_prefix": "c567c4125f239100adf68b615135c97c599dc804c0160809b36b53c636ee99bc", + "size_in_bytes": 316 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_virtualenv.py", + "path_type": "hardlink", + "sha256": "83e9e30bff494c0b35615c7fd5d189fd0e919489cee2a295bbdf9702035be936", + "sha256_in_prefix": "83e9e30bff494c0b35615c7fd5d189fd0e919489cee2a295bbdf9702035be936", + "size_in_bytes": 3730 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_warnings.py", + "path_type": "hardlink", + "sha256": "cf0476cdc9c2782783a882d994938f01cbb23c7a03bc6bb53ad3956222cc93be", + "sha256_in_prefix": "cf0476cdc9c2782783a882d994938f01cbb23c7a03bc6bb53ad3956222cc93be", + "size_in_bytes": 3347 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_wheel.py", + "path_type": "hardlink", + "sha256": "27ef375b529d5d38008c5644dc7fb2b68861bc31358aa75b139605e632d09464", + "sha256_in_prefix": "27ef375b529d5d38008c5644dc7fb2b68861bc31358aa75b139605e632d09464", + "size_in_bytes": 19370 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/test_windows_wrappers.py", + "path_type": "hardlink", + "sha256": "685e944e8c0ddf2cc281d061f670d056f6087d262882b4caefbe931325c406a8", + "sha256_in_prefix": "685e944e8c0ddf2cc281d061f670d056f6087d262882b4caefbe931325c406a8", + "size_in_bytes": 7881 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/text.py", + "path_type": "hardlink", + "sha256": "6b5db5f7ba4c553bc1e85016434ba34fc7c84222c8589945025d5409a0d40df8", + "sha256_in_prefix": "6b5db5f7ba4c553bc1e85016434ba34fc7c84222c8589945025d5409a0d40df8", + "size_in_bytes": 123 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/tests/textwrap.py", + "path_type": "hardlink", + "sha256": "14d34dabf322684271f3c3e7b1b250211c668f5aa681c00e0975d1b0e0cf24de", + "sha256_in_prefix": "14d34dabf322684271f3c3e7b1b250211c668f5aa681c00e0975d1b0e0cf24de", + "size_in_bytes": 98 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/unicode_utils.py", + "path_type": "hardlink", + "sha256": "77d33dc66c4a408258c0d6456b820fa481442936f120069ed63368571bb5d80c", + "sha256_in_prefix": "77d33dc66c4a408258c0d6456b820fa481442936f120069ed63368571bb5d80c", + "size_in_bytes": 3190 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/version.py", + "path_type": "hardlink", + "sha256": "58909e52ecaaef80289364de2bdf8e7b164ebbc5eb950cbbfb2d0112e58da2f4", + "sha256_in_prefix": "58909e52ecaaef80289364de2bdf8e7b164ebbc5eb950cbbfb2d0112e58da2f4", + "size_in_bytes": 161 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/warnings.py", + "path_type": "hardlink", + "sha256": "a18d127b978eaa37bf144ca34e0a2751cd171b082cac8e5c826d64930ba5cffc", + "sha256_in_prefix": "a18d127b978eaa37bf144ca34e0a2751cd171b082cac8e5c826d64930ba5cffc", + "size_in_bytes": 3796 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/wheel.py", + "path_type": "hardlink", + "sha256": "c6402dbe09bbb8f4f2615db3a95990d3003c90bc0ec914f625eb35cc0cb4ecab", + "sha256_in_prefix": "c6402dbe09bbb8f4f2615db3a95990d3003c90bc0ec914f625eb35cc0cb4ecab", + "size_in_bytes": 8624 + }, + { + "_path": "lib/python3.10/site-packages/setuptools/windows_support.py", + "path_type": "hardlink", + "sha256": "c16e0860b33506fed9d4c69ab8fdb198f8f2cbec249909d7772bd7b1c01ff5fc", + "sha256_in_prefix": "c16e0860b33506fed9d4c69ab8fdb198f8f2cbec249909d7772bd7b1c01ff5fc", + "size_in_bytes": 726 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "b6399276ff2a707901d1a3a64054fdd2821f7d20ea248e58395064e57d935bca", + "size": 1716085, + "subdir": "linux-64", + "timestamp": 1738046001000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/setuptools-75.8.0-py310h06a4308_0.conda", + "version": "75.8.0" +} \ No newline at end of file diff --git a/deepseek/conda-meta/sqlite-3.45.3-h5eee18b_0.json b/deepseek/conda-meta/sqlite-3.45.3-h5eee18b_0.json new file mode 100644 index 0000000000000000000000000000000000000000..e7cd230756ffe6a90a53f278887d095082a8b959 --- /dev/null +++ b/deepseek/conda-meta/sqlite-3.45.3-h5eee18b_0.json @@ -0,0 +1,101 @@ +{ + "build": "h5eee18b_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "libgcc-ng >=11.2.0", + "zlib >=1.2.13,<1.3.0a0", + "readline >=8.0,<9.0a0", + "ncurses >=6.4,<7.0a0", + "zlib >=1.2.13,<2.0a0" + ], + "extracted_package_dir": "/opt/conda/pkgs/sqlite-3.45.3-h5eee18b_0", + "files": [ + "bin/sqlite3", + "include/sqlite3.h", + "include/sqlite3ext.h", + "lib/libsqlite3.so", + "lib/libsqlite3.so.0", + "lib/libsqlite3.so.0.8.6", + "lib/pkgconfig/sqlite3.pc", + "share/man/man1/sqlite3.1" + ], + "fn": "sqlite-3.45.3-h5eee18b_0.conda", + "license": "blessing", + "link": { + "source": "/opt/conda/pkgs/sqlite-3.45.3-h5eee18b_0", + "type": 1 + }, + "md5": "acf93d6aceb74d6110e20b44cc45939e", + "name": "sqlite", + "package_tarball_full_path": "/opt/conda/pkgs/sqlite-3.45.3-h5eee18b_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/sqlite3", + "path_type": "hardlink", + "sha256": "b7c98c978efe537f94f522a16697b0ca86b384ca5e7a7bbc3eece38923194046", + "sha256_in_prefix": "b7c98c978efe537f94f522a16697b0ca86b384ca5e7a7bbc3eece38923194046", + "size_in_bytes": 1777144 + }, + { + "_path": "include/sqlite3.h", + "path_type": "hardlink", + "sha256": "882ad3c0448d0324fb3a6b1a85333a9173d539ac669c9972ae1f03722ff86282", + "sha256_in_prefix": "882ad3c0448d0324fb3a6b1a85333a9173d539ac669c9972ae1f03722ff86282", + "size_in_bytes": 641889 + }, + { + "_path": "include/sqlite3ext.h", + "path_type": "hardlink", + "sha256": "b184dd1586d935133d37ad76fa353faf0a1021ff2fdedeedcc3498fff74bbb94", + "sha256_in_prefix": "b184dd1586d935133d37ad76fa353faf0a1021ff2fdedeedcc3498fff74bbb94", + "size_in_bytes": 38149 + }, + { + "_path": "lib/libsqlite3.so", + "path_type": "softlink", + "sha256": "71932eb5bf89092fbd2c900601fc9f24aa184d65038aaec2445fd11b1d923327", + "size_in_bytes": 1543808 + }, + { + "_path": "lib/libsqlite3.so.0", + "path_type": "softlink", + "sha256": "71932eb5bf89092fbd2c900601fc9f24aa184d65038aaec2445fd11b1d923327", + "size_in_bytes": 1543808 + }, + { + "_path": "lib/libsqlite3.so.0.8.6", + "path_type": "hardlink", + "sha256": "71932eb5bf89092fbd2c900601fc9f24aa184d65038aaec2445fd11b1d923327", + "sha256_in_prefix": "71932eb5bf89092fbd2c900601fc9f24aa184d65038aaec2445fd11b1d923327", + "size_in_bytes": 1543808 + }, + { + "_path": "lib/pkgconfig/sqlite3.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/sqlite_1714488253653/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", + "sha256": "ff5d5bee02eae3cc17981bd9944e890b07f1202bcfea54be7412f2aaa3851426", + "sha256_in_prefix": "a45806b1bbee8a0b6f6284ea141ceae9c252a9f642db2949cc4701f6f52e1261", + "size_in_bytes": 531 + }, + { + "_path": "share/man/man1/sqlite3.1", + "path_type": "hardlink", + "sha256": "161127f79ba85a39c43520a33174d817a2465159ddf034aaddd4a696fe133564", + "sha256_in_prefix": "161127f79ba85a39c43520a33174d817a2465159ddf034aaddd4a696fe133564", + "size_in_bytes": 4340 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "74b61ac1a7df6777b759680047b9d67ba8ac1a921f56de42e09c99b5cc2f778a", + "size": 1285571, + "subdir": "linux-64", + "timestamp": 1714488309000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.45.3-h5eee18b_0.conda", + "version": "3.45.3" +} \ No newline at end of file diff --git a/deepseek/conda-meta/tk-8.6.14-h39e8969_0.json b/deepseek/conda-meta/tk-8.6.14-h39e8969_0.json new file mode 100644 index 0000000000000000000000000000000000000000..b4d60fec8469ede02fdd5b92ce983eff07057161 --- /dev/null +++ b/deepseek/conda-meta/tk-8.6.14-h39e8969_0.json @@ -0,0 +1,4190 @@ +{ + "build": "h39e8969_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "libgcc-ng >=11.2.0", + "zlib >=1.2.13,<1.3.0a0" + ], + "extracted_package_dir": "/opt/conda/pkgs/tk-8.6.14-h39e8969_0", + "files": [ + "bin/sqlite3_analyzer", + "bin/tclsh", + "bin/tclsh8.6", + "bin/wish", + "bin/wish8.6", + "include/default.h", + "include/fakemysql.h", + "include/fakepq.h", + "include/fakesql.h", + "include/itcl.h", + "include/itcl2TclOO.h", + "include/itclDecls.h", + "include/itclInt.h", + "include/itclIntDecls.h", + "include/itclMigrate2TclCore.h", + "include/itclTclIntStubsFcn.h", + "include/ks_names.h", + "include/mysqlStubs.h", + "include/odbcStubs.h", + "include/pqStubs.h", + "include/tcl.h", + "include/tclDecls.h", + "include/tclInt.h", + "include/tclIntDecls.h", + "include/tclIntPlatDecls.h", + "include/tclOO.h", + "include/tclOODecls.h", + "include/tclOOInt.h", + "include/tclOOIntDecls.h", + "include/tclPlatDecls.h", + "include/tclPort.h", + "include/tclThread.h", + "include/tclTomMath.h", + "include/tclTomMathDecls.h", + "include/tclUnixPort.h", + "include/tdbc.h", + "include/tdbcDecls.h", + "include/tdbcInt.h", + "include/tk.h", + "include/tk3d.h", + "include/tkArray.h", + "include/tkBusy.h", + "include/tkButton.h", + "include/tkCanvas.h", + "include/tkColor.h", + "include/tkDList.h", + "include/tkDecls.h", + "include/tkEntry.h", + "include/tkFileFilter.h", + "include/tkFont.h", + "include/tkImgPhoto.h", + "include/tkInt.h", + "include/tkIntDecls.h", + "include/tkIntPlatDecls.h", + "include/tkIntXlibDecls.h", + "include/tkMacOSX.h", + "include/tkMacOSXColor.h", + "include/tkMacOSXConstants.h", + "include/tkMacOSXCursors.h", + "include/tkMacOSXDebug.h", + "include/tkMacOSXDefault.h", + "include/tkMacOSXEvent.h", + "include/tkMacOSXFont.h", + "include/tkMacOSXInt.h", + "include/tkMacOSXKeysyms.h", + "include/tkMacOSXPort.h", + "include/tkMacOSXPrivate.h", + "include/tkMacOSXWm.h", + "include/tkMacOSXXCursors.h", + "include/tkMenu.h", + "include/tkMenubutton.h", + "include/tkPlatDecls.h", + "include/tkPort.h", + "include/tkScale.h", + "include/tkScrollbar.h", + "include/tkSelect.h", + "include/tkText.h", + "include/tkUndo.h", + "include/tkUnixDefault.h", + "include/tkUnixInt.h", + "include/tkUnixPort.h", + "include/tkUuid.h", + "lib/itcl4.2.4/itcl.tcl", + "lib/itcl4.2.4/itclConfig.sh", + "lib/itcl4.2.4/itclHullCmds.tcl", + "lib/itcl4.2.4/itclWidget.tcl", + "lib/itcl4.2.4/libitcl4.2.4.so", + "lib/itcl4.2.4/libitclstub4.2.4.a", + "lib/itcl4.2.4/pkgIndex.tcl", + "lib/libtcl8.6.so", + "lib/libtclstub8.6.a", + "lib/libtk8.6.so", + "lib/libtkstub8.6.a", + "lib/pkgconfig/tcl.pc", + "lib/pkgconfig/tk.pc", + "lib/sqlite3.44.2/libsqlite3.44.2.so", + "lib/sqlite3.44.2/pkgIndex.tcl", + "lib/tcl8.6/auto.tcl", + "lib/tcl8.6/clock.tcl", + "lib/tcl8.6/encoding/ascii.enc", + "lib/tcl8.6/encoding/big5.enc", + "lib/tcl8.6/encoding/cns11643.enc", + "lib/tcl8.6/encoding/cp1250.enc", + "lib/tcl8.6/encoding/cp1251.enc", + "lib/tcl8.6/encoding/cp1252.enc", + "lib/tcl8.6/encoding/cp1253.enc", + "lib/tcl8.6/encoding/cp1254.enc", + "lib/tcl8.6/encoding/cp1255.enc", + "lib/tcl8.6/encoding/cp1256.enc", + "lib/tcl8.6/encoding/cp1257.enc", + "lib/tcl8.6/encoding/cp1258.enc", + "lib/tcl8.6/encoding/cp437.enc", + "lib/tcl8.6/encoding/cp737.enc", + "lib/tcl8.6/encoding/cp775.enc", + "lib/tcl8.6/encoding/cp850.enc", + "lib/tcl8.6/encoding/cp852.enc", + "lib/tcl8.6/encoding/cp855.enc", + "lib/tcl8.6/encoding/cp857.enc", + "lib/tcl8.6/encoding/cp860.enc", + "lib/tcl8.6/encoding/cp861.enc", + "lib/tcl8.6/encoding/cp862.enc", + "lib/tcl8.6/encoding/cp863.enc", + "lib/tcl8.6/encoding/cp864.enc", + "lib/tcl8.6/encoding/cp865.enc", + "lib/tcl8.6/encoding/cp866.enc", + "lib/tcl8.6/encoding/cp869.enc", + "lib/tcl8.6/encoding/cp874.enc", + "lib/tcl8.6/encoding/cp932.enc", + "lib/tcl8.6/encoding/cp936.enc", + "lib/tcl8.6/encoding/cp949.enc", + "lib/tcl8.6/encoding/cp950.enc", + "lib/tcl8.6/encoding/dingbats.enc", + "lib/tcl8.6/encoding/ebcdic.enc", + "lib/tcl8.6/encoding/euc-cn.enc", + "lib/tcl8.6/encoding/euc-jp.enc", + "lib/tcl8.6/encoding/euc-kr.enc", + "lib/tcl8.6/encoding/gb12345.enc", + "lib/tcl8.6/encoding/gb1988.enc", + "lib/tcl8.6/encoding/gb2312-raw.enc", + "lib/tcl8.6/encoding/gb2312.enc", + "lib/tcl8.6/encoding/iso2022-jp.enc", + "lib/tcl8.6/encoding/iso2022-kr.enc", + "lib/tcl8.6/encoding/iso2022.enc", + "lib/tcl8.6/encoding/iso8859-1.enc", + "lib/tcl8.6/encoding/iso8859-10.enc", + "lib/tcl8.6/encoding/iso8859-11.enc", + "lib/tcl8.6/encoding/iso8859-13.enc", + "lib/tcl8.6/encoding/iso8859-14.enc", + "lib/tcl8.6/encoding/iso8859-15.enc", + "lib/tcl8.6/encoding/iso8859-16.enc", + "lib/tcl8.6/encoding/iso8859-2.enc", + "lib/tcl8.6/encoding/iso8859-3.enc", + "lib/tcl8.6/encoding/iso8859-4.enc", + "lib/tcl8.6/encoding/iso8859-5.enc", + "lib/tcl8.6/encoding/iso8859-6.enc", + "lib/tcl8.6/encoding/iso8859-7.enc", + "lib/tcl8.6/encoding/iso8859-8.enc", + "lib/tcl8.6/encoding/iso8859-9.enc", + "lib/tcl8.6/encoding/jis0201.enc", + "lib/tcl8.6/encoding/jis0208.enc", + "lib/tcl8.6/encoding/jis0212.enc", + "lib/tcl8.6/encoding/koi8-r.enc", + "lib/tcl8.6/encoding/koi8-u.enc", + "lib/tcl8.6/encoding/ksc5601.enc", + "lib/tcl8.6/encoding/macCentEuro.enc", + "lib/tcl8.6/encoding/macCroatian.enc", + "lib/tcl8.6/encoding/macCyrillic.enc", + "lib/tcl8.6/encoding/macDingbats.enc", + "lib/tcl8.6/encoding/macGreek.enc", + "lib/tcl8.6/encoding/macIceland.enc", + "lib/tcl8.6/encoding/macJapan.enc", + "lib/tcl8.6/encoding/macRoman.enc", + "lib/tcl8.6/encoding/macRomania.enc", + "lib/tcl8.6/encoding/macThai.enc", + "lib/tcl8.6/encoding/macTurkish.enc", + "lib/tcl8.6/encoding/macUkraine.enc", + "lib/tcl8.6/encoding/shiftjis.enc", + "lib/tcl8.6/encoding/symbol.enc", + "lib/tcl8.6/encoding/tis-620.enc", + "lib/tcl8.6/history.tcl", + "lib/tcl8.6/http1.0/http.tcl", + "lib/tcl8.6/http1.0/pkgIndex.tcl", + "lib/tcl8.6/init.tcl", + "lib/tcl8.6/msgs/af.msg", + "lib/tcl8.6/msgs/af_za.msg", + "lib/tcl8.6/msgs/ar.msg", + "lib/tcl8.6/msgs/ar_in.msg", + "lib/tcl8.6/msgs/ar_jo.msg", + "lib/tcl8.6/msgs/ar_lb.msg", + "lib/tcl8.6/msgs/ar_sy.msg", + "lib/tcl8.6/msgs/be.msg", + "lib/tcl8.6/msgs/bg.msg", + "lib/tcl8.6/msgs/bn.msg", + "lib/tcl8.6/msgs/bn_in.msg", + "lib/tcl8.6/msgs/ca.msg", + "lib/tcl8.6/msgs/cs.msg", + "lib/tcl8.6/msgs/da.msg", + "lib/tcl8.6/msgs/de.msg", + "lib/tcl8.6/msgs/de_at.msg", + "lib/tcl8.6/msgs/de_be.msg", + "lib/tcl8.6/msgs/el.msg", + "lib/tcl8.6/msgs/en_au.msg", + "lib/tcl8.6/msgs/en_be.msg", + "lib/tcl8.6/msgs/en_bw.msg", + "lib/tcl8.6/msgs/en_ca.msg", + "lib/tcl8.6/msgs/en_gb.msg", + "lib/tcl8.6/msgs/en_hk.msg", + "lib/tcl8.6/msgs/en_ie.msg", + "lib/tcl8.6/msgs/en_in.msg", + "lib/tcl8.6/msgs/en_nz.msg", + "lib/tcl8.6/msgs/en_ph.msg", + "lib/tcl8.6/msgs/en_sg.msg", + "lib/tcl8.6/msgs/en_za.msg", + "lib/tcl8.6/msgs/en_zw.msg", + "lib/tcl8.6/msgs/eo.msg", + "lib/tcl8.6/msgs/es.msg", + "lib/tcl8.6/msgs/es_ar.msg", + "lib/tcl8.6/msgs/es_bo.msg", + "lib/tcl8.6/msgs/es_cl.msg", + "lib/tcl8.6/msgs/es_co.msg", + "lib/tcl8.6/msgs/es_cr.msg", + "lib/tcl8.6/msgs/es_do.msg", + "lib/tcl8.6/msgs/es_ec.msg", + "lib/tcl8.6/msgs/es_gt.msg", + "lib/tcl8.6/msgs/es_hn.msg", + "lib/tcl8.6/msgs/es_mx.msg", + "lib/tcl8.6/msgs/es_ni.msg", + "lib/tcl8.6/msgs/es_pa.msg", + "lib/tcl8.6/msgs/es_pe.msg", + "lib/tcl8.6/msgs/es_pr.msg", + "lib/tcl8.6/msgs/es_py.msg", + "lib/tcl8.6/msgs/es_sv.msg", + "lib/tcl8.6/msgs/es_uy.msg", + "lib/tcl8.6/msgs/es_ve.msg", + "lib/tcl8.6/msgs/et.msg", + "lib/tcl8.6/msgs/eu.msg", + "lib/tcl8.6/msgs/eu_es.msg", + "lib/tcl8.6/msgs/fa.msg", + "lib/tcl8.6/msgs/fa_in.msg", + "lib/tcl8.6/msgs/fa_ir.msg", + "lib/tcl8.6/msgs/fi.msg", + "lib/tcl8.6/msgs/fo.msg", + "lib/tcl8.6/msgs/fo_fo.msg", + "lib/tcl8.6/msgs/fr.msg", + "lib/tcl8.6/msgs/fr_be.msg", + "lib/tcl8.6/msgs/fr_ca.msg", + "lib/tcl8.6/msgs/fr_ch.msg", + "lib/tcl8.6/msgs/ga.msg", + "lib/tcl8.6/msgs/ga_ie.msg", + "lib/tcl8.6/msgs/gl.msg", + "lib/tcl8.6/msgs/gl_es.msg", + "lib/tcl8.6/msgs/gv.msg", + "lib/tcl8.6/msgs/gv_gb.msg", + "lib/tcl8.6/msgs/he.msg", + "lib/tcl8.6/msgs/hi.msg", + "lib/tcl8.6/msgs/hi_in.msg", + "lib/tcl8.6/msgs/hr.msg", + "lib/tcl8.6/msgs/hu.msg", + "lib/tcl8.6/msgs/id.msg", + "lib/tcl8.6/msgs/id_id.msg", + "lib/tcl8.6/msgs/is.msg", + "lib/tcl8.6/msgs/it.msg", + "lib/tcl8.6/msgs/it_ch.msg", + "lib/tcl8.6/msgs/ja.msg", + "lib/tcl8.6/msgs/kl.msg", + "lib/tcl8.6/msgs/kl_gl.msg", + "lib/tcl8.6/msgs/ko.msg", + "lib/tcl8.6/msgs/ko_kr.msg", + "lib/tcl8.6/msgs/kok.msg", + "lib/tcl8.6/msgs/kok_in.msg", + "lib/tcl8.6/msgs/kw.msg", + "lib/tcl8.6/msgs/kw_gb.msg", + "lib/tcl8.6/msgs/lt.msg", + "lib/tcl8.6/msgs/lv.msg", + "lib/tcl8.6/msgs/mk.msg", + "lib/tcl8.6/msgs/mr.msg", + "lib/tcl8.6/msgs/mr_in.msg", + "lib/tcl8.6/msgs/ms.msg", + "lib/tcl8.6/msgs/ms_my.msg", + "lib/tcl8.6/msgs/mt.msg", + "lib/tcl8.6/msgs/nb.msg", + "lib/tcl8.6/msgs/nl.msg", + "lib/tcl8.6/msgs/nl_be.msg", + "lib/tcl8.6/msgs/nn.msg", + "lib/tcl8.6/msgs/pl.msg", + "lib/tcl8.6/msgs/pt.msg", + "lib/tcl8.6/msgs/pt_br.msg", + "lib/tcl8.6/msgs/ro.msg", + "lib/tcl8.6/msgs/ru.msg", + "lib/tcl8.6/msgs/ru_ua.msg", + "lib/tcl8.6/msgs/sh.msg", + "lib/tcl8.6/msgs/sk.msg", + "lib/tcl8.6/msgs/sl.msg", + "lib/tcl8.6/msgs/sq.msg", + "lib/tcl8.6/msgs/sr.msg", + "lib/tcl8.6/msgs/sv.msg", + "lib/tcl8.6/msgs/sw.msg", + "lib/tcl8.6/msgs/ta.msg", + "lib/tcl8.6/msgs/ta_in.msg", + "lib/tcl8.6/msgs/te.msg", + "lib/tcl8.6/msgs/te_in.msg", + "lib/tcl8.6/msgs/th.msg", + "lib/tcl8.6/msgs/tr.msg", + "lib/tcl8.6/msgs/uk.msg", + "lib/tcl8.6/msgs/vi.msg", + "lib/tcl8.6/msgs/zh.msg", + "lib/tcl8.6/msgs/zh_cn.msg", + "lib/tcl8.6/msgs/zh_hk.msg", + "lib/tcl8.6/msgs/zh_sg.msg", + "lib/tcl8.6/msgs/zh_tw.msg", + "lib/tcl8.6/opt0.4/optparse.tcl", + "lib/tcl8.6/opt0.4/pkgIndex.tcl", + "lib/tcl8.6/package.tcl", + "lib/tcl8.6/parray.tcl", + "lib/tcl8.6/safe.tcl", + "lib/tcl8.6/tclAppInit.c", + "lib/tcl8.6/tclIndex", + "lib/tcl8.6/tm.tcl", + "lib/tcl8.6/word.tcl", + "lib/tcl8/8.4/platform-1.0.19.tm", + "lib/tcl8/8.4/platform/shell-1.1.4.tm", + "lib/tcl8/8.5/msgcat-1.6.1.tm", + "lib/tcl8/8.5/tcltest-2.5.7.tm", + "lib/tcl8/8.6/http-2.9.8.tm", + "lib/tcl8/8.6/tdbc/sqlite3-1.1.7.tm", + "lib/tclConfig.sh", + "lib/tclooConfig.sh", + "lib/tdbc1.1.7/libtdbc1.1.7.so", + "lib/tdbc1.1.7/libtdbcstub1.1.7.a", + "lib/tdbc1.1.7/pkgIndex.tcl", + "lib/tdbc1.1.7/tdbc.tcl", + "lib/tdbc1.1.7/tdbcConfig.sh", + "lib/tdbcmysql1.1.7/libtdbcmysql1.1.7.so", + "lib/tdbcmysql1.1.7/pkgIndex.tcl", + "lib/tdbcmysql1.1.7/tdbcmysql.tcl", + "lib/tdbcodbc1.1.7/libtdbcodbc1.1.7.so", + "lib/tdbcodbc1.1.7/pkgIndex.tcl", + "lib/tdbcodbc1.1.7/tdbcodbc.tcl", + "lib/tdbcpostgres1.1.7/libtdbcpostgres1.1.7.so", + "lib/tdbcpostgres1.1.7/pkgIndex.tcl", + "lib/tdbcpostgres1.1.7/tdbcpostgres.tcl", + "lib/thread2.8.9/libthread2.8.9.so", + "lib/thread2.8.9/pkgIndex.tcl", + "lib/thread2.8.9/ttrace.tcl", + "lib/tk8.6/bgerror.tcl", + "lib/tk8.6/button.tcl", + "lib/tk8.6/choosedir.tcl", + "lib/tk8.6/clrpick.tcl", + "lib/tk8.6/comdlg.tcl", + "lib/tk8.6/console.tcl", + "lib/tk8.6/demos/README", + "lib/tk8.6/demos/anilabel.tcl", + "lib/tk8.6/demos/aniwave.tcl", + "lib/tk8.6/demos/arrow.tcl", + "lib/tk8.6/demos/bind.tcl", + "lib/tk8.6/demos/bitmap.tcl", + "lib/tk8.6/demos/browse", + "lib/tk8.6/demos/button.tcl", + "lib/tk8.6/demos/check.tcl", + "lib/tk8.6/demos/clrpick.tcl", + "lib/tk8.6/demos/colors.tcl", + "lib/tk8.6/demos/combo.tcl", + "lib/tk8.6/demos/cscroll.tcl", + "lib/tk8.6/demos/ctext.tcl", + "lib/tk8.6/demos/dialog1.tcl", + "lib/tk8.6/demos/dialog2.tcl", + "lib/tk8.6/demos/en.msg", + "lib/tk8.6/demos/entry1.tcl", + "lib/tk8.6/demos/entry2.tcl", + "lib/tk8.6/demos/entry3.tcl", + "lib/tk8.6/demos/filebox.tcl", + "lib/tk8.6/demos/floor.tcl", + "lib/tk8.6/demos/fontchoose.tcl", + "lib/tk8.6/demos/form.tcl", + "lib/tk8.6/demos/goldberg.tcl", + "lib/tk8.6/demos/hello", + "lib/tk8.6/demos/hscale.tcl", + "lib/tk8.6/demos/icon.tcl", + "lib/tk8.6/demos/image1.tcl", + "lib/tk8.6/demos/image2.tcl", + "lib/tk8.6/demos/images/earth.gif", + "lib/tk8.6/demos/images/earthmenu.png", + "lib/tk8.6/demos/images/earthris.gif", + "lib/tk8.6/demos/images/flagdown.xbm", + "lib/tk8.6/demos/images/flagup.xbm", + "lib/tk8.6/demos/images/gray25.xbm", + "lib/tk8.6/demos/images/letters.xbm", + "lib/tk8.6/demos/images/noletter.xbm", + "lib/tk8.6/demos/images/ouster.png", + "lib/tk8.6/demos/images/pattern.xbm", + "lib/tk8.6/demos/images/tcllogo.gif", + "lib/tk8.6/demos/images/teapot.ppm", + "lib/tk8.6/demos/items.tcl", + "lib/tk8.6/demos/ixset", + "lib/tk8.6/demos/knightstour.tcl", + "lib/tk8.6/demos/label.tcl", + "lib/tk8.6/demos/labelframe.tcl", + "lib/tk8.6/demos/license.terms", + "lib/tk8.6/demos/mclist.tcl", + "lib/tk8.6/demos/menu.tcl", + "lib/tk8.6/demos/menubu.tcl", + "lib/tk8.6/demos/msgbox.tcl", + "lib/tk8.6/demos/nl.msg", + "lib/tk8.6/demos/paned1.tcl", + "lib/tk8.6/demos/paned2.tcl", + "lib/tk8.6/demos/pendulum.tcl", + "lib/tk8.6/demos/plot.tcl", + "lib/tk8.6/demos/puzzle.tcl", + "lib/tk8.6/demos/radio.tcl", + "lib/tk8.6/demos/rmt", + "lib/tk8.6/demos/rolodex", + "lib/tk8.6/demos/ruler.tcl", + "lib/tk8.6/demos/sayings.tcl", + "lib/tk8.6/demos/search.tcl", + "lib/tk8.6/demos/spin.tcl", + "lib/tk8.6/demos/states.tcl", + "lib/tk8.6/demos/style.tcl", + "lib/tk8.6/demos/tclIndex", + "lib/tk8.6/demos/tcolor", + "lib/tk8.6/demos/text.tcl", + "lib/tk8.6/demos/textpeer.tcl", + "lib/tk8.6/demos/timer", + "lib/tk8.6/demos/toolbar.tcl", + "lib/tk8.6/demos/tree.tcl", + "lib/tk8.6/demos/ttkbut.tcl", + "lib/tk8.6/demos/ttkmenu.tcl", + "lib/tk8.6/demos/ttknote.tcl", + "lib/tk8.6/demos/ttkpane.tcl", + "lib/tk8.6/demos/ttkprogress.tcl", + "lib/tk8.6/demos/ttkscale.tcl", + "lib/tk8.6/demos/twind.tcl", + "lib/tk8.6/demos/unicodeout.tcl", + "lib/tk8.6/demos/vscale.tcl", + "lib/tk8.6/demos/widget", + "lib/tk8.6/dialog.tcl", + "lib/tk8.6/entry.tcl", + "lib/tk8.6/focus.tcl", + "lib/tk8.6/fontchooser.tcl", + "lib/tk8.6/iconlist.tcl", + "lib/tk8.6/icons.tcl", + "lib/tk8.6/images/README", + "lib/tk8.6/images/logo.eps", + "lib/tk8.6/images/logo100.gif", + "lib/tk8.6/images/logo64.gif", + "lib/tk8.6/images/logoLarge.gif", + "lib/tk8.6/images/logoMed.gif", + "lib/tk8.6/images/pwrdLogo.eps", + "lib/tk8.6/images/pwrdLogo100.gif", + "lib/tk8.6/images/pwrdLogo150.gif", + "lib/tk8.6/images/pwrdLogo175.gif", + "lib/tk8.6/images/pwrdLogo200.gif", + "lib/tk8.6/images/pwrdLogo75.gif", + "lib/tk8.6/images/tai-ku.gif", + "lib/tk8.6/listbox.tcl", + "lib/tk8.6/megawidget.tcl", + "lib/tk8.6/menu.tcl", + "lib/tk8.6/mkpsenc.tcl", + "lib/tk8.6/msgbox.tcl", + "lib/tk8.6/msgs/cs.msg", + "lib/tk8.6/msgs/da.msg", + "lib/tk8.6/msgs/de.msg", + "lib/tk8.6/msgs/el.msg", + "lib/tk8.6/msgs/en.msg", + "lib/tk8.6/msgs/en_gb.msg", + "lib/tk8.6/msgs/eo.msg", + "lib/tk8.6/msgs/es.msg", + "lib/tk8.6/msgs/fi.msg", + "lib/tk8.6/msgs/fr.msg", + "lib/tk8.6/msgs/hu.msg", + "lib/tk8.6/msgs/it.msg", + "lib/tk8.6/msgs/nl.msg", + "lib/tk8.6/msgs/pl.msg", + "lib/tk8.6/msgs/pt.msg", + "lib/tk8.6/msgs/ru.msg", + "lib/tk8.6/msgs/sv.msg", + "lib/tk8.6/msgs/zh_cn.msg", + "lib/tk8.6/obsolete.tcl", + "lib/tk8.6/optMenu.tcl", + "lib/tk8.6/palette.tcl", + "lib/tk8.6/panedwindow.tcl", + "lib/tk8.6/pkgIndex.tcl", + "lib/tk8.6/safetk.tcl", + "lib/tk8.6/scale.tcl", + "lib/tk8.6/scrlbar.tcl", + "lib/tk8.6/spinbox.tcl", + "lib/tk8.6/tclIndex", + "lib/tk8.6/tearoff.tcl", + "lib/tk8.6/text.tcl", + "lib/tk8.6/tk.tcl", + "lib/tk8.6/tkAppInit.c", + "lib/tk8.6/tkfbox.tcl", + "lib/tk8.6/ttk/altTheme.tcl", + "lib/tk8.6/ttk/aquaTheme.tcl", + "lib/tk8.6/ttk/button.tcl", + "lib/tk8.6/ttk/clamTheme.tcl", + "lib/tk8.6/ttk/classicTheme.tcl", + "lib/tk8.6/ttk/combobox.tcl", + "lib/tk8.6/ttk/cursors.tcl", + "lib/tk8.6/ttk/defaults.tcl", + "lib/tk8.6/ttk/entry.tcl", + "lib/tk8.6/ttk/fonts.tcl", + "lib/tk8.6/ttk/menubutton.tcl", + "lib/tk8.6/ttk/notebook.tcl", + "lib/tk8.6/ttk/panedwindow.tcl", + "lib/tk8.6/ttk/progress.tcl", + "lib/tk8.6/ttk/scale.tcl", + "lib/tk8.6/ttk/scrollbar.tcl", + "lib/tk8.6/ttk/sizegrip.tcl", + "lib/tk8.6/ttk/spinbox.tcl", + "lib/tk8.6/ttk/treeview.tcl", + "lib/tk8.6/ttk/ttk.tcl", + "lib/tk8.6/ttk/utils.tcl", + "lib/tk8.6/ttk/vistaTheme.tcl", + "lib/tk8.6/ttk/winTheme.tcl", + "lib/tk8.6/ttk/xpTheme.tcl", + "lib/tk8.6/unsupported.tcl", + "lib/tk8.6/xmfbox.tcl", + "lib/tkConfig.sh" + ], + "fn": "tk-8.6.14-h39e8969_0.conda", + "license": "TCL", + "link": { + "source": "/opt/conda/pkgs/tk-8.6.14-h39e8969_0", + "type": 1 + }, + "md5": "78dbc5e3c69143ebc037fc5d5b22e597", + "name": "tk", + "package_tarball_full_path": "/opt/conda/pkgs/tk-8.6.14-h39e8969_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/sqlite3_analyzer", + "path_type": "hardlink", + "sha256": "5889070b146a012ef470ebfe7b6473e479a7555119ea15c38d9100a34783d479", + "sha256_in_prefix": "5889070b146a012ef470ebfe7b6473e479a7555119ea15c38d9100a34783d479", + "size_in_bytes": 30392 + }, + { + "_path": "bin/tclsh", + "path_type": "softlink", + "sha256": "b331d550417f4e571375a4839dd92f28f2c23128ff45c8a4763666880ca88ce0", + "size_in_bytes": 15984 + }, + { + "_path": "bin/tclsh8.6", + "path_type": "hardlink", + "sha256": "b331d550417f4e571375a4839dd92f28f2c23128ff45c8a4763666880ca88ce0", + "sha256_in_prefix": "b331d550417f4e571375a4839dd92f28f2c23128ff45c8a4763666880ca88ce0", + "size_in_bytes": 15984 + }, + { + "_path": "bin/wish", + "path_type": "softlink", + "sha256": "45ab72172b6bfa9047292b7e4a792b2bd4ccc523847ec0a03093eec99b35aeec", + "size_in_bytes": 16136 + }, + { + "_path": "bin/wish8.6", + "path_type": "hardlink", + "sha256": "45ab72172b6bfa9047292b7e4a792b2bd4ccc523847ec0a03093eec99b35aeec", + "sha256_in_prefix": "45ab72172b6bfa9047292b7e4a792b2bd4ccc523847ec0a03093eec99b35aeec", + "size_in_bytes": 16136 + }, + { + "_path": "include/default.h", + "path_type": "hardlink", + "sha256": "dc59b2a40a644447c1439f9d4acedc911ff5f9d82c2a865c731871cf97a1255a", + "sha256_in_prefix": "dc59b2a40a644447c1439f9d4acedc911ff5f9d82c2a865c731871cf97a1255a", + "size_in_bytes": 581 + }, + { + "_path": "include/fakemysql.h", + "path_type": "hardlink", + "sha256": "d1f359880fb635b9820aa25edc05b4278aafbb1aeac479d43b821ecc3c331af2", + "sha256_in_prefix": "d1f359880fb635b9820aa25edc05b4278aafbb1aeac479d43b821ecc3c331af2", + "size_in_bytes": 8941 + }, + { + "_path": "include/fakepq.h", + "path_type": "hardlink", + "sha256": "35484a2ebb1776130d4667ecf75d73b5a8a20dee53b7d767454850bf175cdc82", + "sha256_in_prefix": "35484a2ebb1776130d4667ecf75d73b5a8a20dee53b7d767454850bf175cdc82", + "size_in_bytes": 1189 + }, + { + "_path": "include/fakesql.h", + "path_type": "hardlink", + "sha256": "82478be34c075c3808b0f07a263ffbd15baf7654cd08c9f45bb11c648361ab19", + "sha256_in_prefix": "82478be34c075c3808b0f07a263ffbd15baf7654cd08c9f45bb11c648361ab19", + "size_in_bytes": 6519 + }, + { + "_path": "include/itcl.h", + "path_type": "hardlink", + "sha256": "357e9222f4af5f40ebcb4ca0f75914bdec7467a44ceb4d126479919ee4ab7765", + "sha256_in_prefix": "357e9222f4af5f40ebcb4ca0f75914bdec7467a44ceb4d126479919ee4ab7765", + "size_in_bytes": 5662 + }, + { + "_path": "include/itcl2TclOO.h", + "path_type": "hardlink", + "sha256": "19a028e99b60efae5550a3886cd94bfaa25789fbd8c0336b01313d54e077d2a5", + "sha256_in_prefix": "19a028e99b60efae5550a3886cd94bfaa25789fbd8c0336b01313d54e077d2a5", + "size_in_bytes": 1853 + }, + { + "_path": "include/itclDecls.h", + "path_type": "hardlink", + "sha256": "4a3b3746d6985d28122c72b9843f26a79a494b2a4c317c9992aad46d563be374", + "sha256_in_prefix": "4a3b3746d6985d28122c72b9843f26a79a494b2a4c317c9992aad46d563be374", + "size_in_bytes": 7025 + }, + { + "_path": "include/itclInt.h", + "path_type": "hardlink", + "sha256": "6e607b34e53fad1467df3055a75cf5dff46ffb714026078bc9c81071137daa05", + "sha256_in_prefix": "6e607b34e53fad1467df3055a75cf5dff46ffb714026078bc9c81071137daa05", + "size_in_bytes": 37092 + }, + { + "_path": "include/itclIntDecls.h", + "path_type": "hardlink", + "sha256": "5e0f3a5db7c1a613fc49d0c0144aeb51b1a79e51bfdcd43e86f98e88704d9744", + "sha256_in_prefix": "5e0f3a5db7c1a613fc49d0c0144aeb51b1a79e51bfdcd43e86f98e88704d9744", + "size_in_bytes": 42748 + }, + { + "_path": "include/itclMigrate2TclCore.h", + "path_type": "hardlink", + "sha256": "91949ef11ebdd7fc4b8f06ab8d5151f3cdefa076e85a73e274e2bd5a773f4129", + "sha256_in_prefix": "91949ef11ebdd7fc4b8f06ab8d5151f3cdefa076e85a73e274e2bd5a773f4129", + "size_in_bytes": 2921 + }, + { + "_path": "include/itclTclIntStubsFcn.h", + "path_type": "hardlink", + "sha256": "949ea0a3af9aee32bd6515d693a0426746bd9c3a02cc67484f4828834a9cf435", + "sha256_in_prefix": "949ea0a3af9aee32bd6515d693a0426746bd9c3a02cc67484f4828834a9cf435", + "size_in_bytes": 1723 + }, + { + "_path": "include/ks_names.h", + "path_type": "hardlink", + "sha256": "447a768fbd1c9baf4a26e01e1b2e0bc47d9fc7f0b10819084bd8d00fd9e38e35", + "sha256_in_prefix": "447a768fbd1c9baf4a26e01e1b2e0bc47d9fc7f0b10819084bd8d00fd9e38e35", + "size_in_bytes": 45866 + }, + { + "_path": "include/mysqlStubs.h", + "path_type": "hardlink", + "sha256": "dfd2d3dc09af50035f26c275a0a217a0dafa61814f7f9d1a5d6b106f334a6c3e", + "sha256_in_prefix": "dfd2d3dc09af50035f26c275a0a217a0dafa61814f7f9d1a5d6b106f334a6c3e", + "size_in_bytes": 5650 + }, + { + "_path": "include/odbcStubs.h", + "path_type": "hardlink", + "sha256": "ed10e87c65e10b996228415852a86598ec8d73a5607ce9276acf29df69fb6e01", + "sha256_in_prefix": "ed10e87c65e10b996228415852a86598ec8d73a5607ce9276acf29df69fb6e01", + "size_in_bytes": 5179 + }, + { + "_path": "include/pqStubs.h", + "path_type": "hardlink", + "sha256": "c89330cabcc19f70e8071059880b80c2b45c09165c6eeb77d01e69a2b2a65f58", + "sha256_in_prefix": "c89330cabcc19f70e8071059880b80c2b45c09165c6eeb77d01e69a2b2a65f58", + "size_in_bytes": 3584 + }, + { + "_path": "include/tcl.h", + "path_type": "hardlink", + "sha256": "c5dbaf70369433020b4d5c924cbf1363e84629dad51617ec9a3bf3f90fd6f8db", + "sha256_in_prefix": "c5dbaf70369433020b4d5c924cbf1363e84629dad51617ec9a3bf3f90fd6f8db", + "size_in_bytes": 93892 + }, + { + "_path": "include/tclDecls.h", + "path_type": "hardlink", + "sha256": "77dd8db3c9011e74ff795f9b5f00407dc098398bf113278745e4678852a7554a", + "sha256_in_prefix": "77dd8db3c9011e74ff795f9b5f00407dc098398bf113278745e4678852a7554a", + "size_in_bytes": 175563 + }, + { + "_path": "include/tclInt.h", + "path_type": "hardlink", + "sha256": "1ba890e94e0af41492477202ac8d6910ee4e96d753d1b83686a492d946ec6213", + "sha256_in_prefix": "1ba890e94e0af41492477202ac8d6910ee4e96d753d1b83686a492d946ec6213", + "size_in_bytes": 173763 + }, + { + "_path": "include/tclIntDecls.h", + "path_type": "hardlink", + "sha256": "dd303cab02a101f96109c96f626eb91fa5576fe21294a9d80816b06a8014ca26", + "sha256_in_prefix": "dd303cab02a101f96109c96f626eb91fa5576fe21294a9d80816b06a8014ca26", + "size_in_bytes": 56969 + }, + { + "_path": "include/tclIntPlatDecls.h", + "path_type": "hardlink", + "sha256": "94469685c0c8bbb6cf1c63bfa50af29b66a8801096c4e18a760a50e76f779d00", + "sha256_in_prefix": "94469685c0c8bbb6cf1c63bfa50af29b66a8801096c4e18a760a50e76f779d00", + "size_in_bytes": 23256 + }, + { + "_path": "include/tclOO.h", + "path_type": "hardlink", + "sha256": "d8b423d477eff0cf0eb8b0d2cea98f84898bebf8adf937f022dc3392664f3990", + "sha256_in_prefix": "d8b423d477eff0cf0eb8b0d2cea98f84898bebf8adf937f022dc3392664f3990", + "size_in_bytes": 4257 + }, + { + "_path": "include/tclOODecls.h", + "path_type": "hardlink", + "sha256": "2ee41615f2f0eaa65d58825a8768ea011dc8491d33ee245f3a5062e721d41e54", + "sha256_in_prefix": "2ee41615f2f0eaa65d58825a8768ea011dc8491d33ee245f3a5062e721d41e54", + "size_in_bytes": 9677 + }, + { + "_path": "include/tclOOInt.h", + "path_type": "hardlink", + "sha256": "53a676e6c704d905885b5ba81e86b34cf718e074a748f079dbb0320c3ca3ea1d", + "sha256_in_prefix": "53a676e6c704d905885b5ba81e86b34cf718e074a748f079dbb0320c3ca3ea1d", + "size_in_bytes": 23636 + }, + { + "_path": "include/tclOOIntDecls.h", + "path_type": "hardlink", + "sha256": "09bf8c566b159f35b2a1f9a4850fadf12a950bf8467ed44135a16342239f347b", + "sha256_in_prefix": "09bf8c566b159f35b2a1f9a4850fadf12a950bf8467ed44135a16342239f347b", + "size_in_bytes": 7176 + }, + { + "_path": "include/tclPlatDecls.h", + "path_type": "hardlink", + "sha256": "9498557f03c1a6fa8b6f6c3b16988cba9efda86bbed8d1c6b4851b09db0da7de", + "sha256_in_prefix": "9498557f03c1a6fa8b6f6c3b16988cba9efda86bbed8d1c6b4851b09db0da7de", + "size_in_bytes": 4099 + }, + { + "_path": "include/tclPort.h", + "path_type": "hardlink", + "sha256": "b79fd3ba585ea82ad991ccc994a2bb2f284720ef055560936aa6cbab7b9e9e25", + "sha256_in_prefix": "b79fd3ba585ea82ad991ccc994a2bb2f284720ef055560936aa6cbab7b9e9e25", + "size_in_bytes": 1198 + }, + { + "_path": "include/tclThread.h", + "path_type": "hardlink", + "sha256": "ecab348638e23727e9d72db22bb57b54aaa1530162b21b015d786b6f71eb7820", + "sha256_in_prefix": "ecab348638e23727e9d72db22bb57b54aaa1530162b21b015d786b6f71eb7820", + "size_in_bytes": 821 + }, + { + "_path": "include/tclTomMath.h", + "path_type": "hardlink", + "sha256": "034d028ff726300f32fb54135eecb2ae444b1326d6d146b3356737532a0863c6", + "sha256_in_prefix": "034d028ff726300f32fb54135eecb2ae444b1326d6d146b3356737532a0863c6", + "size_in_bytes": 30476 + }, + { + "_path": "include/tclTomMathDecls.h", + "path_type": "hardlink", + "sha256": "69ee476711dee47fa882695dd1893a7a523260cf387c1ae90ec26ed9ee64cebe", + "sha256_in_prefix": "69ee476711dee47fa882695dd1893a7a523260cf387c1ae90ec26ed9ee64cebe", + "size_in_bytes": 27370 + }, + { + "_path": "include/tclUnixPort.h", + "path_type": "hardlink", + "sha256": "55e9070cafba9f774927b3a256f1ee13ce2a5188b44311769da01c9e83cbde18", + "sha256_in_prefix": "55e9070cafba9f774927b3a256f1ee13ce2a5188b44311769da01c9e83cbde18", + "size_in_bytes": 20702 + }, + { + "_path": "include/tdbc.h", + "path_type": "hardlink", + "sha256": "477383653f520630fff48d8fbaa11d8c1d66dea9e0100c56390650c31b8c986a", + "sha256_in_prefix": "477383653f520630fff48d8fbaa11d8c1d66dea9e0100c56390650c31b8c986a", + "size_in_bytes": 1680 + }, + { + "_path": "include/tdbcDecls.h", + "path_type": "hardlink", + "sha256": "c74af560bef803efaee5ede34e5b99f12c9f8c6cb18d76727c0f39de4ef96f59", + "sha256_in_prefix": "c74af560bef803efaee5ede34e5b99f12c9f8c6cb18d76727c0f39de4ef96f59", + "size_in_bytes": 1497 + }, + { + "_path": "include/tdbcInt.h", + "path_type": "hardlink", + "sha256": "a7bf229be4e37293b2088272b88c20a4d056049844153d7eca49110719885b19", + "sha256_in_prefix": "a7bf229be4e37293b2088272b88c20a4d056049844153d7eca49110719885b19", + "size_in_bytes": 1269 + }, + { + "_path": "include/tk.h", + "path_type": "hardlink", + "sha256": "944a7bd60026667f6b89f1090a61f9591e9628c69c77a864a5f506779c6aeeb9", + "sha256_in_prefix": "944a7bd60026667f6b89f1090a61f9591e9628c69c77a864a5f506779c6aeeb9", + "size_in_bytes": 58659 + }, + { + "_path": "include/tk3d.h", + "path_type": "hardlink", + "sha256": "8ce05c7475e6e16847150cb7b9ff7480fe7e50c02f57c583dbee65311d8622b1", + "sha256_in_prefix": "8ce05c7475e6e16847150cb7b9ff7480fe7e50c02f57c583dbee65311d8622b1", + "size_in_bytes": 3111 + }, + { + "_path": "include/tkArray.h", + "path_type": "hardlink", + "sha256": "22084f5a1f0d75b34b4805bdc349ed15f3038cf5b7c62f4fd9be65edaad00544", + "sha256_in_prefix": "22084f5a1f0d75b34b4805bdc349ed15f3038cf5b7c62f4fd9be65edaad00544", + "size_in_bytes": 18429 + }, + { + "_path": "include/tkBusy.h", + "path_type": "hardlink", + "sha256": "7b48fd3cdf08e21f09b53787dba4f3b48845e130e9981194ef17ec351e967065", + "sha256_in_prefix": "7b48fd3cdf08e21f09b53787dba4f3b48845e130e9981194ef17ec351e967065", + "size_in_bytes": 1622 + }, + { + "_path": "include/tkButton.h", + "path_type": "hardlink", + "sha256": "55c41f88141bcfb9d6a8440e0d3eb52ce96500a532ef350bc004c42692222c37", + "sha256_in_prefix": "55c41f88141bcfb9d6a8440e0d3eb52ce96500a532ef350bc004c42692222c37", + "size_in_bytes": 12496 + }, + { + "_path": "include/tkCanvas.h", + "path_type": "hardlink", + "sha256": "e4b8a0bde19a200548bcad9770a75454a7538ca45d790772f3a219fe30a38905", + "sha256_in_prefix": "e4b8a0bde19a200548bcad9770a75454a7538ca45d790772f3a219fe30a38905", + "size_in_bytes": 11491 + }, + { + "_path": "include/tkColor.h", + "path_type": "hardlink", + "sha256": "c44d58d41ac6a5ebf2af38f42583d84ae7e647c61cb1a3bdfff16b2216d4ebf0", + "sha256_in_prefix": "c44d58d41ac6a5ebf2af38f42583d84ae7e647c61cb1a3bdfff16b2216d4ebf0", + "size_in_bytes": 2660 + }, + { + "_path": "include/tkDList.h", + "path_type": "hardlink", + "sha256": "488c0e45709a62282418d74072a8a6bfc5be7e145e4907da7efa48334a28ff38", + "sha256_in_prefix": "488c0e45709a62282418d74072a8a6bfc5be7e145e4907da7efa48334a28ff38", + "size_in_bytes": 16756 + }, + { + "_path": "include/tkDecls.h", + "path_type": "hardlink", + "sha256": "9665192d3e7bc84260737356b9605dbd91154ad4b50a90841fc55b3b92a09259", + "sha256_in_prefix": "9665192d3e7bc84260737356b9605dbd91154ad4b50a90841fc55b3b92a09259", + "size_in_bytes": 77862 + }, + { + "_path": "include/tkEntry.h", + "path_type": "hardlink", + "sha256": "6098699ab1108377cb8311cbb466f1bbbce15f91c2cda1c298b9056d6f2d7302", + "sha256_in_prefix": "6098699ab1108377cb8311cbb466f1bbbce15f91c2cda1c298b9056d6f2d7302", + "size_in_bytes": 11237 + }, + { + "_path": "include/tkFileFilter.h", + "path_type": "hardlink", + "sha256": "3d63e37bcd2a932085abcd8b7a082ed753b9a55231742f24234703ceac43783d", + "sha256_in_prefix": "3d63e37bcd2a932085abcd8b7a082ed753b9a55231742f24234703ceac43783d", + "size_in_bytes": 2569 + }, + { + "_path": "include/tkFont.h", + "path_type": "hardlink", + "sha256": "5ef9bd9a4ba5da27b29fc11155ac3b1cb838b3ca64d2178910ef2ca4e3da5d5e", + "sha256_in_prefix": "5ef9bd9a4ba5da27b29fc11155ac3b1cb838b3ca64d2178910ef2ca4e3da5d5e", + "size_in_bytes": 8004 + }, + { + "_path": "include/tkImgPhoto.h", + "path_type": "hardlink", + "sha256": "48e664da91de1a7e17429ffbeacac7b8fde5f17a99234fe5e3de360620e84dc9", + "sha256_in_prefix": "48e664da91de1a7e17429ffbeacac7b8fde5f17a99234fe5e3de360620e84dc9", + "size_in_bytes": 9045 + }, + { + "_path": "include/tkInt.h", + "path_type": "hardlink", + "sha256": "e98329182bcca0087b7660e16ad31027f787c18d100913ced4446220e8603e9a", + "sha256_in_prefix": "e98329182bcca0087b7660e16ad31027f787c18d100913ced4446220e8603e9a", + "size_in_bytes": 48130 + }, + { + "_path": "include/tkIntDecls.h", + "path_type": "hardlink", + "sha256": "5ac9dfc59a27f9533165ef86d666051fdb62bbf3e4de60a4a9199cf567c98f4f", + "sha256_in_prefix": "5ac9dfc59a27f9533165ef86d666051fdb62bbf3e4de60a4a9199cf567c98f4f", + "size_in_bytes": 50872 + }, + { + "_path": "include/tkIntPlatDecls.h", + "path_type": "hardlink", + "sha256": "3c035bc3f55df4649b08f56abc2aae150fd0b89ecefa6a22a1db488f3ac71c88", + "sha256_in_prefix": "3c035bc3f55df4649b08f56abc2aae150fd0b89ecefa6a22a1db488f3ac71c88", + "size_in_bytes": 29823 + }, + { + "_path": "include/tkIntXlibDecls.h", + "path_type": "hardlink", + "sha256": "4a4e93a42012b674c78d09db8c91f671d96bc96badc7bc6c6b6c6e0d853d4b83", + "sha256_in_prefix": "4a4e93a42012b674c78d09db8c91f671d96bc96badc7bc6c6b6c6e0d853d4b83", + "size_in_bytes": 68364 + }, + { + "_path": "include/tkMacOSX.h", + "path_type": "hardlink", + "sha256": "ffc54123e83eaa2003a3590f2d7720d7526303bf2b20fcad543184bcdc418b89", + "sha256_in_prefix": "ffc54123e83eaa2003a3590f2d7720d7526303bf2b20fcad543184bcdc418b89", + "size_in_bytes": 1016 + }, + { + "_path": "include/tkMacOSXColor.h", + "path_type": "hardlink", + "sha256": "28bbf4a368feec894bb9bac338208f86df06631380653565296206ed7fa2cc42", + "sha256_in_prefix": "28bbf4a368feec894bb9bac338208f86df06631380653565296206ed7fa2cc42", + "size_in_bytes": 16966 + }, + { + "_path": "include/tkMacOSXConstants.h", + "path_type": "hardlink", + "sha256": "a602e8435f8e3fddb4f08bc45b71e923bcb74750ce6eec196ce37a1565028a7a", + "sha256_in_prefix": "a602e8435f8e3fddb4f08bc45b71e923bcb74750ce6eec196ce37a1565028a7a", + "size_in_bytes": 5013 + }, + { + "_path": "include/tkMacOSXCursors.h", + "path_type": "hardlink", + "sha256": "f4515a10018785023406930217193214a6d9dd8becee45874606c3bfd017e22a", + "sha256_in_prefix": "f4515a10018785023406930217193214a6d9dd8becee45874606c3bfd017e22a", + "size_in_bytes": 4316 + }, + { + "_path": "include/tkMacOSXDebug.h", + "path_type": "hardlink", + "sha256": "97bc2a12a3ec858752fd66605fc7ad5c9ea30af71f507eab7d1e39cc11d83ee6", + "sha256_in_prefix": "97bc2a12a3ec858752fd66605fc7ad5c9ea30af71f507eab7d1e39cc11d83ee6", + "size_in_bytes": 951 + }, + { + "_path": "include/tkMacOSXDefault.h", + "path_type": "hardlink", + "sha256": "6c823736ec402b0e6515e21edb0ca35d12a1b30425a28a7b195149b0ae6a1109", + "sha256_in_prefix": "6c823736ec402b0e6515e21edb0ca35d12a1b30425a28a7b195149b0ae6a1109", + "size_in_bytes": 18544 + }, + { + "_path": "include/tkMacOSXEvent.h", + "path_type": "hardlink", + "sha256": "1f92f89f907adb2aaf43ea188ed797f2e3e91a64a719f2ebec144b9c3c2fef42", + "sha256_in_prefix": "1f92f89f907adb2aaf43ea188ed797f2e3e91a64a719f2ebec144b9c3c2fef42", + "size_in_bytes": 526 + }, + { + "_path": "include/tkMacOSXFont.h", + "path_type": "hardlink", + "sha256": "2dfa9a1e9a7677e482f64e90245a0e06fa4cb83586c79c075331108c4a0e0cfd", + "sha256_in_prefix": "2dfa9a1e9a7677e482f64e90245a0e06fa4cb83586c79c075331108c4a0e0cfd", + "size_in_bytes": 798 + }, + { + "_path": "include/tkMacOSXInt.h", + "path_type": "hardlink", + "sha256": "8a1c2477b2f9e513be4d991f376f481e546edcfd6f21a34f2af37304bf91cdb1", + "sha256_in_prefix": "8a1c2477b2f9e513be4d991f376f481e546edcfd6f21a34f2af37304bf91cdb1", + "size_in_bytes": 4942 + }, + { + "_path": "include/tkMacOSXKeysyms.h", + "path_type": "hardlink", + "sha256": "f5107b0606e9752d2d8fa1cf47bddea0bb721e8860295f08872c1dbac60a1763", + "sha256_in_prefix": "f5107b0606e9752d2d8fa1cf47bddea0bb721e8860295f08872c1dbac60a1763", + "size_in_bytes": 50048 + }, + { + "_path": "include/tkMacOSXPort.h", + "path_type": "hardlink", + "sha256": "d0845df747357691f6aba0823bfa5faf4842b265fafaf849a60041fb1bc8a63d", + "sha256_in_prefix": "d0845df747357691f6aba0823bfa5faf4842b265fafaf849a60041fb1bc8a63d", + "size_in_bytes": 4873 + }, + { + "_path": "include/tkMacOSXPrivate.h", + "path_type": "hardlink", + "sha256": "04dd24b1afaf478d0b206f8a042ee909c4bf07bc646043db956c837a988d8bb0", + "sha256_in_prefix": "04dd24b1afaf478d0b206f8a042ee909c4bf07bc646043db956c837a988d8bb0", + "size_in_bytes": 18830 + }, + { + "_path": "include/tkMacOSXWm.h", + "path_type": "hardlink", + "sha256": "11054181c44d85c496605a5482d7bad1c7280d8f42244a466308335734c32694", + "sha256_in_prefix": "11054181c44d85c496605a5482d7bad1c7280d8f42244a466308335734c32694", + "size_in_bytes": 10249 + }, + { + "_path": "include/tkMacOSXXCursors.h", + "path_type": "hardlink", + "sha256": "bfbf51494f5933ed2613b0829d4b2a2867d218f4792b985cd49e420de46f5b9b", + "sha256_in_prefix": "bfbf51494f5933ed2613b0829d4b2a2867d218f4792b985cd49e420de46f5b9b", + "size_in_bytes": 37809 + }, + { + "_path": "include/tkMenu.h", + "path_type": "hardlink", + "sha256": "96f8b4c0011ab270683c921930136905fb32dfb30a5cd44fe27b1d004588131c", + "sha256_in_prefix": "96f8b4c0011ab270683c921930136905fb32dfb30a5cd44fe27b1d004588131c", + "size_in_bytes": 21228 + }, + { + "_path": "include/tkMenubutton.h", + "path_type": "hardlink", + "sha256": "d9117d7d3996d7b400af1bf3217b404191c5744da64ea2c1590b356030d32b9e", + "sha256_in_prefix": "d9117d7d3996d7b400af1bf3217b404191c5744da64ea2c1590b356030d32b9e", + "size_in_bytes": 8039 + }, + { + "_path": "include/tkPlatDecls.h", + "path_type": "hardlink", + "sha256": "508dbed395e9e4139fae1c58eb888521b8a722206b9c34e15c14a8a234c97937", + "sha256_in_prefix": "508dbed395e9e4139fae1c58eb888521b8a722206b9c34e15c14a8a234c97937", + "size_in_bytes": 6838 + }, + { + "_path": "include/tkPort.h", + "path_type": "hardlink", + "sha256": "97473febab39d0b5d461ebad1afc07d2506f09fd382dcc1379118d396eca7a0e", + "sha256_in_prefix": "97473febab39d0b5d461ebad1afc07d2506f09fd382dcc1379118d396eca7a0e", + "size_in_bytes": 632 + }, + { + "_path": "include/tkScale.h", + "path_type": "hardlink", + "sha256": "f6132789452b57a548fc22887021051e56f15570556f47e0aff5fb9e9ed4d0ea", + "sha256_in_prefix": "f6132789452b57a548fc22887021051e56f15570556f47e0aff5fb9e9ed4d0ea", + "size_in_bytes": 9030 + }, + { + "_path": "include/tkScrollbar.h", + "path_type": "hardlink", + "sha256": "1c5aa8ef4334bd2578eb7ce293a8e69c221037909436ac9c07c563c526008128", + "sha256_in_prefix": "1c5aa8ef4334bd2578eb7ce293a8e69c221037909436ac9c07c563c526008128", + "size_in_bytes": 6866 + }, + { + "_path": "include/tkSelect.h", + "path_type": "hardlink", + "sha256": "88813ce1ee7dc3d2bf113c09576ca687eef3795d77a329a57e45b5293aa5a613", + "sha256_in_prefix": "88813ce1ee7dc3d2bf113c09576ca687eef3795d77a329a57e45b5293aa5a613", + "size_in_bytes": 6769 + }, + { + "_path": "include/tkText.h", + "path_type": "hardlink", + "sha256": "53810bcab82f6a22c809e93c2f48e64957774cc81b68c64b6f3387b512196d21", + "sha256_in_prefix": "53810bcab82f6a22c809e93c2f48e64957774cc81b68c64b6f3387b512196d21", + "size_in_bytes": 46929 + }, + { + "_path": "include/tkUndo.h", + "path_type": "hardlink", + "sha256": "2a94ac2849e2bd0557b67db2cf8977bce984e55c80949f7e1d98dc2be12d6fd1", + "sha256_in_prefix": "2a94ac2849e2bd0557b67db2cf8977bce984e55c80949f7e1d98dc2be12d6fd1", + "size_in_bytes": 3678 + }, + { + "_path": "include/tkUnixDefault.h", + "path_type": "hardlink", + "sha256": "03c395e8506d78c5661a8dc651cfda33cfbb56f27989521918f5a7ee454259d9", + "sha256_in_prefix": "03c395e8506d78c5661a8dc651cfda33cfbb56f27989521918f5a7ee454259d9", + "size_in_bytes": 17351 + }, + { + "_path": "include/tkUnixInt.h", + "path_type": "hardlink", + "sha256": "b07455254744996ee12a5b425fb886c5a8ef2974cce71e316a00217eeea3d4f5", + "sha256_in_prefix": "b07455254744996ee12a5b425fb886c5a8ef2974cce71e316a00217eeea3d4f5", + "size_in_bytes": 674 + }, + { + "_path": "include/tkUnixPort.h", + "path_type": "hardlink", + "sha256": "d39f4ec7b15ad94da0bc09448de744b16fd0d4e8c79c85037ebc577613afe0fb", + "sha256_in_prefix": "d39f4ec7b15ad94da0bc09448de744b16fd0d4e8c79c85037ebc577613afe0fb", + "size_in_bytes": 4212 + }, + { + "_path": "include/tkUuid.h", + "path_type": "hardlink", + "sha256": "d865fd51dd882d5c30c5602d2af4f367c404fd3b377d97dfd28fdfcf26a09a7a", + "sha256_in_prefix": "d865fd51dd882d5c30c5602d2af4f367c404fd3b377d97dfd28fdfcf26a09a7a", + "size_in_bytes": 92 + }, + { + "_path": "lib/itcl4.2.4/itcl.tcl", + "path_type": "hardlink", + "sha256": "e4e2ceaa0a0b6314206192dfdc6ca885629d31b3e73ce496d7ea3dc892b91653", + "sha256_in_prefix": "e4e2ceaa0a0b6314206192dfdc6ca885629d31b3e73ce496d7ea3dc892b91653", + "size_in_bytes": 5161 + }, + { + "_path": "lib/itcl4.2.4/itclConfig.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "08a380a124a3515d3470f6e86245d52fb6dec9ad63f23ad258037f2f64d4f321", + "sha256_in_prefix": "5943912c9319da0ca33ce538c5f63f43257c6af52e46a22c6b65daf9c2dff12b", + "size_in_bytes": 4492 + }, + { + "_path": "lib/itcl4.2.4/itclHullCmds.tcl", + "path_type": "hardlink", + "sha256": "986f2cd15caeebf97e6cb6fda6a375cb73ccb89d4431d3e93f4584a8755ad826", + "sha256_in_prefix": "986f2cd15caeebf97e6cb6fda6a375cb73ccb89d4431d3e93f4584a8755ad826", + "size_in_bytes": 21058 + }, + { + "_path": "lib/itcl4.2.4/itclWidget.tcl", + "path_type": "hardlink", + "sha256": "b77df713c6bbf0d2f4682a0ec35025067a2f1297db0ffce4e922bea80835b36e", + "sha256_in_prefix": "b77df713c6bbf0d2f4682a0ec35025067a2f1297db0ffce4e922bea80835b36e", + "size_in_bytes": 12653 + }, + { + "_path": "lib/itcl4.2.4/libitcl4.2.4.so", + "path_type": "hardlink", + "sha256": "b4dec209d072b6ea25863993f95c4fcf0023974e0d01d06a5705173db1313379", + "sha256_in_prefix": "b4dec209d072b6ea25863993f95c4fcf0023974e0d01d06a5705173db1313379", + "size_in_bytes": 318912 + }, + { + "_path": "lib/itcl4.2.4/libitclstub4.2.4.a", + "path_type": "hardlink", + "sha256": "3e696cd78a86f4bfc29a529ca53519181c7e1501b8ffb57192424ca46498b4a2", + "sha256_in_prefix": "3e696cd78a86f4bfc29a529ca53519181c7e1501b8ffb57192424ca46498b4a2", + "size_in_bytes": 2748 + }, + { + "_path": "lib/itcl4.2.4/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "72a817ab493c6c393d245bbf7d712c74410497f0bbf0770b15336eb4f6469e8b", + "sha256_in_prefix": "72a817ab493c6c393d245bbf7d712c74410497f0bbf0770b15336eb4f6469e8b", + "size_in_bytes": 436 + }, + { + "_path": "lib/libtcl8.6.so", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "f8791d47d4b8d4fecfea32fd69fa269fdfce308ff21d7801a9b99db9423cf4c9", + "sha256_in_prefix": "bad99d851214abbb5993d305bd98d274a731bbcf3a9b22f7d09b202957c993f5", + "size_in_bytes": 1983416 + }, + { + "_path": "lib/libtclstub8.6.a", + "path_type": "hardlink", + "sha256": "2c4e039a28542344980812e1aa5385fec3577d70d32c7668347f74385c1f58fd", + "sha256_in_prefix": "2c4e039a28542344980812e1aa5385fec3577d70d32c7668347f74385c1f58fd", + "size_in_bytes": 8388 + }, + { + "_path": "lib/libtk8.6.so", + "path_type": "hardlink", + "sha256": "e9d3fa72bdd8a3c61cefda30f2266d3b46cc67b91f32956e6acb203edd452325", + "sha256_in_prefix": "e9d3fa72bdd8a3c61cefda30f2266d3b46cc67b91f32956e6acb203edd452325", + "size_in_bytes": 1604176 + }, + { + "_path": "lib/libtkstub8.6.a", + "path_type": "hardlink", + "sha256": "37ca817f9b12764ebf872eadfe8dac1284084e1497030c2699dfb7c8ef23ef79", + "sha256_in_prefix": "37ca817f9b12764ebf872eadfe8dac1284084e1497030c2699dfb7c8ef23ef79", + "size_in_bytes": 6120 + }, + { + "_path": "lib/pkgconfig/tcl.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "82d535e89c6a64dfe7a7e0041cac18bb544fa428af22c96f941750d1b2064fbf", + "sha256_in_prefix": "b2301c452acf2426c0bc82a27cc22e2455adca6b2604570bf34961f72ae45e9e", + "size_in_bytes": 1199 + }, + { + "_path": "lib/pkgconfig/tk.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "4c911771c296d053f14bd81a0df530665f711b1845b3e9e76c450a814a871d4b", + "sha256_in_prefix": "c5431cfc26932449f7ffe5cd857901fc2f0166c5ef044d870134052986e24700", + "size_in_bytes": 1180 + }, + { + "_path": "lib/sqlite3.44.2/libsqlite3.44.2.so", + "path_type": "hardlink", + "sha256": "2ccfe88e9e8b573a4d312a3cf85f51de60783ab649a4ca9a4ae69b13c3f87ef1", + "sha256_in_prefix": "2ccfe88e9e8b573a4d312a3cf85f51de60783ab649a4ca9a4ae69b13c3f87ef1", + "size_in_bytes": 1596704 + }, + { + "_path": "lib/sqlite3.44.2/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "729c335527acce0ade3ec8886d2c66c8af3a1e40091dd287b9b7f55d813811b1", + "sha256_in_prefix": "729c335527acce0ade3ec8886d2c66c8af3a1e40091dd287b9b7f55d813811b1", + "size_in_bytes": 359 + }, + { + "_path": "lib/tcl8.6/auto.tcl", + "path_type": "hardlink", + "sha256": "2302234f123a10fef315aa50893bd349bc52201fa12f6dc7bc09fdfc8e84bf85", + "sha256_in_prefix": "2302234f123a10fef315aa50893bd349bc52201fa12f6dc7bc09fdfc8e84bf85", + "size_in_bytes": 20845 + }, + { + "_path": "lib/tcl8.6/clock.tcl", + "path_type": "hardlink", + "sha256": "08d61e36bb536aa02fda040abead556a862018ef9a7b465f1063a973d8da3af0", + "sha256_in_prefix": "08d61e36bb536aa02fda040abead556a862018ef9a7b465f1063a973d8da3af0", + "size_in_bytes": 128442 + }, + { + "_path": "lib/tcl8.6/encoding/ascii.enc", + "path_type": "hardlink", + "sha256": "294c97175fd0894093b866e73548ae660aeed0c3cc1e73867eb66e52d34c0dd2", + "sha256_in_prefix": "294c97175fd0894093b866e73548ae660aeed0c3cc1e73867eb66e52d34c0dd2", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/big5.enc", + "path_type": "hardlink", + "sha256": "465ae2d4880b8006b1476cd60facf676875438244c1d93a7dbe4cde1035e745f", + "sha256_in_prefix": "465ae2d4880b8006b1476cd60facf676875438244c1d93a7dbe4cde1035e745f", + "size_in_bytes": 92873 + }, + { + "_path": "lib/tcl8.6/encoding/cns11643.enc", + "path_type": "hardlink", + "sha256": "0a95f67f90b1cdd407a78ea4032af9eb996fc38864c46d74b42b3a7f7eda0c8a", + "sha256_in_prefix": "0a95f67f90b1cdd407a78ea4032af9eb996fc38864c46d74b42b3a7f7eda0c8a", + "size_in_bytes": 97050 + }, + { + "_path": "lib/tcl8.6/encoding/cp1250.enc", + "path_type": "hardlink", + "sha256": "1b42df7e7d6b0feb17cb0bc8d97e6ce6899492306dd880c48a39d1a2f0279004", + "sha256_in_prefix": "1b42df7e7d6b0feb17cb0bc8d97e6ce6899492306dd880c48a39d1a2f0279004", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1251.enc", + "path_type": "hardlink", + "sha256": "2d1bed2422e131a140087faf1b12b8a46f7de3b6413bae8bc395c06f0d70b9b0", + "sha256_in_prefix": "2d1bed2422e131a140087faf1b12b8a46f7de3b6413bae8bc395c06f0d70b9b0", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1252.enc", + "path_type": "hardlink", + "sha256": "14df3ae30e81e7620be6bbb7a9e42083af1ae04d94cf1203565f8a3c0542ace0", + "sha256_in_prefix": "14df3ae30e81e7620be6bbb7a9e42083af1ae04d94cf1203565f8a3c0542ace0", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1253.enc", + "path_type": "hardlink", + "sha256": "2174d94e1c1d5ad93717b9e8c20569ed95a8af51b2d3ab2bce99f1a887049c0e", + "sha256_in_prefix": "2174d94e1c1d5ad93717b9e8c20569ed95a8af51b2d3ab2bce99f1a887049c0e", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1254.enc", + "path_type": "hardlink", + "sha256": "bc4cbe4c99fd65abea45fbdaf28cc1d5c42119280125fbbd5c2c11892ae460b2", + "sha256_in_prefix": "bc4cbe4c99fd65abea45fbdaf28cc1d5c42119280125fbbd5c2c11892ae460b2", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1255.enc", + "path_type": "hardlink", + "sha256": "f8bd79ae5a90e5390d77dc31cb3065b0f93cb8813c9e67accec72e2db2027a08", + "sha256_in_prefix": "f8bd79ae5a90e5390d77dc31cb3065b0f93cb8813c9e67accec72e2db2027a08", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1256.enc", + "path_type": "hardlink", + "sha256": "bbacea81d4f7a3a7f3c036273a4534d31dbf8b6b5cca2bcc4c00cb1593cf03d8", + "sha256_in_prefix": "bbacea81d4f7a3a7f3c036273a4534d31dbf8b6b5cca2bcc4c00cb1593cf03d8", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1257.enc", + "path_type": "hardlink", + "sha256": "4151434a714fc82228677c39b07908c4e19952fc058e26e7c3ebab7724ce0c77", + "sha256_in_prefix": "4151434a714fc82228677c39b07908c4e19952fc058e26e7c3ebab7724ce0c77", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp1258.enc", + "path_type": "hardlink", + "sha256": "0cdb59e255ccd7dcf4af847c9b020aeaee78ce7fcf5f214ebcf123328acf9f24", + "sha256_in_prefix": "0cdb59e255ccd7dcf4af847c9b020aeaee78ce7fcf5f214ebcf123328acf9f24", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/cp437.enc", + "path_type": "hardlink", + "sha256": "d707a1f03514806e714f01cbfcb7c9f9973acdc80c2d67bbd4e6f85223a50952", + "sha256_in_prefix": "d707a1f03514806e714f01cbfcb7c9f9973acdc80c2d67bbd4e6f85223a50952", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp737.enc", + "path_type": "hardlink", + "sha256": "8bfca34869b3f9a3b2fc71b02cbac41512af6d1f8ab17d2564e65320f88ede10", + "sha256_in_prefix": "8bfca34869b3f9a3b2fc71b02cbac41512af6d1f8ab17d2564e65320f88ede10", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp775.enc", + "path_type": "hardlink", + "sha256": "44fb04b5c72b584b6283a99b34789690c627b5083c5df6e8b5b7ab2c68903c06", + "sha256_in_prefix": "44fb04b5c72b584b6283a99b34789690c627b5083c5df6e8b5b7ab2c68903c06", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp850.enc", + "path_type": "hardlink", + "sha256": "55aa2d13b789b3125f5c9d0dc5b6e3a90d79426d3b7825dcd604f56d4c6e36a2", + "sha256_in_prefix": "55aa2d13b789b3125f5c9d0dc5b6e3a90d79426d3b7825dcd604f56d4c6e36a2", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp852.enc", + "path_type": "hardlink", + "sha256": "5266b6f18c3144cfadbcb7b1d27f0a7eaa1c641fd3b33905e42e4549fd373770", + "sha256_in_prefix": "5266b6f18c3144cfadbcb7b1d27f0a7eaa1c641fd3b33905e42e4549fd373770", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp855.enc", + "path_type": "hardlink", + "sha256": "e3f071c63ac43af66061506ef2c574c35f7bf48553fb5158ae41d9230c1a10df", + "sha256_in_prefix": "e3f071c63ac43af66061506ef2c574c35f7bf48553fb5158ae41d9230c1a10df", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp857.enc", + "path_type": "hardlink", + "sha256": "e39985c6a238086b54427475519c9e0285750707db521d1820e639723c01c36f", + "sha256_in_prefix": "e39985c6a238086b54427475519c9e0285750707db521d1820e639723c01c36f", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp860.enc", + "path_type": "hardlink", + "sha256": "6db59139627d29abd36f38ed2e0de2a6b234a7d7e681c7dbaf8b888f1cac49a5", + "sha256_in_prefix": "6db59139627d29abd36f38ed2e0de2a6b234a7d7e681c7dbaf8b888f1cac49a5", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp861.enc", + "path_type": "hardlink", + "sha256": "a43a5b58bfc57bd723b12bbdea9f6e1a921360b36d2d52c420f37299788442d3", + "sha256_in_prefix": "a43a5b58bfc57bd723b12bbdea9f6e1a921360b36d2d52c420f37299788442d3", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp862.enc", + "path_type": "hardlink", + "sha256": "aea716d490c35439621a8f00ca7e4397ef1c70428e206c5036b7af25f1c3d82f", + "sha256_in_prefix": "aea716d490c35439621a8f00ca7e4397ef1c70428e206c5036b7af25f1c3d82f", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp863.enc", + "path_type": "hardlink", + "sha256": "13b5cb481e0216a8fc28bfa9d0f6b060cdf5c457b3e12435ca826eb2ef52b068", + "sha256_in_prefix": "13b5cb481e0216a8fc28bfa9d0f6b060cdf5c457b3e12435ca826eb2ef52b068", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp864.enc", + "path_type": "hardlink", + "sha256": "e87ec076f950fcd58189e362e1505dd55b0c8f4fa7dd1a9331c5c111d2ce569f", + "sha256_in_prefix": "e87ec076f950fcd58189e362e1505dd55b0c8f4fa7dd1a9331c5c111d2ce569f", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp865.enc", + "path_type": "hardlink", + "sha256": "407fc0fe06d2a057e9ba0109ea9356cab38f27756d135ef3b06a85705b616f50", + "sha256_in_prefix": "407fc0fe06d2a057e9ba0109ea9356cab38f27756d135ef3b06a85705b616f50", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp866.enc", + "path_type": "hardlink", + "sha256": "82633643cd326543915acc5d28a634b5795274cd39974d3955e51d7330ba9338", + "sha256_in_prefix": "82633643cd326543915acc5d28a634b5795274cd39974d3955e51d7330ba9338", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp869.enc", + "path_type": "hardlink", + "sha256": "27f16e3dd02b2212c4980ea09bdc068cf01584a1b8bb91456c03fcababe0931e", + "sha256_in_prefix": "27f16e3dd02b2212c4980ea09bdc068cf01584a1b8bb91456c03fcababe0931e", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp874.enc", + "path_type": "hardlink", + "sha256": "3e067363fc07662ebe52ba617c2aad364920f2af395b3416297400859acd78bb", + "sha256_in_prefix": "3e067363fc07662ebe52ba617c2aad364920f2af395b3416297400859acd78bb", + "size_in_bytes": 1090 + }, + { + "_path": "lib/tcl8.6/encoding/cp932.enc", + "path_type": "hardlink", + "sha256": "9d33df6e1cfdd2cf2553f5e2758f457d710caff5f8c69968f2665accd6e9a6fd", + "sha256_in_prefix": "9d33df6e1cfdd2cf2553f5e2758f457d710caff5f8c69968f2665accd6e9a6fd", + "size_in_bytes": 48207 + }, + { + "_path": "lib/tcl8.6/encoding/cp936.enc", + "path_type": "hardlink", + "sha256": "619330192984a80f93ac6f2e4e5eaa463fd3dddc75c1f65f3975f33e0dd7a0bb", + "sha256_in_prefix": "619330192984a80f93ac6f2e4e5eaa463fd3dddc75c1f65f3975f33e0dd7a0bb", + "size_in_bytes": 132509 + }, + { + "_path": "lib/tcl8.6/encoding/cp949.enc", + "path_type": "hardlink", + "sha256": "26bcb620472433962717712d04597a63264c8e444459432565c4c113de0a240b", + "sha256_in_prefix": "26bcb620472433962717712d04597a63264c8e444459432565c4c113de0a240b", + "size_in_bytes": 130423 + }, + { + "_path": "lib/tcl8.6/encoding/cp950.enc", + "path_type": "hardlink", + "sha256": "1fb9a3d52d432ea2d6cd43927cebf9f58f309a236e1b11d20fe8d5a5fb944e6e", + "sha256_in_prefix": "1fb9a3d52d432ea2d6cd43927cebf9f58f309a236e1b11d20fe8d5a5fb944e6e", + "size_in_bytes": 91831 + }, + { + "_path": "lib/tcl8.6/encoding/dingbats.enc", + "path_type": "hardlink", + "sha256": "3bde9ae7eaf9be799c84b2aa4e80d78be8acbaca1e486f10b9bdd42e3aeddcb2", + "sha256_in_prefix": "3bde9ae7eaf9be799c84b2aa4e80d78be8acbaca1e486f10b9bdd42e3aeddcb2", + "size_in_bytes": 1093 + }, + { + "_path": "lib/tcl8.6/encoding/ebcdic.enc", + "path_type": "hardlink", + "sha256": "17a7d45f3b82f2a42e1d36b13db5ced077945a3e82700947cd1f803dd2a60dbf", + "sha256_in_prefix": "17a7d45f3b82f2a42e1d36b13db5ced077945a3e82700947cd1f803dd2a60dbf", + "size_in_bytes": 1054 + }, + { + "_path": "lib/tcl8.6/encoding/euc-cn.enc", + "path_type": "hardlink", + "sha256": "546392237f47d71cee1daa1aae287d94d93216a1fabd648b50f59ddce7e8ae35", + "sha256_in_prefix": "546392237f47d71cee1daa1aae287d94d93216a1fabd648b50f59ddce7e8ae35", + "size_in_bytes": 85574 + }, + { + "_path": "lib/tcl8.6/encoding/euc-jp.enc", + "path_type": "hardlink", + "sha256": "3bfb42c4d36d1763693aefce87f6277a11ad5a756d691deda804d9d0edcb3093", + "sha256_in_prefix": "3bfb42c4d36d1763693aefce87f6277a11ad5a756d691deda804d9d0edcb3093", + "size_in_bytes": 82537 + }, + { + "_path": "lib/tcl8.6/encoding/euc-kr.enc", + "path_type": "hardlink", + "sha256": "1f1ad4c4079b33b706e948a735a8c3042f40cc68065c48c220d0f56fd048c33b", + "sha256_in_prefix": "1f1ad4c4079b33b706e948a735a8c3042f40cc68065c48c220d0f56fd048c33b", + "size_in_bytes": 93918 + }, + { + "_path": "lib/tcl8.6/encoding/gb12345.enc", + "path_type": "hardlink", + "sha256": "0c0df17bfece897a1da7765c822453b09866573028cecced13e2efee02bcccc4", + "sha256_in_prefix": "0c0df17bfece897a1da7765c822453b09866573028cecced13e2efee02bcccc4", + "size_in_bytes": 86619 + }, + { + "_path": "lib/tcl8.6/encoding/gb1988.enc", + "path_type": "hardlink", + "sha256": "a2717ae09e0cf2d566c245dc5c5889d326661b40db0d5d9a6d95b8e6b0f0e753", + "sha256_in_prefix": "a2717ae09e0cf2d566c245dc5c5889d326661b40db0d5d9a6d95b8e6b0f0e753", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/gb2312-raw.enc", + "path_type": "hardlink", + "sha256": "ec11bfd49c715cd89fb9d387a07cf54261e0f4a1ccec1a810e02c7b38ad2f285", + "sha256_in_prefix": "ec11bfd49c715cd89fb9d387a07cf54261e0f4a1ccec1a810e02c7b38ad2f285", + "size_in_bytes": 84532 + }, + { + "_path": "lib/tcl8.6/encoding/gb2312.enc", + "path_type": "hardlink", + "sha256": "546392237f47d71cee1daa1aae287d94d93216a1fabd648b50f59ddce7e8ae35", + "sha256_in_prefix": "546392237f47d71cee1daa1aae287d94d93216a1fabd648b50f59ddce7e8ae35", + "size_in_bytes": 85574 + }, + { + "_path": "lib/tcl8.6/encoding/iso2022-jp.enc", + "path_type": "hardlink", + "sha256": "e12928e8b5754d49d0d3e799135de2b480ba84b5dbaa0e350d9846fa67f943ec", + "sha256_in_prefix": "e12928e8b5754d49d0d3e799135de2b480ba84b5dbaa0e350d9846fa67f943ec", + "size_in_bytes": 192 + }, + { + "_path": "lib/tcl8.6/encoding/iso2022-kr.enc", + "path_type": "hardlink", + "sha256": "6ac0f1845a56a1a537b9a6d9bcb724dddf3d3a5e61879ae925931b1c0534fbb7", + "sha256_in_prefix": "6ac0f1845a56a1a537b9a6d9bcb724dddf3d3a5e61879ae925931b1c0534fbb7", + "size_in_bytes": 115 + }, + { + "_path": "lib/tcl8.6/encoding/iso2022.enc", + "path_type": "hardlink", + "sha256": "753dda518a7e9f6dc0309721b1faae58c9661f545801da9f04728391f70be2d0", + "sha256_in_prefix": "753dda518a7e9f6dc0309721b1faae58c9661f545801da9f04728391f70be2d0", + "size_in_bytes": 226 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-1.enc", + "path_type": "hardlink", + "sha256": "754ef6bf3a564228ab0b56dde391521dcc1a6c83cfb95d4b761141e71d2e8e87", + "sha256_in_prefix": "754ef6bf3a564228ab0b56dde391521dcc1a6c83cfb95d4b761141e71d2e8e87", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-10.enc", + "path_type": "hardlink", + "sha256": "79f6470d9bebd30832b3a9ca59cd1fdca28c5be6373bd01d949eee1ba51aa7a8", + "sha256_in_prefix": "79f6470d9bebd30832b3a9ca59cd1fdca28c5be6373bd01d949eee1ba51aa7a8", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-11.enc", + "path_type": "hardlink", + "sha256": "ad939139ff7140970bde3d91180f7c4d703d7fcf67a02c71392de1980dc560e4", + "sha256_in_prefix": "ad939139ff7140970bde3d91180f7c4d703d7fcf67a02c71392de1980dc560e4", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-13.enc", + "path_type": "hardlink", + "sha256": "33c6072a006ba4e9513d7b7fd3d08b1c745ca1079b6d796c36b2a5ae8e4ae02b", + "sha256_in_prefix": "33c6072a006ba4e9513d7b7fd3d08b1c745ca1079b6d796c36b2a5ae8e4ae02b", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-14.enc", + "path_type": "hardlink", + "sha256": "8d737283289baf8c08ef1dd7e47a6c775dace480419c5e2a92d6c0e85bb5b381", + "sha256_in_prefix": "8d737283289baf8c08ef1dd7e47a6c775dace480419c5e2a92d6c0e85bb5b381", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-15.enc", + "path_type": "hardlink", + "sha256": "c7b0377f30e42048492e4710fe5a0a54fa9865395b8a6748f7dac53b901284f9", + "sha256_in_prefix": "c7b0377f30e42048492e4710fe5a0a54fa9865395b8a6748f7dac53b901284f9", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-16.enc", + "path_type": "hardlink", + "sha256": "c40ca014b88f97ae62ae1a816c5963b1ed432a77d84d89c3a764ba15c8a23708", + "sha256_in_prefix": "c40ca014b88f97ae62ae1a816c5963b1ed432a77d84d89c3a764ba15c8a23708", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-2.enc", + "path_type": "hardlink", + "sha256": "0e0732480338a229cc3ad4cdde09021a0a81902dc6edfb5f12203e2aff44668f", + "sha256_in_prefix": "0e0732480338a229cc3ad4cdde09021a0a81902dc6edfb5f12203e2aff44668f", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-3.enc", + "path_type": "hardlink", + "sha256": "73342c27cf55f625d3db90c5fc8e7340ffdf85a51872dbfb1d0a8cb1e43ec5da", + "sha256_in_prefix": "73342c27cf55f625d3db90c5fc8e7340ffdf85a51872dbfb1d0a8cb1e43ec5da", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-4.enc", + "path_type": "hardlink", + "sha256": "17745bdd299779e91d41db0cee26cdc7132da3666907a94210b591ced5a55adb", + "sha256_in_prefix": "17745bdd299779e91d41db0cee26cdc7132da3666907a94210b591ced5a55adb", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-5.enc", + "path_type": "hardlink", + "sha256": "bc5ed164d15321404bbdcad0d647c322ffab1659462182dbd3945439d9ecbae7", + "sha256_in_prefix": "bc5ed164d15321404bbdcad0d647c322ffab1659462182dbd3945439d9ecbae7", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-6.enc", + "path_type": "hardlink", + "sha256": "f502e07ae3f19ccdc31e434049cfc733dd5df85487c0160b0331e40241ad0274", + "sha256_in_prefix": "f502e07ae3f19ccdc31e434049cfc733dd5df85487c0160b0331e40241ad0274", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-7.enc", + "path_type": "hardlink", + "sha256": "013b3b2911c66bc1ca54e510814af4954c310da10737f9b2a2474d714be2ab39", + "sha256_in_prefix": "013b3b2911c66bc1ca54e510814af4954c310da10737f9b2a2474d714be2ab39", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-8.enc", + "path_type": "hardlink", + "sha256": "e1d207917aa3483d9110e24a0cc0cd1e0e5843c8bfc901cfee7a6d872dd945a9", + "sha256_in_prefix": "e1d207917aa3483d9110e24a0cc0cd1e0e5843c8bfc901cfee7a6d872dd945a9", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/iso8859-9.enc", + "path_type": "hardlink", + "sha256": "1cdcf510c38464e5284edcfaec334e3fc516236c1ca3b9ab91ca878c23866914", + "sha256_in_prefix": "1cdcf510c38464e5284edcfaec334e3fc516236c1ca3b9ab91ca878c23866914", + "size_in_bytes": 1094 + }, + { + "_path": "lib/tcl8.6/encoding/jis0201.enc", + "path_type": "hardlink", + "sha256": "480f61d0e1a75dee59bf9a66de0bb78faae4e87fd6317f93480412123277d442", + "sha256_in_prefix": "480f61d0e1a75dee59bf9a66de0bb78faae4e87fd6317f93480412123277d442", + "size_in_bytes": 1092 + }, + { + "_path": "lib/tcl8.6/encoding/jis0208.enc", + "path_type": "hardlink", + "sha256": "118ea160ef29e11b46dec57af2c44405934dd8a7c49d2bc8b90c94e8baa6138b", + "sha256_in_prefix": "118ea160ef29e11b46dec57af2c44405934dd8a7c49d2bc8b90c94e8baa6138b", + "size_in_bytes": 80453 + }, + { + "_path": "lib/tcl8.6/encoding/jis0212.enc", + "path_type": "hardlink", + "sha256": "24a9d379fda39f2bcc0580ca3e0bd2e99ae279af5e2841c9e7dbe7f931d19cc0", + "sha256_in_prefix": "24a9d379fda39f2bcc0580ca3e0bd2e99ae279af5e2841c9e7dbe7f931d19cc0", + "size_in_bytes": 70974 + }, + { + "_path": "lib/tcl8.6/encoding/koi8-r.enc", + "path_type": "hardlink", + "sha256": "7142b1120b993d6091197574090fe04be3ea64ffc3ad5a167a4b5e0b42c9f062", + "sha256_in_prefix": "7142b1120b993d6091197574090fe04be3ea64ffc3ad5a167a4b5e0b42c9f062", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/koi8-u.enc", + "path_type": "hardlink", + "sha256": "bbb729b906f5fc3b7ee6694b208b206d19a9d4dc571e235b9c94dcdd4a323a2a", + "sha256_in_prefix": "bbb729b906f5fc3b7ee6694b208b206d19a9d4dc571e235b9c94dcdd4a323a2a", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/ksc5601.enc", + "path_type": "hardlink", + "sha256": "0f8b530ad0decbf8dd81da8291b8b0f976c643b5a292db84680b31ecfbe5d00a", + "sha256_in_prefix": "0f8b530ad0decbf8dd81da8291b8b0f976c643b5a292db84680b31ecfbe5d00a", + "size_in_bytes": 92877 + }, + { + "_path": "lib/tcl8.6/encoding/macCentEuro.enc", + "path_type": "hardlink", + "sha256": "8f3089f4b2ca47b7ac4cb78375b2bfac01268113a7c67d020f8b5b7f2c25bbda", + "sha256_in_prefix": "8f3089f4b2ca47b7ac4cb78375b2bfac01268113a7c67d020f8b5b7f2c25bbda", + "size_in_bytes": 1096 + }, + { + "_path": "lib/tcl8.6/encoding/macCroatian.enc", + "path_type": "hardlink", + "sha256": "8d0b6a882b742c5cce938241328606c111dda0cb83334ebedcda17605f3641ae", + "sha256_in_prefix": "8d0b6a882b742c5cce938241328606c111dda0cb83334ebedcda17605f3641ae", + "size_in_bytes": 1096 + }, + { + "_path": "lib/tcl8.6/encoding/macCyrillic.enc", + "path_type": "hardlink", + "sha256": "eb135a89519f2e004282ded21b11c3af7ccb2320c9772f2df7d1a4a1b674e491", + "sha256_in_prefix": "eb135a89519f2e004282ded21b11c3af7ccb2320c9772f2df7d1a4a1b674e491", + "size_in_bytes": 1096 + }, + { + "_path": "lib/tcl8.6/encoding/macDingbats.enc", + "path_type": "hardlink", + "sha256": "8fbcc63cb289afaae15b438752c1746f413f3b79ba5845c2ef52ba1104f8bda6", + "sha256_in_prefix": "8fbcc63cb289afaae15b438752c1746f413f3b79ba5845c2ef52ba1104f8bda6", + "size_in_bytes": 1096 + }, + { + "_path": "lib/tcl8.6/encoding/macGreek.enc", + "path_type": "hardlink", + "sha256": "f7bff98228ded981ec9a4d1d0da62247a8d23f158926e3acbec3cce379c998c2", + "sha256_in_prefix": "f7bff98228ded981ec9a4d1d0da62247a8d23f158926e3acbec3cce379c998c2", + "size_in_bytes": 1093 + }, + { + "_path": "lib/tcl8.6/encoding/macIceland.enc", + "path_type": "hardlink", + "sha256": "633f5e3e75bf1590c94ab9cbf3538d0f0a7a319db9016993908452d903d9c4fd", + "sha256_in_prefix": "633f5e3e75bf1590c94ab9cbf3538d0f0a7a319db9016993908452d903d9c4fd", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/macJapan.enc", + "path_type": "hardlink", + "sha256": "2a6856298ec629a16bdd924711dfe3f3b1e3a882ddf04b7310785d83ec0d566c", + "sha256_in_prefix": "2a6856298ec629a16bdd924711dfe3f3b1e3a882ddf04b7310785d83ec0d566c", + "size_in_bytes": 48028 + }, + { + "_path": "lib/tcl8.6/encoding/macRoman.enc", + "path_type": "hardlink", + "sha256": "68f22bad30daa81b215925416c1cc83360b3bb87efc342058929731ac678ff37", + "sha256_in_prefix": "68f22bad30daa81b215925416c1cc83360b3bb87efc342058929731ac678ff37", + "size_in_bytes": 1093 + }, + { + "_path": "lib/tcl8.6/encoding/macRomania.enc", + "path_type": "hardlink", + "sha256": "71ae80adfb437b7bc88f3c76fd37074449b3526e7aa5776d2b9fd5a43c066fa8", + "sha256_in_prefix": "71ae80adfb437b7bc88f3c76fd37074449b3526e7aa5776d2b9fd5a43c066fa8", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/macThai.enc", + "path_type": "hardlink", + "sha256": "cead5eb2b0b44ef4003fbcb2e49ca0503992ba1d6540d11acbbb84fdbbd6e79a", + "sha256_in_prefix": "cead5eb2b0b44ef4003fbcb2e49ca0503992ba1d6540d11acbbb84fdbbd6e79a", + "size_in_bytes": 1092 + }, + { + "_path": "lib/tcl8.6/encoding/macTurkish.enc", + "path_type": "hardlink", + "sha256": "f703b7f74cc6f5faa959f51c757c94623677e27013bcae23befba01a392646d9", + "sha256_in_prefix": "f703b7f74cc6f5faa959f51c757c94623677e27013bcae23befba01a392646d9", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/macUkraine.enc", + "path_type": "hardlink", + "sha256": "4c94e7fbe183379805056d960ab624d78879e43278262e4d6b98ab78e5fefea8", + "sha256_in_prefix": "4c94e7fbe183379805056d960ab624d78879e43278262e4d6b98ab78e5fefea8", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tcl8.6/encoding/shiftjis.enc", + "path_type": "hardlink", + "sha256": "7502587d52e7810228f2ecb45ac4319ea0f5c008b7ac91053b920010dc6ddf94", + "sha256_in_prefix": "7502587d52e7810228f2ecb45ac4319ea0f5c008b7ac91053b920010dc6ddf94", + "size_in_bytes": 41862 + }, + { + "_path": "lib/tcl8.6/encoding/symbol.enc", + "path_type": "hardlink", + "sha256": "73fd2b5e14309d8c036d334f137b9edf1f7b32dbd45491cf93184818582d0671", + "sha256_in_prefix": "73fd2b5e14309d8c036d334f137b9edf1f7b32dbd45491cf93184818582d0671", + "size_in_bytes": 1091 + }, + { + "_path": "lib/tcl8.6/encoding/tis-620.enc", + "path_type": "hardlink", + "sha256": "5918b5e1def09781efd28751b6883665aaee29f1d244f0891edecda9bf6a4b63", + "sha256_in_prefix": "5918b5e1def09781efd28751b6883665aaee29f1d244f0891edecda9bf6a4b63", + "size_in_bytes": 1092 + }, + { + "_path": "lib/tcl8.6/history.tcl", + "path_type": "hardlink", + "sha256": "cb1634980996ff393a0034afa5ed2dfe4afc2e2b25c4e399c74d7c3dcb8ee23d", + "sha256_in_prefix": "cb1634980996ff393a0034afa5ed2dfe4afc2e2b25c4e399c74d7c3dcb8ee23d", + "size_in_bytes": 7908 + }, + { + "_path": "lib/tcl8.6/http1.0/http.tcl", + "path_type": "hardlink", + "sha256": "acbff9b5ef75790920b95023156fad80b18aff8cafc4a6dc03893f9388e053a2", + "sha256_in_prefix": "acbff9b5ef75790920b95023156fad80b18aff8cafc4a6dc03893f9388e053a2", + "size_in_bytes": 9689 + }, + { + "_path": "lib/tcl8.6/http1.0/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "420c4b3088c9dacd21bc348011cac61d7cb283b9bee78ae72eed764ab094651c", + "sha256_in_prefix": "420c4b3088c9dacd21bc348011cac61d7cb283b9bee78ae72eed764ab094651c", + "size_in_bytes": 735 + }, + { + "_path": "lib/tcl8.6/init.tcl", + "path_type": "hardlink", + "sha256": "374e8e83d501dc0283d4b6cae60d96b46141048e5a57d1500dd379f966879f98", + "sha256_in_prefix": "374e8e83d501dc0283d4b6cae60d96b46141048e5a57d1500dd379f966879f98", + "size_in_bytes": 24826 + }, + { + "_path": "lib/tcl8.6/msgs/af.msg", + "path_type": "hardlink", + "sha256": "2981965bd23a93a09eb5b4a334acb15d00645d645c596a5ecadb88bfa0b6a908", + "sha256_in_prefix": "2981965bd23a93a09eb5b4a334acb15d00645d645c596a5ecadb88bfa0b6a908", + "size_in_bytes": 989 + }, + { + "_path": "lib/tcl8.6/msgs/af_za.msg", + "path_type": "hardlink", + "sha256": "3c2f5f631ed3603ef0d5bcb31c51b2353c5c27839c806a036f3b7007af7f3de8", + "sha256_in_prefix": "3c2f5f631ed3603ef0d5bcb31c51b2353c5c27839c806a036f3b7007af7f3de8", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/ar.msg", + "path_type": "hardlink", + "sha256": "bf984ec7cf619e700fe7e00381ff58abe9bd2f4b3dd622eb2edaccc5e6681050", + "sha256_in_prefix": "bf984ec7cf619e700fe7e00381ff58abe9bd2f4b3dd622eb2edaccc5e6681050", + "size_in_bytes": 1964 + }, + { + "_path": "lib/tcl8.6/msgs/ar_in.msg", + "path_type": "hardlink", + "sha256": "29a70eac43b1f3aa189d8ae4d92658e07783965bae417fb66ee5f69cfcb564f3", + "sha256_in_prefix": "29a70eac43b1f3aa189d8ae4d92658e07783965bae417fb66ee5f69cfcb564f3", + "size_in_bytes": 259 + }, + { + "_path": "lib/tcl8.6/msgs/ar_jo.msg", + "path_type": "hardlink", + "sha256": "78116e7e706c7d1e3e7446094709819fb39a50c2a2302f92d6a498e06ed4a31b", + "sha256_in_prefix": "78116e7e706c7d1e3e7446094709819fb39a50c2a2302f92d6a498e06ed4a31b", + "size_in_bytes": 1812 + }, + { + "_path": "lib/tcl8.6/msgs/ar_lb.msg", + "path_type": "hardlink", + "sha256": "7c970efeb55c53758143df42cc452a3632f805487ca69db57e37c1f478a7571b", + "sha256_in_prefix": "7c970efeb55c53758143df42cc452a3632f805487ca69db57e37c1f478a7571b", + "size_in_bytes": 1812 + }, + { + "_path": "lib/tcl8.6/msgs/ar_sy.msg", + "path_type": "hardlink", + "sha256": "aef17b94a0db878e2f0fb49d982057c5b663289e3a8e0e2b195dcec37e8555b1", + "sha256_in_prefix": "aef17b94a0db878e2f0fb49d982057c5b663289e3a8e0e2b195dcec37e8555b1", + "size_in_bytes": 1812 + }, + { + "_path": "lib/tcl8.6/msgs/be.msg", + "path_type": "hardlink", + "sha256": "d790e54217a4bf9a7e1dcb4f3399b5861728918e93cd3f00b63f1349bdb71c57", + "sha256_in_prefix": "d790e54217a4bf9a7e1dcb4f3399b5861728918e93cd3f00b63f1349bdb71c57", + "size_in_bytes": 2105 + }, + { + "_path": "lib/tcl8.6/msgs/bg.msg", + "path_type": "hardlink", + "sha256": "e737d8dc724aa3b9ec07165c13e8628c6a8ac1e80345e10dc77e1fc62a6d86f1", + "sha256_in_prefix": "e737d8dc724aa3b9ec07165c13e8628c6a8ac1e80345e10dc77e1fc62a6d86f1", + "size_in_bytes": 1819 + }, + { + "_path": "lib/tcl8.6/msgs/bn.msg", + "path_type": "hardlink", + "sha256": "297d4d7cae6e99db3ca6ee793519512bff65013cf261cf90ded4d28d3d4f826f", + "sha256_in_prefix": "297d4d7cae6e99db3ca6ee793519512bff65013cf261cf90ded4d28d3d4f826f", + "size_in_bytes": 2286 + }, + { + "_path": "lib/tcl8.6/msgs/bn_in.msg", + "path_type": "hardlink", + "sha256": "7d3a956663c529d07c8a9610414356de717f3a2a2ce9b331b052367270acea94", + "sha256_in_prefix": "7d3a956663c529d07c8a9610414356de717f3a2a2ce9b331b052367270acea94", + "size_in_bytes": 259 + }, + { + "_path": "lib/tcl8.6/msgs/ca.msg", + "path_type": "hardlink", + "sha256": "14ff564fab584571e954be20d61c2facb096fe2b3ef369cc5ecb7c25c2d92d5a", + "sha256_in_prefix": "14ff564fab584571e954be20d61c2facb096fe2b3ef369cc5ecb7c25c2d92d5a", + "size_in_bytes": 1102 + }, + { + "_path": "lib/tcl8.6/msgs/cs.msg", + "path_type": "hardlink", + "sha256": "49cf452eef0b8970bc56a7b8e040ba088215508228a77032cba0035522412f86", + "sha256_in_prefix": "49cf452eef0b8970bc56a7b8e040ba088215508228a77032cba0035522412f86", + "size_in_bytes": 1300 + }, + { + "_path": "lib/tcl8.6/msgs/da.msg", + "path_type": "hardlink", + "sha256": "ca58ff5baa9681d9162e094e833470077b7555bb09eee8e8dd41881b108008a0", + "sha256_in_prefix": "ca58ff5baa9681d9162e094e833470077b7555bb09eee8e8dd41881b108008a0", + "size_in_bytes": 1156 + }, + { + "_path": "lib/tcl8.6/msgs/de.msg", + "path_type": "hardlink", + "sha256": "cc3672969c1dd223eadd9a226e00cac731d8245532408b75ab9a70e9edd28673", + "sha256_in_prefix": "cc3672969c1dd223eadd9a226e00cac731d8245532408b75ab9a70e9edd28673", + "size_in_bytes": 1222 + }, + { + "_path": "lib/tcl8.6/msgs/de_at.msg", + "path_type": "hardlink", + "sha256": "80513a9969a12a8fb01802d6fc3015712a4efdda64552911a1bb3ea7a098d02c", + "sha256_in_prefix": "80513a9969a12a8fb01802d6fc3015712a4efdda64552911a1bb3ea7a098d02c", + "size_in_bytes": 812 + }, + { + "_path": "lib/tcl8.6/msgs/de_be.msg", + "path_type": "hardlink", + "sha256": "7573581dec27e90b0c7d34057d9f4ef89727317d55f2c4e0428a47740fb1eb7a", + "sha256_in_prefix": "7573581dec27e90b0c7d34057d9f4ef89727317d55f2c4e0428a47740fb1eb7a", + "size_in_bytes": 1223 + }, + { + "_path": "lib/tcl8.6/msgs/el.msg", + "path_type": "hardlink", + "sha256": "9b2f91be34024fbcf645f6ef92460e5f944ca6a16268b79478ab904b2934d357", + "sha256_in_prefix": "9b2f91be34024fbcf645f6ef92460e5f944ca6a16268b79478ab904b2934d357", + "size_in_bytes": 2252 + }, + { + "_path": "lib/tcl8.6/msgs/en_au.msg", + "path_type": "hardlink", + "sha256": "b85c9a373ff0f036151432652dd55c182b0704bd0625ea84bed1727ec0de3dd8", + "sha256_in_prefix": "b85c9a373ff0f036151432652dd55c182b0704bd0625ea84bed1727ec0de3dd8", + "size_in_bytes": 300 + }, + { + "_path": "lib/tcl8.6/msgs/en_be.msg", + "path_type": "hardlink", + "sha256": "596ac02204c845aa74451fc527645549f2a3318cb63051fcacb2bf948fd77351", + "sha256_in_prefix": "596ac02204c845aa74451fc527645549f2a3318cb63051fcacb2bf948fd77351", + "size_in_bytes": 305 + }, + { + "_path": "lib/tcl8.6/msgs/en_bw.msg", + "path_type": "hardlink", + "sha256": "340804f73b620686ab698b2202191d69227e736b1652271c99f2cfef03d72296", + "sha256_in_prefix": "340804f73b620686ab698b2202191d69227e736b1652271c99f2cfef03d72296", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/en_ca.msg", + "path_type": "hardlink", + "sha256": "c9fe2223c4949ac0a193f321fc0fd7c344a9e49a54b00f8a4c30404798658631", + "sha256_in_prefix": "c9fe2223c4949ac0a193f321fc0fd7c344a9e49a54b00f8a4c30404798658631", + "size_in_bytes": 288 + }, + { + "_path": "lib/tcl8.6/msgs/en_gb.msg", + "path_type": "hardlink", + "sha256": "ae38ad5452314b0946c5cb9d3c89cdfc2ad214e146eb683b8d0ce3fe84070fe1", + "sha256_in_prefix": "ae38ad5452314b0946c5cb9d3c89cdfc2ad214e146eb683b8d0ce3fe84070fe1", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/en_hk.msg", + "path_type": "hardlink", + "sha256": "c9be2c9ad31d516b508d01e85bcca375aaf807d6d8cd7c658085d5007069fffd", + "sha256_in_prefix": "c9be2c9ad31d516b508d01e85bcca375aaf807d6d8cd7c658085d5007069fffd", + "size_in_bytes": 321 + }, + { + "_path": "lib/tcl8.6/msgs/en_ie.msg", + "path_type": "hardlink", + "sha256": "e7868c80fd59d18bb15345d29f5292856f639559cffd42ee649c16c7938bf58d", + "sha256_in_prefix": "e7868c80fd59d18bb15345d29f5292856f639559cffd42ee649c16c7938bf58d", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/en_in.msg", + "path_type": "hardlink", + "sha256": "71e5367fe839afc4338c50d450f111728e097538ecaccc1b17b10238001b0bb1", + "sha256_in_prefix": "71e5367fe839afc4338c50d450f111728e097538ecaccc1b17b10238001b0bb1", + "size_in_bytes": 310 + }, + { + "_path": "lib/tcl8.6/msgs/en_nz.msg", + "path_type": "hardlink", + "sha256": "812db204e4cb8266207a4e948fba3dd1efe4d071bbb793f9743a4320a1ceebe3", + "sha256_in_prefix": "812db204e4cb8266207a4e948fba3dd1efe4d071bbb793f9743a4320a1ceebe3", + "size_in_bytes": 300 + }, + { + "_path": "lib/tcl8.6/msgs/en_ph.msg", + "path_type": "hardlink", + "sha256": "be107f5fae1e303ea766075c52ef2146ef149eda37662776e18e93685b176cdc", + "sha256_in_prefix": "be107f5fae1e303ea766075c52ef2146ef149eda37662776e18e93685b176cdc", + "size_in_bytes": 321 + }, + { + "_path": "lib/tcl8.6/msgs/en_sg.msg", + "path_type": "hardlink", + "sha256": "b8d354519bd4eb1004eb7b25f4e23fd3ee7f533a5f491a46d19fd520ed34c930", + "sha256_in_prefix": "b8d354519bd4eb1004eb7b25f4e23fd3ee7f533a5f491a46d19fd520ed34c930", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/en_za.msg", + "path_type": "hardlink", + "sha256": "98ce9ca4bb590ba5f922d6a196e5381e19c64e7682cdbef914f2dce6745a7332", + "sha256_in_prefix": "98ce9ca4bb590ba5f922d6a196e5381e19c64e7682cdbef914f2dce6745a7332", + "size_in_bytes": 245 + }, + { + "_path": "lib/tcl8.6/msgs/en_zw.msg", + "path_type": "hardlink", + "sha256": "91088bbbf58a704185dec13dbd421296bbd271a1aebbcb3ef85a99cecd848ff8", + "sha256_in_prefix": "91088bbbf58a704185dec13dbd421296bbd271a1aebbcb3ef85a99cecd848ff8", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/eo.msg", + "path_type": "hardlink", + "sha256": "50df3e0e669502ed08dd778d0afedf0f71993be388b0fcaa1065d1c91bd22d83", + "sha256_in_prefix": "50df3e0e669502ed08dd778d0afedf0f71993be388b0fcaa1065d1c91bd22d83", + "size_in_bytes": 1231 + }, + { + "_path": "lib/tcl8.6/msgs/es.msg", + "path_type": "hardlink", + "sha256": "fff2f08a5be202c81e469e16d4de1f8a0c1cfe556cda063da071279f29314837", + "sha256_in_prefix": "fff2f08a5be202c81e469e16d4de1f8a0c1cfe556cda063da071279f29314837", + "size_in_bytes": 1180 + }, + { + "_path": "lib/tcl8.6/msgs/es_ar.msg", + "path_type": "hardlink", + "sha256": "af530acd69676678c95b803a29a44642ed2d2f2d077cf0f47b53ff24bac03b2e", + "sha256_in_prefix": "af530acd69676678c95b803a29a44642ed2d2f2d077cf0f47b53ff24bac03b2e", + "size_in_bytes": 242 + }, + { + "_path": "lib/tcl8.6/msgs/es_bo.msg", + "path_type": "hardlink", + "sha256": "24b58de38cd4cb2abd08d1eda6c9454ffde7ed1a33367b457d7702434a0a55ee", + "sha256_in_prefix": "24b58de38cd4cb2abd08d1eda6c9454ffde7ed1a33367b457d7702434a0a55ee", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_cl.msg", + "path_type": "hardlink", + "sha256": "12ad1546eb391989105d80b41a87686d3b30626d0c42a73705f33b2d711950cc", + "sha256_in_prefix": "12ad1546eb391989105d80b41a87686d3b30626d0c42a73705f33b2d711950cc", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_co.msg", + "path_type": "hardlink", + "sha256": "1b4979874c3f025317dfcf0b06fc8cee080a28ff3e8efe1de9e899f6d4f4d21e", + "sha256_in_prefix": "1b4979874c3f025317dfcf0b06fc8cee080a28ff3e8efe1de9e899f6d4f4d21e", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_cr.msg", + "path_type": "hardlink", + "sha256": "7ac5fc35bc422a5445603e0430236e62cca3558787811de22305f72d439eb4bb", + "sha256_in_prefix": "7ac5fc35bc422a5445603e0430236e62cca3558787811de22305f72d439eb4bb", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_do.msg", + "path_type": "hardlink", + "sha256": "847c14c297dbe4d8517debaa8ed555f3daedf843d6bad1f411598631a0bd3507", + "sha256_in_prefix": "847c14c297dbe4d8517debaa8ed555f3daedf843d6bad1f411598631a0bd3507", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_ec.msg", + "path_type": "hardlink", + "sha256": "2086ee8d7398d5e60e5c3048843b388437bd6f2507d2293ca218936e3bf61e59", + "sha256_in_prefix": "2086ee8d7398d5e60e5c3048843b388437bd6f2507d2293ca218936e3bf61e59", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_gt.msg", + "path_type": "hardlink", + "sha256": "1bc22af98267d635e3f07615a264a716940a2b1faa5caa3aff54d4c5a4a34370", + "sha256_in_prefix": "1bc22af98267d635e3f07615a264a716940a2b1faa5caa3aff54d4c5a4a34370", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_hn.msg", + "path_type": "hardlink", + "sha256": "a2d25880c64309552aaced082deed1ee006482a14cab97db524e9983ee84acfc", + "sha256_in_prefix": "a2d25880c64309552aaced082deed1ee006482a14cab97db524e9983ee84acfc", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_mx.msg", + "path_type": "hardlink", + "sha256": "d0faa9d7997d5696bff92384144e0b9dfb2e4c38375817613f81a89c06ec6383", + "sha256_in_prefix": "d0faa9d7997d5696bff92384144e0b9dfb2e4c38375817613f81a89c06ec6383", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_ni.msg", + "path_type": "hardlink", + "sha256": "4b28b46981bbb78cbd2b22060e2dd018c66fcff1cee52755425ad4900a90d6c3", + "sha256_in_prefix": "4b28b46981bbb78cbd2b22060e2dd018c66fcff1cee52755425ad4900a90d6c3", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_pa.msg", + "path_type": "hardlink", + "sha256": "6832dc5ab9f610883784cf702691fcf16850651bc1c6a77a0efa81f43bc509ac", + "sha256_in_prefix": "6832dc5ab9f610883784cf702691fcf16850651bc1c6a77a0efa81f43bc509ac", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_pe.msg", + "path_type": "hardlink", + "sha256": "cc826c93682ef19d29ab6304657e07802c70cf18b1e5ea99c3480df6d2383983", + "sha256_in_prefix": "cc826c93682ef19d29ab6304657e07802c70cf18b1e5ea99c3480df6d2383983", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_pr.msg", + "path_type": "hardlink", + "sha256": "19563225ce7875696c6aa2c156e6438292de436b58f8d7c23253e3132069f9a2", + "sha256_in_prefix": "19563225ce7875696c6aa2c156e6438292de436b58f8d7c23253e3132069f9a2", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_py.msg", + "path_type": "hardlink", + "sha256": "94ff64201c27ab04f362617dd56b7d85b223bcca0735124196e7669270c591f0", + "sha256_in_prefix": "94ff64201c27ab04f362617dd56b7d85b223bcca0735124196e7669270c591f0", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_sv.msg", + "path_type": "hardlink", + "sha256": "e3268c95e9b7d471f5fd2436c17318d5a796220ba39cebebcd39fbb0141a49ce", + "sha256_in_prefix": "e3268c95e9b7d471f5fd2436c17318d5a796220ba39cebebcd39fbb0141a49ce", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_uy.msg", + "path_type": "hardlink", + "sha256": "ba557a3c656275a0c870fb8466f2237850f5a7cf2d001919896725bb3d3eaa4b", + "sha256_in_prefix": "ba557a3c656275a0c870fb8466f2237850f5a7cf2d001919896725bb3d3eaa4b", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/es_ve.msg", + "path_type": "hardlink", + "sha256": "64f796c5e3e300448a1f309a0da7d43548cc40511036ff3a3e0c917e32147d62", + "sha256_in_prefix": "64f796c5e3e300448a1f309a0da7d43548cc40511036ff3a3e0c917e32147d62", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/et.msg", + "path_type": "hardlink", + "sha256": "ccc2b4738db16fafb48bfc77c9e2f8be17bc19e4140e48b61f3ef1ce7c9f3a8c", + "sha256_in_prefix": "ccc2b4738db16fafb48bfc77c9e2f8be17bc19e4140e48b61f3ef1ce7c9f3a8c", + "size_in_bytes": 1206 + }, + { + "_path": "lib/tcl8.6/msgs/eu.msg", + "path_type": "hardlink", + "sha256": "7dcc4966a5c13a52b6d1db62be200b9b5a1decbaccfcaf15045dd03a2c3e3faa", + "sha256_in_prefix": "7dcc4966a5c13a52b6d1db62be200b9b5a1decbaccfcaf15045dd03a2c3e3faa", + "size_in_bytes": 985 + }, + { + "_path": "lib/tcl8.6/msgs/eu_es.msg", + "path_type": "hardlink", + "sha256": "935164a2d2d14815906b438562889b31139519b3a8e8db3d2ac152a77ec591dc", + "sha256_in_prefix": "935164a2d2d14815906b438562889b31139519b3a8e8db3d2ac152a77ec591dc", + "size_in_bytes": 287 + }, + { + "_path": "lib/tcl8.6/msgs/fa.msg", + "path_type": "hardlink", + "sha256": "f9ca4819e8c8b044d7d68c97fc67e0f4ccd6245e30024161dab24d0f7c3a9683", + "sha256_in_prefix": "f9ca4819e8c8b044d7d68c97fc67e0f4ccd6245e30024161dab24d0f7c3a9683", + "size_in_bytes": 1664 + }, + { + "_path": "lib/tcl8.6/msgs/fa_in.msg", + "path_type": "hardlink", + "sha256": "6360ce0f31ee593e311b275f3c1f1ed427e237f31010a4280ef2c58aa6f2633a", + "sha256_in_prefix": "6360ce0f31ee593e311b275f3c1f1ed427e237f31010a4280ef2c58aa6f2633a", + "size_in_bytes": 1957 + }, + { + "_path": "lib/tcl8.6/msgs/fa_ir.msg", + "path_type": "hardlink", + "sha256": "cf492cbd73a6c230725225d70566b6e46d5730bd3f63879781de4433965620be", + "sha256_in_prefix": "cf492cbd73a6c230725225d70566b6e46d5730bd3f63879781de4433965620be", + "size_in_bytes": 417 + }, + { + "_path": "lib/tcl8.6/msgs/fi.msg", + "path_type": "hardlink", + "sha256": "be0d2dce08e6cd786bc3b07a1fb1adc5b2cf12053c99eacddaacddb8802dfb9c", + "sha256_in_prefix": "be0d2dce08e6cd786bc3b07a1fb1adc5b2cf12053c99eacddaacddb8802dfb9c", + "size_in_bytes": 1145 + }, + { + "_path": "lib/tcl8.6/msgs/fo.msg", + "path_type": "hardlink", + "sha256": "f249dd1698ed1687e13654c04d08b829193027a2fecc24222ec854b59350466a", + "sha256_in_prefix": "f249dd1698ed1687e13654c04d08b829193027a2fecc24222ec854b59350466a", + "size_in_bytes": 986 + }, + { + "_path": "lib/tcl8.6/msgs/fo_fo.msg", + "path_type": "hardlink", + "sha256": "7145b57ac5c074bca968580b337c04a71bbd6efb93afaf291c1361fd700dc791", + "sha256_in_prefix": "7145b57ac5c074bca968580b337c04a71bbd6efb93afaf291c1361fd700dc791", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/fr.msg", + "path_type": "hardlink", + "sha256": "7a87e418b6d8d14d8c11d63708b38d607d28f7ddbf39606c7d8fba22be7892ca", + "sha256_in_prefix": "7a87e418b6d8d14d8c11d63708b38d607d28f7ddbf39606c7d8fba22be7892ca", + "size_in_bytes": 1205 + }, + { + "_path": "lib/tcl8.6/msgs/fr_be.msg", + "path_type": "hardlink", + "sha256": "980e703dfb1eede7de48c958f6b501ed4251f69cb0fbce0fca85555f5acf134a", + "sha256_in_prefix": "980e703dfb1eede7de48c958f6b501ed4251f69cb0fbce0fca85555f5acf134a", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/fr_ca.msg", + "path_type": "hardlink", + "sha256": "f16e212d5d1f6e83a9fc4e56874e4c7b8f1947ee882610a73199480319efa529", + "sha256_in_prefix": "f16e212d5d1f6e83a9fc4e56874e4c7b8f1947ee882610a73199480319efa529", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/fr_ch.msg", + "path_type": "hardlink", + "sha256": "ab160bfdeb5c3adf071e01c78312a81ee4223bbf5470ab880972bbf5965291f3", + "sha256_in_prefix": "ab160bfdeb5c3adf071e01c78312a81ee4223bbf5470ab880972bbf5965291f3", + "size_in_bytes": 281 + }, + { + "_path": "lib/tcl8.6/msgs/ga.msg", + "path_type": "hardlink", + "sha256": "057c75c1ad70653733dce43ea5bf151500f39314e8b0236ee80f8d5db623627f", + "sha256_in_prefix": "057c75c1ad70653733dce43ea5bf151500f39314e8b0236ee80f8d5db623627f", + "size_in_bytes": 1141 + }, + { + "_path": "lib/tcl8.6/msgs/ga_ie.msg", + "path_type": "hardlink", + "sha256": "2072e48c98b480db5677188836485b4605d5a9d99870ac73b5bfe9dcc6db46f4", + "sha256_in_prefix": "2072e48c98b480db5677188836485b4605d5a9d99870ac73b5bfe9dcc6db46f4", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/gl.msg", + "path_type": "hardlink", + "sha256": "c71a07169cdbe9962616d28f38c32d641da277e53e67f8e3a69eb320c1e2b88c", + "sha256_in_prefix": "c71a07169cdbe9962616d28f38c32d641da277e53e67f8e3a69eb320c1e2b88c", + "size_in_bytes": 950 + }, + { + "_path": "lib/tcl8.6/msgs/gl_es.msg", + "path_type": "hardlink", + "sha256": "bc2b0424cf27bef67f309e2b6dffef4d39c46f15d91c15e83e070c7fd4e20c9c", + "sha256_in_prefix": "bc2b0424cf27bef67f309e2b6dffef4d39c46f15d91c15e83e070c7fd4e20c9c", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/gv.msg", + "path_type": "hardlink", + "sha256": "75aa686ff901c9e66e51d36e8e78e5154b57ee9045784568f6a8798ea9689207", + "sha256_in_prefix": "75aa686ff901c9e66e51d36e8e78e5154b57ee9045784568f6a8798ea9689207", + "size_in_bytes": 1037 + }, + { + "_path": "lib/tcl8.6/msgs/gv_gb.msg", + "path_type": "hardlink", + "sha256": "823af00f4e44613e929d32770edb214132b6e210e872751624824da5f0b78448", + "sha256_in_prefix": "823af00f4e44613e929d32770edb214132b6e210e872751624824da5f0b78448", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/he.msg", + "path_type": "hardlink", + "sha256": "d27adaf74ebb18d6964882cf931260331b93ae4b283427f9a0db147a83de1d55", + "sha256_in_prefix": "d27adaf74ebb18d6964882cf931260331b93ae4b283427f9a0db147a83de1d55", + "size_in_bytes": 1938 + }, + { + "_path": "lib/tcl8.6/msgs/hi.msg", + "path_type": "hardlink", + "sha256": "fafe65db09bdcb863742fda8705bcd1c31b59e0dd8a3b347ea6dec2596cee0e9", + "sha256_in_prefix": "fafe65db09bdcb863742fda8705bcd1c31b59e0dd8a3b347ea6dec2596cee0e9", + "size_in_bytes": 1738 + }, + { + "_path": "lib/tcl8.6/msgs/hi_in.msg", + "path_type": "hardlink", + "sha256": "29c7ca358fffcaf94753c7cc2f63b58386234b75552fa3272c2e36f253770c3f", + "sha256_in_prefix": "29c7ca358fffcaf94753c7cc2f63b58386234b75552fa3272c2e36f253770c3f", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/hr.msg", + "path_type": "hardlink", + "sha256": "9e14d8f7f54be953983f198c8d59f38842c5f73419a5e81be6460b3623e7307a", + "sha256_in_prefix": "9e14d8f7f54be953983f198c8d59f38842c5f73419a5e81be6460b3623e7307a", + "size_in_bytes": 1121 + }, + { + "_path": "lib/tcl8.6/msgs/hu.msg", + "path_type": "hardlink", + "sha256": "314f4180c05de4a4860f65af6460900fff77f12c08edd728f68ca0065126b9ae", + "sha256_in_prefix": "314f4180c05de4a4860f65af6460900fff77f12c08edd728f68ca0065126b9ae", + "size_in_bytes": 1327 + }, + { + "_path": "lib/tcl8.6/msgs/id.msg", + "path_type": "hardlink", + "sha256": "1f1b0f5dede0263bd81773a78e98af551f36361accb315b618c8ae70a5fe781e", + "sha256_in_prefix": "1f1b0f5dede0263bd81773a78e98af551f36361accb315b618c8ae70a5fe781e", + "size_in_bytes": 914 + }, + { + "_path": "lib/tcl8.6/msgs/id_id.msg", + "path_type": "hardlink", + "sha256": "db81643ba1fd115e9d547943a889a56dfc0c81b63f21b1edc1955c6884c1b2f5", + "sha256_in_prefix": "db81643ba1fd115e9d547943a889a56dfc0c81b63f21b1edc1955c6884c1b2f5", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/is.msg", + "path_type": "hardlink", + "sha256": "6767115fff2da05f49a28bad78853fac6fc716186b985474d6d30764e1727c40", + "sha256_in_prefix": "6767115fff2da05f49a28bad78853fac6fc716186b985474d6d30764e1727c40", + "size_in_bytes": 1255 + }, + { + "_path": "lib/tcl8.6/msgs/it.msg", + "path_type": "hardlink", + "sha256": "c7d84001855586a0bab236a6a5878922d9c4a2ea1799bf18544869359750c0df", + "sha256_in_prefix": "c7d84001855586a0bab236a6a5878922d9c4a2ea1799bf18544869359750c0df", + "size_in_bytes": 1240 + }, + { + "_path": "lib/tcl8.6/msgs/it_ch.msg", + "path_type": "hardlink", + "sha256": "2ee356ffa2491a5a60bdf7d7febfac426824904738615a0c1d07aef6bda3b76f", + "sha256_in_prefix": "2ee356ffa2491a5a60bdf7d7febfac426824904738615a0c1d07aef6bda3b76f", + "size_in_bytes": 244 + }, + { + "_path": "lib/tcl8.6/msgs/ja.msg", + "path_type": "hardlink", + "sha256": "1fa391a6b22ddba5fb0431dfe0507f0b0754140b424700f1675f72c279ab0a0a", + "sha256_in_prefix": "1fa391a6b22ddba5fb0431dfe0507f0b0754140b424700f1675f72c279ab0a0a", + "size_in_bytes": 1645 + }, + { + "_path": "lib/tcl8.6/msgs/kl.msg", + "path_type": "hardlink", + "sha256": "1b00229df5a979a040339bbc72d448f39968fee5cc24f07241c9f6129a9b53dd", + "sha256_in_prefix": "1b00229df5a979a040339bbc72d448f39968fee5cc24f07241c9f6129a9b53dd", + "size_in_bytes": 978 + }, + { + "_path": "lib/tcl8.6/msgs/kl_gl.msg", + "path_type": "hardlink", + "sha256": "f99da45138a8aebfd92747fc28992f0c315c6c4ad97710eaf9427263bffa139c", + "sha256_in_prefix": "f99da45138a8aebfd92747fc28992f0c315c6c4ad97710eaf9427263bffa139c", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/ko.msg", + "path_type": "hardlink", + "sha256": "f6e2b0d116d2c9ac90dda430b6892371d87a4ecfb6955318978ed6f6e9d546a6", + "sha256_in_prefix": "f6e2b0d116d2c9ac90dda430b6892371d87a4ecfb6955318978ed6f6e9d546a6", + "size_in_bytes": 1566 + }, + { + "_path": "lib/tcl8.6/msgs/ko_kr.msg", + "path_type": "hardlink", + "sha256": "31a4b74f51c584354907251c55fe5ce894d2c9618156a1dc6f5a979bc350db17", + "sha256_in_prefix": "31a4b74f51c584354907251c55fe5ce894d2c9618156a1dc6f5a979bc350db17", + "size_in_bytes": 346 + }, + { + "_path": "lib/tcl8.6/msgs/kok.msg", + "path_type": "hardlink", + "sha256": "d236d5b27184b1e813e686d901418117f22d67024e6944018fc4b633df9ff744", + "sha256_in_prefix": "d236d5b27184b1e813e686d901418117f22d67024e6944018fc4b633df9ff744", + "size_in_bytes": 1958 + }, + { + "_path": "lib/tcl8.6/msgs/kok_in.msg", + "path_type": "hardlink", + "sha256": "bee07f14c7f4fc93b62ac318f89d2ed0dd6ff30d2bf21c2874654ff0292a6c4b", + "sha256_in_prefix": "bee07f14c7f4fc93b62ac318f89d2ed0dd6ff30d2bf21c2874654ff0292a6c4b", + "size_in_bytes": 254 + }, + { + "_path": "lib/tcl8.6/msgs/kw.msg", + "path_type": "hardlink", + "sha256": "f49f4e1c7142bf7a82fc2b9fc075171ae45903fe69131478c15219d72bbaad33", + "sha256_in_prefix": "f49f4e1c7142bf7a82fc2b9fc075171ae45903fe69131478c15219d72bbaad33", + "size_in_bytes": 966 + }, + { + "_path": "lib/tcl8.6/msgs/kw_gb.msg", + "path_type": "hardlink", + "sha256": "7a8a539c8b990aeffea06188b98dc437fd2a6e89ff66483ef334994e73fd0ec9", + "sha256_in_prefix": "7a8a539c8b990aeffea06188b98dc437fd2a6e89ff66483ef334994e73fd0ec9", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/lt.msg", + "path_type": "hardlink", + "sha256": "510d8eed3040b50afaf6a3c85bc98847f1b4d5d8a685c5ec06acc2491b890101", + "sha256_in_prefix": "510d8eed3040b50afaf6a3c85bc98847f1b4d5d8a685c5ec06acc2491b890101", + "size_in_bytes": 1255 + }, + { + "_path": "lib/tcl8.6/msgs/lv.msg", + "path_type": "hardlink", + "sha256": "fd95b38a3bebd59468bdc2890bac59df31c352e17f2e77c82471e1ca89469802", + "sha256_in_prefix": "fd95b38a3bebd59468bdc2890bac59df31c352e17f2e77c82471e1ca89469802", + "size_in_bytes": 1219 + }, + { + "_path": "lib/tcl8.6/msgs/mk.msg", + "path_type": "hardlink", + "sha256": "f384dd88523147cef42aa871d323fc4cbee338ff67cc5c95aec7940c0e531ae3", + "sha256_in_prefix": "f384dd88523147cef42aa871d323fc4cbee338ff67cc5c95aec7940c0e531ae3", + "size_in_bytes": 2105 + }, + { + "_path": "lib/tcl8.6/msgs/mr.msg", + "path_type": "hardlink", + "sha256": "eb2e2b7a41854af68cef5881cf1fbf4d38e70d2fab2c3f3ce5901aa5cc56fc15", + "sha256_in_prefix": "eb2e2b7a41854af68cef5881cf1fbf4d38e70d2fab2c3f3ce5901aa5cc56fc15", + "size_in_bytes": 1807 + }, + { + "_path": "lib/tcl8.6/msgs/mr_in.msg", + "path_type": "hardlink", + "sha256": "f75a29bb323db4354b0c759cb1c8c5a4ffc376dffd74274ca60a36994816a75c", + "sha256_in_prefix": "f75a29bb323db4354b0c759cb1c8c5a4ffc376dffd74274ca60a36994816a75c", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/ms.msg", + "path_type": "hardlink", + "sha256": "831f611ee851a64bf1ba5f9a5441ec1d50722fa9f15b4227707fe1927f754de4", + "sha256_in_prefix": "831f611ee851a64bf1ba5f9a5441ec1d50722fa9f15b4227707fe1927f754de4", + "size_in_bytes": 910 + }, + { + "_path": "lib/tcl8.6/msgs/ms_my.msg", + "path_type": "hardlink", + "sha256": "d05948d75c06669addb9708bc5fb48e6b651d4e62ef1b327ef8a3f605fd5271c", + "sha256_in_prefix": "d05948d75c06669addb9708bc5fb48e6b651d4e62ef1b327ef8a3f605fd5271c", + "size_in_bytes": 259 + }, + { + "_path": "lib/tcl8.6/msgs/mt.msg", + "path_type": "hardlink", + "sha256": "d115718818e3e3367847ce35bb5ff0361d08993d9749d438c918f8eb87ad8814", + "sha256_in_prefix": "d115718818e3e3367847ce35bb5ff0361d08993d9749d438c918f8eb87ad8814", + "size_in_bytes": 690 + }, + { + "_path": "lib/tcl8.6/msgs/nb.msg", + "path_type": "hardlink", + "sha256": "bc401889dd934c49d10d99b471441be2b536b1722739c7b0ab7de7629680f602", + "sha256_in_prefix": "bc401889dd934c49d10d99b471441be2b536b1722739c7b0ab7de7629680f602", + "size_in_bytes": 1157 + }, + { + "_path": "lib/tcl8.6/msgs/nl.msg", + "path_type": "hardlink", + "sha256": "49128b36b88e380188059c4b593c317382f32e29d1adc18d58d14d142459a2bb", + "sha256_in_prefix": "49128b36b88e380188059c4b593c317382f32e29d1adc18d58d14d142459a2bb", + "size_in_bytes": 1079 + }, + { + "_path": "lib/tcl8.6/msgs/nl_be.msg", + "path_type": "hardlink", + "sha256": "9cd54ec24cbdbec5e4fe543dda8ca95390678d432d33201fa1c32b61f8fe225a", + "sha256_in_prefix": "9cd54ec24cbdbec5e4fe543dda8ca95390678d432d33201fa1c32b61f8fe225a", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/nn.msg", + "path_type": "hardlink", + "sha256": "5ee93a8c245722deb64b68eff50c081f24da5de43d999c006a10c484e1d3b4ed", + "sha256_in_prefix": "5ee93a8c245722deb64b68eff50c081f24da5de43d999c006a10c484e1d3b4ed", + "size_in_bytes": 1148 + }, + { + "_path": "lib/tcl8.6/msgs/pl.msg", + "path_type": "hardlink", + "sha256": "c39595ddc0095eb4ae9e66db02ee175b31ac3da1f649eb88fa61b911f838f753", + "sha256_in_prefix": "c39595ddc0095eb4ae9e66db02ee175b31ac3da1f649eb88fa61b911f838f753", + "size_in_bytes": 1211 + }, + { + "_path": "lib/tcl8.6/msgs/pt.msg", + "path_type": "hardlink", + "sha256": "9f2bffa3b4d8783b2cfb2ced9cc4319acf06988f61829a1e5291d55b19854e88", + "sha256_in_prefix": "9f2bffa3b4d8783b2cfb2ced9cc4319acf06988f61829a1e5291d55b19854e88", + "size_in_bytes": 1127 + }, + { + "_path": "lib/tcl8.6/msgs/pt_br.msg", + "path_type": "hardlink", + "sha256": "e383b20484ee90c00054d52dd5af473b2ac9dc50c14d459a579ef5f44271d256", + "sha256_in_prefix": "e383b20484ee90c00054d52dd5af473b2ac9dc50c14d459a579ef5f44271d256", + "size_in_bytes": 279 + }, + { + "_path": "lib/tcl8.6/msgs/ro.msg", + "path_type": "hardlink", + "sha256": "d2e14be188350d343927d5380eb5672039fe9a37e9a9957921b40e4619b36027", + "sha256_in_prefix": "d2e14be188350d343927d5380eb5672039fe9a37e9a9957921b40e4619b36027", + "size_in_bytes": 1172 + }, + { + "_path": "lib/tcl8.6/msgs/ru.msg", + "path_type": "hardlink", + "sha256": "c2a3a0be5bc5a46a6a63c4de34e317b402bad40c22fb2936e1a4f53c1e2f625f", + "sha256_in_prefix": "c2a3a0be5bc5a46a6a63c4de34e317b402bad40c22fb2936e1a4f53c1e2f625f", + "size_in_bytes": 2039 + }, + { + "_path": "lib/tcl8.6/msgs/ru_ua.msg", + "path_type": "hardlink", + "sha256": "ae5d3df23f019455f3edfc3262aac2b00098881f09b9a934c0d26c0ab896700c", + "sha256_in_prefix": "ae5d3df23f019455f3edfc3262aac2b00098881f09b9a934c0d26c0ab896700c", + "size_in_bytes": 242 + }, + { + "_path": "lib/tcl8.6/msgs/sh.msg", + "path_type": "hardlink", + "sha256": "00f119701c9f3eba273701a6a731adafd7b8902f6bccf34e61308984456e193a", + "sha256_in_prefix": "00f119701c9f3eba273701a6a731adafd7b8902f6bccf34e61308984456e193a", + "size_in_bytes": 1160 + }, + { + "_path": "lib/tcl8.6/msgs/sk.msg", + "path_type": "hardlink", + "sha256": "043dece6ea7c83956b3300b95f8a0e92badaa8fc29d6c510706649d1d810679a", + "sha256_in_prefix": "043dece6ea7c83956b3300b95f8a0e92badaa8fc29d6c510706649d1d810679a", + "size_in_bytes": 1203 + }, + { + "_path": "lib/tcl8.6/msgs/sl.msg", + "path_type": "hardlink", + "sha256": "bd488c9d791abedf698b66b768e2bf24251ffeaf06f53fb3746cab457710ff77", + "sha256_in_prefix": "bd488c9d791abedf698b66b768e2bf24251ffeaf06f53fb3746cab457710ff77", + "size_in_bytes": 1164 + }, + { + "_path": "lib/tcl8.6/msgs/sq.msg", + "path_type": "hardlink", + "sha256": "cb27007e138315b064576c17931280cfe6e6929efc3dafd7171713d204cfc3bf", + "sha256_in_prefix": "cb27007e138315b064576c17931280cfe6e6929efc3dafd7171713d204cfc3bf", + "size_in_bytes": 1267 + }, + { + "_path": "lib/tcl8.6/msgs/sr.msg", + "path_type": "hardlink", + "sha256": "313e8cdbbc0288aed922b9927a7331d0faa2e451d4174b1f5b76c5c9faec8f9b", + "sha256_in_prefix": "313e8cdbbc0288aed922b9927a7331d0faa2e451d4174b1f5b76c5c9faec8f9b", + "size_in_bytes": 2035 + }, + { + "_path": "lib/tcl8.6/msgs/sv.msg", + "path_type": "hardlink", + "sha256": "4f32e1518be3270f4db80136fac0031c385dd3ce133faa534f141cf459c6113a", + "sha256_in_prefix": "4f32e1518be3270f4db80136fac0031c385dd3ce133faa534f141cf459c6113a", + "size_in_bytes": 1167 + }, + { + "_path": "lib/tcl8.6/msgs/sw.msg", + "path_type": "hardlink", + "sha256": "6b5ab8ae265db436b15d32263a8870ec55c7c0c07415b3f9baac37f73bc704e5", + "sha256_in_prefix": "6b5ab8ae265db436b15d32263a8870ec55c7c0c07415b3f9baac37f73bc704e5", + "size_in_bytes": 991 + }, + { + "_path": "lib/tcl8.6/msgs/ta.msg", + "path_type": "hardlink", + "sha256": "30a142a48e57f194ecc3aa9243930f3e6e1b4e8b331a8cdd2705ec9c280dccbb", + "sha256_in_prefix": "30a142a48e57f194ecc3aa9243930f3e6e1b4e8b331a8cdd2705ec9c280dccbb", + "size_in_bytes": 1835 + }, + { + "_path": "lib/tcl8.6/msgs/ta_in.msg", + "path_type": "hardlink", + "sha256": "aa57d5fb5cc3f59ec6a3f99d7a5184403809aa3a3bc02ed0842507d4218b683d", + "sha256_in_prefix": "aa57d5fb5cc3f59ec6a3f99d7a5184403809aa3a3bc02ed0842507d4218b683d", + "size_in_bytes": 251 + }, + { + "_path": "lib/tcl8.6/msgs/te.msg", + "path_type": "hardlink", + "sha256": "42c34d02a6079c4d0d683750b3809f345637bc6d814652c3fb0b344b66b70c79", + "sha256_in_prefix": "42c34d02a6079c4d0d683750b3809f345637bc6d814652c3fb0b344b66b70c79", + "size_in_bytes": 2102 + }, + { + "_path": "lib/tcl8.6/msgs/te_in.msg", + "path_type": "hardlink", + "sha256": "88bdaf4b25b684b0320a2e11d3fe77dddd25e3b17141bd7ed1d63698c480e4ba", + "sha256_in_prefix": "88bdaf4b25b684b0320a2e11d3fe77dddd25e3b17141bd7ed1d63698c480e4ba", + "size_in_bytes": 411 + }, + { + "_path": "lib/tcl8.6/msgs/th.msg", + "path_type": "hardlink", + "sha256": "f9641a6ebe3845ce5d36ced473749f5909c90c52e405f074a6da817ef6f39867", + "sha256_in_prefix": "f9641a6ebe3845ce5d36ced473749f5909c90c52e405f074a6da817ef6f39867", + "size_in_bytes": 2305 + }, + { + "_path": "lib/tcl8.6/msgs/tr.msg", + "path_type": "hardlink", + "sha256": "df7c4ba67457cb47eef0f5ca8e028ff466acdd877a487697dc48ecac7347ac47", + "sha256_in_prefix": "df7c4ba67457cb47eef0f5ca8e028ff466acdd877a487697dc48ecac7347ac47", + "size_in_bytes": 1133 + }, + { + "_path": "lib/tcl8.6/msgs/uk.msg", + "path_type": "hardlink", + "sha256": "cf2e78ef3322f0121e958098ef5f92da008344657a73439eac658cb6bf3d72bd", + "sha256_in_prefix": "cf2e78ef3322f0121e958098ef5f92da008344657a73439eac658cb6bf3d72bd", + "size_in_bytes": 2113 + }, + { + "_path": "lib/tcl8.6/msgs/vi.msg", + "path_type": "hardlink", + "sha256": "9c69094c0bd52d5ae8448431574eae8ee4be31ec2e8602366df6c6bf4bc89a58", + "sha256_in_prefix": "9c69094c0bd52d5ae8448431574eae8ee4be31ec2e8602366df6c6bf4bc89a58", + "size_in_bytes": 1421 + }, + { + "_path": "lib/tcl8.6/msgs/zh.msg", + "path_type": "hardlink", + "sha256": "ef81b41ec69f67a394ece2b3983b67b3d0c8813624c2bfa1d8a8c15b21608ac9", + "sha256_in_prefix": "ef81b41ec69f67a394ece2b3983b67b3d0c8813624c2bfa1d8a8c15b21608ac9", + "size_in_bytes": 3330 + }, + { + "_path": "lib/tcl8.6/msgs/zh_cn.msg", + "path_type": "hardlink", + "sha256": "85f91cf6e316774aa5d0c1eca85c88e591fd537165bb79929c5e6a1ca99e56c8", + "sha256_in_prefix": "85f91cf6e316774aa5d0c1eca85c88e591fd537165bb79929c5e6a1ca99e56c8", + "size_in_bytes": 312 + }, + { + "_path": "lib/tcl8.6/msgs/zh_hk.msg", + "path_type": "hardlink", + "sha256": "d123e0b4c2614f680808b58cca0c140ba187494b2c8bcf8c604c7eb739c70882", + "sha256_in_prefix": "d123e0b4c2614f680808b58cca0c140ba187494b2c8bcf8c604c7eb739c70882", + "size_in_bytes": 752 + }, + { + "_path": "lib/tcl8.6/msgs/zh_sg.msg", + "path_type": "hardlink", + "sha256": "2683517766af9da0d87b7a862de9adea82d9a1454fc773a9e3c1a6d92aba947a", + "sha256_in_prefix": "2683517766af9da0d87b7a862de9adea82d9a1454fc773a9e3c1a6d92aba947a", + "size_in_bytes": 339 + }, + { + "_path": "lib/tcl8.6/msgs/zh_tw.msg", + "path_type": "hardlink", + "sha256": "d582406c51a3db1eadf6507c50a1f85740fda7da8e27fc1438feb6242900cb12", + "sha256_in_prefix": "d582406c51a3db1eadf6507c50a1f85740fda7da8e27fc1438feb6242900cb12", + "size_in_bytes": 346 + }, + { + "_path": "lib/tcl8.6/opt0.4/optparse.tcl", + "path_type": "hardlink", + "sha256": "0513c82e03403530c0ee66d34ab697d213e9a2def86dd935cc5f6bf01c3b7dcf", + "sha256_in_prefix": "0513c82e03403530c0ee66d34ab697d213e9a2def86dd935cc5f6bf01c3b7dcf", + "size_in_bytes": 32716 + }, + { + "_path": "lib/tcl8.6/opt0.4/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "bc4aff8132402e6244f497b3f849b6b30c328db8512a04e4c86c523a80f2fe68", + "sha256_in_prefix": "bc4aff8132402e6244f497b3f849b6b30c328db8512a04e4c86c523a80f2fe68", + "size_in_bytes": 608 + }, + { + "_path": "lib/tcl8.6/package.tcl", + "path_type": "hardlink", + "sha256": "9edf9783fe26c85040dc849b7aed8350becb25144b6b2ce6068f58cfdf574f4a", + "sha256_in_prefix": "9edf9783fe26c85040dc849b7aed8350becb25144b6b2ce6068f58cfdf574f4a", + "size_in_bytes": 23245 + }, + { + "_path": "lib/tcl8.6/parray.tcl", + "path_type": "hardlink", + "sha256": "ebe5a2b4cbbcd7fd3f7a6f76d68d7856301db01b350c040942a7b806a46e0014", + "sha256_in_prefix": "ebe5a2b4cbbcd7fd3f7a6f76d68d7856301db01b350c040942a7b806a46e0014", + "size_in_bytes": 816 + }, + { + "_path": "lib/tcl8.6/safe.tcl", + "path_type": "hardlink", + "sha256": "f39ba5d85c2041a86ea61fda6f67e1e0281f8d6ea7cc09431b885fff65d71f65", + "sha256_in_prefix": "f39ba5d85c2041a86ea61fda6f67e1e0281f8d6ea7cc09431b885fff65d71f65", + "size_in_bytes": 40936 + }, + { + "_path": "lib/tcl8.6/tclAppInit.c", + "path_type": "hardlink", + "sha256": "5006ea395c2ca96e74353e9486d6be3e2a85a7925969a4fe41662f092ef94caa", + "sha256_in_prefix": "5006ea395c2ca96e74353e9486d6be3e2a85a7925969a4fe41662f092ef94caa", + "size_in_bytes": 4871 + }, + { + "_path": "lib/tcl8.6/tclIndex", + "path_type": "hardlink", + "sha256": "f832bc13238565d1427c463fdcacef0a93f4dc0352c0e3f35b573d9b11deaca5", + "sha256_in_prefix": "f832bc13238565d1427c463fdcacef0a93f4dc0352c0e3f35b573d9b11deaca5", + "size_in_bytes": 5613 + }, + { + "_path": "lib/tcl8.6/tm.tcl", + "path_type": "hardlink", + "sha256": "78e0d5fb77e51be0c99cdfdfef596c91b66ba1160c46c48a63266611bbcf26ad", + "sha256_in_prefix": "78e0d5fb77e51be0c99cdfdfef596c91b66ba1160c46c48a63266611bbcf26ad", + "size_in_bytes": 11827 + }, + { + "_path": "lib/tcl8.6/word.tcl", + "path_type": "hardlink", + "sha256": "f18e8ae29aa8ed2be2cbb5568b4243f654f7fb0aa2066e16977863ee1415b9bc", + "sha256_in_prefix": "f18e8ae29aa8ed2be2cbb5568b4243f654f7fb0aa2066e16977863ee1415b9bc", + "size_in_bytes": 4897 + }, + { + "_path": "lib/tcl8/8.4/platform-1.0.19.tm", + "path_type": "hardlink", + "sha256": "cc798eb26659cb12469cf91f2e79555b44973dd6707bfebf7aa2b9d98d806a82", + "sha256_in_prefix": "cc798eb26659cb12469cf91f2e79555b44973dd6707bfebf7aa2b9d98d806a82", + "size_in_bytes": 11258 + }, + { + "_path": "lib/tcl8/8.4/platform/shell-1.1.4.tm", + "path_type": "hardlink", + "sha256": "46654e58c56bff375310e38bbc5c68f642c099e09c951b5bad9ac81d8a377e01", + "sha256_in_prefix": "46654e58c56bff375310e38bbc5c68f642c099e09c951b5bad9ac81d8a377e01", + "size_in_bytes": 5976 + }, + { + "_path": "lib/tcl8/8.5/msgcat-1.6.1.tm", + "path_type": "hardlink", + "sha256": "c29589596069ef698f1394262d019f5708a05a5211d8feceaa4c3ab74f5d7d9a", + "sha256_in_prefix": "c29589596069ef698f1394262d019f5708a05a5211d8feceaa4c3ab74f5d7d9a", + "size_in_bytes": 33931 + }, + { + "_path": "lib/tcl8/8.5/tcltest-2.5.7.tm", + "path_type": "hardlink", + "sha256": "df623d89cef0fa5d2c53cb9ace1ee8ff4afd5a735ab6d86e68757da89122f26b", + "sha256_in_prefix": "df623d89cef0fa5d2c53cb9ace1ee8ff4afd5a735ab6d86e68757da89122f26b", + "size_in_bytes": 105075 + }, + { + "_path": "lib/tcl8/8.6/http-2.9.8.tm", + "path_type": "hardlink", + "sha256": "751ea55adf3905201d97c8788e7d7ab6180a4fe21dafb876079e501fa448eca0", + "sha256_in_prefix": "751ea55adf3905201d97c8788e7d7ab6180a4fe21dafb876079e501fa448eca0", + "size_in_bytes": 114818 + }, + { + "_path": "lib/tcl8/8.6/tdbc/sqlite3-1.1.7.tm", + "path_type": "hardlink", + "sha256": "4453b83a1e2b385cabf306d28b6a7650de1a738c862bb8f2ef5eea2af9690922", + "sha256_in_prefix": "4453b83a1e2b385cabf306d28b6a7650de1a738c862bb8f2ef5eea2af9690922", + "size_in_bytes": 18903 + }, + { + "_path": "lib/tclConfig.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "b6a6bc6be20c6962a717ff2037f2f00c2f91f90d2eb34277d10a68d35a7dfff2", + "sha256_in_prefix": "55ca01780f08d436819b09652a151d9730d9b2b7b269f2c0a56bf9edb6310f67", + "size_in_bytes": 11776 + }, + { + "_path": "lib/tclooConfig.sh", + "path_type": "hardlink", + "sha256": "9a3210c14cba9aead381e376ff4bb454cc3dfd96f9d112fc66d8770e5197c17d", + "sha256_in_prefix": "9a3210c14cba9aead381e376ff4bb454cc3dfd96f9d112fc66d8770e5197c17d", + "size_in_bytes": 773 + }, + { + "_path": "lib/tdbc1.1.7/libtdbc1.1.7.so", + "path_type": "hardlink", + "sha256": "45ee3dd918752b7e0021eb50f90e2e4c1ce58b9851655d6550728d23478b7d7d", + "sha256_in_prefix": "45ee3dd918752b7e0021eb50f90e2e4c1ce58b9851655d6550728d23478b7d7d", + "size_in_bytes": 24272 + }, + { + "_path": "lib/tdbc1.1.7/libtdbcstub1.1.7.a", + "path_type": "hardlink", + "sha256": "ebe2a2aff24a68187c5dab15ab6d36df375091c51e0c635029c4db0f916dc2ca", + "sha256_in_prefix": "ebe2a2aff24a68187c5dab15ab6d36df375091c51e0c635029c4db0f916dc2ca", + "size_in_bytes": 3038 + }, + { + "_path": "lib/tdbc1.1.7/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "94a3c8e29da60ecb6e813932797d6b8c54e1e3b20014501fd145e7480311b925", + "sha256_in_prefix": "94a3c8e29da60ecb6e813932797d6b8c54e1e3b20014501fd145e7480311b925", + "size_in_bytes": 832 + }, + { + "_path": "lib/tdbc1.1.7/tdbc.tcl", + "path_type": "hardlink", + "sha256": "2985b90c234bdbebcd3b931aee7785820e336e4beca6edc398cb03252ecb007a", + "sha256_in_prefix": "2985b90c234bdbebcd3b931aee7785820e336e4beca6edc398cb03252ecb007a", + "size_in_bytes": 26703 + }, + { + "_path": "lib/tdbc1.1.7/tdbcConfig.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "d95fdf5299fd345d079afb703a0484f8bda004f64df398ad86a58e944e12df8c", + "sha256_in_prefix": "1519828fdde1443395d0736efb65b359b55b3d849ef3d8467b169db200b08df8", + "size_in_bytes": 6067 + }, + { + "_path": "lib/tdbcmysql1.1.7/libtdbcmysql1.1.7.so", + "path_type": "hardlink", + "sha256": "2392655f9917861753617866dbceb849aa4ea84d7de794a1d1e4d9bbe6f9ea47", + "sha256_in_prefix": "2392655f9917861753617866dbceb849aa4ea84d7de794a1d1e4d9bbe6f9ea47", + "size_in_bytes": 52440 + }, + { + "_path": "lib/tdbcmysql1.1.7/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "31d24496784b052d98c56cd5fa5ee1136e77d8de68dfbdf4d9d64422f4b7a9bf", + "sha256_in_prefix": "31d24496784b052d98c56cd5fa5ee1136e77d8de68dfbdf4d9d64422f4b7a9bf", + "size_in_bytes": 541 + }, + { + "_path": "lib/tdbcmysql1.1.7/tdbcmysql.tcl", + "path_type": "hardlink", + "sha256": "7cc5cb4a13cd99c4e34eb89eba0454a1dbb1fb84c125928a70aa8b3dbc6feaea", + "sha256_in_prefix": "7cc5cb4a13cd99c4e34eb89eba0454a1dbb1fb84c125928a70aa8b3dbc6feaea", + "size_in_bytes": 6623 + }, + { + "_path": "lib/tdbcodbc1.1.7/libtdbcodbc1.1.7.so", + "path_type": "hardlink", + "sha256": "d37ad39b4f63d631aaf1bb694c5c6fdb4b4cdf8188b1acc2bd0226d9f44ce3fd", + "sha256_in_prefix": "d37ad39b4f63d631aaf1bb694c5c6fdb4b4cdf8188b1acc2bd0226d9f44ce3fd", + "size_in_bytes": 65952 + }, + { + "_path": "lib/tdbcodbc1.1.7/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "9d98ce5e646fa499e5e4d43539d4fbbebd1761b8967df5ef860ca37994f119c7", + "sha256_in_prefix": "9d98ce5e646fa499e5e4d43539d4fbbebd1761b8967df5ef860ca37994f119c7", + "size_in_bytes": 532 + }, + { + "_path": "lib/tdbcodbc1.1.7/tdbcodbc.tcl", + "path_type": "hardlink", + "sha256": "13f45a1f83c91486df91a6e967d6257620e1a35dc46a26d89dc6c07d8669d9a3", + "sha256_in_prefix": "13f45a1f83c91486df91a6e967d6257620e1a35dc46a26d89dc6c07d8669d9a3", + "size_in_bytes": 17071 + }, + { + "_path": "lib/tdbcpostgres1.1.7/libtdbcpostgres1.1.7.so", + "path_type": "hardlink", + "sha256": "6a40b6bed917bf95b06ca718275fe3960b6b548247c435aa0dade3d89c9a0b04", + "sha256_in_prefix": "6a40b6bed917bf95b06ca718275fe3960b6b548247c435aa0dade3d89c9a0b04", + "size_in_bytes": 48240 + }, + { + "_path": "lib/tdbcpostgres1.1.7/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "1bba0739bf5117991b2af410186c3a7f31d6e500d7b10f7dafefb1f8acd22f59", + "sha256_in_prefix": "1bba0739bf5117991b2af410186c3a7f31d6e500d7b10f7dafefb1f8acd22f59", + "size_in_bytes": 568 + }, + { + "_path": "lib/tdbcpostgres1.1.7/tdbcpostgres.tcl", + "path_type": "hardlink", + "sha256": "58ba4fe2b016dead9252075d3b29e2bcf46d1a0ce4edefeb56e259ed425a3d20", + "sha256_in_prefix": "58ba4fe2b016dead9252075d3b29e2bcf46d1a0ce4edefeb56e259ed425a3d20", + "size_in_bytes": 4363 + }, + { + "_path": "lib/thread2.8.9/libthread2.8.9.so", + "path_type": "hardlink", + "sha256": "5fadb662e1bcccb779e625a02102ceed557e97ca92e16d296bb6aef2d66e1aac", + "sha256_in_prefix": "5fadb662e1bcccb779e625a02102ceed557e97ca92e16d296bb6aef2d66e1aac", + "size_in_bytes": 98056 + }, + { + "_path": "lib/thread2.8.9/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "056cfc9c2757efaf3a5265883e256f75b4354e9cd54cf39c242544f4c8258c8b", + "sha256_in_prefix": "056cfc9c2757efaf3a5265883e256f75b4354e9cd54cf39c242544f4c8258c8b", + "size_in_bytes": 2394 + }, + { + "_path": "lib/thread2.8.9/ttrace.tcl", + "path_type": "hardlink", + "sha256": "fb88cb621738807356b192e0f1527c59968096157808483b2cb00cf81a9f0e69", + "sha256_in_prefix": "fb88cb621738807356b192e0f1527c59968096157808483b2cb00cf81a9f0e69", + "size_in_bytes": 29553 + }, + { + "_path": "lib/tk8.6/bgerror.tcl", + "path_type": "hardlink", + "sha256": "64448552e9dd75e84b8df63529e67f96db9351d4913ec2e96fd529fe4c35e05b", + "sha256_in_prefix": "64448552e9dd75e84b8df63529e67f96db9351d4913ec2e96fd529fe4c35e05b", + "size_in_bytes": 8534 + }, + { + "_path": "lib/tk8.6/button.tcl", + "path_type": "hardlink", + "sha256": "2f013b643d62f08ddaaa1dea39ff80d6607569c9e1acc19406377b64d75ccf53", + "sha256_in_prefix": "2f013b643d62f08ddaaa1dea39ff80d6607569c9e1acc19406377b64d75ccf53", + "size_in_bytes": 20830 + }, + { + "_path": "lib/tk8.6/choosedir.tcl", + "path_type": "hardlink", + "sha256": "351f389f090d0cfe5b1222f83785630a1eeae54f6827477845805bbb3d119f7c", + "sha256_in_prefix": "351f389f090d0cfe5b1222f83785630a1eeae54f6827477845805bbb3d119f7c", + "size_in_bytes": 9699 + }, + { + "_path": "lib/tk8.6/clrpick.tcl", + "path_type": "hardlink", + "sha256": "c55079c43426597be836c8b8ded04abdab8e1cd7d2b90a898af9520f802c6040", + "sha256_in_prefix": "c55079c43426597be836c8b8ded04abdab8e1cd7d2b90a898af9520f802c6040", + "size_in_bytes": 21345 + }, + { + "_path": "lib/tk8.6/comdlg.tcl", + "path_type": "hardlink", + "sha256": "f62ce5b8450ae7b3ec2bdd9fdf67c77fcc99aa18de195de5337c75c997a4b11c", + "sha256_in_prefix": "f62ce5b8450ae7b3ec2bdd9fdf67c77fcc99aa18de195de5337c75c997a4b11c", + "size_in_bytes": 8368 + }, + { + "_path": "lib/tk8.6/console.tcl", + "path_type": "hardlink", + "sha256": "65c32713abf982e8eb5b1d3bdd141aec1b45bd897b1b60876bf15fedb579acfd", + "sha256_in_prefix": "65c32713abf982e8eb5b1d3bdd141aec1b45bd897b1b60876bf15fedb579acfd", + "size_in_bytes": 32194 + }, + { + "_path": "lib/tk8.6/demos/README", + "path_type": "hardlink", + "sha256": "759d77d3a4bc6be4a310327fde118a554c039803cefeb51709db92cbf1722c7b", + "sha256_in_prefix": "759d77d3a4bc6be4a310327fde118a554c039803cefeb51709db92cbf1722c7b", + "size_in_bytes": 2082 + }, + { + "_path": "lib/tk8.6/demos/anilabel.tcl", + "path_type": "hardlink", + "sha256": "938d2a37988ac5b44d530355feecf1935a27e2e20de7d72fd5792e6db4db6a18", + "sha256_in_prefix": "938d2a37988ac5b44d530355feecf1935a27e2e20de7d72fd5792e6db4db6a18", + "size_in_bytes": 6670 + }, + { + "_path": "lib/tk8.6/demos/aniwave.tcl", + "path_type": "hardlink", + "sha256": "e15745e550e2e16194a4bf276d045bc9df7b9c3bfab52cea861c37e33c6c7f36", + "sha256_in_prefix": "e15745e550e2e16194a4bf276d045bc9df7b9c3bfab52cea861c37e33c6c7f36", + "size_in_bytes": 3494 + }, + { + "_path": "lib/tk8.6/demos/arrow.tcl", + "path_type": "hardlink", + "sha256": "85d14a2c7236bf5589eaba1d10ddcd069dd4e95771d53371a8a2dc02b15710f5", + "sha256_in_prefix": "85d14a2c7236bf5589eaba1d10ddcd069dd4e95771d53371a8a2dc02b15710f5", + "size_in_bytes": 8110 + }, + { + "_path": "lib/tk8.6/demos/bind.tcl", + "path_type": "hardlink", + "sha256": "26c8f3ba9ca50ae9e3a073f8ef1bfacf13a15541bc89c0e0c128a44ff0e09a1e", + "sha256_in_prefix": "26c8f3ba9ca50ae9e3a073f8ef1bfacf13a15541bc89c0e0c128a44ff0e09a1e", + "size_in_bytes": 3078 + }, + { + "_path": "lib/tk8.6/demos/bitmap.tcl", + "path_type": "hardlink", + "sha256": "e9b74c16ac87ed4be29af6d8411c5303faccf3785c37e39441d30aa72798d8c3", + "sha256_in_prefix": "e9b74c16ac87ed4be29af6d8411c5303faccf3785c37e39441d30aa72798d8c3", + "size_in_bytes": 1411 + }, + { + "_path": "lib/tk8.6/demos/browse", + "path_type": "hardlink", + "sha256": "9034326fa34cbd5f041ed8f8e7a340012a7b3420546d504bdb5397b4945baf29", + "sha256_in_prefix": "9034326fa34cbd5f041ed8f8e7a340012a7b3420546d504bdb5397b4945baf29", + "size_in_bytes": 1758 + }, + { + "_path": "lib/tk8.6/demos/button.tcl", + "path_type": "hardlink", + "sha256": "f48f7f11d71bf560fd64082d6b803c4d88288861dd41853a27a5af3f19f51d23", + "sha256_in_prefix": "f48f7f11d71bf560fd64082d6b803c4d88288861dd41853a27a5af3f19f51d23", + "size_in_bytes": 1504 + }, + { + "_path": "lib/tk8.6/demos/check.tcl", + "path_type": "hardlink", + "sha256": "22cbec6ca010492987f32e56ac9f0963f6c26c8a0eedb5f4d606cb7fe468a7c2", + "sha256_in_prefix": "22cbec6ca010492987f32e56ac9f0963f6c26c8a0eedb5f4d606cb7fe468a7c2", + "size_in_bytes": 2310 + }, + { + "_path": "lib/tk8.6/demos/clrpick.tcl", + "path_type": "hardlink", + "sha256": "e2dd2648db7e0edda8a4e64ed4bb24498371b9fa81b3d0886a84a4b7cc6b8052", + "sha256_in_prefix": "e2dd2648db7e0edda8a4e64ed4bb24498371b9fa81b3d0886a84a4b7cc6b8052", + "size_in_bytes": 1431 + }, + { + "_path": "lib/tk8.6/demos/colors.tcl", + "path_type": "hardlink", + "sha256": "fbc70c6fd23184de4d068a7410e60a69e2f43e3d854a2017c7938b5047d9e146", + "sha256_in_prefix": "fbc70c6fd23184de4d068a7410e60a69e2f43e3d854a2017c7938b5047d9e146", + "size_in_bytes": 5002 + }, + { + "_path": "lib/tk8.6/demos/combo.tcl", + "path_type": "hardlink", + "sha256": "ee5b329d98932b7493f4f9e830f1da21251a5ab7eda807c827ff6129e3c87101", + "sha256_in_prefix": "ee5b329d98932b7493f4f9e830f1da21251a5ab7eda807c827ff6129e3c87101", + "size_in_bytes": 1963 + }, + { + "_path": "lib/tk8.6/demos/cscroll.tcl", + "path_type": "hardlink", + "sha256": "f25a288b5b681cc890c097b7662db9b42a84b5f3dafad1009276510935325fdc", + "sha256_in_prefix": "f25a288b5b681cc890c097b7662db9b42a84b5f3dafad1009276510935325fdc", + "size_in_bytes": 5041 + }, + { + "_path": "lib/tk8.6/demos/ctext.tcl", + "path_type": "hardlink", + "sha256": "64944957a9ab6a8d217052824378609b3a1a957e0d6a39246cc48e38595d482d", + "sha256_in_prefix": "64944957a9ab6a8d217052824378609b3a1a957e0d6a39246cc48e38595d482d", + "size_in_bytes": 6205 + }, + { + "_path": "lib/tk8.6/demos/dialog1.tcl", + "path_type": "hardlink", + "sha256": "b47ede8c0a62275d80b324a751513c917a651573f5719dc08ace3c6c07774939", + "sha256_in_prefix": "b47ede8c0a62275d80b324a751513c917a651573f5719dc08ace3c6c07774939", + "size_in_bytes": 974 + }, + { + "_path": "lib/tk8.6/demos/dialog2.tcl", + "path_type": "hardlink", + "sha256": "bffd499e48895c06df3f337c2f0f6fc788ae28f5dea5640c3ad33e3fe792236b", + "sha256_in_prefix": "bffd499e48895c06df3f337c2f0f6fc788ae28f5dea5640c3ad33e3fe792236b", + "size_in_bytes": 828 + }, + { + "_path": "lib/tk8.6/demos/en.msg", + "path_type": "hardlink", + "sha256": "9ed968ce55283d06066d99e366a5a7cd1f3303235b5c6626c7828141ae5c0ec4", + "sha256_in_prefix": "9ed968ce55283d06066d99e366a5a7cd1f3303235b5c6626c7828141ae5c0ec4", + "size_in_bytes": 3867 + }, + { + "_path": "lib/tk8.6/demos/entry1.tcl", + "path_type": "hardlink", + "sha256": "8d97306a9b2c89fa311d0bee1879abf53a7d17bdf7601ba6343510a2bc7e1799", + "sha256_in_prefix": "8d97306a9b2c89fa311d0bee1879abf53a7d17bdf7601ba6343510a2bc7e1799", + "size_in_bytes": 1401 + }, + { + "_path": "lib/tk8.6/demos/entry2.tcl", + "path_type": "hardlink", + "sha256": "6350ccb20cfdfb155f78c747f258e8b0d929d97d6e67c8427fb67db125b328bc", + "sha256_in_prefix": "6350ccb20cfdfb155f78c747f258e8b0d929d97d6e67c8427fb67db125b328bc", + "size_in_bytes": 2106 + }, + { + "_path": "lib/tk8.6/demos/entry3.tcl", + "path_type": "hardlink", + "sha256": "92f08c1aefd0290c0de49eca1241ef6dd96cb45e0119da6f87b038b6e31e6443", + "sha256_in_prefix": "92f08c1aefd0290c0de49eca1241ef6dd96cb45e0119da6f87b038b6e31e6443", + "size_in_bytes": 6102 + }, + { + "_path": "lib/tk8.6/demos/filebox.tcl", + "path_type": "hardlink", + "sha256": "85e9f0a73d928e2fe0e833006929c2a3944b41a68c10b2c99b70d2188465c776", + "sha256_in_prefix": "85e9f0a73d928e2fe0e833006929c2a3944b41a68c10b2c99b70d2188465c776", + "size_in_bytes": 2351 + }, + { + "_path": "lib/tk8.6/demos/floor.tcl", + "path_type": "hardlink", + "sha256": "2d2feeeefc03f758f69342720fcfd742301a10b04c6c05eac8c4a3a8706b493b", + "sha256_in_prefix": "2d2feeeefc03f758f69342720fcfd742301a10b04c6c05eac8c4a3a8706b493b", + "size_in_bytes": 81000 + }, + { + "_path": "lib/tk8.6/demos/fontchoose.tcl", + "path_type": "hardlink", + "sha256": "88961c9116e7515d48e13264f1fc30f3b14040f345c06dd7605a9232d5dcb182", + "sha256_in_prefix": "88961c9116e7515d48e13264f1fc30f3b14040f345c06dd7605a9232d5dcb182", + "size_in_bytes": 1710 + }, + { + "_path": "lib/tk8.6/demos/form.tcl", + "path_type": "hardlink", + "sha256": "85b46fc163748dd38256a5f46675f862a0296f28221a71983edb8f917aa49065", + "sha256_in_prefix": "85b46fc163748dd38256a5f46675f862a0296f28221a71983edb8f917aa49065", + "size_in_bytes": 1046 + }, + { + "_path": "lib/tk8.6/demos/goldberg.tcl", + "path_type": "hardlink", + "sha256": "7c77c935fb47ace49ea8619e05b41e8b11cadfdc744f381b36efb39c1d317f8a", + "sha256_in_prefix": "7c77c935fb47ace49ea8619e05b41e8b11cadfdc744f381b36efb39c1d317f8a", + "size_in_bytes": 56666 + }, + { + "_path": "lib/tk8.6/demos/hello", + "path_type": "hardlink", + "sha256": "b8c8aa005fb7f5352617947f2190866dc1d1cbfc243722fa7d5ce7485fe6ed05", + "sha256_in_prefix": "b8c8aa005fb7f5352617947f2190866dc1d1cbfc243722fa7d5ce7485fe6ed05", + "size_in_bytes": 512 + }, + { + "_path": "lib/tk8.6/demos/hscale.tcl", + "path_type": "hardlink", + "sha256": "63b7ccd36df6390fcbade2e92f4cb03df7e0c953c720fd1fc6b227af64dd0d51", + "sha256_in_prefix": "63b7ccd36df6390fcbade2e92f4cb03df7e0c953c720fd1fc6b227af64dd0d51", + "size_in_bytes": 1497 + }, + { + "_path": "lib/tk8.6/demos/icon.tcl", + "path_type": "hardlink", + "sha256": "d7e3d2e8a558d2aa58064f4eb39f4689566dd8fee87a79267be5e42b9ffdccb4", + "sha256_in_prefix": "d7e3d2e8a558d2aa58064f4eb39f4689566dd8fee87a79267be5e42b9ffdccb4", + "size_in_bytes": 2063 + }, + { + "_path": "lib/tk8.6/demos/image1.tcl", + "path_type": "hardlink", + "sha256": "26eccbb1a9fed9a5e25ec9aad29a1de7034577c61d93e17bd0fb07eaaa06c5fe", + "sha256_in_prefix": "26eccbb1a9fed9a5e25ec9aad29a1de7034577c61d93e17bd0fb07eaaa06c5fe", + "size_in_bytes": 1002 + }, + { + "_path": "lib/tk8.6/demos/image2.tcl", + "path_type": "hardlink", + "sha256": "428d9aa831e284841cfcc0b65e064fcf703092099c42ec246ea271829195a28a", + "sha256_in_prefix": "428d9aa831e284841cfcc0b65e064fcf703092099c42ec246ea271829195a28a", + "size_in_bytes": 3359 + }, + { + "_path": "lib/tk8.6/demos/images/earth.gif", + "path_type": "hardlink", + "sha256": "bf29c94949f125a04fee6bdf93ba8f358f26e9e39aa7a4977466834b3133fcb7", + "sha256_in_prefix": "bf29c94949f125a04fee6bdf93ba8f358f26e9e39aa7a4977466834b3133fcb7", + "size_in_bytes": 51559 + }, + { + "_path": "lib/tk8.6/demos/images/earthmenu.png", + "path_type": "hardlink", + "sha256": "9bf8d96016039d7fdb2ffc506743724636a70ed5925199aab64ca20820963bde", + "sha256_in_prefix": "9bf8d96016039d7fdb2ffc506743724636a70ed5925199aab64ca20820963bde", + "size_in_bytes": 8157 + }, + { + "_path": "lib/tk8.6/demos/images/earthris.gif", + "path_type": "hardlink", + "sha256": "c2da473e55d8317bd1f983638adb729bff1461de590d76f99d8b3430c71e0f6e", + "sha256_in_prefix": "c2da473e55d8317bd1f983638adb729bff1461de590d76f99d8b3430c71e0f6e", + "size_in_bytes": 6343 + }, + { + "_path": "lib/tk8.6/demos/images/flagdown.xbm", + "path_type": "hardlink", + "sha256": "13ea2a1169bae3a517804c7dcc2f106ac3b29b0ade5197d6546a9c8cf486e967", + "sha256_in_prefix": "13ea2a1169bae3a517804c7dcc2f106ac3b29b0ade5197d6546a9c8cf486e967", + "size_in_bytes": 1886 + }, + { + "_path": "lib/tk8.6/demos/images/flagup.xbm", + "path_type": "hardlink", + "sha256": "6e31de3423ec63534c36adcbf1c9872fab21c5c2999511505f7321fc794cb7ec", + "sha256_in_prefix": "6e31de3423ec63534c36adcbf1c9872fab21c5c2999511505f7321fc794cb7ec", + "size_in_bytes": 1880 + }, + { + "_path": "lib/tk8.6/demos/images/gray25.xbm", + "path_type": "hardlink", + "sha256": "a1a6cf0ca4d94fea1e7db4c7f6fd40a58b312e1de34ccbd582038defcb3027e2", + "sha256_in_prefix": "a1a6cf0ca4d94fea1e7db4c7f6fd40a58b312e1de34ccbd582038defcb3027e2", + "size_in_bytes": 275 + }, + { + "_path": "lib/tk8.6/demos/images/letters.xbm", + "path_type": "hardlink", + "sha256": "73c825a802db366beedc038bbe944f61f8bbe540bab8720cb568306e4cee5195", + "sha256_in_prefix": "73c825a802db366beedc038bbe944f61f8bbe540bab8720cb568306e4cee5195", + "size_in_bytes": 1883 + }, + { + "_path": "lib/tk8.6/demos/images/noletter.xbm", + "path_type": "hardlink", + "sha256": "741c936c628f6b0dd9295fec63f8d3baec6d529a1e9dcd7398680aaa284755dd", + "sha256_in_prefix": "741c936c628f6b0dd9295fec63f8d3baec6d529a1e9dcd7398680aaa284755dd", + "size_in_bytes": 1889 + }, + { + "_path": "lib/tk8.6/demos/images/ouster.png", + "path_type": "hardlink", + "sha256": "a2fe354dfcb09b9eeb488128f4ac0b498766faf4a8becf65bbcd779bdb9c4c8f", + "sha256_in_prefix": "a2fe354dfcb09b9eeb488128f4ac0b498766faf4a8becf65bbcd779bdb9c4c8f", + "size_in_bytes": 54257 + }, + { + "_path": "lib/tk8.6/demos/images/pattern.xbm", + "path_type": "hardlink", + "sha256": "8006c9cdbb7aab7e1c0b48289fff41437e3e730f9822fc8e72acb22ef6bc5808", + "sha256_in_prefix": "8006c9cdbb7aab7e1c0b48289fff41437e3e730f9822fc8e72acb22ef6bc5808", + "size_in_bytes": 272 + }, + { + "_path": "lib/tk8.6/demos/images/tcllogo.gif", + "path_type": "hardlink", + "sha256": "72f6b34d3c8f424ff0a290a793fcfbf34fd5630a916cd02e0a5dda0144b5957f", + "sha256_in_prefix": "72f6b34d3c8f424ff0a290a793fcfbf34fd5630a916cd02e0a5dda0144b5957f", + "size_in_bytes": 2341 + }, + { + "_path": "lib/tk8.6/demos/images/teapot.ppm", + "path_type": "hardlink", + "sha256": "786f29b88771e439187dd2e86ad4d255dd185e0c1ea3f8c37d21770fd1df253a", + "sha256_in_prefix": "786f29b88771e439187dd2e86ad4d255dd185e0c1ea3f8c37d21770fd1df253a", + "size_in_bytes": 196623 + }, + { + "_path": "lib/tk8.6/demos/items.tcl", + "path_type": "hardlink", + "sha256": "379a46bf92770c64376483a99782d3d89339780eaf2b00ab48050fe2886163ac", + "sha256_in_prefix": "379a46bf92770c64376483a99782d3d89339780eaf2b00ab48050fe2886163ac", + "size_in_bytes": 10495 + }, + { + "_path": "lib/tk8.6/demos/ixset", + "path_type": "hardlink", + "sha256": "907db1641dc6f475b05de9d9d85ba75e02a145735f441cdac24b575c7a4796fa", + "sha256_in_prefix": "907db1641dc6f475b05de9d9d85ba75e02a145735f441cdac24b575c7a4796fa", + "size_in_bytes": 8075 + }, + { + "_path": "lib/tk8.6/demos/knightstour.tcl", + "path_type": "hardlink", + "sha256": "7c1e5f21e8833b85947ab52ab1ebeb7ecfb8cfcd1122fcee57c3ad96fed8d8cd", + "sha256_in_prefix": "7c1e5f21e8833b85947ab52ab1ebeb7ecfb8cfcd1122fcee57c3ad96fed8d8cd", + "size_in_bytes": 9123 + }, + { + "_path": "lib/tk8.6/demos/label.tcl", + "path_type": "hardlink", + "sha256": "215b536c0704e0e189c28ebc12d45e8ba64d1936f4b97c56cad42e6c9a4e8693", + "sha256_in_prefix": "215b536c0704e0e189c28ebc12d45e8ba64d1936f4b97c56cad42e6c9a4e8693", + "size_in_bytes": 1379 + }, + { + "_path": "lib/tk8.6/demos/labelframe.tcl", + "path_type": "hardlink", + "sha256": "a964cd6526509801cd0873a63fe23fafd6d959136fd046133f480af2c6359b24", + "sha256_in_prefix": "a964cd6526509801cd0873a63fe23fafd6d959136fd046133f480af2c6359b24", + "size_in_bytes": 1847 + }, + { + "_path": "lib/tk8.6/demos/license.terms", + "path_type": "hardlink", + "sha256": "2cde822b93ca16ae535c954b7dfe658b4ad10df2a193628d1b358f1765e8b198", + "sha256_in_prefix": "2cde822b93ca16ae535c954b7dfe658b4ad10df2a193628d1b358f1765e8b198", + "size_in_bytes": 2267 + }, + { + "_path": "lib/tk8.6/demos/mclist.tcl", + "path_type": "hardlink", + "sha256": "0571c9baffe1595e9432dbb63bac05eecbb9b07a07c5cef0c3b448486bc3fd74", + "sha256_in_prefix": "0571c9baffe1595e9432dbb63bac05eecbb9b07a07c5cef0c3b448486bc3fd74", + "size_in_bytes": 4357 + }, + { + "_path": "lib/tk8.6/demos/menu.tcl", + "path_type": "hardlink", + "sha256": "ac4b93895375f857745f0f80dd31d01c164c6e0e29bd0dbc7979b6508ec04a77", + "sha256_in_prefix": "ac4b93895375f857745f0f80dd31d01c164c6e0e29bd0dbc7979b6508ec04a77", + "size_in_bytes": 7292 + }, + { + "_path": "lib/tk8.6/demos/menubu.tcl", + "path_type": "hardlink", + "sha256": "e72a50f22a82c69dd54ed83d098a7b346c0a963e02efabb06c521b72955cfd07", + "sha256_in_prefix": "e72a50f22a82c69dd54ed83d098a7b346c0a963e02efabb06c521b72955cfd07", + "size_in_bytes": 4255 + }, + { + "_path": "lib/tk8.6/demos/msgbox.tcl", + "path_type": "hardlink", + "sha256": "aff7a31e5da170fd478bc45febce70b075329e8902e5efb58141d975d4f7f3e5", + "sha256_in_prefix": "aff7a31e5da170fd478bc45febce70b075329e8902e5efb58141d975d4f7f3e5", + "size_in_bytes": 1998 + }, + { + "_path": "lib/tk8.6/demos/nl.msg", + "path_type": "hardlink", + "sha256": "c03318f95cfcebacda5a58c0b03703b93dd938050fe08d95a63a240188c733ab", + "sha256_in_prefix": "c03318f95cfcebacda5a58c0b03703b93dd938050fe08d95a63a240188c733ab", + "size_in_bytes": 6750 + }, + { + "_path": "lib/tk8.6/demos/paned1.tcl", + "path_type": "hardlink", + "sha256": "24c41806bd1554d9a7c4a2f498fff51234745fb185ebbfa7cd2d426daf0b2d1f", + "sha256_in_prefix": "24c41806bd1554d9a7c4a2f498fff51234745fb185ebbfa7cd2d426daf0b2d1f", + "size_in_bytes": 1130 + }, + { + "_path": "lib/tk8.6/demos/paned2.tcl", + "path_type": "hardlink", + "sha256": "676b7316e0b981caf3e124b83152152774cab6b6964859382123cc846fe12549", + "sha256_in_prefix": "676b7316e0b981caf3e124b83152152774cab6b6964859382123cc846fe12549", + "size_in_bytes": 2244 + }, + { + "_path": "lib/tk8.6/demos/pendulum.tcl", + "path_type": "hardlink", + "sha256": "b1e488b9d4a28daaa95698ea50a5563413789b9cadf4a0c4e173019ce08c20df", + "sha256_in_prefix": "b1e488b9d4a28daaa95698ea50a5563413789b9cadf4a0c4e173019ce08c20df", + "size_in_bytes": 7649 + }, + { + "_path": "lib/tk8.6/demos/plot.tcl", + "path_type": "hardlink", + "sha256": "401f948ad86ede3660a3a105126858e4836c2e57dce9cc77927c97482eaa116a", + "sha256_in_prefix": "401f948ad86ede3660a3a105126858e4836c2e57dce9cc77927c97482eaa116a", + "size_in_bytes": 2757 + }, + { + "_path": "lib/tk8.6/demos/puzzle.tcl", + "path_type": "hardlink", + "sha256": "73ad36d12af2abe01b8a41abd451e84f1c21f172a3dda2d58a981f2f6e10cb23", + "sha256_in_prefix": "73ad36d12af2abe01b8a41abd451e84f1c21f172a3dda2d58a981f2f6e10cb23", + "size_in_bytes": 2603 + }, + { + "_path": "lib/tk8.6/demos/radio.tcl", + "path_type": "hardlink", + "sha256": "1aceadaa575b06d7679862503da6cfc38ddc771b2132caece3dd22b85c8b658c", + "sha256_in_prefix": "1aceadaa575b06d7679862503da6cfc38ddc771b2132caece3dd22b85c8b658c", + "size_in_bytes": 2752 + }, + { + "_path": "lib/tk8.6/demos/rmt", + "path_type": "hardlink", + "sha256": "a15f26315aa45434731bb3a53a586bce3aaf5a040c13063549ea30533434e01f", + "sha256_in_prefix": "a15f26315aa45434731bb3a53a586bce3aaf5a040c13063549ea30533434e01f", + "size_in_bytes": 5319 + }, + { + "_path": "lib/tk8.6/demos/rolodex", + "path_type": "hardlink", + "sha256": "376898a6a9a6cc43ebf6974ba0ee4a196ce18c501ee330dbc16b76614d733b99", + "sha256_in_prefix": "376898a6a9a6cc43ebf6974ba0ee4a196ce18c501ee330dbc16b76614d733b99", + "size_in_bytes": 8303 + }, + { + "_path": "lib/tk8.6/demos/ruler.tcl", + "path_type": "hardlink", + "sha256": "0fe61eaaecb6311f44dff90bbc58a3d8fe8d8a4c5bb6ca142151cd4747312bb5", + "sha256_in_prefix": "0fe61eaaecb6311f44dff90bbc58a3d8fe8d8a4c5bb6ca142151cd4747312bb5", + "size_in_bytes": 5333 + }, + { + "_path": "lib/tk8.6/demos/sayings.tcl", + "path_type": "hardlink", + "sha256": "1c7c16c3cc8ddeb30272ff3598505eef8aaa6ebf774cd4d42262d9c503d5032a", + "sha256_in_prefix": "1c7c16c3cc8ddeb30272ff3598505eef8aaa6ebf774cd4d42262d9c503d5032a", + "size_in_bytes": 2273 + }, + { + "_path": "lib/tk8.6/demos/search.tcl", + "path_type": "hardlink", + "sha256": "7716ea5f9fcf0ff244012666654e92578d1679bf5dd762a439b9f9a5be21467f", + "sha256_in_prefix": "7716ea5f9fcf0ff244012666654e92578d1679bf5dd762a439b9f9a5be21467f", + "size_in_bytes": 4403 + }, + { + "_path": "lib/tk8.6/demos/spin.tcl", + "path_type": "hardlink", + "sha256": "55d8b117627ee3cee165e245a8f0229038c76f55646581d227ff7c22bef3f3d4", + "sha256_in_prefix": "55d8b117627ee3cee165e245a8f0229038c76f55646581d227ff7c22bef3f3d4", + "size_in_bytes": 1820 + }, + { + "_path": "lib/tk8.6/demos/states.tcl", + "path_type": "hardlink", + "sha256": "f1c50496d28520fa388ceaff6802444423e9c84f5af156653a493e61ae424f6e", + "sha256_in_prefix": "f1c50496d28520fa388ceaff6802444423e9c84f5af156653a493e61ae424f6e", + "size_in_bytes": 2048 + }, + { + "_path": "lib/tk8.6/demos/style.tcl", + "path_type": "hardlink", + "sha256": "41e80dd275b5a4e2c432a9991e82a1bb3ca028535ae5d187bb51dc36c0d0e660", + "sha256_in_prefix": "41e80dd275b5a4e2c432a9991e82a1bb3ca028535ae5d187bb51dc36c0d0e660", + "size_in_bytes": 6943 + }, + { + "_path": "lib/tk8.6/demos/tclIndex", + "path_type": "hardlink", + "sha256": "2d94047383ace46913d01609ebc643523d3dd688d0025b9f397777cbe1e2a595", + "sha256_in_prefix": "2d94047383ace46913d01609ebc643523d3dd688d0025b9f397777cbe1e2a595", + "size_in_bytes": 5298 + }, + { + "_path": "lib/tk8.6/demos/tcolor", + "path_type": "hardlink", + "sha256": "6b73d255fa8a2c5a9c94837365acd3ed3df6e51cdebd37a0b335494fc0039c99", + "sha256_in_prefix": "6b73d255fa8a2c5a9c94837365acd3ed3df6e51cdebd37a0b335494fc0039c99", + "size_in_bytes": 11253 + }, + { + "_path": "lib/tk8.6/demos/text.tcl", + "path_type": "hardlink", + "sha256": "f305492b662144c9ab1290aba55f89d7a141ebf2095d4b44b03dcddedc0be646", + "sha256_in_prefix": "f305492b662144c9ab1290aba55f89d7a141ebf2095d4b44b03dcddedc0be646", + "size_in_bytes": 4291 + }, + { + "_path": "lib/tk8.6/demos/textpeer.tcl", + "path_type": "hardlink", + "sha256": "1b4f5c83a97cdd234d28784e109e0a4c3d73778a2e082599e23c239807513d0f", + "sha256_in_prefix": "1b4f5c83a97cdd234d28784e109e0a4c3d73778a2e082599e23c239807513d0f", + "size_in_bytes": 2188 + }, + { + "_path": "lib/tk8.6/demos/timer", + "path_type": "hardlink", + "sha256": "a4800affbe0ca9684cbba731e3dabbb823c0347506d62bdab31e4ac3e9f6d42a", + "sha256_in_prefix": "a4800affbe0ca9684cbba731e3dabbb823c0347506d62bdab31e4ac3e9f6d42a", + "size_in_bytes": 1095 + }, + { + "_path": "lib/tk8.6/demos/toolbar.tcl", + "path_type": "hardlink", + "sha256": "ba2f0dbe72afee7ee9e3354b2e5f4e1e8fa412bd0d46ad746a19276d74d7171e", + "sha256_in_prefix": "ba2f0dbe72afee7ee9e3354b2e5f4e1e8fa412bd0d46ad746a19276d74d7171e", + "size_in_bytes": 3272 + }, + { + "_path": "lib/tk8.6/demos/tree.tcl", + "path_type": "hardlink", + "sha256": "24c847bed65dfb581779e9cee5ce50d692aa4705e0243a19289b5d9000cb9493", + "sha256_in_prefix": "24c847bed65dfb581779e9cee5ce50d692aa4705e0243a19289b5d9000cb9493", + "size_in_bytes": 3178 + }, + { + "_path": "lib/tk8.6/demos/ttkbut.tcl", + "path_type": "hardlink", + "sha256": "e7f6a0df2d4b101f125514b43d117b12b061746668c667f431d1552947485c3d", + "sha256_in_prefix": "e7f6a0df2d4b101f125514b43d117b12b061746668c667f431d1552947485c3d", + "size_in_bytes": 3405 + }, + { + "_path": "lib/tk8.6/demos/ttkmenu.tcl", + "path_type": "hardlink", + "sha256": "064c0c5a812384deb8751898da757ca6696daa03c14cd3dcb303273e3879beec", + "sha256_in_prefix": "064c0c5a812384deb8751898da757ca6696daa03c14cd3dcb303273e3879beec", + "size_in_bytes": 2391 + }, + { + "_path": "lib/tk8.6/demos/ttknote.tcl", + "path_type": "hardlink", + "sha256": "f6f109a791e9ea4a279c0d9c980ae1cee36707c41e3eafac99c9d9e5fedddae9", + "sha256_in_prefix": "f6f109a791e9ea4a279c0d9c980ae1cee36707c41e3eafac99c9d9e5fedddae9", + "size_in_bytes": 2317 + }, + { + "_path": "lib/tk8.6/demos/ttkpane.tcl", + "path_type": "hardlink", + "sha256": "06539aac034cde1ba42acc1401fd615f521c2874306ac54869e5fe1d71be92c9", + "sha256_in_prefix": "06539aac034cde1ba42acc1401fd615f521c2874306ac54869e5fe1d71be92c9", + "size_in_bytes": 4177 + }, + { + "_path": "lib/tk8.6/demos/ttkprogress.tcl", + "path_type": "hardlink", + "sha256": "fd687aece96d25e14abae0249519c9a88b1ca8d9d1b8c79be3975731669d9c11", + "sha256_in_prefix": "fd687aece96d25e14abae0249519c9a88b1ca8d9d1b8c79be3975731669d9c11", + "size_in_bytes": 1536 + }, + { + "_path": "lib/tk8.6/demos/ttkscale.tcl", + "path_type": "hardlink", + "sha256": "e86d081331febfe401a13a44c68ba82b582b2e66b6e9366dd58025ddac9a1a26", + "sha256_in_prefix": "e86d081331febfe401a13a44c68ba82b582b2e66b6e9366dd58025ddac9a1a26", + "size_in_bytes": 1420 + }, + { + "_path": "lib/tk8.6/demos/twind.tcl", + "path_type": "hardlink", + "sha256": "b2ae8f53b0ef52eefa6a101ada7c22196716a38f75322d44ad44f869c0c7ed2f", + "sha256_in_prefix": "b2ae8f53b0ef52eefa6a101ada7c22196716a38f75322d44ad44f869c0c7ed2f", + "size_in_bytes": 11654 + }, + { + "_path": "lib/tk8.6/demos/unicodeout.tcl", + "path_type": "hardlink", + "sha256": "9cc51068807a95f87747e2751ab3edaf7d0958feabce4184493e486eb303c263", + "sha256_in_prefix": "9cc51068807a95f87747e2751ab3edaf7d0958feabce4184493e486eb303c263", + "size_in_bytes": 4706 + }, + { + "_path": "lib/tk8.6/demos/vscale.tcl", + "path_type": "hardlink", + "sha256": "550a3d317e78263a0933f5dbdba2e82af4e930dc502dc4df33c684f66fc84a02", + "sha256_in_prefix": "550a3d317e78263a0933f5dbdba2e82af4e930dc502dc4df33c684f66fc84a02", + "size_in_bytes": 1477 + }, + { + "_path": "lib/tk8.6/demos/widget", + "path_type": "hardlink", + "sha256": "032901bb6086f51aed6a89cbad910f6787cd55ec8cbbd03f37d0ba217adf9bf9", + "sha256_in_prefix": "032901bb6086f51aed6a89cbad910f6787cd55ec8cbbd03f37d0ba217adf9bf9", + "size_in_bytes": 24064 + }, + { + "_path": "lib/tk8.6/dialog.tcl", + "path_type": "hardlink", + "sha256": "d1b1dcca4628f61ea152a0fa6820175f613bc3d6e92b739d013281db486e625d", + "sha256_in_prefix": "d1b1dcca4628f61ea152a0fa6820175f613bc3d6e92b739d013281db486e625d", + "size_in_bytes": 5813 + }, + { + "_path": "lib/tk8.6/entry.tcl", + "path_type": "hardlink", + "sha256": "92fb2fe5b22cc697f9396d3681cf3d31c03598d7d8d1858b4b7ab976e9c80a5c", + "sha256_in_prefix": "92fb2fe5b22cc697f9396d3681cf3d31c03598d7d8d1858b4b7ab976e9c80a5c", + "size_in_bytes": 18243 + }, + { + "_path": "lib/tk8.6/focus.tcl", + "path_type": "hardlink", + "sha256": "40d4e101a64b75361f763479b01207ae71535337e79ce6e162265842f6471eed", + "sha256_in_prefix": "40d4e101a64b75361f763479b01207ae71535337e79ce6e162265842f6471eed", + "size_in_bytes": 4857 + }, + { + "_path": "lib/tk8.6/fontchooser.tcl", + "path_type": "hardlink", + "sha256": "8aa7cf078c26f396e1a421a03d0f3d05731e413fd448750e192dabfd3aab73c5", + "sha256_in_prefix": "8aa7cf078c26f396e1a421a03d0f3d05731e413fd448750e192dabfd3aab73c5", + "size_in_bytes": 17777 + }, + { + "_path": "lib/tk8.6/iconlist.tcl", + "path_type": "hardlink", + "sha256": "0b087e205260d5e254595a418ba2f09dbb55e9679fa0e8cfa9947a7921437efc", + "sha256_in_prefix": "0b087e205260d5e254595a418ba2f09dbb55e9679fa0e8cfa9947a7921437efc", + "size_in_bytes": 16741 + }, + { + "_path": "lib/tk8.6/icons.tcl", + "path_type": "hardlink", + "sha256": "4cab80ace4104a4169c9bd1fdb24d697889b984b91a290b69a481912c38a9fd4", + "sha256_in_prefix": "4cab80ace4104a4169c9bd1fdb24d697889b984b91a290b69a481912c38a9fd4", + "size_in_bytes": 10884 + }, + { + "_path": "lib/tk8.6/images/README", + "path_type": "hardlink", + "sha256": "2695adff8e900c31b4d86414d22b8a49d6dd865ca3dd99678fa355cdc46093a8", + "sha256_in_prefix": "2695adff8e900c31b4d86414d22b8a49d6dd865ca3dd99678fa355cdc46093a8", + "size_in_bytes": 322 + }, + { + "_path": "lib/tk8.6/images/logo.eps", + "path_type": "hardlink", + "sha256": "f3e77fd94198ec4783109355536638e9162f9c579475383074d024037d1797d3", + "sha256_in_prefix": "f3e77fd94198ec4783109355536638e9162f9c579475383074d024037d1797d3", + "size_in_bytes": 32900 + }, + { + "_path": "lib/tk8.6/images/logo100.gif", + "path_type": "hardlink", + "sha256": "72f6b34d3c8f424ff0a290a793fcfbf34fd5630a916cd02e0a5dda0144b5957f", + "sha256_in_prefix": "72f6b34d3c8f424ff0a290a793fcfbf34fd5630a916cd02e0a5dda0144b5957f", + "size_in_bytes": 2341 + }, + { + "_path": "lib/tk8.6/images/logo64.gif", + "path_type": "hardlink", + "sha256": "138c240382304f350383b02ed56c69103a9431c0544eb1ec5dcd7dec7a555dd9", + "sha256_in_prefix": "138c240382304f350383b02ed56c69103a9431c0544eb1ec5dcd7dec7a555dd9", + "size_in_bytes": 1670 + }, + { + "_path": "lib/tk8.6/images/logoLarge.gif", + "path_type": "hardlink", + "sha256": "0f404764d07a6ae2ef9e1e0e8eaac278b7d488d61cf1c084146f2f33b485f2ed", + "sha256_in_prefix": "0f404764d07a6ae2ef9e1e0e8eaac278b7d488d61cf1c084146f2f33b485f2ed", + "size_in_bytes": 11000 + }, + { + "_path": "lib/tk8.6/images/logoMed.gif", + "path_type": "hardlink", + "sha256": "4d0bd3228ab4cc3e5159f4337be969ec7b7334e265c99b7633e3daf3c3fcfb62", + "sha256_in_prefix": "4d0bd3228ab4cc3e5159f4337be969ec7b7334e265c99b7633e3daf3c3fcfb62", + "size_in_bytes": 3889 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo.eps", + "path_type": "hardlink", + "sha256": "2944ebc4af1894951bf9f1250f4e6edf811c2183745950ea9a8a926715882cf7", + "sha256_in_prefix": "2944ebc4af1894951bf9f1250f4e6edf811c2183745950ea9a8a926715882cf7", + "size_in_bytes": 27809 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo100.gif", + "path_type": "hardlink", + "sha256": "bcc0e6458249433e8cba6c58122b7c0efa9557cbc8fb5f9392eed5d2579fc70b", + "sha256_in_prefix": "bcc0e6458249433e8cba6c58122b7c0efa9557cbc8fb5f9392eed5d2579fc70b", + "size_in_bytes": 1615 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo150.gif", + "path_type": "hardlink", + "sha256": "5fc25c30aee76477f1c4e922931cc806823df059525583ff5705705d9e913c1c", + "sha256_in_prefix": "5fc25c30aee76477f1c4e922931cc806823df059525583ff5705705d9e913c1c", + "size_in_bytes": 2489 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo175.gif", + "path_type": "hardlink", + "sha256": "62866e95501c436b329a15432355743c6efd64a37cfb65bcece465ab63ecf240", + "sha256_in_prefix": "62866e95501c436b329a15432355743c6efd64a37cfb65bcece465ab63ecf240", + "size_in_bytes": 2981 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo200.gif", + "path_type": "hardlink", + "sha256": "bad9116386343f4a4c394bdb87146e49f674f687d52bb847bd9e8198fda382cc", + "sha256_in_prefix": "bad9116386343f4a4c394bdb87146e49f674f687d52bb847bd9e8198fda382cc", + "size_in_bytes": 3491 + }, + { + "_path": "lib/tk8.6/images/pwrdLogo75.gif", + "path_type": "hardlink", + "sha256": "462a8ff8fd051a8100e8c6c086f497e4056ace5b20b44791f4aab964b010a448", + "sha256_in_prefix": "462a8ff8fd051a8100e8c6c086f497e4056ace5b20b44791f4aab964b010a448", + "size_in_bytes": 1171 + }, + { + "_path": "lib/tk8.6/images/tai-ku.gif", + "path_type": "hardlink", + "sha256": "e538f8f4934ca6e1ce29416d292171f28e67da6c72ed9d236ba42f37445ea41e", + "sha256_in_prefix": "e538f8f4934ca6e1ce29416d292171f28e67da6c72ed9d236ba42f37445ea41e", + "size_in_bytes": 5473 + }, + { + "_path": "lib/tk8.6/listbox.tcl", + "path_type": "hardlink", + "sha256": "fdfd4cf3102d83bad3556d0e0086b5f320f74484babf90421cf526fd8b9fbeb0", + "sha256_in_prefix": "fdfd4cf3102d83bad3556d0e0086b5f320f74484babf90421cf526fd8b9fbeb0", + "size_in_bytes": 14695 + }, + { + "_path": "lib/tk8.6/megawidget.tcl", + "path_type": "hardlink", + "sha256": "6554310415438f47722a6d789aa8a0ffccf4c5f699412c2d69c32cffe6d19cf4", + "sha256_in_prefix": "6554310415438f47722a6d789aa8a0ffccf4c5f699412c2d69c32cffe6d19cf4", + "size_in_bytes": 9565 + }, + { + "_path": "lib/tk8.6/menu.tcl", + "path_type": "hardlink", + "sha256": "39e93a2bd75b9156235f3271ea02fd7cac82b542ae56df733cd7bd62a2c4207e", + "sha256_in_prefix": "39e93a2bd75b9156235f3271ea02fd7cac82b542ae56df733cd7bd62a2c4207e", + "size_in_bytes": 38828 + }, + { + "_path": "lib/tk8.6/mkpsenc.tcl", + "path_type": "hardlink", + "sha256": "0ac9d11d4046ef4d8e6d219f6941bf69c6ae448c6a1c2f7fc382f84b5786f660", + "sha256_in_prefix": "0ac9d11d4046ef4d8e6d219f6941bf69c6ae448c6a1c2f7fc382f84b5786f660", + "size_in_bytes": 29352 + }, + { + "_path": "lib/tk8.6/msgbox.tcl", + "path_type": "hardlink", + "sha256": "9a6281fb0a1927d7b81fce9ebfc95235bd88df114ad8a87afea8ea6b0953338a", + "sha256_in_prefix": "9a6281fb0a1927d7b81fce9ebfc95235bd88df114ad8a87afea8ea6b0953338a", + "size_in_bytes": 16359 + }, + { + "_path": "lib/tk8.6/msgs/cs.msg", + "path_type": "hardlink", + "sha256": "d1b0fed0bea51b3faf08d8634034c7388be7148f9b807460b7d185706db8416f", + "sha256_in_prefix": "d1b0fed0bea51b3faf08d8634034c7388be7148f9b807460b7d185706db8416f", + "size_in_bytes": 4158 + }, + { + "_path": "lib/tk8.6/msgs/da.msg", + "path_type": "hardlink", + "sha256": "85e6cee6001927376725f91eaa55d17b3d9e38643e17755a42c05fe491c63bde", + "sha256_in_prefix": "85e6cee6001927376725f91eaa55d17b3d9e38643e17755a42c05fe491c63bde", + "size_in_bytes": 3909 + }, + { + "_path": "lib/tk8.6/msgs/de.msg", + "path_type": "hardlink", + "sha256": "06dd7572626df5cb0a8d3affbac9bb74cb12469076836d66fd19ae5b5fab42c7", + "sha256_in_prefix": "06dd7572626df5cb0a8d3affbac9bb74cb12469076836d66fd19ae5b5fab42c7", + "size_in_bytes": 4823 + }, + { + "_path": "lib/tk8.6/msgs/el.msg", + "path_type": "hardlink", + "sha256": "1d56d0a7c07d34bb8165cba47fa49351b8bc5a9db244290b9601c5885d16155c", + "sha256_in_prefix": "1d56d0a7c07d34bb8165cba47fa49351b8bc5a9db244290b9601c5885d16155c", + "size_in_bytes": 8698 + }, + { + "_path": "lib/tk8.6/msgs/en.msg", + "path_type": "hardlink", + "sha256": "673c76a48ada09a154cb038534bf90e3b9c0ba5fd6b1619db33507de65553362", + "sha256_in_prefix": "673c76a48ada09a154cb038534bf90e3b9c0ba5fd6b1619db33507de65553362", + "size_in_bytes": 3286 + }, + { + "_path": "lib/tk8.6/msgs/en_gb.msg", + "path_type": "hardlink", + "sha256": "fb93d455a9d9cf3f822c968dfb273ed931e433f2494d71d6b5f8d83dde7eacc2", + "sha256_in_prefix": "fb93d455a9d9cf3f822c968dfb273ed931e433f2494d71d6b5f8d83dde7eacc2", + "size_in_bytes": 63 + }, + { + "_path": "lib/tk8.6/msgs/eo.msg", + "path_type": "hardlink", + "sha256": "cb24ba95986671776a83dcf0256263809071d33edd9c06383b19f4c36f820933", + "sha256_in_prefix": "cb24ba95986671776a83dcf0256263809071d33edd9c06383b19f4c36f820933", + "size_in_bytes": 3960 + }, + { + "_path": "lib/tk8.6/msgs/es.msg", + "path_type": "hardlink", + "sha256": "91dc4718dc8566c36e4bcd0c292c01f467ca7661eff601b870abcdfe4a94ecbb", + "sha256_in_prefix": "91dc4718dc8566c36e4bcd0c292c01f467ca7661eff601b870abcdfe4a94ecbb", + "size_in_bytes": 3948 + }, + { + "_path": "lib/tk8.6/msgs/fi.msg", + "path_type": "hardlink", + "sha256": "f4a2c4da7a6779cb508b0abbc3df3c94acf7719b7b35edf555285adb8f8fcc5b", + "sha256_in_prefix": "f4a2c4da7a6779cb508b0abbc3df3c94acf7719b7b35edf555285adb8f8fcc5b", + "size_in_bytes": 4604 + }, + { + "_path": "lib/tk8.6/msgs/fr.msg", + "path_type": "hardlink", + "sha256": "0a8bbb4d1fd87bf7a90ddfa50f4724994c9ce78d1f3e91cf40c1177db7941dc5", + "sha256_in_prefix": "0a8bbb4d1fd87bf7a90ddfa50f4724994c9ce78d1f3e91cf40c1177db7941dc5", + "size_in_bytes": 3805 + }, + { + "_path": "lib/tk8.6/msgs/hu.msg", + "path_type": "hardlink", + "sha256": "c8134ead129e44e9c5043e1dad81a6a900f0de71db3468e2603840038687f1d8", + "sha256_in_prefix": "c8134ead129e44e9c5043e1dad81a6a900f0de71db3468e2603840038687f1d8", + "size_in_bytes": 4600 + }, + { + "_path": "lib/tk8.6/msgs/it.msg", + "path_type": "hardlink", + "sha256": "9f83dd0309ed621100f3187ffcdae50b75f5973bbe74af550a78ef0010495ded", + "sha256_in_prefix": "9f83dd0309ed621100f3187ffcdae50b75f5973bbe74af550a78ef0010495ded", + "size_in_bytes": 3692 + }, + { + "_path": "lib/tk8.6/msgs/nl.msg", + "path_type": "hardlink", + "sha256": "d3d07aad792c0e83f4704b304931ea549d12cbb3d99a573d9815e954a5710707", + "sha256_in_prefix": "d3d07aad792c0e83f4704b304931ea549d12cbb3d99a573d9815e954a5710707", + "size_in_bytes": 4466 + }, + { + "_path": "lib/tk8.6/msgs/pl.msg", + "path_type": "hardlink", + "sha256": "1993b4ec2dc009d2e6ca185d0bd565d3f33a4efa79baca39e4f97f574d63f305", + "sha256_in_prefix": "1993b4ec2dc009d2e6ca185d0bd565d3f33a4efa79baca39e4f97f574d63f305", + "size_in_bytes": 4841 + }, + { + "_path": "lib/tk8.6/msgs/pt.msg", + "path_type": "hardlink", + "sha256": "ad0e466131d3789de321d9d0588e19e4647ba82ede41eee6ebef464786f8bdbe", + "sha256_in_prefix": "ad0e466131d3789de321d9d0588e19e4647ba82ede41eee6ebef464786f8bdbe", + "size_in_bytes": 3913 + }, + { + "_path": "lib/tk8.6/msgs/ru.msg", + "path_type": "hardlink", + "sha256": "06190bf2462369f6ad4ccb8dee5f659f84856ceccf2806dddf9511e015390c23", + "sha256_in_prefix": "06190bf2462369f6ad4ccb8dee5f659f84856ceccf2806dddf9511e015390c23", + "size_in_bytes": 8527 + }, + { + "_path": "lib/tk8.6/msgs/sv.msg", + "path_type": "hardlink", + "sha256": "b76ebfa21bc1e937a04a04e5122be64b5cdee1f47c7058b71d8b923d70c3b17b", + "sha256_in_prefix": "b76ebfa21bc1e937a04a04e5122be64b5cdee1f47c7058b71d8b923d70c3b17b", + "size_in_bytes": 3832 + }, + { + "_path": "lib/tk8.6/msgs/zh_cn.msg", + "path_type": "hardlink", + "sha256": "4d5b3207b5a40729a17a29dab3cf7ee63e53f9c07dd0594abf0af83a2a01a178", + "sha256_in_prefix": "4d5b3207b5a40729a17a29dab3cf7ee63e53f9c07dd0594abf0af83a2a01a178", + "size_in_bytes": 4856 + }, + { + "_path": "lib/tk8.6/obsolete.tcl", + "path_type": "hardlink", + "sha256": "f6929a5e0d18bc4c6666206c63ac4aaa66edc4b9f456dfc083300cfa95a44bcd", + "sha256_in_prefix": "f6929a5e0d18bc4c6666206c63ac4aaa66edc4b9f456dfc083300cfa95a44bcd", + "size_in_bytes": 5594 + }, + { + "_path": "lib/tk8.6/optMenu.tcl", + "path_type": "hardlink", + "sha256": "76dbdbf9216678d48d1640f8fd1e278e7140482e1cac7680127a9a425cc61dee", + "sha256_in_prefix": "76dbdbf9216678d48d1640f8fd1e278e7140482e1cac7680127a9a425cc61dee", + "size_in_bytes": 1586 + }, + { + "_path": "lib/tk8.6/palette.tcl", + "path_type": "hardlink", + "sha256": "60b8579368bb3063f16d25f007385111e0ef8d97bb296b03656dc176e351e3ca", + "sha256_in_prefix": "60b8579368bb3063f16d25f007385111e0ef8d97bb296b03656dc176e351e3ca", + "size_in_bytes": 8174 + }, + { + "_path": "lib/tk8.6/panedwindow.tcl", + "path_type": "hardlink", + "sha256": "4adf738b17691489c71c4b9d9a64b12961ada8667b81856f7adbc61dffeadf29", + "sha256_in_prefix": "4adf738b17691489c71c4b9d9a64b12961ada8667b81856f7adbc61dffeadf29", + "size_in_bytes": 5176 + }, + { + "_path": "lib/tk8.6/pkgIndex.tcl", + "path_type": "hardlink", + "sha256": "0967e3885917164ae0777d00f496e08787cf8234a066e72dba54ecde40beda93", + "sha256_in_prefix": "0967e3885917164ae0777d00f496e08787cf8234a066e72dba54ecde40beda93", + "size_in_bytes": 150 + }, + { + "_path": "lib/tk8.6/safetk.tcl", + "path_type": "hardlink", + "sha256": "ddb0cd59c68fc0ac219900a04df0ccb576440dd8812c41bca20b974580860892", + "sha256_in_prefix": "ddb0cd59c68fc0ac219900a04df0ccb576440dd8812c41bca20b974580860892", + "size_in_bytes": 7370 + }, + { + "_path": "lib/tk8.6/scale.tcl", + "path_type": "hardlink", + "sha256": "423546933269faec913001f2bce30bbdbce3927dc9dd96fe74813e7ffb27cfb5", + "sha256_in_prefix": "423546933269faec913001f2bce30bbdbce3927dc9dd96fe74813e7ffb27cfb5", + "size_in_bytes": 8386 + }, + { + "_path": "lib/tk8.6/scrlbar.tcl", + "path_type": "hardlink", + "sha256": "189e7ee4b67861001c714a55880db34acf7d626a816e18b04b232af9e6e33e81", + "sha256_in_prefix": "189e7ee4b67861001c714a55880db34acf7d626a816e18b04b232af9e6e33e81", + "size_in_bytes": 12732 + }, + { + "_path": "lib/tk8.6/spinbox.tcl", + "path_type": "hardlink", + "sha256": "a804c83029e04e6bd34d335260f388890d7657deb544173858bd05018d73ab01", + "sha256_in_prefix": "a804c83029e04e6bd34d335260f388890d7657deb544173858bd05018d73ab01", + "size_in_bytes": 15949 + }, + { + "_path": "lib/tk8.6/tclIndex", + "path_type": "hardlink", + "sha256": "8e8ececfd6046fe413f37a91933eea086e31959b3fbeb127afdd05cd9141be9a", + "sha256_in_prefix": "8e8ececfd6046fe413f37a91933eea086e31959b3fbeb127afdd05cd9141be9a", + "size_in_bytes": 20270 + }, + { + "_path": "lib/tk8.6/tearoff.tcl", + "path_type": "hardlink", + "sha256": "7930c8781d6438c11e3a1f0f3d3c1d052e924bdfb7fde7fc17adfab9ce3e4102", + "sha256_in_prefix": "7930c8781d6438c11e3a1f0f3d3c1d052e924bdfb7fde7fc17adfab9ce3e4102", + "size_in_bytes": 4468 + }, + { + "_path": "lib/tk8.6/text.tcl", + "path_type": "hardlink", + "sha256": "fd12bca3c7dcedf3fc6640902af1c9f48bc5df27c9153edaec15413f1581e4a9", + "sha256_in_prefix": "fd12bca3c7dcedf3fc6640902af1c9f48bc5df27c9153edaec15413f1581e4a9", + "size_in_bytes": 33941 + }, + { + "_path": "lib/tk8.6/tk.tcl", + "path_type": "hardlink", + "sha256": "779ce7099675d1fcdaa8a53df58cf5b2da6d5f03cdbf7a8c318860bd01a6e46f", + "sha256_in_prefix": "779ce7099675d1fcdaa8a53df58cf5b2da6d5f03cdbf7a8c318860bd01a6e46f", + "size_in_bytes": 23614 + }, + { + "_path": "lib/tk8.6/tkAppInit.c", + "path_type": "hardlink", + "sha256": "d9d98bc99d99d0a9883ab5054ded519ab7fe471e0d1d2460a5437f235ac8c951", + "sha256_in_prefix": "d9d98bc99d99d0a9883ab5054ded519ab7fe471e0d1d2460a5437f235ac8c951", + "size_in_bytes": 4615 + }, + { + "_path": "lib/tk8.6/tkfbox.tcl", + "path_type": "hardlink", + "sha256": "b581f15230410bf8d8c6bdfa369a62670e89b5562a2217156b193b3ce4672153", + "sha256_in_prefix": "b581f15230410bf8d8c6bdfa369a62670e89b5562a2217156b193b3ce4672153", + "size_in_bytes": 38365 + }, + { + "_path": "lib/tk8.6/ttk/altTheme.tcl", + "path_type": "hardlink", + "sha256": "92b8be9d8934850b6d240b970603b0ad7c6dd4a45134545694fb52966d742861", + "sha256_in_prefix": "92b8be9d8934850b6d240b970603b0ad7c6dd4a45134545694fb52966d742861", + "size_in_bytes": 3604 + }, + { + "_path": "lib/tk8.6/ttk/aquaTheme.tcl", + "path_type": "hardlink", + "sha256": "bc31694396ecf98a6040d328868a483c1f677096406b50ea89d5b2f4258288d6", + "sha256_in_prefix": "bc31694396ecf98a6040d328868a483c1f677096406b50ea89d5b2f4258288d6", + "size_in_bytes": 3719 + }, + { + "_path": "lib/tk8.6/ttk/button.tcl", + "path_type": "hardlink", + "sha256": "684ed40a9609ca275ce6f3e547fbf2980e3c040faddaf0fd39b7cbd7d5987366", + "sha256_in_prefix": "684ed40a9609ca275ce6f3e547fbf2980e3c040faddaf0fd39b7cbd7d5987366", + "size_in_bytes": 2931 + }, + { + "_path": "lib/tk8.6/ttk/clamTheme.tcl", + "path_type": "hardlink", + "sha256": "19d49ade0fb873a86f80c569fbb17e2d667a6292045563fe1cf1449cd1b68d61", + "sha256_in_prefix": "19d49ade0fb873a86f80c569fbb17e2d667a6292045563fe1cf1449cd1b68d61", + "size_in_bytes": 4662 + }, + { + "_path": "lib/tk8.6/ttk/classicTheme.tcl", + "path_type": "hardlink", + "sha256": "c7b1f40d77820fbaf2195f2bb3f334b38fec653fe47653f9e30a01ad4ca63ba5", + "sha256_in_prefix": "c7b1f40d77820fbaf2195f2bb3f334b38fec653fe47653f9e30a01ad4ca63ba5", + "size_in_bytes": 3749 + }, + { + "_path": "lib/tk8.6/ttk/combobox.tcl", + "path_type": "hardlink", + "sha256": "ec585de283837d1f5992f82d632acaad2aa08b2ff19f0bdb19a2e5d3626ee177", + "sha256_in_prefix": "ec585de283837d1f5992f82d632acaad2aa08b2ff19f0bdb19a2e5d3626ee177", + "size_in_bytes": 12270 + }, + { + "_path": "lib/tk8.6/ttk/cursors.tcl", + "path_type": "hardlink", + "sha256": "c1db93eaf482bee1bf57cb423f28a8c6770ced9b37ebbb8c9fc86d61215fe8e8", + "sha256_in_prefix": "c1db93eaf482bee1bf57cb423f28a8c6770ced9b37ebbb8c9fc86d61215fe8e8", + "size_in_bytes": 4469 + }, + { + "_path": "lib/tk8.6/ttk/defaults.tcl", + "path_type": "hardlink", + "sha256": "925d8e7249e10cb9e3ae5a89fdddd28425c722d218715f37dbac13e933bd019f", + "sha256_in_prefix": "925d8e7249e10cb9e3ae5a89fdddd28425c722d218715f37dbac13e933bd019f", + "size_in_bytes": 4410 + }, + { + "_path": "lib/tk8.6/ttk/entry.tcl", + "path_type": "hardlink", + "sha256": "9c341735e179279766240dc89b83b6a9ebac60890065251fe5cf438f8b14d937", + "sha256_in_prefix": "9c341735e179279766240dc89b83b6a9ebac60890065251fe5cf438f8b14d937", + "size_in_bytes": 17365 + }, + { + "_path": "lib/tk8.6/ttk/fonts.tcl", + "path_type": "hardlink", + "sha256": "1f2d2965b2c72ae953c0829a227577ada8959d24502638b3186aa840b678cc3a", + "sha256_in_prefix": "1f2d2965b2c72ae953c0829a227577ada8959d24502638b3186aa840b678cc3a", + "size_in_bytes": 5485 + }, + { + "_path": "lib/tk8.6/ttk/menubutton.tcl", + "path_type": "hardlink", + "sha256": "a16dfb1eaf77b05a0ef92b4cc7d00f559fb6cf0b2f735c3afac50303c524a081", + "sha256_in_prefix": "a16dfb1eaf77b05a0ef92b4cc7d00f559fb6cf0b2f735c3afac50303c524a081", + "size_in_bytes": 6175 + }, + { + "_path": "lib/tk8.6/ttk/notebook.tcl", + "path_type": "hardlink", + "sha256": "8bef93353a7134434dc780eea77b52ef6dc853a193e8d81a132d0e24ed93234b", + "sha256_in_prefix": "8bef93353a7134434dc780eea77b52ef6dc853a193e8d81a132d0e24ed93234b", + "size_in_bytes": 5662 + }, + { + "_path": "lib/tk8.6/ttk/panedwindow.tcl", + "path_type": "hardlink", + "sha256": "e650b75e150678a69d8c05e7c915ed75db30716f40828ad75d19cd588fd90fe3", + "sha256_in_prefix": "e650b75e150678a69d8c05e7c915ed75db30716f40828ad75d19cd588fd90fe3", + "size_in_bytes": 2183 + }, + { + "_path": "lib/tk8.6/ttk/progress.tcl", + "path_type": "hardlink", + "sha256": "a9c34f595e547ce94ee65e27c415195d2b210653a9ffcfb39559c5e0fa9c06f8", + "sha256_in_prefix": "a9c34f595e547ce94ee65e27c415195d2b210653a9ffcfb39559c5e0fa9c06f8", + "size_in_bytes": 1089 + }, + { + "_path": "lib/tk8.6/ttk/scale.tcl", + "path_type": "hardlink", + "sha256": "6161c40bf5d6cfe9c836aab2370efc951bc3e14bc17dd9477455b86b5252d696", + "sha256_in_prefix": "6161c40bf5d6cfe9c836aab2370efc951bc3e14bc17dd9477455b86b5252d696", + "size_in_bytes": 2693 + }, + { + "_path": "lib/tk8.6/ttk/scrollbar.tcl", + "path_type": "hardlink", + "sha256": "ee5261fe0fc03e54f417abb032e5289185f8698d60ae74db69032fedeb2d12a9", + "sha256_in_prefix": "ee5261fe0fc03e54f417abb032e5289185f8698d60ae74db69032fedeb2d12a9", + "size_in_bytes": 3159 + }, + { + "_path": "lib/tk8.6/ttk/sizegrip.tcl", + "path_type": "hardlink", + "sha256": "0b3818df7cf0d6ff17b9c5889ab73083e67729c3a0d6b8fe0c06300fb6d2dc3e", + "sha256_in_prefix": "0b3818df7cf0d6ff17b9c5889ab73083e67729c3a0d6b8fe0c06300fb6d2dc3e", + "size_in_bytes": 2401 + }, + { + "_path": "lib/tk8.6/ttk/spinbox.tcl", + "path_type": "hardlink", + "sha256": "5132e39112916486c49018c1bffba70f30df607b103e22ae5d43c71dabe8cb40", + "sha256_in_prefix": "5132e39112916486c49018c1bffba70f30df607b103e22ae5d43c71dabe8cb40", + "size_in_bytes": 4811 + }, + { + "_path": "lib/tk8.6/ttk/treeview.tcl", + "path_type": "hardlink", + "sha256": "42fcb70306b8ad483fa2649d7c9b13891b2b841e26d294f53da322da488c6254", + "sha256_in_prefix": "42fcb70306b8ad483fa2649d7c9b13891b2b841e26d294f53da322da488c6254", + "size_in_bytes": 9797 + }, + { + "_path": "lib/tk8.6/ttk/ttk.tcl", + "path_type": "hardlink", + "sha256": "2d5892078ea331e7f967f46ab510f13e890c9ee185d597d9fb3bc4c29e400ecf", + "sha256_in_prefix": "2d5892078ea331e7f967f46ab510f13e890c9ee185d597d9fb3bc4c29e400ecf", + "size_in_bytes": 4817 + }, + { + "_path": "lib/tk8.6/ttk/utils.tcl", + "path_type": "hardlink", + "sha256": "d17c13d2d163a1bff6987f751220cf3dcf0d466cc6c52a8e2cc6219c21629e14", + "sha256_in_prefix": "d17c13d2d163a1bff6987f751220cf3dcf0d466cc6c52a8e2cc6219c21629e14", + "size_in_bytes": 8287 + }, + { + "_path": "lib/tk8.6/ttk/vistaTheme.tcl", + "path_type": "hardlink", + "sha256": "e24014c5779395e767be7d435022f6f169f50949bbbed7e79b2de6ae65e0c513", + "sha256_in_prefix": "e24014c5779395e767be7d435022f6f169f50949bbbed7e79b2de6ae65e0c513", + "size_in_bytes": 9481 + }, + { + "_path": "lib/tk8.6/ttk/winTheme.tcl", + "path_type": "hardlink", + "sha256": "05fad058280e7a8947a9f71122b442b92d7d578b4618b08bf0b71b6dac5aa22f", + "sha256_in_prefix": "05fad058280e7a8947a9f71122b442b92d7d578b4618b08bf0b71b6dac5aa22f", + "size_in_bytes": 2781 + }, + { + "_path": "lib/tk8.6/ttk/xpTheme.tcl", + "path_type": "hardlink", + "sha256": "8e4b4ce0b35845d986a93ad564cd1238a1e8a3902e9259003058f0aec00e30cb", + "sha256_in_prefix": "8e4b4ce0b35845d986a93ad564cd1238a1e8a3902e9259003058f0aec00e30cb", + "size_in_bytes": 2036 + }, + { + "_path": "lib/tk8.6/unsupported.tcl", + "path_type": "hardlink", + "sha256": "e34d828e740f151b96022934aaec7bb8343e23d040fb54c04641888f51767eb8", + "sha256_in_prefix": "e34d828e740f151b96022934aaec7bb8343e23d040fb54c04641888f51767eb8", + "size_in_bytes": 10252 + }, + { + "_path": "lib/tk8.6/xmfbox.tcl", + "path_type": "hardlink", + "sha256": "21d2594c8319f14c47a0f0bf3d2acabcc82c9ab8d84a64fa3cb608c7e75f59c3", + "sha256_in_prefix": "21d2594c8319f14c47a0f0bf3d2acabcc82c9ab8d84a64fa3cb608c7e75f59c3", + "size_in_bytes": 26002 + }, + { + "_path": "lib/tkConfig.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/tk_1714770549989/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "cedaa299b41f9d83d102c1e0e1894f0cd9bea9fb83917843683999b2699a910f", + "sha256_in_prefix": "b437d0820bdb99a21eedb56dc41ccbb1e7a356b781e41320f785224aceec96e6", + "size_in_bytes": 5661 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "a390949ede5d6ff36a67e87c742099e5468f2fc0f33109fb3e0f39a3dcd4251e", + "size": 3584424, + "subdir": "linux-64", + "timestamp": 1714770676000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.14-h39e8969_0.conda", + "version": "8.6.14" +} \ No newline at end of file diff --git a/deepseek/conda-meta/xz-5.6.4-h5eee18b_1.json b/deepseek/conda-meta/xz-5.6.4-h5eee18b_1.json new file mode 100644 index 0000000000000000000000000000000000000000..abf432d0bc03adcefb05b38867a9c5426103ef3e --- /dev/null +++ b/deepseek/conda-meta/xz-5.6.4-h5eee18b_1.json @@ -0,0 +1,1720 @@ +{ + "build": "h5eee18b_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "libgcc-ng >=11.2.0" + ], + "extracted_package_dir": "/opt/conda/pkgs/xz-5.6.4-h5eee18b_1", + "files": [ + "bin/lzcat", + "bin/lzcmp", + "bin/lzdiff", + "bin/lzegrep", + "bin/lzfgrep", + "bin/lzgrep", + "bin/lzless", + "bin/lzma", + "bin/lzmadec", + "bin/lzmainfo", + "bin/lzmore", + "bin/unlzma", + "bin/unxz", + "bin/xz", + "bin/xzcat", + "bin/xzcmp", + "bin/xzdec", + "bin/xzdiff", + "bin/xzegrep", + "bin/xzfgrep", + "bin/xzgrep", + "bin/xzless", + "bin/xzmore", + "include/lzma.h", + "include/lzma/base.h", + "include/lzma/bcj.h", + "include/lzma/block.h", + "include/lzma/check.h", + "include/lzma/container.h", + "include/lzma/delta.h", + "include/lzma/filter.h", + "include/lzma/hardware.h", + "include/lzma/index.h", + "include/lzma/index_hash.h", + "include/lzma/lzma12.h", + "include/lzma/stream_flags.h", + "include/lzma/version.h", + "include/lzma/vli.h", + "lib/cmake/liblzma/liblzma-config-version.cmake", + "lib/cmake/liblzma/liblzma-config.cmake", + "lib/cmake/liblzma/liblzma-targets-release.cmake", + "lib/cmake/liblzma/liblzma-targets.cmake", + "lib/liblzma.so", + "lib/liblzma.so.5", + "lib/liblzma.so.5.6.4", + "lib/pkgconfig/liblzma.pc", + "share/doc/xz/AUTHORS", + "share/doc/xz/COPYING", + "share/doc/xz/COPYING.0BSD", + "share/doc/xz/COPYING.GPLv2", + "share/doc/xz/NEWS", + "share/doc/xz/README", + "share/doc/xz/THANKS", + "share/doc/xz/examples/00_README.txt", + "share/doc/xz/examples/01_compress_easy.c", + "share/doc/xz/examples/02_decompress.c", + "share/doc/xz/examples/03_compress_custom.c", + "share/doc/xz/examples/04_compress_easy_mt.c", + "share/doc/xz/examples/11_file_info.c", + "share/doc/xz/examples/Makefile", + "share/doc/xz/faq.txt", + "share/doc/xz/history.txt", + "share/doc/xz/lzma-file-format.txt", + "share/doc/xz/xz-file-format.txt", + "share/locale/ca/LC_MESSAGES/xz.mo", + "share/locale/cs/LC_MESSAGES/xz.mo", + "share/locale/da/LC_MESSAGES/xz.mo", + "share/locale/de/LC_MESSAGES/xz.mo", + "share/locale/eo/LC_MESSAGES/xz.mo", + "share/locale/es/LC_MESSAGES/xz.mo", + "share/locale/fi/LC_MESSAGES/xz.mo", + "share/locale/fr/LC_MESSAGES/xz.mo", + "share/locale/hr/LC_MESSAGES/xz.mo", + "share/locale/hu/LC_MESSAGES/xz.mo", + "share/locale/it/LC_MESSAGES/xz.mo", + "share/locale/ko/LC_MESSAGES/xz.mo", + "share/locale/pl/LC_MESSAGES/xz.mo", + "share/locale/pt/LC_MESSAGES/xz.mo", + "share/locale/pt_BR/LC_MESSAGES/xz.mo", + "share/locale/ro/LC_MESSAGES/xz.mo", + "share/locale/sr/LC_MESSAGES/xz.mo", + "share/locale/sv/LC_MESSAGES/xz.mo", + "share/locale/tr/LC_MESSAGES/xz.mo", + "share/locale/uk/LC_MESSAGES/xz.mo", + "share/locale/vi/LC_MESSAGES/xz.mo", + "share/locale/zh_CN/LC_MESSAGES/xz.mo", + "share/locale/zh_TW/LC_MESSAGES/xz.mo", + "share/man/de/man1/lzcat.1", + "share/man/de/man1/lzcmp.1", + "share/man/de/man1/lzdiff.1", + "share/man/de/man1/lzegrep.1", + "share/man/de/man1/lzfgrep.1", + "share/man/de/man1/lzgrep.1", + "share/man/de/man1/lzless.1", + "share/man/de/man1/lzma.1", + "share/man/de/man1/lzmadec.1", + "share/man/de/man1/lzmainfo.1", + "share/man/de/man1/lzmore.1", + "share/man/de/man1/unlzma.1", + "share/man/de/man1/unxz.1", + "share/man/de/man1/xz.1", + "share/man/de/man1/xzcat.1", + "share/man/de/man1/xzcmp.1", + "share/man/de/man1/xzdec.1", + "share/man/de/man1/xzdiff.1", + "share/man/de/man1/xzegrep.1", + "share/man/de/man1/xzfgrep.1", + "share/man/de/man1/xzgrep.1", + "share/man/de/man1/xzless.1", + "share/man/de/man1/xzmore.1", + "share/man/fr/man1/lzcat.1", + "share/man/fr/man1/lzless.1", + "share/man/fr/man1/lzma.1", + "share/man/fr/man1/lzmadec.1", + "share/man/fr/man1/lzmainfo.1", + "share/man/fr/man1/unlzma.1", + "share/man/fr/man1/unxz.1", + "share/man/fr/man1/xz.1", + "share/man/fr/man1/xzcat.1", + "share/man/fr/man1/xzdec.1", + "share/man/fr/man1/xzless.1", + "share/man/ko/man1/lzcat.1", + "share/man/ko/man1/lzcmp.1", + "share/man/ko/man1/lzdiff.1", + "share/man/ko/man1/lzegrep.1", + "share/man/ko/man1/lzfgrep.1", + "share/man/ko/man1/lzgrep.1", + "share/man/ko/man1/lzless.1", + "share/man/ko/man1/lzma.1", + "share/man/ko/man1/lzmadec.1", + "share/man/ko/man1/lzmainfo.1", + "share/man/ko/man1/lzmore.1", + "share/man/ko/man1/unlzma.1", + "share/man/ko/man1/unxz.1", + "share/man/ko/man1/xz.1", + "share/man/ko/man1/xzcat.1", + "share/man/ko/man1/xzcmp.1", + "share/man/ko/man1/xzdec.1", + "share/man/ko/man1/xzdiff.1", + "share/man/ko/man1/xzegrep.1", + "share/man/ko/man1/xzfgrep.1", + "share/man/ko/man1/xzgrep.1", + "share/man/ko/man1/xzless.1", + "share/man/ko/man1/xzmore.1", + "share/man/man1/lzcat.1", + "share/man/man1/lzcmp.1", + "share/man/man1/lzdiff.1", + "share/man/man1/lzegrep.1", + "share/man/man1/lzfgrep.1", + "share/man/man1/lzgrep.1", + "share/man/man1/lzless.1", + "share/man/man1/lzma.1", + "share/man/man1/lzmadec.1", + "share/man/man1/lzmainfo.1", + "share/man/man1/lzmore.1", + "share/man/man1/unlzma.1", + "share/man/man1/unxz.1", + "share/man/man1/xz.1", + "share/man/man1/xzcat.1", + "share/man/man1/xzcmp.1", + "share/man/man1/xzdec.1", + "share/man/man1/xzdiff.1", + "share/man/man1/xzegrep.1", + "share/man/man1/xzfgrep.1", + "share/man/man1/xzgrep.1", + "share/man/man1/xzless.1", + "share/man/man1/xzmore.1", + "share/man/pt_BR/man1/lzcat.1", + "share/man/pt_BR/man1/lzless.1", + "share/man/pt_BR/man1/lzma.1", + "share/man/pt_BR/man1/lzmadec.1", + "share/man/pt_BR/man1/lzmainfo.1", + "share/man/pt_BR/man1/unlzma.1", + "share/man/pt_BR/man1/unxz.1", + "share/man/pt_BR/man1/xz.1", + "share/man/pt_BR/man1/xzcat.1", + "share/man/pt_BR/man1/xzdec.1", + "share/man/pt_BR/man1/xzless.1", + "share/man/ro/man1/lzcat.1", + "share/man/ro/man1/lzcmp.1", + "share/man/ro/man1/lzdiff.1", + "share/man/ro/man1/lzegrep.1", + "share/man/ro/man1/lzfgrep.1", + "share/man/ro/man1/lzgrep.1", + "share/man/ro/man1/lzless.1", + "share/man/ro/man1/lzma.1", + "share/man/ro/man1/lzmadec.1", + "share/man/ro/man1/lzmainfo.1", + "share/man/ro/man1/lzmore.1", + "share/man/ro/man1/unlzma.1", + "share/man/ro/man1/unxz.1", + "share/man/ro/man1/xz.1", + "share/man/ro/man1/xzcat.1", + "share/man/ro/man1/xzcmp.1", + "share/man/ro/man1/xzdec.1", + "share/man/ro/man1/xzdiff.1", + "share/man/ro/man1/xzegrep.1", + "share/man/ro/man1/xzfgrep.1", + "share/man/ro/man1/xzgrep.1", + "share/man/ro/man1/xzless.1", + "share/man/ro/man1/xzmore.1", + "share/man/uk/man1/lzcat.1", + "share/man/uk/man1/lzcmp.1", + "share/man/uk/man1/lzdiff.1", + "share/man/uk/man1/lzegrep.1", + "share/man/uk/man1/lzfgrep.1", + "share/man/uk/man1/lzgrep.1", + "share/man/uk/man1/lzless.1", + "share/man/uk/man1/lzma.1", + "share/man/uk/man1/lzmadec.1", + "share/man/uk/man1/lzmainfo.1", + "share/man/uk/man1/lzmore.1", + "share/man/uk/man1/unlzma.1", + "share/man/uk/man1/unxz.1", + "share/man/uk/man1/xz.1", + "share/man/uk/man1/xzcat.1", + "share/man/uk/man1/xzcmp.1", + "share/man/uk/man1/xzdec.1", + "share/man/uk/man1/xzdiff.1", + "share/man/uk/man1/xzegrep.1", + "share/man/uk/man1/xzfgrep.1", + "share/man/uk/man1/xzgrep.1", + "share/man/uk/man1/xzless.1", + "share/man/uk/man1/xzmore.1" + ], + "fn": "xz-5.6.4-h5eee18b_1.conda", + "license": "LGPL-2.1-or-later and GPL-2.0-or-later and 0BSD", + "link": { + "source": "/opt/conda/pkgs/xz-5.6.4-h5eee18b_1", + "type": 1 + }, + "md5": "3581505fa450962d631bd82b8616350e", + "name": "xz", + "package_tarball_full_path": "/opt/conda/pkgs/xz-5.6.4-h5eee18b_1.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/lzcat", + "path_type": "softlink", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "size_in_bytes": 108336 + }, + { + "_path": "bin/lzcmp", + "path_type": "softlink", + "sha256": "f1cc7791ed316384b78b48e921d45d51e86eff18fdbf70f2c65316bfddee8cb5", + "size_in_bytes": 7588 + }, + { + "_path": "bin/lzdiff", + "path_type": "softlink", + "sha256": "f1cc7791ed316384b78b48e921d45d51e86eff18fdbf70f2c65316bfddee8cb5", + "size_in_bytes": 7588 + }, + { + "_path": "bin/lzegrep", + "path_type": "softlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/lzfgrep", + "path_type": "softlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/lzgrep", + "path_type": "softlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/lzless", + "path_type": "softlink", + "sha256": "2ccf41caa2fc84f7742f18e0609bb09b29478c355d07167af99cb19f1ba20fc6", + "size_in_bytes": 2383 + }, + { + "_path": "bin/lzma", + "path_type": "softlink", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "size_in_bytes": 108336 + }, + { + "_path": "bin/lzmadec", + "path_type": "hardlink", + "sha256": "746f2d2ec9f85ef58292ac779c75215046cbaeee1771f068eae93cbf323674b2", + "sha256_in_prefix": "746f2d2ec9f85ef58292ac779c75215046cbaeee1771f068eae93cbf323674b2", + "size_in_bytes": 17176 + }, + { + "_path": "bin/lzmainfo", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/croot/xz_1739468269109/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "3154bd45c6c8e99745296931e4b9763c0e6a71eba7a2bec93dc3ccc67fd2a1b8", + "sha256_in_prefix": "f3bcbf2a27d61e12b010aa4374c7ddb4e1702ec9d54dfc82851cc11a111479c6", + "size_in_bytes": 16968 + }, + { + "_path": "bin/lzmore", + "path_type": "softlink", + "sha256": "822df8e73e8de10da5d986f12c930f64c08db98fddbf7b8edfe5d41d64d743cd", + "size_in_bytes": 2234 + }, + { + "_path": "bin/unlzma", + "path_type": "softlink", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "size_in_bytes": 108336 + }, + { + "_path": "bin/unxz", + "path_type": "softlink", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "size_in_bytes": 108336 + }, + { + "_path": "bin/xz", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/croot/xz_1739468269109/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "sha256_in_prefix": "fc0bc7b3ffa6d236087079b01b3a6d261e34808ae2f9b7b22ea84ff57ebba7ec", + "size_in_bytes": 108336 + }, + { + "_path": "bin/xzcat", + "path_type": "softlink", + "sha256": "f7aedbd20a47602bbb19f8262f46f922dca4640e6b67241dcb3bdd63a11615ab", + "size_in_bytes": 108336 + }, + { + "_path": "bin/xzcmp", + "path_type": "softlink", + "sha256": "f1cc7791ed316384b78b48e921d45d51e86eff18fdbf70f2c65316bfddee8cb5", + "size_in_bytes": 7588 + }, + { + "_path": "bin/xzdec", + "path_type": "hardlink", + "sha256": "c41b705930338bdd4de0aff43050b02800c6d29e24308412291ab4f125ef5359", + "sha256_in_prefix": "c41b705930338bdd4de0aff43050b02800c6d29e24308412291ab4f125ef5359", + "size_in_bytes": 17176 + }, + { + "_path": "bin/xzdiff", + "path_type": "hardlink", + "sha256": "f1cc7791ed316384b78b48e921d45d51e86eff18fdbf70f2c65316bfddee8cb5", + "sha256_in_prefix": "f1cc7791ed316384b78b48e921d45d51e86eff18fdbf70f2c65316bfddee8cb5", + "size_in_bytes": 7588 + }, + { + "_path": "bin/xzegrep", + "path_type": "softlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/xzfgrep", + "path_type": "softlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/xzgrep", + "path_type": "hardlink", + "sha256": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "sha256_in_prefix": "4836d73bf64c79f9b5d83e0d08b2b359b6548b14117350360aa4eaae8c8c3e49", + "size_in_bytes": 10413 + }, + { + "_path": "bin/xzless", + "path_type": "hardlink", + "sha256": "2ccf41caa2fc84f7742f18e0609bb09b29478c355d07167af99cb19f1ba20fc6", + "sha256_in_prefix": "2ccf41caa2fc84f7742f18e0609bb09b29478c355d07167af99cb19f1ba20fc6", + "size_in_bytes": 2383 + }, + { + "_path": "bin/xzmore", + "path_type": "hardlink", + "sha256": "822df8e73e8de10da5d986f12c930f64c08db98fddbf7b8edfe5d41d64d743cd", + "sha256_in_prefix": "822df8e73e8de10da5d986f12c930f64c08db98fddbf7b8edfe5d41d64d743cd", + "size_in_bytes": 2234 + }, + { + "_path": "include/lzma.h", + "path_type": "hardlink", + "sha256": "6829350ef1ee35fae25481cc87a4f4b17c4b6c2a3df26f2b34dc1804df75c0d9", + "sha256_in_prefix": "6829350ef1ee35fae25481cc87a4f4b17c4b6c2a3df26f2b34dc1804df75c0d9", + "size_in_bytes": 9790 + }, + { + "_path": "include/lzma/base.h", + "path_type": "hardlink", + "sha256": "8d78bcee5be1cb18866133a0de5e85ff33cd164bbea16816f6af814e80beace0", + "sha256_in_prefix": "8d78bcee5be1cb18866133a0de5e85ff33cd164bbea16816f6af814e80beace0", + "size_in_bytes": 28082 + }, + { + "_path": "include/lzma/bcj.h", + "path_type": "hardlink", + "sha256": "920cac8c2f361a794c4d3bbaab18fb651f1be86a1d602a59676ff45aba067c9a", + "sha256_in_prefix": "920cac8c2f361a794c4d3bbaab18fb651f1be86a1d602a59676ff45aba067c9a", + "size_in_bytes": 2827 + }, + { + "_path": "include/lzma/block.h", + "path_type": "hardlink", + "sha256": "c99bf801dc0d771196f318f0eb2db454c8ba007fb516c1e83ece91ac079e3440", + "sha256_in_prefix": "c99bf801dc0d771196f318f0eb2db454c8ba007fb516c1e83ece91ac079e3440", + "size_in_bytes": 25964 + }, + { + "_path": "include/lzma/check.h", + "path_type": "hardlink", + "sha256": "a6954d5e59c87c09e000f6df9b61615125a4fb20b5014ce8cb3eea762999acff", + "sha256_in_prefix": "a6954d5e59c87c09e000f6df9b61615125a4fb20b5014ce8cb3eea762999acff", + "size_in_bytes": 4840 + }, + { + "_path": "include/lzma/container.h", + "path_type": "hardlink", + "sha256": "bc13a4dfeb8bd9c3ef8fde5c9a03e2d0f5a4c4e0e1cf042290c8c1b31863c98d", + "sha256_in_prefix": "bc13a4dfeb8bd9c3ef8fde5c9a03e2d0f5a4c4e0e1cf042290c8c1b31863c98d", + "size_in_bytes": 42048 + }, + { + "_path": "include/lzma/delta.h", + "path_type": "hardlink", + "sha256": "ff69bb02c2beb169284a50f68962006dde746e1859c31d47be0bc8e56db7a7b1", + "sha256_in_prefix": "ff69bb02c2beb169284a50f68962006dde746e1859c31d47be0bc8e56db7a7b1", + "size_in_bytes": 2187 + }, + { + "_path": "include/lzma/filter.h", + "path_type": "hardlink", + "sha256": "bdc89d83271fd6cfc6e345913d6c6882c4c0f9093c71ea576c64ba562233ca6b", + "sha256_in_prefix": "bdc89d83271fd6cfc6e345913d6c6882c4c0f9093c71ea576c64ba562233ca6b", + "size_in_bytes": 31746 + }, + { + "_path": "include/lzma/hardware.h", + "path_type": "hardlink", + "sha256": "84a3af36971a1acc33c90305ec72f67d18bc74aa0742cef17833e023dd2992b3", + "sha256_in_prefix": "84a3af36971a1acc33c90305ec72f67d18bc74aa0742cef17833e023dd2992b3", + "size_in_bytes": 2550 + }, + { + "_path": "include/lzma/index.h", + "path_type": "hardlink", + "sha256": "f87c272b613742f18177186990144fa2c70f0800656c8b1a4142c3d9f0e94c9a", + "sha256_in_prefix": "f87c272b613742f18177186990144fa2c70f0800656c8b1a4142c3d9f0e94c9a", + "size_in_bytes": 31090 + }, + { + "_path": "include/lzma/index_hash.h", + "path_type": "hardlink", + "sha256": "b10127b60fedb010dad8d9c07635e73da9e995b287e823ae1838bbd302a8b260", + "sha256_in_prefix": "b10127b60fedb010dad8d9c07635e73da9e995b287e823ae1838bbd302a8b260", + "size_in_bytes": 4671 + }, + { + "_path": "include/lzma/lzma12.h", + "path_type": "hardlink", + "sha256": "863e8c4b64472c5bca2246f17e2208af6dac9a07a34386a6e0af707708abdb50", + "sha256_in_prefix": "863e8c4b64472c5bca2246f17e2208af6dac9a07a34386a6e0af707708abdb50", + "size_in_bytes": 20818 + }, + { + "_path": "include/lzma/stream_flags.h", + "path_type": "hardlink", + "sha256": "192f8e6fdedcc26fabf2751128eab1f41fd6fbf976eea0d3d225a1d57b6a459c", + "sha256_in_prefix": "192f8e6fdedcc26fabf2751128eab1f41fd6fbf976eea0d3d225a1d57b6a459c", + "size_in_bytes": 9239 + }, + { + "_path": "include/lzma/version.h", + "path_type": "hardlink", + "sha256": "ed701065cb2864843cb096945752828e9fcd08f59a0e9b477e394d6ebb537944", + "sha256_in_prefix": "ed701065cb2864843cb096945752828e9fcd08f59a0e9b477e394d6ebb537944", + "size_in_bytes": 3872 + }, + { + "_path": "include/lzma/vli.h", + "path_type": "hardlink", + "sha256": "16a498e75b0f5136de11e205e36ce9641277cfddad538fff5b22b6991f4110f7", + "sha256_in_prefix": "16a498e75b0f5136de11e205e36ce9641277cfddad538fff5b22b6991f4110f7", + "size_in_bytes": 6590 + }, + { + "_path": "lib/cmake/liblzma/liblzma-config-version.cmake", + "path_type": "hardlink", + "sha256": "44531a364048b5cd2119c8ac5dbd89979d97603d880b548e8e86ac57863ec430", + "sha256_in_prefix": "44531a364048b5cd2119c8ac5dbd89979d97603d880b548e8e86ac57863ec430", + "size_in_bytes": 2878 + }, + { + "_path": "lib/cmake/liblzma/liblzma-config.cmake", + "path_type": "hardlink", + "sha256": "afb199e8891a9d071ff033095d3cb3e0c341b4df83cef1cf6b23c15d153b4c8d", + "sha256_in_prefix": "afb199e8891a9d071ff033095d3cb3e0c341b4df83cef1cf6b23c15d153b4c8d", + "size_in_bytes": 680 + }, + { + "_path": "lib/cmake/liblzma/liblzma-targets-release.cmake", + "path_type": "hardlink", + "sha256": "d6c7cfb6c303fc278aaf7a25b9df06a36b2777c2b3125bfa3df01eb5daf0246b", + "sha256_in_prefix": "d6c7cfb6c303fc278aaf7a25b9df06a36b2777c2b3125bfa3df01eb5daf0246b", + "size_in_bytes": 854 + }, + { + "_path": "lib/cmake/liblzma/liblzma-targets.cmake", + "path_type": "hardlink", + "sha256": "ee7a59f138a306e008b9631e2787a3d25971e5a7a0fa7c3670710770eac56cd2", + "sha256_in_prefix": "ee7a59f138a306e008b9631e2787a3d25971e5a7a0fa7c3670710770eac56cd2", + "size_in_bytes": 3908 + }, + { + "_path": "lib/liblzma.so", + "path_type": "softlink", + "sha256": "6b126e186cc43702dcacb626e0455f8aecf030d969d6d4a407ce4cc35293c503", + "size_in_bytes": 218304 + }, + { + "_path": "lib/liblzma.so.5", + "path_type": "softlink", + "sha256": "6b126e186cc43702dcacb626e0455f8aecf030d969d6d4a407ce4cc35293c503", + "size_in_bytes": 218304 + }, + { + "_path": "lib/liblzma.so.5.6.4", + "path_type": "hardlink", + "sha256": "6b126e186cc43702dcacb626e0455f8aecf030d969d6d4a407ce4cc35293c503", + "sha256_in_prefix": "6b126e186cc43702dcacb626e0455f8aecf030d969d6d4a407ce4cc35293c503", + "size_in_bytes": 218304 + }, + { + "_path": "lib/pkgconfig/liblzma.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/xz_1739468269109/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_plac", + "sha256": "ac636313df79badabb87b10042499cd8cba9966bc87dd5761fcb5311af74e86c", + "sha256_in_prefix": "e6ff1f55912b42a23b9e3215da7f5cbc107869a972e155d2716208bb30b52b1f", + "size_in_bytes": 616 + }, + { + "_path": "share/doc/xz/AUTHORS", + "path_type": "hardlink", + "sha256": "653b31fe6bebcc7fc2aa7089219df259e0d4df88b114c361df51ee6d134ac3c6", + "sha256_in_prefix": "653b31fe6bebcc7fc2aa7089219df259e0d4df88b114c361df51ee6d134ac3c6", + "size_in_bytes": 2148 + }, + { + "_path": "share/doc/xz/COPYING", + "path_type": "hardlink", + "sha256": "ee3b35b82f7bb0ba5fd9f13ca34ebbe757a59c05bfde5ab9d50ff4188ed33396", + "sha256_in_prefix": "ee3b35b82f7bb0ba5fd9f13ca34ebbe757a59c05bfde5ab9d50ff4188ed33396", + "size_in_bytes": 3885 + }, + { + "_path": "share/doc/xz/COPYING.0BSD", + "path_type": "hardlink", + "sha256": "0b01625d853911cd0e2e088dcfb743261034a091bb379246cb25a14cc4c74bf1", + "sha256_in_prefix": "0b01625d853911cd0e2e088dcfb743261034a091bb379246cb25a14cc4c74bf1", + "size_in_bytes": 607 + }, + { + "_path": "share/doc/xz/COPYING.GPLv2", + "path_type": "hardlink", + "sha256": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643", + "sha256_in_prefix": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643", + "size_in_bytes": 18092 + }, + { + "_path": "share/doc/xz/NEWS", + "path_type": "hardlink", + "sha256": "3bac48b69fd9a2eff84a8f3f50891397794e02fc940ec2c857528d77abdaca30", + "sha256_in_prefix": "3bac48b69fd9a2eff84a8f3f50891397794e02fc940ec2c857528d77abdaca30", + "size_in_bytes": 106446 + }, + { + "_path": "share/doc/xz/README", + "path_type": "hardlink", + "sha256": "93f5d7f91e12edeac03e7268c0f07b69341bb0ce44aa4df7fccc86b29be762f2", + "sha256_in_prefix": "93f5d7f91e12edeac03e7268c0f07b69341bb0ce44aa4df7fccc86b29be762f2", + "size_in_bytes": 13211 + }, + { + "_path": "share/doc/xz/THANKS", + "path_type": "hardlink", + "sha256": "fa3c7bdab09304bff34cc65cc74bd0e407811741263a83327d89943285466e01", + "sha256_in_prefix": "fa3c7bdab09304bff34cc65cc74bd0e407811741263a83327d89943285466e01", + "size_in_bytes": 4025 + }, + { + "_path": "share/doc/xz/examples/00_README.txt", + "path_type": "hardlink", + "sha256": "f0ddaa731c89d6028f55281229e56b89f32b8c477aba4f52367488f0f42651be", + "sha256_in_prefix": "f0ddaa731c89d6028f55281229e56b89f32b8c477aba4f52367488f0f42651be", + "size_in_bytes": 1037 + }, + { + "_path": "share/doc/xz/examples/01_compress_easy.c", + "path_type": "hardlink", + "sha256": "7d4a9186e9121eef5924cadc913f513615de697e3a86b5b01307e8cd54d9e0d0", + "sha256_in_prefix": "7d4a9186e9121eef5924cadc913f513615de697e3a86b5b01307e8cd54d9e0d0", + "size_in_bytes": 9464 + }, + { + "_path": "share/doc/xz/examples/02_decompress.c", + "path_type": "hardlink", + "sha256": "8c085ac46579444a4f33fbb6a4d480265dc8db43dbb05698fb58c8faf58100ab", + "sha256_in_prefix": "8c085ac46579444a4f33fbb6a4d480265dc8db43dbb05698fb58c8faf58100ab", + "size_in_bytes": 8844 + }, + { + "_path": "share/doc/xz/examples/03_compress_custom.c", + "path_type": "hardlink", + "sha256": "27229e1b873e4ecac4a3f57db932a23e9729930822f7932e618a72f50499c860", + "sha256_in_prefix": "27229e1b873e4ecac4a3f57db932a23e9729930822f7932e618a72f50499c860", + "size_in_bytes": 4952 + }, + { + "_path": "share/doc/xz/examples/04_compress_easy_mt.c", + "path_type": "hardlink", + "sha256": "304f9b8501e224288cfeb7c89aad34890857dd83874a5b152508f2203661a0c6", + "sha256_in_prefix": "304f9b8501e224288cfeb7c89aad34890857dd83874a5b152508f2203661a0c6", + "size_in_bytes": 5145 + }, + { + "_path": "share/doc/xz/examples/11_file_info.c", + "path_type": "hardlink", + "sha256": "1d3e56a70ef81cb36813624b360355561932164a19184b76f5f190734ee92046", + "sha256_in_prefix": "1d3e56a70ef81cb36813624b360355561932164a19184b76f5f190734ee92046", + "size_in_bytes": 5314 + }, + { + "_path": "share/doc/xz/examples/Makefile", + "path_type": "hardlink", + "sha256": "cc4018f5f9e0d0b6d46e6433cf18205f1437e587b369e35c718c88cf5a200dca", + "sha256_in_prefix": "cc4018f5f9e0d0b6d46e6433cf18205f1437e587b369e35c718c88cf5a200dca", + "size_in_bytes": 283 + }, + { + "_path": "share/doc/xz/faq.txt", + "path_type": "hardlink", + "sha256": "97ea64c7578870443ff4669cd6dce43d94d857faa7cffef1aa462ff9c8089c07", + "sha256_in_prefix": "97ea64c7578870443ff4669cd6dce43d94d857faa7cffef1aa462ff9c8089c07", + "size_in_bytes": 10419 + }, + { + "_path": "share/doc/xz/history.txt", + "path_type": "hardlink", + "sha256": "9d6a0a72822734a0afb1816e07f0a7edab03339119bed4f393c1c7eec884eab6", + "sha256_in_prefix": "9d6a0a72822734a0afb1816e07f0a7edab03339119bed4f393c1c7eec884eab6", + "size_in_bytes": 7427 + }, + { + "_path": "share/doc/xz/lzma-file-format.txt", + "path_type": "hardlink", + "sha256": "7ca841284a3912ae2fc2edef4919a1398fc846e4b62ea6d2259de481a1d9caa2", + "sha256_in_prefix": "7ca841284a3912ae2fc2edef4919a1398fc846e4b62ea6d2259de481a1d9caa2", + "size_in_bytes": 6090 + }, + { + "_path": "share/doc/xz/xz-file-format.txt", + "path_type": "hardlink", + "sha256": "acc324b995261e6d9d5793c6a504639a6dfe97f2ccaf3cf8667f20a2486fc85b", + "sha256_in_prefix": "acc324b995261e6d9d5793c6a504639a6dfe97f2ccaf3cf8667f20a2486fc85b", + "size_in_bytes": 44512 + }, + { + "_path": "share/locale/ca/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "24e1c05068013d65849734365a5eb7df98aae3f9a68a901381d410f9e84e08f7", + "sha256_in_prefix": "24e1c05068013d65849734365a5eb7df98aae3f9a68a901381d410f9e84e08f7", + "size_in_bytes": 31014 + }, + { + "_path": "share/locale/cs/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "3dfb04426944813cb8237947e122e447183b039d398a84078ab5a8d117a69eee", + "sha256_in_prefix": "3dfb04426944813cb8237947e122e447183b039d398a84078ab5a8d117a69eee", + "size_in_bytes": 15436 + }, + { + "_path": "share/locale/da/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "c26b136e6eb2fcf9d3dc7467e7dabc3b00196a59a992b4ab710c842619758e9a", + "sha256_in_prefix": "c26b136e6eb2fcf9d3dc7467e7dabc3b00196a59a992b4ab710c842619758e9a", + "size_in_bytes": 11042 + }, + { + "_path": "share/locale/de/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "8b2a77b650c399e9dc713e63ca0b5e2ad436e893196d422fd5c26a49a09f18dd", + "sha256_in_prefix": "8b2a77b650c399e9dc713e63ca0b5e2ad436e893196d422fd5c26a49a09f18dd", + "size_in_bytes": 32560 + }, + { + "_path": "share/locale/eo/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "30ee0d94e3cfdaa398cfd649817b0ed8f9e8fe62c48948d30f1bb7b1e30f2c20", + "sha256_in_prefix": "30ee0d94e3cfdaa398cfd649817b0ed8f9e8fe62c48948d30f1bb7b1e30f2c20", + "size_in_bytes": 29979 + }, + { + "_path": "share/locale/es/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "70a1de9aa9cbdfb50bc9562a742dc009ecf43694da35804ecf8ac2beeaf2eeea", + "sha256_in_prefix": "70a1de9aa9cbdfb50bc9562a742dc009ecf43694da35804ecf8ac2beeaf2eeea", + "size_in_bytes": 31175 + }, + { + "_path": "share/locale/fi/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "a46b47bf02750ca12b41addeb4ea44544d23fdeac8a67b7c3b7fb8982af47a8e", + "sha256_in_prefix": "a46b47bf02750ca12b41addeb4ea44544d23fdeac8a67b7c3b7fb8982af47a8e", + "size_in_bytes": 21441 + }, + { + "_path": "share/locale/fr/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "39f72b07f6afaead7978a3b8efa02179473ca21bdb42a7ab8d8a960867c1c760", + "sha256_in_prefix": "39f72b07f6afaead7978a3b8efa02179473ca21bdb42a7ab8d8a960867c1c760", + "size_in_bytes": 19342 + }, + { + "_path": "share/locale/hr/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "ca2b74fd917e67c8717e63298efaeac717dc89cf544ee56136a1567459c3e08b", + "sha256_in_prefix": "ca2b74fd917e67c8717e63298efaeac717dc89cf544ee56136a1567459c3e08b", + "size_in_bytes": 30343 + }, + { + "_path": "share/locale/hu/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "afe2841546b6b77856b37c8e9c3d48d90b460a42ad738b020babc0385d8719bd", + "sha256_in_prefix": "afe2841546b6b77856b37c8e9c3d48d90b460a42ad738b020babc0385d8719bd", + "size_in_bytes": 31658 + }, + { + "_path": "share/locale/it/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "2276685a5d1ba7a59f1cdabfb9889c7cd22624b4ffa00980e1843144944e3aff", + "sha256_in_prefix": "2276685a5d1ba7a59f1cdabfb9889c7cd22624b4ffa00980e1843144944e3aff", + "size_in_bytes": 19130 + }, + { + "_path": "share/locale/ko/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "b09f2f5d3485d2676942bbefc4493825e58585124181cde288483ad94415c8d1", + "sha256_in_prefix": "b09f2f5d3485d2676942bbefc4493825e58585124181cde288483ad94415c8d1", + "size_in_bytes": 31480 + }, + { + "_path": "share/locale/pl/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "69d6abf8e5da0d3c7c78c31a1a64db3ed3a11c9e4c660ac2ab3cbaa8b331dc24", + "sha256_in_prefix": "69d6abf8e5da0d3c7c78c31a1a64db3ed3a11c9e4c660ac2ab3cbaa8b331dc24", + "size_in_bytes": 30611 + }, + { + "_path": "share/locale/pt/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "ce1d43714a3da30c6c3d2223869c438c5ac3b2a5b761f23580c4bcfc0b254cb3", + "sha256_in_prefix": "ce1d43714a3da30c6c3d2223869c438c5ac3b2a5b761f23580c4bcfc0b254cb3", + "size_in_bytes": 18992 + }, + { + "_path": "share/locale/pt_BR/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "bf78fb03856072a060383f4a143546870986c28e9e8291df0042a5cf4312fea7", + "sha256_in_prefix": "bf78fb03856072a060383f4a143546870986c28e9e8291df0042a5cf4312fea7", + "size_in_bytes": 30957 + }, + { + "_path": "share/locale/ro/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "7589db400862559763bb4e0855b2896428abe62e42425074eccac6636c85ab48", + "sha256_in_prefix": "7589db400862559763bb4e0855b2896428abe62e42425074eccac6636c85ab48", + "size_in_bytes": 32640 + }, + { + "_path": "share/locale/sr/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "1de69208bc8e9bfae3233fcfbd829aca4735ceeee076bd426bcd914ba9cfceff", + "sha256_in_prefix": "1de69208bc8e9bfae3233fcfbd829aca4735ceeee076bd426bcd914ba9cfceff", + "size_in_bytes": 38426 + }, + { + "_path": "share/locale/sv/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "a15ef4e5a5108a9e3dab4e813180554effa59ecb12845e32542814f848bcb1a6", + "sha256_in_prefix": "a15ef4e5a5108a9e3dab4e813180554effa59ecb12845e32542814f848bcb1a6", + "size_in_bytes": 30379 + }, + { + "_path": "share/locale/tr/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "1665a73aef9d506f2cade01d21bbdd21dc658421dd4d8aad62733b93ca821236", + "sha256_in_prefix": "1665a73aef9d506f2cade01d21bbdd21dc658421dd4d8aad62733b93ca821236", + "size_in_bytes": 22029 + }, + { + "_path": "share/locale/uk/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "57f900b59f775e638642b386ecb0908e30f414d537142a914ce195fdf57513e4", + "sha256_in_prefix": "57f900b59f775e638642b386ecb0908e30f414d537142a914ce195fdf57513e4", + "size_in_bytes": 40332 + }, + { + "_path": "share/locale/vi/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "58c1d31074363b532e7593d2588e21ac501c74cb75bc58a73ca4569450ed91aa", + "sha256_in_prefix": "58c1d31074363b532e7593d2588e21ac501c74cb75bc58a73ca4569450ed91aa", + "size_in_bytes": 32859 + }, + { + "_path": "share/locale/zh_CN/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "9eff3916af8956f465f8232ef843d3a09fa0d3d07e38d6aedb5ca058d2dcaa14", + "sha256_in_prefix": "9eff3916af8956f465f8232ef843d3a09fa0d3d07e38d6aedb5ca058d2dcaa14", + "size_in_bytes": 28989 + }, + { + "_path": "share/locale/zh_TW/LC_MESSAGES/xz.mo", + "path_type": "hardlink", + "sha256": "c4c1a82dd9284bcbfca83a426d5059e7cfd323d2158fffa9a249e2209996068c", + "sha256_in_prefix": "c4c1a82dd9284bcbfca83a426d5059e7cfd323d2158fffa9a249e2209996068c", + "size_in_bytes": 28682 + }, + { + "_path": "share/man/de/man1/lzcat.1", + "path_type": "softlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/lzcmp.1", + "path_type": "softlink", + "sha256": "00efa9e98a02ad24fe72a48dbd076478f27778ece41dc0f9c91f258128b8e654", + "size_in_bytes": 2213 + }, + { + "_path": "share/man/de/man1/lzdiff.1", + "path_type": "softlink", + "sha256": "00efa9e98a02ad24fe72a48dbd076478f27778ece41dc0f9c91f258128b8e654", + "size_in_bytes": 2213 + }, + { + "_path": "share/man/de/man1/lzegrep.1", + "path_type": "softlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/lzfgrep.1", + "path_type": "softlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/lzgrep.1", + "path_type": "softlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/lzless.1", + "path_type": "softlink", + "sha256": "1e76fe9a084981408ab5b5d77889701f44e421aae0afb95477d3830965fbacfd", + "size_in_bytes": 1986 + }, + { + "_path": "share/man/de/man1/lzma.1", + "path_type": "softlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "6514a31405753c74e7ae1e8f6f2f47d4859efdafb75ee54aa8c25a24753ea405", + "size_in_bytes": 3804 + }, + { + "_path": "share/man/de/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "d9b45c6c1dc77ac49c40d9fab75a372d9ac17535336bdfd6eec2503c2a42e852", + "sha256_in_prefix": "d9b45c6c1dc77ac49c40d9fab75a372d9ac17535336bdfd6eec2503c2a42e852", + "size_in_bytes": 1835 + }, + { + "_path": "share/man/de/man1/lzmore.1", + "path_type": "softlink", + "sha256": "68f633018d7eed39f3c1a6d25d21c9ddc814de43db856d4a9985790b5f9f8512", + "size_in_bytes": 1873 + }, + { + "_path": "share/man/de/man1/unlzma.1", + "path_type": "softlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/unxz.1", + "path_type": "softlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/xz.1", + "path_type": "hardlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "sha256_in_prefix": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/xzcat.1", + "path_type": "softlink", + "sha256": "29a47c6e96289529ca23b227c1ce0eee0a221d3d3873a2f96ecd2f4f01543bbf", + "size_in_bytes": 91972 + }, + { + "_path": "share/man/de/man1/xzcmp.1", + "path_type": "softlink", + "sha256": "00efa9e98a02ad24fe72a48dbd076478f27778ece41dc0f9c91f258128b8e654", + "size_in_bytes": 2213 + }, + { + "_path": "share/man/de/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "6514a31405753c74e7ae1e8f6f2f47d4859efdafb75ee54aa8c25a24753ea405", + "sha256_in_prefix": "6514a31405753c74e7ae1e8f6f2f47d4859efdafb75ee54aa8c25a24753ea405", + "size_in_bytes": 3804 + }, + { + "_path": "share/man/de/man1/xzdiff.1", + "path_type": "hardlink", + "sha256": "00efa9e98a02ad24fe72a48dbd076478f27778ece41dc0f9c91f258128b8e654", + "sha256_in_prefix": "00efa9e98a02ad24fe72a48dbd076478f27778ece41dc0f9c91f258128b8e654", + "size_in_bytes": 2213 + }, + { + "_path": "share/man/de/man1/xzegrep.1", + "path_type": "softlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/xzfgrep.1", + "path_type": "softlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/xzgrep.1", + "path_type": "hardlink", + "sha256": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "sha256_in_prefix": "e639790b6a4a2ce997052d6be7882b8f6dffaccb0d6108302040ef6e12dbc530", + "size_in_bytes": 2984 + }, + { + "_path": "share/man/de/man1/xzless.1", + "path_type": "hardlink", + "sha256": "1e76fe9a084981408ab5b5d77889701f44e421aae0afb95477d3830965fbacfd", + "sha256_in_prefix": "1e76fe9a084981408ab5b5d77889701f44e421aae0afb95477d3830965fbacfd", + "size_in_bytes": 1986 + }, + { + "_path": "share/man/de/man1/xzmore.1", + "path_type": "hardlink", + "sha256": "68f633018d7eed39f3c1a6d25d21c9ddc814de43db856d4a9985790b5f9f8512", + "sha256_in_prefix": "68f633018d7eed39f3c1a6d25d21c9ddc814de43db856d4a9985790b5f9f8512", + "size_in_bytes": 1873 + }, + { + "_path": "share/man/fr/man1/lzcat.1", + "path_type": "softlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/lzless.1", + "path_type": "softlink", + "sha256": "f30a6720aa2866df5d883b88272602ede8f0e4331daeeb0cac21be9b054f45f8", + "size_in_bytes": 1948 + }, + { + "_path": "share/man/fr/man1/lzma.1", + "path_type": "softlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "e7f436ab212228f517cfad42e88863dc8754decda2c8838e8dfffe5f0541ec59", + "size_in_bytes": 3670 + }, + { + "_path": "share/man/fr/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "afda43fbf8c6fd6146f1180c703881ae7daa65eb3c78dd8253e16b260fc7996d", + "sha256_in_prefix": "afda43fbf8c6fd6146f1180c703881ae7daa65eb3c78dd8253e16b260fc7996d", + "size_in_bytes": 1847 + }, + { + "_path": "share/man/fr/man1/unlzma.1", + "path_type": "softlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/unxz.1", + "path_type": "softlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/xz.1", + "path_type": "hardlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "sha256_in_prefix": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/xzcat.1", + "path_type": "softlink", + "sha256": "be1dd1c9d8207fef9ad651aa312eee013e8b4493efc30d4336fbff2536ea5b8b", + "size_in_bytes": 85887 + }, + { + "_path": "share/man/fr/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "e7f436ab212228f517cfad42e88863dc8754decda2c8838e8dfffe5f0541ec59", + "sha256_in_prefix": "e7f436ab212228f517cfad42e88863dc8754decda2c8838e8dfffe5f0541ec59", + "size_in_bytes": 3670 + }, + { + "_path": "share/man/fr/man1/xzless.1", + "path_type": "hardlink", + "sha256": "f30a6720aa2866df5d883b88272602ede8f0e4331daeeb0cac21be9b054f45f8", + "sha256_in_prefix": "f30a6720aa2866df5d883b88272602ede8f0e4331daeeb0cac21be9b054f45f8", + "size_in_bytes": 1948 + }, + { + "_path": "share/man/ko/man1/lzcat.1", + "path_type": "softlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/lzcmp.1", + "path_type": "softlink", + "sha256": "cb1d1547e62d03b2786fc2f1913a070a52032a86943b452c5b442d790db453b6", + "size_in_bytes": 2303 + }, + { + "_path": "share/man/ko/man1/lzdiff.1", + "path_type": "softlink", + "sha256": "cb1d1547e62d03b2786fc2f1913a070a52032a86943b452c5b442d790db453b6", + "size_in_bytes": 2303 + }, + { + "_path": "share/man/ko/man1/lzegrep.1", + "path_type": "softlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/lzfgrep.1", + "path_type": "softlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/lzgrep.1", + "path_type": "softlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/lzless.1", + "path_type": "softlink", + "sha256": "ace698a9660b5a093b8d1c44ef0ec30c2aaa41e2672e1661d671bdc10335b3b3", + "size_in_bytes": 1937 + }, + { + "_path": "share/man/ko/man1/lzma.1", + "path_type": "softlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "b5e781e552e10b830da6ce08c3ccc85a97cd8c9b3f6134dba18a35389511469d", + "size_in_bytes": 3970 + }, + { + "_path": "share/man/ko/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "4c44a0f1356d9d36c24e149ae2219fa2f62076c5b347cb60fa097177c5f91456", + "sha256_in_prefix": "4c44a0f1356d9d36c24e149ae2219fa2f62076c5b347cb60fa097177c5f91456", + "size_in_bytes": 1717 + }, + { + "_path": "share/man/ko/man1/lzmore.1", + "path_type": "softlink", + "sha256": "02bf38dbb1ed6b40b8fb09cb68e7f09af6923b5552d0366767b6d03826bf0c96", + "size_in_bytes": 1864 + }, + { + "_path": "share/man/ko/man1/unlzma.1", + "path_type": "softlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/unxz.1", + "path_type": "softlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/xz.1", + "path_type": "hardlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "sha256_in_prefix": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/xzcat.1", + "path_type": "softlink", + "sha256": "f8c07f64501c65d34379316d70f13b7146cb9f0c4cdac134b95d3fff296bb0fb", + "size_in_bytes": 91217 + }, + { + "_path": "share/man/ko/man1/xzcmp.1", + "path_type": "softlink", + "sha256": "cb1d1547e62d03b2786fc2f1913a070a52032a86943b452c5b442d790db453b6", + "size_in_bytes": 2303 + }, + { + "_path": "share/man/ko/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "b5e781e552e10b830da6ce08c3ccc85a97cd8c9b3f6134dba18a35389511469d", + "sha256_in_prefix": "b5e781e552e10b830da6ce08c3ccc85a97cd8c9b3f6134dba18a35389511469d", + "size_in_bytes": 3970 + }, + { + "_path": "share/man/ko/man1/xzdiff.1", + "path_type": "hardlink", + "sha256": "cb1d1547e62d03b2786fc2f1913a070a52032a86943b452c5b442d790db453b6", + "sha256_in_prefix": "cb1d1547e62d03b2786fc2f1913a070a52032a86943b452c5b442d790db453b6", + "size_in_bytes": 2303 + }, + { + "_path": "share/man/ko/man1/xzegrep.1", + "path_type": "softlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/xzfgrep.1", + "path_type": "softlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/xzgrep.1", + "path_type": "hardlink", + "sha256": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "sha256_in_prefix": "6455ff754817fe038dd70f3ebb2bbc919f12838142f4200ce82f34de8a2546d1", + "size_in_bytes": 3002 + }, + { + "_path": "share/man/ko/man1/xzless.1", + "path_type": "hardlink", + "sha256": "ace698a9660b5a093b8d1c44ef0ec30c2aaa41e2672e1661d671bdc10335b3b3", + "sha256_in_prefix": "ace698a9660b5a093b8d1c44ef0ec30c2aaa41e2672e1661d671bdc10335b3b3", + "size_in_bytes": 1937 + }, + { + "_path": "share/man/ko/man1/xzmore.1", + "path_type": "hardlink", + "sha256": "02bf38dbb1ed6b40b8fb09cb68e7f09af6923b5552d0366767b6d03826bf0c96", + "sha256_in_prefix": "02bf38dbb1ed6b40b8fb09cb68e7f09af6923b5552d0366767b6d03826bf0c96", + "size_in_bytes": 1864 + }, + { + "_path": "share/man/man1/lzcat.1", + "path_type": "softlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/lzcmp.1", + "path_type": "softlink", + "sha256": "84d29a07ab0bdaec3313da1bc47c86622f8c2ad1a1aaab5739fc77635e954965", + "size_in_bytes": 1583 + }, + { + "_path": "share/man/man1/lzdiff.1", + "path_type": "softlink", + "sha256": "84d29a07ab0bdaec3313da1bc47c86622f8c2ad1a1aaab5739fc77635e954965", + "size_in_bytes": 1583 + }, + { + "_path": "share/man/man1/lzegrep.1", + "path_type": "softlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/lzfgrep.1", + "path_type": "softlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/lzgrep.1", + "path_type": "softlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/lzless.1", + "path_type": "softlink", + "sha256": "87818fbf79f3e5fde634d9664679cdd55edd1e8aff2517b060d592cd93967a60", + "size_in_bytes": 1336 + }, + { + "_path": "share/man/man1/lzma.1", + "path_type": "softlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "f76956a912083452e30c06cb3c45958cd789b5a2b099188be42fbeff023fceef", + "size_in_bytes": 2768 + }, + { + "_path": "share/man/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "31ffd26a376af65fbf2c04841f16d6433321ba49456f4ded396bebecc9ebf4c6", + "sha256_in_prefix": "31ffd26a376af65fbf2c04841f16d6433321ba49456f4ded396bebecc9ebf4c6", + "size_in_bytes": 1180 + }, + { + "_path": "share/man/man1/lzmore.1", + "path_type": "softlink", + "sha256": "6616d499a8fed6490affe103b2dad82db156d73a6be5e74f65a3c19c0b5e108b", + "size_in_bytes": 1206 + }, + { + "_path": "share/man/man1/unlzma.1", + "path_type": "softlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/unxz.1", + "path_type": "softlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/xz.1", + "path_type": "hardlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "sha256_in_prefix": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/xzcat.1", + "path_type": "softlink", + "sha256": "cea559deb151b1ce2754fa0c67057447c69f51fa0ac51f4edee41948a5481223", + "size_in_bytes": 74684 + }, + { + "_path": "share/man/man1/xzcmp.1", + "path_type": "softlink", + "sha256": "84d29a07ab0bdaec3313da1bc47c86622f8c2ad1a1aaab5739fc77635e954965", + "size_in_bytes": 1583 + }, + { + "_path": "share/man/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "f76956a912083452e30c06cb3c45958cd789b5a2b099188be42fbeff023fceef", + "sha256_in_prefix": "f76956a912083452e30c06cb3c45958cd789b5a2b099188be42fbeff023fceef", + "size_in_bytes": 2768 + }, + { + "_path": "share/man/man1/xzdiff.1", + "path_type": "hardlink", + "sha256": "84d29a07ab0bdaec3313da1bc47c86622f8c2ad1a1aaab5739fc77635e954965", + "sha256_in_prefix": "84d29a07ab0bdaec3313da1bc47c86622f8c2ad1a1aaab5739fc77635e954965", + "size_in_bytes": 1583 + }, + { + "_path": "share/man/man1/xzegrep.1", + "path_type": "softlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/xzfgrep.1", + "path_type": "softlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/xzgrep.1", + "path_type": "hardlink", + "sha256": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "sha256_in_prefix": "8db4edc110dd8cec6152f8d4397a8e9785ccea84c45af41358c66a7d529acb3d", + "size_in_bytes": 2202 + }, + { + "_path": "share/man/man1/xzless.1", + "path_type": "hardlink", + "sha256": "87818fbf79f3e5fde634d9664679cdd55edd1e8aff2517b060d592cd93967a60", + "sha256_in_prefix": "87818fbf79f3e5fde634d9664679cdd55edd1e8aff2517b060d592cd93967a60", + "size_in_bytes": 1336 + }, + { + "_path": "share/man/man1/xzmore.1", + "path_type": "hardlink", + "sha256": "6616d499a8fed6490affe103b2dad82db156d73a6be5e74f65a3c19c0b5e108b", + "sha256_in_prefix": "6616d499a8fed6490affe103b2dad82db156d73a6be5e74f65a3c19c0b5e108b", + "size_in_bytes": 1206 + }, + { + "_path": "share/man/pt_BR/man1/lzcat.1", + "path_type": "softlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/lzless.1", + "path_type": "softlink", + "sha256": "38b468e5d6c7b265f9abd9561882c670b28af87d6a245e2ec80c8f164e9910cf", + "size_in_bytes": 1896 + }, + { + "_path": "share/man/pt_BR/man1/lzma.1", + "path_type": "softlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "4f0d204b8beffb0424cb465444603e08ef136038d3b77f503e7ca7473b1a13b9", + "size_in_bytes": 3525 + }, + { + "_path": "share/man/pt_BR/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "39e348e1629b07676246d0baf563054f129f7179d947574ae340c47fff6cb358", + "sha256_in_prefix": "39e348e1629b07676246d0baf563054f129f7179d947574ae340c47fff6cb358", + "size_in_bytes": 1774 + }, + { + "_path": "share/man/pt_BR/man1/unlzma.1", + "path_type": "softlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/unxz.1", + "path_type": "softlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/xz.1", + "path_type": "hardlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "sha256_in_prefix": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/xzcat.1", + "path_type": "softlink", + "sha256": "647f7754ca762b0c18a1d77dd217fd9bc700ede523cb6f767cc618c2185b5624", + "size_in_bytes": 84537 + }, + { + "_path": "share/man/pt_BR/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "4f0d204b8beffb0424cb465444603e08ef136038d3b77f503e7ca7473b1a13b9", + "sha256_in_prefix": "4f0d204b8beffb0424cb465444603e08ef136038d3b77f503e7ca7473b1a13b9", + "size_in_bytes": 3525 + }, + { + "_path": "share/man/pt_BR/man1/xzless.1", + "path_type": "hardlink", + "sha256": "38b468e5d6c7b265f9abd9561882c670b28af87d6a245e2ec80c8f164e9910cf", + "sha256_in_prefix": "38b468e5d6c7b265f9abd9561882c670b28af87d6a245e2ec80c8f164e9910cf", + "size_in_bytes": 1896 + }, + { + "_path": "share/man/ro/man1/lzcat.1", + "path_type": "softlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/lzcmp.1", + "path_type": "softlink", + "sha256": "4920471e292a47c92e62510b4f2ae6702029a57c4e168e1d7959170bc1fea60d", + "size_in_bytes": 2929 + }, + { + "_path": "share/man/ro/man1/lzdiff.1", + "path_type": "softlink", + "sha256": "4920471e292a47c92e62510b4f2ae6702029a57c4e168e1d7959170bc1fea60d", + "size_in_bytes": 2929 + }, + { + "_path": "share/man/ro/man1/lzegrep.1", + "path_type": "softlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/lzfgrep.1", + "path_type": "softlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/lzgrep.1", + "path_type": "softlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/lzless.1", + "path_type": "softlink", + "sha256": "9bc75d516b9d90acd150312b23262eaa70f3da800071e6bc6cc5f50833a9c839", + "size_in_bytes": 2655 + }, + { + "_path": "share/man/ro/man1/lzma.1", + "path_type": "softlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "b03fff3e3690d9aacf8daa59fcbed115ea47ff29805b519c368530752255b2e1", + "size_in_bytes": 4521 + }, + { + "_path": "share/man/ro/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "27cb11c29b4444c8f00808e8b3e283e1f0ec7472c4f44b0c47da4c4a87613ed1", + "sha256_in_prefix": "27cb11c29b4444c8f00808e8b3e283e1f0ec7472c4f44b0c47da4c4a87613ed1", + "size_in_bytes": 2455 + }, + { + "_path": "share/man/ro/man1/lzmore.1", + "path_type": "softlink", + "sha256": "94142d441f70cf1a5156855f9d584f7962abeba3c28b8beda4e7757b73b8da80", + "size_in_bytes": 2506 + }, + { + "_path": "share/man/ro/man1/unlzma.1", + "path_type": "softlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/unxz.1", + "path_type": "softlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/xz.1", + "path_type": "hardlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "sha256_in_prefix": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/xzcat.1", + "path_type": "softlink", + "sha256": "bcf5cc7b37f34ee2c88ab87580f7f2a9fb44303b9a251aadc4ed14d8751e8782", + "size_in_bytes": 92969 + }, + { + "_path": "share/man/ro/man1/xzcmp.1", + "path_type": "softlink", + "sha256": "4920471e292a47c92e62510b4f2ae6702029a57c4e168e1d7959170bc1fea60d", + "size_in_bytes": 2929 + }, + { + "_path": "share/man/ro/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "b03fff3e3690d9aacf8daa59fcbed115ea47ff29805b519c368530752255b2e1", + "sha256_in_prefix": "b03fff3e3690d9aacf8daa59fcbed115ea47ff29805b519c368530752255b2e1", + "size_in_bytes": 4521 + }, + { + "_path": "share/man/ro/man1/xzdiff.1", + "path_type": "hardlink", + "sha256": "4920471e292a47c92e62510b4f2ae6702029a57c4e168e1d7959170bc1fea60d", + "sha256_in_prefix": "4920471e292a47c92e62510b4f2ae6702029a57c4e168e1d7959170bc1fea60d", + "size_in_bytes": 2929 + }, + { + "_path": "share/man/ro/man1/xzegrep.1", + "path_type": "softlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/xzfgrep.1", + "path_type": "softlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/xzgrep.1", + "path_type": "hardlink", + "sha256": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "sha256_in_prefix": "94d4a7f18466f9449cacc535d753d11b91bca827ab58d30ba4aca97505d5ddf9", + "size_in_bytes": 3648 + }, + { + "_path": "share/man/ro/man1/xzless.1", + "path_type": "hardlink", + "sha256": "9bc75d516b9d90acd150312b23262eaa70f3da800071e6bc6cc5f50833a9c839", + "sha256_in_prefix": "9bc75d516b9d90acd150312b23262eaa70f3da800071e6bc6cc5f50833a9c839", + "size_in_bytes": 2655 + }, + { + "_path": "share/man/ro/man1/xzmore.1", + "path_type": "hardlink", + "sha256": "94142d441f70cf1a5156855f9d584f7962abeba3c28b8beda4e7757b73b8da80", + "sha256_in_prefix": "94142d441f70cf1a5156855f9d584f7962abeba3c28b8beda4e7757b73b8da80", + "size_in_bytes": 2506 + }, + { + "_path": "share/man/uk/man1/lzcat.1", + "path_type": "softlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/lzcmp.1", + "path_type": "softlink", + "sha256": "0a72754e6849ed610e50694dbe740abc27eb4088b538a875ddf6e107bfb9b8c8", + "size_in_bytes": 2777 + }, + { + "_path": "share/man/uk/man1/lzdiff.1", + "path_type": "softlink", + "sha256": "0a72754e6849ed610e50694dbe740abc27eb4088b538a875ddf6e107bfb9b8c8", + "size_in_bytes": 2777 + }, + { + "_path": "share/man/uk/man1/lzegrep.1", + "path_type": "softlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/lzfgrep.1", + "path_type": "softlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/lzgrep.1", + "path_type": "softlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/lzless.1", + "path_type": "softlink", + "sha256": "2bcfcf9b6c70fbeeb05bac79a035b6cf7d27d2aeb0df2a3b567384e4118999a4", + "size_in_bytes": 2630 + }, + { + "_path": "share/man/uk/man1/lzma.1", + "path_type": "softlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/lzmadec.1", + "path_type": "softlink", + "sha256": "f9dbf80b801632d2b69fb46b6b4dfdcc2e5b20ef5f657239ab31752319443d96", + "size_in_bytes": 5269 + }, + { + "_path": "share/man/uk/man1/lzmainfo.1", + "path_type": "hardlink", + "sha256": "17317fe272bb070dad88610b20bebf666318ac47c73e12cc01159069407709b0", + "sha256_in_prefix": "17317fe272bb070dad88610b20bebf666318ac47c73e12cc01159069407709b0", + "size_in_bytes": 2416 + }, + { + "_path": "share/man/uk/man1/lzmore.1", + "path_type": "softlink", + "sha256": "713e8773d224afcc0314a760c611e58607d490885d52f3a0610c38ccb50fab3b", + "size_in_bytes": 2355 + }, + { + "_path": "share/man/uk/man1/unlzma.1", + "path_type": "softlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/unxz.1", + "path_type": "softlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/xz.1", + "path_type": "hardlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "sha256_in_prefix": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/xzcat.1", + "path_type": "softlink", + "sha256": "61f6a0dc663a9c5f63307f45432e06bc9dc34e336bee4f69ff08d2a7c7defd98", + "size_in_bytes": 139729 + }, + { + "_path": "share/man/uk/man1/xzcmp.1", + "path_type": "softlink", + "sha256": "0a72754e6849ed610e50694dbe740abc27eb4088b538a875ddf6e107bfb9b8c8", + "size_in_bytes": 2777 + }, + { + "_path": "share/man/uk/man1/xzdec.1", + "path_type": "hardlink", + "sha256": "f9dbf80b801632d2b69fb46b6b4dfdcc2e5b20ef5f657239ab31752319443d96", + "sha256_in_prefix": "f9dbf80b801632d2b69fb46b6b4dfdcc2e5b20ef5f657239ab31752319443d96", + "size_in_bytes": 5269 + }, + { + "_path": "share/man/uk/man1/xzdiff.1", + "path_type": "hardlink", + "sha256": "0a72754e6849ed610e50694dbe740abc27eb4088b538a875ddf6e107bfb9b8c8", + "sha256_in_prefix": "0a72754e6849ed610e50694dbe740abc27eb4088b538a875ddf6e107bfb9b8c8", + "size_in_bytes": 2777 + }, + { + "_path": "share/man/uk/man1/xzegrep.1", + "path_type": "softlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/xzfgrep.1", + "path_type": "softlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/xzgrep.1", + "path_type": "hardlink", + "sha256": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "sha256_in_prefix": "4adb636c25af85965bad6d34b28bd837dd94b601734a03c354a614d4acd19f29", + "size_in_bytes": 3902 + }, + { + "_path": "share/man/uk/man1/xzless.1", + "path_type": "hardlink", + "sha256": "2bcfcf9b6c70fbeeb05bac79a035b6cf7d27d2aeb0df2a3b567384e4118999a4", + "sha256_in_prefix": "2bcfcf9b6c70fbeeb05bac79a035b6cf7d27d2aeb0df2a3b567384e4118999a4", + "size_in_bytes": 2630 + }, + { + "_path": "share/man/uk/man1/xzmore.1", + "path_type": "hardlink", + "sha256": "713e8773d224afcc0314a760c611e58607d490885d52f3a0610c38ccb50fab3b", + "sha256_in_prefix": "713e8773d224afcc0314a760c611e58607d490885d52f3a0610c38ccb50fab3b", + "size_in_bytes": 2355 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "a9445543c2b1a1a96c052ac4535cfceb413cdbb0454a0710f9a4c98e7d5d0b1c", + "size": 580311, + "subdir": "linux-64", + "timestamp": 1739468299000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/xz-5.6.4-h5eee18b_1.conda", + "version": "5.6.4" +} \ No newline at end of file diff --git a/deepseek/conda-meta/zlib-1.2.13-h5eee18b_1.json b/deepseek/conda-meta/zlib-1.2.13-h5eee18b_1.json new file mode 100644 index 0000000000000000000000000000000000000000..22cacc420315cbcea2fe0ad72587c40377ccfd92 --- /dev/null +++ b/deepseek/conda-meta/zlib-1.2.13-h5eee18b_1.json @@ -0,0 +1,89 @@ +{ + "build": "h5eee18b_1", + "build_number": 1, + "channel": "https://repo.anaconda.com/pkgs/main", + "constrains": [], + "depends": [ + "libgcc-ng >=11.2.0" + ], + "extracted_package_dir": "/opt/conda/pkgs/zlib-1.2.13-h5eee18b_1", + "files": [ + "include/zconf.h", + "include/zlib.h", + "lib/libz.a", + "lib/libz.so", + "lib/libz.so.1", + "lib/libz.so.1.2.13", + "lib/pkgconfig/zlib.pc" + ], + "fn": "zlib-1.2.13-h5eee18b_1.conda", + "license": "Zlib", + "link": { + "source": "/opt/conda/pkgs/zlib-1.2.13-h5eee18b_1", + "type": 1 + }, + "md5": "92e42d8310108b0a440fb2e60b2b2a25", + "name": "zlib", + "package_tarball_full_path": "/opt/conda/pkgs/zlib-1.2.13-h5eee18b_1.conda", + "paths_data": { + "paths": [ + { + "_path": "include/zconf.h", + "path_type": "hardlink", + "sha256": "e5a9079e37fa799583634fcd6905b53f1c20fd1d98e6bae942674c3c419b9fab", + "sha256_in_prefix": "e5a9079e37fa799583634fcd6905b53f1c20fd1d98e6bae942674c3c419b9fab", + "size_in_bytes": 16671 + }, + { + "_path": "include/zlib.h", + "path_type": "hardlink", + "sha256": "a980a0d104198a53cc220c51ab5856e5be901bec8a2d02e0ee79a8754219dfed", + "sha256_in_prefix": "a980a0d104198a53cc220c51ab5856e5be901bec8a2d02e0ee79a8754219dfed", + "size_in_bytes": 97323 + }, + { + "_path": "lib/libz.a", + "path_type": "hardlink", + "sha256": "4dd684d6a6a4060c8a4193d95db812ca07047890ae0fe8d62cc34bb60370ffc4", + "sha256_in_prefix": "4dd684d6a6a4060c8a4193d95db812ca07047890ae0fe8d62cc34bb60370ffc4", + "size_in_bytes": 165662 + }, + { + "_path": "lib/libz.so", + "path_type": "softlink", + "sha256": "0b0e682a9dc7fd4895a6783288f851b793dc89633f28714027974fa4d66f3914", + "size_in_bytes": 124744 + }, + { + "_path": "lib/libz.so.1", + "path_type": "softlink", + "sha256": "0b0e682a9dc7fd4895a6783288f851b793dc89633f28714027974fa4d66f3914", + "size_in_bytes": 124744 + }, + { + "_path": "lib/libz.so.1.2.13", + "path_type": "hardlink", + "sha256": "0b0e682a9dc7fd4895a6783288f851b793dc89633f28714027974fa4d66f3914", + "sha256_in_prefix": "0b0e682a9dc7fd4895a6783288f851b793dc89633f28714027974fa4d66f3914", + "size_in_bytes": 124744 + }, + { + "_path": "lib/pkgconfig/zlib.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/croot/zlib_1714510689655/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl", + "sha256": "ba5e30a1d9ec0d7104c68a8017603c7a0802afa18970c117eda9b3ab098fa0d5", + "sha256_in_prefix": "d5dfc08a0cbe3e5d1f3cb41b3c54f116835506880a5b7c05d762c389f9fcc970", + "size_in_bytes": 1487 + } + ], + "paths_version": 1 + }, + "requested_spec": "None", + "sha256": "eb451d3dba56a77cfc3273c8124cd45a8c13329a16bf9a4954181d835c85677b", + "size": 113492, + "subdir": "linux-64", + "timestamp": 1714510716000, + "url": "https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.13-h5eee18b_1.conda", + "version": "1.2.13" +} \ No newline at end of file diff --git a/deepseek/etc/aau_token b/deepseek/etc/aau_token new file mode 100644 index 0000000000000000000000000000000000000000..5c08018a6ad4977680c9bd97fcd8ec05b567399c --- /dev/null +++ b/deepseek/etc/aau_token @@ -0,0 +1 @@ +IUTczx7fnBPIqHU-YyypJH \ No newline at end of file diff --git a/deepseek/lib/libatomic.so b/deepseek/lib/libatomic.so new file mode 100644 index 0000000000000000000000000000000000000000..0ac3eb4db4afc304563eb9424ebd8f5d8e2a38e0 --- /dev/null +++ b/deepseek/lib/libatomic.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1a92c18f01c13c9a89908fb86a7309ae5b89a882db9914114957bc4b6fed92 +size 143648 diff --git a/deepseek/lib/libffi.7.so b/deepseek/lib/libffi.7.so new file mode 100644 index 0000000000000000000000000000000000000000..dd23bfd7f0f937627caf212c56095fd6b257f4ea Binary files /dev/null and b/deepseek/lib/libffi.7.so differ diff --git a/deepseek/lib/libffi.8.so b/deepseek/lib/libffi.8.so new file mode 100644 index 0000000000000000000000000000000000000000..dd23bfd7f0f937627caf212c56095fd6b257f4ea Binary files /dev/null and b/deepseek/lib/libffi.8.so differ diff --git a/deepseek/lib/libffi.a b/deepseek/lib/libffi.a new file mode 100644 index 0000000000000000000000000000000000000000..b134f37f16faca62e3f2401e6b259e0958743c54 Binary files /dev/null and b/deepseek/lib/libffi.a differ diff --git a/deepseek/lib/libffi.so.8.1.2 b/deepseek/lib/libffi.so.8.1.2 new file mode 100644 index 0000000000000000000000000000000000000000..dd23bfd7f0f937627caf212c56095fd6b257f4ea Binary files /dev/null and b/deepseek/lib/libffi.so.8.1.2 differ diff --git a/deepseek/lib/libform.so b/deepseek/lib/libform.so new file mode 100644 index 0000000000000000000000000000000000000000..7baed3c80a7b6c4b6af47d0ab7730cfd8e6a2367 Binary files /dev/null and b/deepseek/lib/libform.so differ diff --git a/deepseek/lib/libform.so.6 b/deepseek/lib/libform.so.6 new file mode 100644 index 0000000000000000000000000000000000000000..7baed3c80a7b6c4b6af47d0ab7730cfd8e6a2367 Binary files /dev/null and b/deepseek/lib/libform.so.6 differ diff --git a/deepseek/lib/libform.so.6.4 b/deepseek/lib/libform.so.6.4 new file mode 100644 index 0000000000000000000000000000000000000000..7baed3c80a7b6c4b6af47d0ab7730cfd8e6a2367 Binary files /dev/null and b/deepseek/lib/libform.so.6.4 differ diff --git a/deepseek/lib/libformw.so b/deepseek/lib/libformw.so new file mode 100644 index 0000000000000000000000000000000000000000..7baed3c80a7b6c4b6af47d0ab7730cfd8e6a2367 Binary files /dev/null and b/deepseek/lib/libformw.so differ diff --git a/deepseek/lib/libgcc_s.so b/deepseek/lib/libgcc_s.so new file mode 100644 index 0000000000000000000000000000000000000000..c8e92242fc5b32888222e279088df08e791bd52c --- /dev/null +++ b/deepseek/lib/libgcc_s.so @@ -0,0 +1,4 @@ +/* GNU ld script + Use the shared library, but some functions are only in + the static library. */ +GROUP ( libgcc_s.so.1 -lgcc ) diff --git a/deepseek/lib/libhistory.so b/deepseek/lib/libhistory.so new file mode 100644 index 0000000000000000000000000000000000000000..2be669f5149d216b6a4a206ca26323b79b3caebc Binary files /dev/null and b/deepseek/lib/libhistory.so differ diff --git a/deepseek/lib/libhistory.so.8.2 b/deepseek/lib/libhistory.so.8.2 new file mode 100644 index 0000000000000000000000000000000000000000..2be669f5149d216b6a4a206ca26323b79b3caebc Binary files /dev/null and b/deepseek/lib/libhistory.so.8.2 differ diff --git a/deepseek/lib/liblsan.so.0 b/deepseek/lib/liblsan.so.0 new file mode 100644 index 0000000000000000000000000000000000000000..a4f8ff49997ebf5cd3f2525aa7edc7af5871552b --- /dev/null +++ b/deepseek/lib/liblsan.so.0 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b898a178573c3ec5feb7246182ac8ebc2664197e35bf08040e6ca2ee4719757 +size 2691440 diff --git a/deepseek/lib/libmenu.a b/deepseek/lib/libmenu.a new file mode 100644 index 0000000000000000000000000000000000000000..b6aa1ce4eb7ed7a56cdac4fbc2e488cbc94d89fb Binary files /dev/null and b/deepseek/lib/libmenu.a differ diff --git a/deepseek/lib/libmenu.so b/deepseek/lib/libmenu.so new file mode 100644 index 0000000000000000000000000000000000000000..7cb31173a4e4378f4c0ff419363e9c12093a66de Binary files /dev/null and b/deepseek/lib/libmenu.so differ diff --git a/deepseek/lib/libmenu.so.6 b/deepseek/lib/libmenu.so.6 new file mode 100644 index 0000000000000000000000000000000000000000..7cb31173a4e4378f4c0ff419363e9c12093a66de Binary files /dev/null and b/deepseek/lib/libmenu.so.6 differ diff --git a/deepseek/lib/libmenu.so.6.4 b/deepseek/lib/libmenu.so.6.4 new file mode 100644 index 0000000000000000000000000000000000000000..7cb31173a4e4378f4c0ff419363e9c12093a66de Binary files /dev/null and b/deepseek/lib/libmenu.so.6.4 differ diff --git a/deepseek/lib/libmenuw.so.6.4 b/deepseek/lib/libmenuw.so.6.4 new file mode 100644 index 0000000000000000000000000000000000000000..7cb31173a4e4378f4c0ff419363e9c12093a66de Binary files /dev/null and b/deepseek/lib/libmenuw.so.6.4 differ diff --git a/deepseek/lib/libncurses.so.6 b/deepseek/lib/libncurses.so.6 new file mode 100644 index 0000000000000000000000000000000000000000..0745e17b73f2d5570bc5f8868bab0381bd7da794 --- /dev/null +++ b/deepseek/lib/libncurses.so.6 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa4e5e93804d78660b0eef727cdb4211209e1742e4ad3669348022668d90962 +size 271304 diff --git a/deepseek/lib/libpanel.so.6.4 b/deepseek/lib/libpanel.so.6.4 new file mode 100644 index 0000000000000000000000000000000000000000..0abaf7359565d5b177893357615e4d1e779068e5 Binary files /dev/null and b/deepseek/lib/libpanel.so.6.4 differ diff --git a/deepseek/lib/libquadmath.so.0.0.0 b/deepseek/lib/libquadmath.so.0.0.0 new file mode 100644 index 0000000000000000000000000000000000000000..cd082c15339041642f25b85e32bd65b9e0393619 --- /dev/null +++ b/deepseek/lib/libquadmath.so.0.0.0 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c6fadba4c2f6d77e836a50aadbd92e95b137a85eb01b1ca183b50d8f39a2c6 +size 1009408 diff --git a/deepseek/lib/libreadline.a b/deepseek/lib/libreadline.a new file mode 100644 index 0000000000000000000000000000000000000000..ddfa236a3a6b4ac6383a3befb5ea24fbd7edaa47 --- /dev/null +++ b/deepseek/lib/libreadline.a @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34edb0aaf24f86fa37e869bb46389534179d560e141a744b15d854497148663a +size 749782 diff --git a/deepseek/lib/libreadline.so b/deepseek/lib/libreadline.so new file mode 100644 index 0000000000000000000000000000000000000000..3d1ca162d3248c9d4e76c84be87174ab49829fe1 --- /dev/null +++ b/deepseek/lib/libreadline.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6a9d66a73115c872272bb479c8f29df1bf7d9b16e5913e083d64b7753ce1c6 +size 411464 diff --git a/deepseek/lib/libreadline.so.8 b/deepseek/lib/libreadline.so.8 new file mode 100644 index 0000000000000000000000000000000000000000..3d1ca162d3248c9d4e76c84be87174ab49829fe1 --- /dev/null +++ b/deepseek/lib/libreadline.so.8 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6a9d66a73115c872272bb479c8f29df1bf7d9b16e5913e083d64b7753ce1c6 +size 411464 diff --git a/deepseek/lib/libsqlite3.so b/deepseek/lib/libsqlite3.so new file mode 100644 index 0000000000000000000000000000000000000000..531fb86e0309a27d33fb4bc03e4442023e5cd590 --- /dev/null +++ b/deepseek/lib/libsqlite3.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71932eb5bf89092fbd2c900601fc9f24aa184d65038aaec2445fd11b1d923327 +size 1543808 diff --git a/deepseek/lib/libssl.so.3 b/deepseek/lib/libssl.so.3 new file mode 100644 index 0000000000000000000000000000000000000000..53b6e92c255c102b29b845c3cc906034d8461529 --- /dev/null +++ b/deepseek/lib/libssl.so.3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3480c91df4e0c1a33514955568641405e37924f680e8ba42f494a209640516c6 +size 775712 diff --git a/deepseek/lib/libtk8.6.so b/deepseek/lib/libtk8.6.so new file mode 100644 index 0000000000000000000000000000000000000000..787d4f66d24c84ae1916dbfcc77e5ac06cd5721c --- /dev/null +++ b/deepseek/lib/libtk8.6.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d3fa72bdd8a3c61cefda30f2266d3b46cc67b91f32956e6acb203edd452325 +size 1604176 diff --git a/deepseek/lib/libubsan.so.1 b/deepseek/lib/libubsan.so.1 new file mode 100644 index 0000000000000000000000000000000000000000..8a20a3e966d01059eb968c846260cb518ff4c4ee --- /dev/null +++ b/deepseek/lib/libubsan.so.1 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de75afd77639cabf1c2c4d37b04b4cbbbd257c75aae184ae5e0ea92930cf4d9 +size 2525984 diff --git a/deepseek/lib/libuuid.so.1 b/deepseek/lib/libuuid.so.1 new file mode 100644 index 0000000000000000000000000000000000000000..87e7c36b4c42406e82c44d062a11e9cbb7f0c4c4 Binary files /dev/null and b/deepseek/lib/libuuid.so.1 differ diff --git a/deepseek/lib/tcl8.6/auto.tcl b/deepseek/lib/tcl8.6/auto.tcl new file mode 100644 index 0000000000000000000000000000000000000000..f293a38f0433f426e30a168392075f52140dc678 --- /dev/null +++ b/deepseek/lib/tcl8.6/auto.tcl @@ -0,0 +1,648 @@ +# auto.tcl -- +# +# utility procs formerly in init.tcl dealing with auto execution of commands +# and can be auto loaded themselves. +# +# Copyright (c) 1991-1993 The Regents of the University of California. +# Copyright (c) 1994-1998 Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution of +# this file, and for a DISCLAIMER OF ALL WARRANTIES. +# + +# auto_reset -- +# +# Destroy all cached information for auto-loading and auto-execution, so that +# the information gets recomputed the next time it's needed. Also delete any +# commands that are listed in the auto-load index. +# +# Arguments: +# None. + +proc auto_reset {} { + global auto_execs auto_index auto_path + if {[array exists auto_index]} { + foreach cmdName [array names auto_index] { + set fqcn [namespace which $cmdName] + if {$fqcn eq ""} { + continue + } + rename $fqcn {} + } + } + unset -nocomplain auto_execs auto_index ::tcl::auto_oldpath + if {[catch {llength $auto_path}]} { + set auto_path [list [info library]] + } elseif {[info library] ni $auto_path} { + lappend auto_path [info library] + } +} + +# tcl_findLibrary -- +# +# This is a utility for extensions that searches for a library directory +# using a canonical searching algorithm. A side effect is to source the +# initialization script and set a global library variable. +# +# Arguments: +# basename Prefix of the directory name, (e.g., "tk") +# version Version number of the package, (e.g., "8.0") +# patch Patchlevel of the package, (e.g., "8.0.3") +# initScript Initialization script to source (e.g., tk.tcl) +# enVarName environment variable to honor (e.g., TK_LIBRARY) +# varName Global variable to set when done (e.g., tk_library) + +proc tcl_findLibrary {basename version patch initScript enVarName varName} { + upvar #0 $varName the_library + global auto_path env tcl_platform + + set dirs {} + set errors {} + + # The C application may have hardwired a path, which we honor + + if {[info exists the_library] && $the_library ne ""} { + lappend dirs $the_library + } else { + # Do the canonical search + + # 1. From an environment variable, if it exists. Placing this first + # gives the end-user ultimate control to work-around any bugs, or + # to customize. + + if {[info exists env($enVarName)]} { + lappend dirs $env($enVarName) + } + + # 2. In the package script directory registered within the + # configuration of the package itself. + + catch { + lappend dirs [::${basename}::pkgconfig get scriptdir,runtime] + } + + # 3. Relative to auto_path directories. This checks relative to the + # Tcl library as well as allowing loading of libraries added to the + # auto_path that is not relative to the core library or binary paths. + foreach d $auto_path { + lappend dirs [file join $d $basename$version] + if {$tcl_platform(platform) eq "unix" + && $tcl_platform(os) eq "Darwin"} { + # 4. On MacOSX, check the Resources/Scripts subdir too + lappend dirs [file join $d $basename$version Resources Scripts] + } + } + + # 3. Various locations relative to the executable + # ../lib/foo1.0 (From bin directory in install hierarchy) + # ../../lib/foo1.0 (From bin/arch directory in install hierarchy) + # ../library (From unix directory in build hierarchy) + # + # Remaining locations are out of date (when relevant, they ought to be + # covered by the $::auto_path seach above) and disabled. + # + # ../../library (From unix/arch directory in build hierarchy) + # ../../foo1.0.1/library + # (From unix directory in parallel build hierarchy) + # ../../../foo1.0.1/library + # (From unix/arch directory in parallel build hierarchy) + + set parentDir [file dirname [file dirname [info nameofexecutable]]] + set grandParentDir [file dirname $parentDir] + lappend dirs [file join $parentDir lib $basename$version] + lappend dirs [file join $grandParentDir lib $basename$version] + lappend dirs [file join $parentDir library] + if {0} { + lappend dirs [file join $grandParentDir library] + lappend dirs [file join $grandParentDir $basename$patch library] + lappend dirs [file join [file dirname $grandParentDir] \ + $basename$patch library] + } + } + # make $dirs unique, preserving order + array set seen {} + foreach i $dirs { + # Make sure $i is unique under normalization. Avoid repeated [source]. + if {[interp issafe]} { + # Safe interps have no [file normalize]. + set norm $i + } else { + set norm [file normalize $i] + } + if {[info exists seen($norm)]} { + continue + } + set seen($norm) {} + + set the_library $i + set file [file join $i $initScript] + + # source everything when in a safe interpreter because we have a + # source command, but no file exists command + + if {[interp issafe] || [file exists $file]} { + if {![catch {uplevel #0 [list source $file]} msg opts]} { + return + } + append errors "$file: $msg\n" + append errors [dict get $opts -errorinfo]\n + } + } + unset -nocomplain the_library + set msg "Can't find a usable $initScript in the following directories: \n" + append msg " $dirs\n\n" + append msg "$errors\n\n" + append msg "This probably means that $basename wasn't installed properly.\n" + error $msg +} + + +# ---------------------------------------------------------------------- +# auto_mkindex +# ---------------------------------------------------------------------- +# The following procedures are used to generate the tclIndex file from Tcl +# source files. They use a special safe interpreter to parse Tcl source +# files, writing out index entries as "proc" commands are encountered. This +# implementation won't work in a safe interpreter, since a safe interpreter +# can't create the special parser and mess with its commands. + +if {[interp issafe]} { + return ;# Stop sourcing the file here +} + +# auto_mkindex -- +# Regenerate a tclIndex file from Tcl source files. Takes as argument the +# name of the directory in which the tclIndex file is to be placed, followed +# by any number of glob patterns to use in that directory to locate all of the +# relevant files. +# +# Arguments: +# dir - Name of the directory in which to create an index. + +# args - Any number of additional arguments giving the names of files +# within dir. If no additional are given auto_mkindex will look +# for *.tcl. + +proc auto_mkindex {dir args} { + if {[interp issafe]} { + error "can't generate index within safe interpreter" + } + + set oldDir [pwd] + cd $dir + + append index "# Tcl autoload index file, version 2.0\n" + append index "# This file is generated by the \"auto_mkindex\" command\n" + append index "# and sourced to set up indexing information for one or\n" + append index "# more commands. Typically each line is a command that\n" + append index "# sets an element in the auto_index array, where the\n" + append index "# element name is the name of a command and the value is\n" + append index "# a script that loads the command.\n\n" + if {![llength $args]} { + set args *.tcl + } + + auto_mkindex_parser::init + foreach file [lsort [glob -- {*}$args]] { + try { + append index [auto_mkindex_parser::mkindex $file] + } on error {msg opts} { + cd $oldDir + return -options $opts $msg + } + } + auto_mkindex_parser::cleanup + + set fid [open "tclIndex" w] + puts -nonewline $fid $index + close $fid + cd $oldDir +} + +# Original version of auto_mkindex that just searches the source code for +# "proc" at the beginning of the line. + +proc auto_mkindex_old {dir args} { + set oldDir [pwd] + cd $dir + set dir [pwd] + append index "# Tcl autoload index file, version 2.0\n" + append index "# This file is generated by the \"auto_mkindex\" command\n" + append index "# and sourced to set up indexing information for one or\n" + append index "# more commands. Typically each line is a command that\n" + append index "# sets an element in the auto_index array, where the\n" + append index "# element name is the name of a command and the value is\n" + append index "# a script that loads the command.\n\n" + if {![llength $args]} { + set args *.tcl + } + foreach file [lsort [glob -- {*}$args]] { + set f "" + set error [catch { + set f [open $file] + fconfigure $f -eofchar "\x1A {}" + while {[gets $f line] >= 0} { + if {[regexp {^proc[ ]+([^ ]*)} $line match procName]} { + set procName [lindex [auto_qualify $procName "::"] 0] + append index "set [list auto_index($procName)]" + append index " \[list source \[file join \$dir [list $file]\]\]\n" + } + } + close $f + } msg opts] + if {$error} { + catch {close $f} + cd $oldDir + return -options $opts $msg + } + } + set f "" + set error [catch { + set f [open tclIndex w] + puts -nonewline $f $index + close $f + cd $oldDir + } msg opts] + if {$error} { + catch {close $f} + cd $oldDir + error $msg $info $code + return -options $opts $msg + } +} + +# Create a safe interpreter that can be used to parse Tcl source files +# generate a tclIndex file for autoloading. This interp contains commands for +# things that need index entries. Each time a command is executed, it writes +# an entry out to the index file. + +namespace eval auto_mkindex_parser { + variable parser "" ;# parser used to build index + variable index "" ;# maintains index as it is built + variable scriptFile "" ;# name of file being processed + variable contextStack "" ;# stack of namespace scopes + variable imports "" ;# keeps track of all imported cmds + variable initCommands ;# list of commands that create aliases + if {![info exists initCommands]} { + set initCommands [list] + } + + proc init {} { + variable parser + variable initCommands + + if {![interp issafe]} { + set parser [interp create -safe] + $parser hide info + $parser hide rename + $parser hide proc + $parser hide namespace + $parser hide eval + $parser hide puts + foreach ns [$parser invokehidden namespace children ::] { + # MUST NOT DELETE "::tcl" OR BAD THINGS HAPPEN! + if {$ns eq "::tcl"} continue + $parser invokehidden namespace delete $ns + } + foreach cmd [$parser invokehidden info commands ::*] { + $parser invokehidden rename $cmd {} + } + $parser invokehidden proc unknown {args} {} + + # We'll need access to the "namespace" command within the + # interp. Put it back, but move it out of the way. + + $parser expose namespace + $parser invokehidden rename namespace _%@namespace + $parser expose eval + $parser invokehidden rename eval _%@eval + + # Install all the registered pseudo-command implementations + + foreach cmd $initCommands { + eval $cmd + } + } + } + proc cleanup {} { + variable parser + interp delete $parser + unset parser + } +} + +# auto_mkindex_parser::mkindex -- +# +# Used by the "auto_mkindex" command to create a "tclIndex" file for the given +# Tcl source file. Executes the commands in the file, and handles things like +# the "proc" command by adding an entry for the index file. Returns a string +# that represents the index file. +# +# Arguments: +# file Name of Tcl source file to be indexed. + +proc auto_mkindex_parser::mkindex {file} { + variable parser + variable index + variable scriptFile + variable contextStack + variable imports + + set scriptFile $file + + set fid [open $file] + fconfigure $fid -eofchar "\x1A {}" + set contents [read $fid] + close $fid + + # There is one problem with sourcing files into the safe interpreter: + # references like "$x" will fail since code is not really being executed + # and variables do not really exist. To avoid this, we replace all $ with + # \0 (literally, the null char) later, when getting proc names we will + # have to reverse this replacement, in case there were any $ in the proc + # name. This will cause a problem if somebody actually tries to have a \0 + # in their proc name. Too bad for them. + set contents [string map [list \$ \0] $contents] + + set index "" + set contextStack "" + set imports "" + + $parser eval $contents + + foreach name $imports { + catch {$parser eval [list _%@namespace forget $name]} + } + return $index +} + +# auto_mkindex_parser::hook command +# +# Registers a Tcl command to evaluate when initializing the child interpreter +# used by the mkindex parser. The command is evaluated in the parent +# interpreter, and can use the variable auto_mkindex_parser::parser to get to +# the child + +proc auto_mkindex_parser::hook {cmd} { + variable initCommands + + lappend initCommands $cmd +} + +# auto_mkindex_parser::slavehook command +# +# Registers a Tcl command to evaluate when initializing the child interpreter +# used by the mkindex parser. The command is evaluated in the child +# interpreter. + +proc auto_mkindex_parser::slavehook {cmd} { + variable initCommands + + # The $parser variable is defined to be the name of the child interpreter + # when this command is used later. + + lappend initCommands "\$parser eval [list $cmd]" +} + +# auto_mkindex_parser::command -- +# +# Registers a new command with the "auto_mkindex_parser" interpreter that +# parses Tcl files. These commands are fake versions of things like the +# "proc" command. When you execute them, they simply write out an entry to a +# "tclIndex" file for auto-loading. +# +# This procedure allows extensions to register their own commands with the +# auto_mkindex facility. For example, a package like [incr Tcl] might +# register a "class" command so that class definitions could be added to a +# "tclIndex" file for auto-loading. +# +# Arguments: +# name Name of command recognized in Tcl files. +# arglist Argument list for command. +# body Implementation of command to handle indexing. + +proc auto_mkindex_parser::command {name arglist body} { + hook [list auto_mkindex_parser::commandInit $name $arglist $body] +} + +# auto_mkindex_parser::commandInit -- +# +# This does the actual work set up by auto_mkindex_parser::command. This is +# called when the interpreter used by the parser is created. +# +# Arguments: +# name Name of command recognized in Tcl files. +# arglist Argument list for command. +# body Implementation of command to handle indexing. + +proc auto_mkindex_parser::commandInit {name arglist body} { + variable parser + + set ns [namespace qualifiers $name] + set tail [namespace tail $name] + if {$ns eq ""} { + set fakeName [namespace current]::_%@fake_$tail + } else { + set fakeName [namespace current]::[string map {:: _} _%@fake_$name] + } + proc $fakeName $arglist $body + + # YUK! Tcl won't let us alias fully qualified command names, so we can't + # handle names like "::itcl::class". Instead, we have to build procs with + # the fully qualified names, and have the procs point to the aliases. + + if {[string match *::* $name]} { + set exportCmd [list _%@namespace export [namespace tail $name]] + $parser eval [list _%@namespace eval $ns $exportCmd] + + # The following proc definition does not work if you want to tolerate + # space or something else diabolical in the procedure name, (i.e., + # space in $alias). The following does not work: + # "_%@eval {$alias} \$args" + # because $alias gets concat'ed to $args. The following does not work + # because $cmd is somehow undefined + # "set cmd {$alias} \; _%@eval {\$cmd} \$args" + # A gold star to someone that can make test autoMkindex-3.3 work + # properly + + set alias [namespace tail $fakeName] + $parser invokehidden proc $name {args} "_%@eval {$alias} \$args" + $parser alias $alias $fakeName + } else { + $parser alias $name $fakeName + } + return +} + +# auto_mkindex_parser::fullname -- +# +# Used by commands like "proc" within the auto_mkindex parser. Returns the +# qualified namespace name for the "name" argument. If the "name" does not +# start with "::", elements are added from the current namespace stack to +# produce a qualified name. Then, the name is examined to see whether or not +# it should really be qualified. If the name has more than the leading "::", +# it is returned as a fully qualified name. Otherwise, it is returned as a +# simple name. That way, the Tcl autoloader will recognize it properly. +# +# Arguments: +# name - Name that is being added to index. + +proc auto_mkindex_parser::fullname {name} { + variable contextStack + + if {![string match ::* $name]} { + foreach ns $contextStack { + set name "${ns}::$name" + if {[string match ::* $name]} { + break + } + } + } + + if {[namespace qualifiers $name] eq ""} { + set name [namespace tail $name] + } elseif {![string match ::* $name]} { + set name "::$name" + } + + # Earlier, mkindex replaced all $'s with \0. Now, we have to reverse that + # replacement. + return [string map [list \0 \$] $name] +} + +# auto_mkindex_parser::indexEntry -- +# +# Used by commands like "proc" within the auto_mkindex parser to add a +# correctly-quoted entry to the index. This is shared code so it is done +# *right*, in one place. +# +# Arguments: +# name - Name that is being added to index. + +proc auto_mkindex_parser::indexEntry {name} { + variable index + variable scriptFile + + # We convert all metacharacters to their backslashed form, and pre-split + # the file name that we know about (which will be a proper list, and so + # correctly quoted). + + set name [string range [list \}[fullname $name]] 2 end] + set filenameParts [file split $scriptFile] + + append index [format \ + {set auto_index(%s) [list source [file join $dir %s]]%s} \ + $name $filenameParts \n] + return +} + +if {[llength $::auto_mkindex_parser::initCommands]} { + return +} + +# Register all of the procedures for the auto_mkindex parser that will build +# the "tclIndex" file. + +# AUTO MKINDEX: proc name arglist body +# Adds an entry to the auto index list for the given procedure name. + +auto_mkindex_parser::command proc {name args} { + indexEntry $name +} + +# Conditionally add support for Tcl byte code files. There are some tricky +# details here. First, we need to get the tbcload library initialized in the +# current interpreter. We cannot load tbcload into the child until we have +# done so because it needs access to the tcl_patchLevel variable. Second, +# because the package index file may defer loading the library until we invoke +# a command, we need to explicitly invoke auto_load to force it to be loaded. +# This should be a noop if the package has already been loaded + +auto_mkindex_parser::hook { + try { + package require tbcload + } on error {} { + # OK, don't have it so do nothing + } on ok {} { + if {[namespace which -command tbcload::bcproc] eq ""} { + auto_load tbcload::bcproc + } + load {} tbcload $auto_mkindex_parser::parser + + # AUTO MKINDEX: tbcload::bcproc name arglist body + # Adds an entry to the auto index list for the given precompiled + # procedure name. + + auto_mkindex_parser::commandInit tbcload::bcproc {name args} { + indexEntry $name + } + } +} + +# AUTO MKINDEX: namespace eval name command ?arg arg...? +# Adds the namespace name onto the context stack and evaluates the associated +# body of commands. +# +# AUTO MKINDEX: namespace import ?-force? pattern ?pattern...? +# Performs the "import" action in the parser interpreter. This is important +# for any commands contained in a namespace that affect the index. For +# example, a script may say "itcl::class ...", or it may import "itcl::*" and +# then say "class ...". This procedure does the import operation, but keeps +# track of imported patterns so we can remove the imports later. + +auto_mkindex_parser::command namespace {op args} { + switch -- $op { + eval { + variable parser + variable contextStack + + set name [lindex $args 0] + set args [lrange $args 1 end] + + set contextStack [linsert $contextStack 0 $name] + $parser eval [list _%@namespace eval $name] $args + set contextStack [lrange $contextStack 1 end] + } + import { + variable parser + variable imports + foreach pattern $args { + if {$pattern ne "-force"} { + lappend imports $pattern + } + } + catch {$parser eval "_%@namespace import $args"} + } + ensemble { + variable parser + variable contextStack + if {[lindex $args 0] eq "create"} { + set name ::[join [lreverse $contextStack] ::] + catch { + set name [dict get [lrange $args 1 end] -command] + if {![string match ::* $name]} { + set name ::[join [lreverse $contextStack] ::]$name + } + regsub -all ::+ $name :: name + } + # create artificial proc to force an entry in the tclIndex + $parser eval [list ::proc $name {} {}] + } + } + } +} + +# AUTO MKINDEX: oo::class create name ?definition? +# Adds an entry to the auto index list for the given class name. +auto_mkindex_parser::command oo::class {op name {body ""}} { + if {$op eq "create"} { + indexEntry $name + } +} +auto_mkindex_parser::command class {op name {body ""}} { + if {$op eq "create"} { + indexEntry $name + } +} + +return diff --git a/deepseek/lib/tcl8.6/encoding/iso8859-11.enc b/deepseek/lib/tcl8.6/encoding/iso8859-11.enc new file mode 100644 index 0000000000000000000000000000000000000000..d68345358cec5914c8ea532fe6b07cf7c4260bb8 --- /dev/null +++ b/deepseek/lib/tcl8.6/encoding/iso8859-11.enc @@ -0,0 +1,20 @@ +# Encoding file: iso8859-11, single-byte +S +003F 0 1 +00 +0000000100020003000400050006000700080009000A000B000C000D000E000F +0010001100120013001400150016001700180019001A001B001C001D001E001F +0020002100220023002400250026002700280029002A002B002C002D002E002F +0030003100320033003400350036003700380039003A003B003C003D003E003F +0040004100420043004400450046004700480049004A004B004C004D004E004F +0050005100520053005400550056005700580059005A005B005C005D005E005F +0060006100620063006400650066006700680069006A006B006C006D006E006F +0070007100720073007400750076007700780079007A007B007C007D007E007F +0080008100820083008400850086008700880089008A008B008C008D008E008F +0090009100920093009400950096009700980099009A009B009C009D009E009F +00A00E010E020E030E040E050E060E070E080E090E0A0E0B0E0C0E0D0E0E0E0F +0E100E110E120E130E140E150E160E170E180E190E1A0E1B0E1C0E1D0E1E0E1F +0E200E210E220E230E240E250E260E270E280E290E2A0E2B0E2C0E2D0E2E0E2F +0E300E310E320E330E340E350E360E370E380E390E3A00000000000000000E3F +0E400E410E420E430E440E450E460E470E480E490E4A0E4B0E4C0E4D0E4E0E4F +0E500E510E520E530E540E550E560E570E580E590E5A0E5B0000000000000000 diff --git a/deepseek/lib/tcl8.6/encoding/iso8859-4.enc b/deepseek/lib/tcl8.6/encoding/iso8859-4.enc new file mode 100644 index 0000000000000000000000000000000000000000..ef5c5a99825b58b9e1c1fc7624dd24946a5093fc --- /dev/null +++ b/deepseek/lib/tcl8.6/encoding/iso8859-4.enc @@ -0,0 +1,20 @@ +# Encoding file: iso8859-4, single-byte +S +003F 0 1 +00 +0000000100020003000400050006000700080009000A000B000C000D000E000F +0010001100120013001400150016001700180019001A001B001C001D001E001F +0020002100220023002400250026002700280029002A002B002C002D002E002F +0030003100320033003400350036003700380039003A003B003C003D003E003F +0040004100420043004400450046004700480049004A004B004C004D004E004F +0050005100520053005400550056005700580059005A005B005C005D005E005F +0060006100620063006400650066006700680069006A006B006C006D006E006F +0070007100720073007400750076007700780079007A007B007C007D007E007F +0080008100820083008400850086008700880089008A008B008C008D008E008F +0090009100920093009400950096009700980099009A009B009C009D009E009F +00A001040138015600A40128013B00A700A8016001120122016600AD017D00AF +00B0010502DB015700B40129013C02C700B80161011301230167014A017E014B +010000C100C200C300C400C500C6012E010C00C9011800CB011600CD00CE012A +01100145014C013600D400D500D600D700D8017200DA00DB00DC0168016A00DF +010100E100E200E300E400E500E6012F010D00E9011900EB011700ED00EE012B +01110146014D013700F400F500F600F700F8017300FA00FB00FC0169016B02D9 diff --git a/deepseek/lib/tcl8.6/encoding/macDingbats.enc b/deepseek/lib/tcl8.6/encoding/macDingbats.enc new file mode 100644 index 0000000000000000000000000000000000000000..28449cdd651be288dc6d4d28f59eb6f4d3dc5ef9 --- /dev/null +++ b/deepseek/lib/tcl8.6/encoding/macDingbats.enc @@ -0,0 +1,20 @@ +# Encoding file: macDingbats, single-byte +S +003F 1 1 +00 +0000000100020003000400050006000700080009000A000B000C000D000E000F +0010001100120013001400150016001700180019001A001B001C001D001E001F +00202701270227032704260E2706270727082709261B261E270C270D270E270F +2710271127122713271427152716271727182719271A271B271C271D271E271F +2720272127222723272427252726272726052729272A272B272C272D272E272F +2730273127322733273427352736273727382739273A273B273C273D273E273F +2740274127422743274427452746274727482749274A274B25CF274D25A0274F +27502751275225B225BC25C6275625D727582759275A275B275C275D275E007F +F8D7F8D8F8D9F8DAF8DBF8DCF8DDF8DEF8DFF8E0F8E1F8E2F8E3F8E4008E008F +0090009100920093009400950096009700980099009A009B009C009D009E009F +0000276127622763276427652766276726632666266526602460246124622463 +2464246524662467246824692776277727782779277A277B277C277D277E277F +2780278127822783278427852786278727882789278A278B278C278D278E278F +2790279127922793279421922194219527982799279A279B279C279D279E279F +27A027A127A227A327A427A527A627A727A827A927AA27AB27AC27AD27AE27AF +000027B127B227B327B427B527B627B727B827B927BA27BB27BC27BD27BE0000 diff --git a/deepseek/lib/tcl8.6/encoding/macGreek.enc b/deepseek/lib/tcl8.6/encoding/macGreek.enc new file mode 100644 index 0000000000000000000000000000000000000000..67b9953dd25284b36346ab6d56429784aa1af35f --- /dev/null +++ b/deepseek/lib/tcl8.6/encoding/macGreek.enc @@ -0,0 +1,20 @@ +# Encoding file: macGreek, single-byte +S +003F 0 1 +00 +0000000100020003000400050006000700080009000A000B000C000D000E000F +0010001100120013001400150016001700180019001A001B001C001D001E001F +0020002100220023002400250026002700280029002A002B002C002D002E002F +0030003100320033003400350036003700380039003A003B003C003D003E003F +0040004100420043004400450046004700480049004A004B004C004D004E004F +0050005100520053005400550056005700580059005A005B005C005D005E005F +0060006100620063006400650066006700680069006A006B006C006D006E006F +0070007100720073007400750076007700780079007A007B007C007D007E007F +00C400B900B200C900B300D600DC038500E000E200E4038400A800E700E900E8 +00EA00EB00A3212200EE00EF202200BD203000F400F600A600AD00F900FB00FC +2020039303940398039B039E03A000DF00AE00A903A303AA00A7226000B000B7 +039100B12264226500A503920395039603970399039A039C03A603AB03A803A9 +03AC039D00AC039F03A1224803A400AB00BB202600A003A503A7038603880153 +20132015201C201D2018201900F70389038A038C038E03AD03AE03AF03CC038F +03CD03B103B203C803B403B503C603B303B703B903BE03BA03BB03BC03BD03BF +03C003CE03C103C303C403B803C903C203C703C503B603CA03CB039003B0F8A0 diff --git a/deepseek/lib/tcl8.6/http1.0/http.tcl b/deepseek/lib/tcl8.6/http1.0/http.tcl new file mode 100644 index 0000000000000000000000000000000000000000..8329de4144d837f24328efcb1391e7b4e7ff5ba1 --- /dev/null +++ b/deepseek/lib/tcl8.6/http1.0/http.tcl @@ -0,0 +1,377 @@ +# http.tcl +# Client-side HTTP for GET, POST, and HEAD commands. +# These routines can be used in untrusted code that uses the Safesock +# security policy. +# These procedures use a callback interface to avoid using vwait, +# which is not defined in the safe base. +# +# See the http.n man page for documentation + +package provide http 1.0 + +array set http { + -accept */* + -proxyhost {} + -proxyport {} + -useragent {Tcl http client package 1.0} + -proxyfilter httpProxyRequired +} +proc http_config {args} { + global http + set options [lsort [array names http -*]] + set usage [join $options ", "] + if {[llength $args] == 0} { + set result {} + foreach name $options { + lappend result $name $http($name) + } + return $result + } + regsub -all -- - $options {} options + set pat ^-([join $options |])$ + if {[llength $args] == 1} { + set flag [lindex $args 0] + if {[regexp -- $pat $flag]} { + return $http($flag) + } else { + return -code error "Unknown option $flag, must be: $usage" + } + } else { + foreach {flag value} $args { + if {[regexp -- $pat $flag]} { + set http($flag) $value + } else { + return -code error "Unknown option $flag, must be: $usage" + } + } + } +} + + proc httpFinish { token {errormsg ""} } { + upvar #0 $token state + global errorInfo errorCode + if {[string length $errormsg] != 0} { + set state(error) [list $errormsg $errorInfo $errorCode] + set state(status) error + } + catch {close $state(sock)} + catch {after cancel $state(after)} + if {[info exists state(-command)]} { + if {[catch {eval $state(-command) {$token}} err]} { + if {[string length $errormsg] == 0} { + set state(error) [list $err $errorInfo $errorCode] + set state(status) error + } + } + unset state(-command) + } +} +proc http_reset { token {why reset} } { + upvar #0 $token state + set state(status) $why + catch {fileevent $state(sock) readable {}} + httpFinish $token + if {[info exists state(error)]} { + set errorlist $state(error) + unset state(error) + eval error $errorlist + } +} +proc http_get { url args } { + global http + if {![info exists http(uid)]} { + set http(uid) 0 + } + set token http#[incr http(uid)] + upvar #0 $token state + http_reset $token + array set state { + -blocksize 8192 + -validate 0 + -headers {} + -timeout 0 + state header + meta {} + currentsize 0 + totalsize 0 + type text/html + body {} + status "" + } + set options {-blocksize -channel -command -handler -headers \ + -progress -query -validate -timeout} + set usage [join $options ", "] + regsub -all -- - $options {} options + set pat ^-([join $options |])$ + foreach {flag value} $args { + if {[regexp $pat $flag]} { + # Validate numbers + if {[info exists state($flag)] && \ + [regexp {^[0-9]+$} $state($flag)] && \ + ![regexp {^[0-9]+$} $value]} { + return -code error "Bad value for $flag ($value), must be integer" + } + set state($flag) $value + } else { + return -code error "Unknown option $flag, can be: $usage" + } + } + if {! [regexp -nocase {^(http://)?([^/:]+)(:([0-9]+))?(/.*)?$} $url \ + x proto host y port srvurl]} { + error "Unsupported URL: $url" + } + if {[string length $port] == 0} { + set port 80 + } + if {[string length $srvurl] == 0} { + set srvurl / + } + if {[string length $proto] == 0} { + set url http://$url + } + set state(url) $url + if {![catch {$http(-proxyfilter) $host} proxy]} { + set phost [lindex $proxy 0] + set pport [lindex $proxy 1] + } + if {$state(-timeout) > 0} { + set state(after) [after $state(-timeout) [list http_reset $token timeout]] + } + if {[info exists phost] && [string length $phost]} { + set srvurl $url + set s [socket $phost $pport] + } else { + set s [socket $host $port] + } + set state(sock) $s + + # Send data in cr-lf format, but accept any line terminators + + fconfigure $s -translation {auto crlf} -buffersize $state(-blocksize) + + # The following is disallowed in safe interpreters, but the socket + # is already in non-blocking mode in that case. + + catch {fconfigure $s -blocking off} + set len 0 + set how GET + if {[info exists state(-query)]} { + set len [string length $state(-query)] + if {$len > 0} { + set how POST + } + } elseif {$state(-validate)} { + set how HEAD + } + puts $s "$how $srvurl HTTP/1.0" + puts $s "Accept: $http(-accept)" + puts $s "Host: $host" + puts $s "User-Agent: $http(-useragent)" + foreach {key value} $state(-headers) { + regsub -all \[\n\r\] $value {} value + set key [string trim $key] + if {[string length $key]} { + puts $s "$key: $value" + } + } + if {$len > 0} { + puts $s "Content-Length: $len" + puts $s "Content-Type: application/x-www-form-urlencoded" + puts $s "" + fconfigure $s -translation {auto binary} + puts -nonewline $s $state(-query) + } else { + puts $s "" + } + flush $s + fileevent $s readable [list httpEvent $token] + if {! [info exists state(-command)]} { + http_wait $token + } + return $token +} +proc http_data {token} { + upvar #0 $token state + return $state(body) +} +proc http_status {token} { + upvar #0 $token state + return $state(status) +} +proc http_code {token} { + upvar #0 $token state + return $state(http) +} +proc http_size {token} { + upvar #0 $token state + return $state(currentsize) +} + + proc httpEvent {token} { + upvar #0 $token state + set s $state(sock) + + if {[eof $s]} { + httpEof $token + return + } + if {$state(state) == "header"} { + set n [gets $s line] + if {$n == 0} { + set state(state) body + if {![regexp -nocase ^text $state(type)]} { + # Turn off conversions for non-text data + fconfigure $s -translation binary + if {[info exists state(-channel)]} { + fconfigure $state(-channel) -translation binary + } + } + if {[info exists state(-channel)] && + ![info exists state(-handler)]} { + # Initiate a sequence of background fcopies + fileevent $s readable {} + httpCopyStart $s $token + } + } elseif {$n > 0} { + if {[regexp -nocase {^content-type:(.+)$} $line x type]} { + set state(type) [string trim $type] + } + if {[regexp -nocase {^content-length:(.+)$} $line x length]} { + set state(totalsize) [string trim $length] + } + if {[regexp -nocase {^([^:]+):(.+)$} $line x key value]} { + lappend state(meta) $key $value + } elseif {[regexp ^HTTP $line]} { + set state(http) $line + } + } + } else { + if {[catch { + if {[info exists state(-handler)]} { + set n [eval $state(-handler) {$s $token}] + } else { + set block [read $s $state(-blocksize)] + set n [string length $block] + if {$n >= 0} { + append state(body) $block + } + } + if {$n >= 0} { + incr state(currentsize) $n + } + } err]} { + httpFinish $token $err + } else { + if {[info exists state(-progress)]} { + eval $state(-progress) {$token $state(totalsize) $state(currentsize)} + } + } + } +} + proc httpCopyStart {s token} { + upvar #0 $token state + if {[catch { + fcopy $s $state(-channel) -size $state(-blocksize) -command \ + [list httpCopyDone $token] + } err]} { + httpFinish $token $err + } +} + proc httpCopyDone {token count {error {}}} { + upvar #0 $token state + set s $state(sock) + incr state(currentsize) $count + if {[info exists state(-progress)]} { + eval $state(-progress) {$token $state(totalsize) $state(currentsize)} + } + if {([string length $error] != 0)} { + httpFinish $token $error + } elseif {[eof $s]} { + httpEof $token + } else { + httpCopyStart $s $token + } +} + proc httpEof {token} { + upvar #0 $token state + if {$state(state) == "header"} { + # Premature eof + set state(status) eof + } else { + set state(status) ok + } + set state(state) eof + httpFinish $token +} +proc http_wait {token} { + upvar #0 $token state + if {![info exists state(status)] || [string length $state(status)] == 0} { + vwait $token\(status) + } + if {[info exists state(error)]} { + set errorlist $state(error) + unset state(error) + eval error $errorlist + } + return $state(status) +} + +# Call http_formatQuery with an even number of arguments, where the first is +# a name, the second is a value, the third is another name, and so on. + +proc http_formatQuery {args} { + set result "" + set sep "" + foreach i $args { + append result $sep [httpMapReply $i] + if {$sep != "="} { + set sep = + } else { + set sep & + } + } + return $result +} + +# do x-www-urlencoded character mapping +# The spec says: "non-alphanumeric characters are replaced by '%HH'" +# 1 leave alphanumerics characters alone +# 2 Convert every other character to an array lookup +# 3 Escape constructs that are "special" to the tcl parser +# 4 "subst" the result, doing all the array substitutions + + proc httpMapReply {string} { + global httpFormMap + set alphanumeric a-zA-Z0-9 + if {![info exists httpFormMap]} { + + for {set i 1} {$i <= 256} {incr i} { + set c [format %c $i] + if {![string match \[$alphanumeric\] $c]} { + set httpFormMap($c) %[format %.2x $i] + } + } + # These are handled specially + array set httpFormMap { + " " + \n %0d%0a + } + } + regsub -all \[^$alphanumeric\] $string {$httpFormMap(&)} string + regsub -all \n $string {\\n} string + regsub -all \t $string {\\t} string + regsub -all {[][{})\\]\)} $string {\\&} string + return [subst $string] +} + +# Default proxy filter. + proc httpProxyRequired {host} { + global http + if {[info exists http(-proxyhost)] && [string length $http(-proxyhost)]} { + if {![info exists http(-proxyport)] || ![string length $http(-proxyport)]} { + set http(-proxyport) 8080 + } + return [list $http(-proxyhost) $http(-proxyport)] + } else { + return {} + } +} diff --git a/deepseek/lib/tcl8.6/package.tcl b/deepseek/lib/tcl8.6/package.tcl new file mode 100644 index 0000000000000000000000000000000000000000..4ccc20a50432c227ffe8e7c4b2e4a07f9218474f --- /dev/null +++ b/deepseek/lib/tcl8.6/package.tcl @@ -0,0 +1,751 @@ +# package.tcl -- +# +# utility procs formerly in init.tcl which can be loaded on demand +# for package management. +# +# Copyright (c) 1991-1993 The Regents of the University of California. +# Copyright (c) 1994-1998 Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. +# + +namespace eval tcl::Pkg {} + +# ::tcl::Pkg::CompareExtension -- +# +# Used internally by pkg_mkIndex to compare the extension of a file to a given +# extension. On Windows, it uses a case-insensitive comparison because the +# file system can be file insensitive. +# +# Arguments: +# fileName name of a file whose extension is compared +# ext (optional) The extension to compare against; you must +# provide the starting dot. +# Defaults to [info sharedlibextension] +# +# Results: +# Returns 1 if the extension matches, 0 otherwise + +proc tcl::Pkg::CompareExtension {fileName {ext {}}} { + global tcl_platform + if {$ext eq ""} {set ext [info sharedlibextension]} + if {$tcl_platform(platform) eq "windows"} { + return [string equal -nocase [file extension $fileName] $ext] + } else { + # Some unices add trailing numbers after the .so, so + # we could have something like '.so.1.2'. + set root $fileName + while {1} { + set currExt [file extension $root] + if {$currExt eq $ext} { + return 1 + } + + # The current extension does not match; if it is not a numeric + # value, quit, as we are only looking to ignore version number + # extensions. Otherwise we might return 1 in this case: + # tcl::Pkg::CompareExtension foo.so.bar .so + # which should not match. + + if {![string is integer -strict [string range $currExt 1 end]]} { + return 0 + } + set root [file rootname $root] + } + } +} + +# pkg_mkIndex -- +# This procedure creates a package index in a given directory. The package +# index consists of a "pkgIndex.tcl" file whose contents are a Tcl script that +# sets up package information with "package require" commands. The commands +# describe all of the packages defined by the files given as arguments. +# +# Arguments: +# -direct (optional) If this flag is present, the generated +# code in pkgMkIndex.tcl will cause the package to be +# loaded when "package require" is executed, rather +# than lazily when the first reference to an exported +# procedure in the package is made. +# -verbose (optional) Verbose output; the name of each file that +# was successfully processed is printed out. Additionally, +# if processing of a file failed a message is printed. +# -load pat (optional) Preload any packages whose names match +# the pattern. Used to handle DLLs that depend on +# other packages during their Init procedure. +# dir - Name of the directory in which to create the index. +# args - Any number of additional arguments, each giving +# a glob pattern that matches the names of one or +# more shared libraries or Tcl script files in +# dir. + +proc pkg_mkIndex {args} { + set usage {"pkg_mkIndex ?-direct? ?-lazy? ?-load pattern? ?-verbose? ?--? dir ?pattern ...?"} + + set argCount [llength $args] + if {$argCount < 1} { + return -code error "wrong # args: should be\n$usage" + } + + set more "" + set direct 1 + set doVerbose 0 + set loadPat "" + for {set idx 0} {$idx < $argCount} {incr idx} { + set flag [lindex $args $idx] + switch -glob -- $flag { + -- { + # done with the flags + incr idx + break + } + -verbose { + set doVerbose 1 + } + -lazy { + set direct 0 + append more " -lazy" + } + -direct { + append more " -direct" + } + -load { + incr idx + set loadPat [lindex $args $idx] + append more " -load $loadPat" + } + -* { + return -code error "unknown flag $flag: should be\n$usage" + } + default { + # done with the flags + break + } + } + } + + set dir [lindex $args $idx] + set patternList [lrange $args [expr {$idx + 1}] end] + if {![llength $patternList]} { + set patternList [list "*.tcl" "*[info sharedlibextension]"] + } + + try { + set fileList [glob -directory $dir -tails -types {r f} -- \ + {*}$patternList] + } on error {msg opt} { + return -options $opt $msg + } + foreach file $fileList { + # For each file, figure out what commands and packages it provides. + # To do this, create a child interpreter, load the file into the + # interpreter, and get a list of the new commands and packages that + # are defined. + + if {$file eq "pkgIndex.tcl"} { + continue + } + + set c [interp create] + + # Load into the child any packages currently loaded in the parent + # interpreter that match the -load pattern. + + if {$loadPat ne ""} { + if {$doVerbose} { + tclLog "currently loaded packages: '[info loaded]'" + tclLog "trying to load all packages matching $loadPat" + } + if {![llength [info loaded]]} { + tclLog "warning: no packages are currently loaded, nothing" + tclLog "can possibly match '$loadPat'" + } + } + foreach pkg [info loaded] { + if {![string match -nocase $loadPat [lindex $pkg 1]]} { + continue + } + if {$doVerbose} { + tclLog "package [lindex $pkg 1] matches '$loadPat'" + } + try { + load [lindex $pkg 0] [lindex $pkg 1] $c + } on error err { + if {$doVerbose} { + tclLog "warning: load [lindex $pkg 0]\ + [lindex $pkg 1]\nfailed with: $err" + } + } on ok {} { + if {$doVerbose} { + tclLog "loaded [lindex $pkg 0] [lindex $pkg 1]" + } + } + if {[lindex $pkg 1] eq "Tk"} { + # Withdraw . if Tk was loaded, to avoid showing a window. + $c eval [list wm withdraw .] + } + } + + $c eval { + # Stub out the package command so packages can require other + # packages. + + rename package __package_orig + proc package {what args} { + switch -- $what { + require { + return; # Ignore transitive requires + } + default { + __package_orig $what {*}$args + } + } + } + proc tclPkgUnknown args {} + package unknown tclPkgUnknown + + # Stub out the unknown command so package can call into each other + # during their initialization. + + proc unknown {args} {} + + # Stub out the auto_import mechanism + + proc auto_import {args} {} + + # reserve the ::tcl namespace for support procs and temporary + # variables. This might make it awkward to generate a + # pkgIndex.tcl file for the ::tcl namespace. + + namespace eval ::tcl { + variable dir ;# Current directory being processed + variable file ;# Current file being processed + variable direct ;# -direct flag value + variable x ;# Loop variable + variable debug ;# For debugging + variable type ;# "load" or "source", for -direct + variable namespaces ;# Existing namespaces (e.g., ::tcl) + variable packages ;# Existing packages (e.g., Tcl) + variable origCmds ;# Existing commands + variable newCmds ;# Newly created commands + variable newPkgs {} ;# Newly created packages + } + } + + $c eval [list set ::tcl::dir $dir] + $c eval [list set ::tcl::file $file] + $c eval [list set ::tcl::direct $direct] + + # Download needed procedures into the child because we've just deleted + # the unknown procedure. This doesn't handle procedures with default + # arguments. + + foreach p {::tcl::Pkg::CompareExtension} { + $c eval [list namespace eval [namespace qualifiers $p] {}] + $c eval [list proc $p [info args $p] [info body $p]] + } + + try { + $c eval { + set ::tcl::debug "loading or sourcing" + + # we need to track command defined by each package even in the + # -direct case, because they are needed internally by the + # "partial pkgIndex.tcl" step above. + + proc ::tcl::GetAllNamespaces {{root ::}} { + set list $root + foreach ns [namespace children $root] { + lappend list {*}[::tcl::GetAllNamespaces $ns] + } + return $list + } + + # init the list of existing namespaces, packages, commands + + foreach ::tcl::x [::tcl::GetAllNamespaces] { + set ::tcl::namespaces($::tcl::x) 1 + } + foreach ::tcl::x [package names] { + if {[package provide $::tcl::x] ne ""} { + set ::tcl::packages($::tcl::x) 1 + } + } + set ::tcl::origCmds [info commands] + + # Try to load the file if it has the shared library extension, + # otherwise source it. It's important not to try to load + # files that aren't shared libraries, because on some systems + # (like SunOS) the loader will abort the whole application + # when it gets an error. + + if {[::tcl::Pkg::CompareExtension $::tcl::file [info sharedlibextension]]} { + # The "file join ." command below is necessary. Without + # it, if the file name has no \'s and we're on UNIX, the + # load command will invoke the LD_LIBRARY_PATH search + # mechanism, which could cause the wrong file to be used. + + set ::tcl::debug loading + load [file join $::tcl::dir $::tcl::file] + set ::tcl::type load + } else { + set ::tcl::debug sourcing + source [file join $::tcl::dir $::tcl::file] + set ::tcl::type source + } + + # As a performance optimization, if we are creating direct + # load packages, don't bother figuring out the set of commands + # created by the new packages. We only need that list for + # setting up the autoloading used in the non-direct case. + if {!$::tcl::direct} { + # See what new namespaces appeared, and import commands + # from them. Only exported commands go into the index. + + foreach ::tcl::x [::tcl::GetAllNamespaces] { + if {![info exists ::tcl::namespaces($::tcl::x)]} { + namespace import -force ${::tcl::x}::* + } + + # Figure out what commands appeared + + foreach ::tcl::x [info commands] { + set ::tcl::newCmds($::tcl::x) 1 + } + foreach ::tcl::x $::tcl::origCmds { + unset -nocomplain ::tcl::newCmds($::tcl::x) + } + foreach ::tcl::x [array names ::tcl::newCmds] { + # determine which namespace a command comes from + + set ::tcl::abs [namespace origin $::tcl::x] + + # special case so that global names have no + # leading ::, this is required by the unknown + # command + + set ::tcl::abs \ + [lindex [auto_qualify $::tcl::abs ::] 0] + + if {$::tcl::x ne $::tcl::abs} { + # Name changed during qualification + + set ::tcl::newCmds($::tcl::abs) 1 + unset ::tcl::newCmds($::tcl::x) + } + } + } + } + + # Look through the packages that appeared, and if there is a + # version provided, then record it + + foreach ::tcl::x [package names] { + if {[package provide $::tcl::x] ne "" + && ![info exists ::tcl::packages($::tcl::x)]} { + lappend ::tcl::newPkgs \ + [list $::tcl::x [package provide $::tcl::x]] + } + } + } + } on error msg { + set what [$c eval set ::tcl::debug] + if {$doVerbose} { + tclLog "warning: error while $what $file: $msg" + } + } on ok {} { + set what [$c eval set ::tcl::debug] + if {$doVerbose} { + tclLog "successful $what of $file" + } + set type [$c eval set ::tcl::type] + set cmds [lsort [$c eval array names ::tcl::newCmds]] + set pkgs [$c eval set ::tcl::newPkgs] + if {$doVerbose} { + if {!$direct} { + tclLog "commands provided were $cmds" + } + tclLog "packages provided were $pkgs" + } + if {[llength $pkgs] > 1} { + tclLog "warning: \"$file\" provides more than one package ($pkgs)" + } + foreach pkg $pkgs { + # cmds is empty/not used in the direct case + lappend files($pkg) [list $file $type $cmds] + } + + if {$doVerbose} { + tclLog "processed $file" + } + } + interp delete $c + } + + append index "# Tcl package index file, version 1.1\n" + append index "# This file is generated by the \"pkg_mkIndex$more\" command\n" + append index "# and sourced either when an application starts up or\n" + append index "# by a \"package unknown\" script. It invokes the\n" + append index "# \"package ifneeded\" command to set up package-related\n" + append index "# information so that packages will be loaded automatically\n" + append index "# in response to \"package require\" commands. When this\n" + append index "# script is sourced, the variable \$dir must contain the\n" + append index "# full path name of this file's directory.\n" + + foreach pkg [lsort [array names files]] { + set cmd {} + lassign $pkg name version + lappend cmd ::tcl::Pkg::Create -name $name -version $version + foreach spec [lsort -index 0 $files($pkg)] { + foreach {file type procs} $spec { + if {$direct} { + set procs {} + } + lappend cmd "-$type" [list $file $procs] + } + } + append index "\n[eval $cmd]" + } + + set f [open [file join $dir pkgIndex.tcl] w] + puts $f $index + close $f +} + +# tclPkgSetup -- +# This is a utility procedure use by pkgIndex.tcl files. It is invoked as +# part of a "package ifneeded" script. It calls "package provide" to indicate +# that a package is available, then sets entries in the auto_index array so +# that the package's files will be auto-loaded when the commands are used. +# +# Arguments: +# dir - Directory containing all the files for this package. +# pkg - Name of the package (no version number). +# version - Version number for the package, such as 2.1.3. +# files - List of files that constitute the package. Each +# element is a sub-list with three elements. The first +# is the name of a file relative to $dir, the second is +# "load" or "source", indicating whether the file is a +# loadable binary or a script to source, and the third +# is a list of commands defined by this file. + +proc tclPkgSetup {dir pkg version files} { + global auto_index + + package provide $pkg $version + foreach fileInfo $files { + set f [lindex $fileInfo 0] + set type [lindex $fileInfo 1] + foreach cmd [lindex $fileInfo 2] { + if {$type eq "load"} { + set auto_index($cmd) [list load [file join $dir $f] $pkg] + } else { + set auto_index($cmd) [list source [file join $dir $f]] + } + } + } +} + +# tclPkgUnknown -- +# This procedure provides the default for the "package unknown" function. It +# is invoked when a package that's needed can't be found. It scans the +# auto_path directories and their immediate children looking for pkgIndex.tcl +# files and sources any such files that are found to setup the package +# database. As it searches, it will recognize changes to the auto_path and +# scan any new directories. +# +# Arguments: +# name - Name of desired package. Not used. +# version - Version of desired package. Not used. +# exact - Either "-exact" or omitted. Not used. + +proc tclPkgUnknown {name args} { + global auto_path env + + if {![info exists auto_path]} { + return + } + # Cache the auto_path, because it may change while we run through the + # first set of pkgIndex.tcl files + set old_path [set use_path $auto_path] + while {[llength $use_path]} { + set dir [lindex $use_path end] + + # Make sure we only scan each directory one time. + if {[info exists tclSeenPath($dir)]} { + set use_path [lrange $use_path 0 end-1] + continue + } + set tclSeenPath($dir) 1 + + # Get the pkgIndex.tcl files in subdirectories of auto_path directories. + # - Safe Base interpreters have a restricted "glob" command that + # works in this case. + # - The "catch" was essential when there was no safe glob and every + # call in a safe interp failed; it is retained only for corner + # cases in which the eventual call to glob returns an error. + catch { + foreach file [glob -directory $dir -join -nocomplain \ + * pkgIndex.tcl] { + set dir [file dirname $file] + if {![info exists procdDirs($dir)]} { + try { + source $file + } trap {POSIX EACCES} {} { + # $file was not readable; silently ignore + continue + } on error msg { + tclLog "error reading package index file $file: $msg" + } on ok {} { + set procdDirs($dir) 1 + } + } + } + } + set dir [lindex $use_path end] + if {![info exists procdDirs($dir)]} { + set file [file join $dir pkgIndex.tcl] + # safe interps usually don't have "file exists", + if {([interp issafe] || [file exists $file])} { + try { + source $file + } trap {POSIX EACCES} {} { + # $file was not readable; silently ignore + continue + } on error msg { + tclLog "error reading package index file $file: $msg" + } on ok {} { + set procdDirs($dir) 1 + } + } + } + + set use_path [lrange $use_path 0 end-1] + + # Check whether any of the index scripts we [source]d above set a new + # value for $::auto_path. If so, then find any new directories on the + # $::auto_path, and lappend them to the $use_path we are working from. + # This gives index scripts the (arguably unwise) power to expand the + # index script search path while the search is in progress. + set index 0 + if {[llength $old_path] == [llength $auto_path]} { + foreach dir $auto_path old $old_path { + if {$dir ne $old} { + # This entry in $::auto_path has changed. + break + } + incr index + } + } + + # $index now points to the first element of $auto_path that has + # changed, or the beginning if $auto_path has changed length Scan the + # new elements of $auto_path for directories to add to $use_path. + # Don't add directories we've already seen, or ones already on the + # $use_path. + foreach dir [lrange $auto_path $index end] { + if {![info exists tclSeenPath($dir)] && ($dir ni $use_path)} { + lappend use_path $dir + } + } + set old_path $auto_path + } +} + +# tcl::MacOSXPkgUnknown -- +# This procedure extends the "package unknown" function for MacOSX. It scans +# the Resources/Scripts directories of the immediate children of the auto_path +# directories for pkgIndex files. +# +# Arguments: +# original - original [package unknown] procedure +# name - Name of desired package. Not used. +# version - Version of desired package. Not used. +# exact - Either "-exact" or omitted. Not used. + +proc tcl::MacOSXPkgUnknown {original name args} { + # First do the cross-platform default search + uplevel 1 $original [linsert $args 0 $name] + + # Now do MacOSX specific searching + global auto_path + + if {![info exists auto_path]} { + return + } + # Cache the auto_path, because it may change while we run through the + # first set of pkgIndex.tcl files + set old_path [set use_path $auto_path] + while {[llength $use_path]} { + set dir [lindex $use_path end] + + # Make sure we only scan each directory one time. + if {[info exists tclSeenPath($dir)]} { + set use_path [lrange $use_path 0 end-1] + continue + } + set tclSeenPath($dir) 1 + + # get the pkgIndex files out of the subdirectories + # Safe interpreters do not use tcl::MacOSXPkgUnknown - see init.tcl. + foreach file [glob -directory $dir -join -nocomplain \ + * Resources Scripts pkgIndex.tcl] { + set dir [file dirname $file] + if {![info exists procdDirs($dir)]} { + try { + source $file + } trap {POSIX EACCES} {} { + # $file was not readable; silently ignore + continue + } on error msg { + tclLog "error reading package index file $file: $msg" + } on ok {} { + set procdDirs($dir) 1 + } + } + } + set use_path [lrange $use_path 0 end-1] + + # Check whether any of the index scripts we [source]d above set a new + # value for $::auto_path. If so, then find any new directories on the + # $::auto_path, and lappend them to the $use_path we are working from. + # This gives index scripts the (arguably unwise) power to expand the + # index script search path while the search is in progress. + set index 0 + if {[llength $old_path] == [llength $auto_path]} { + foreach dir $auto_path old $old_path { + if {$dir ne $old} { + # This entry in $::auto_path has changed. + break + } + incr index + } + } + + # $index now points to the first element of $auto_path that has + # changed, or the beginning if $auto_path has changed length Scan the + # new elements of $auto_path for directories to add to $use_path. + # Don't add directories we've already seen, or ones already on the + # $use_path. + foreach dir [lrange $auto_path $index end] { + if {![info exists tclSeenPath($dir)] && ($dir ni $use_path)} { + lappend use_path $dir + } + } + set old_path $auto_path + } +} + +# ::tcl::Pkg::Create -- +# +# Given a package specification generate a "package ifneeded" statement +# for the package, suitable for inclusion in a pkgIndex.tcl file. +# +# Arguments: +# args arguments used by the Create function: +# -name packageName +# -version packageVersion +# -load {filename ?{procs}?} +# ... +# -source {filename ?{procs}?} +# ... +# +# Any number of -load and -source parameters may be +# specified, so long as there is at least one -load or +# -source parameter. If the procs component of a module +# specifier is left off, that module will be set up for +# direct loading; otherwise, it will be set up for lazy +# loading. If both -source and -load are specified, the +# -load'ed files will be loaded first, followed by the +# -source'd files. +# +# Results: +# An appropriate "package ifneeded" statement for the package. + +proc ::tcl::Pkg::Create {args} { + append err(usage) "[lindex [info level 0] 0] " + append err(usage) "-name packageName -version packageVersion" + append err(usage) "?-load {filename ?{procs}?}? ... " + append err(usage) "?-source {filename ?{procs}?}? ..." + + set err(wrongNumArgs) "wrong # args: should be \"$err(usage)\"" + set err(valueMissing) "value for \"%s\" missing: should be \"$err(usage)\"" + set err(unknownOpt) "unknown option \"%s\": should be \"$err(usage)\"" + set err(noLoadOrSource) "at least one of -load and -source must be given" + + # process arguments + set len [llength $args] + if {$len < 6} { + error $err(wrongNumArgs) + } + + # Initialize parameters + array set opts {-name {} -version {} -source {} -load {}} + + # process parameters + for {set i 0} {$i < $len} {incr i} { + set flag [lindex $args $i] + incr i + switch -glob -- $flag { + "-name" - + "-version" { + if {$i >= $len} { + error [format $err(valueMissing) $flag] + } + set opts($flag) [lindex $args $i] + } + "-source" - + "-load" { + if {$i >= $len} { + error [format $err(valueMissing) $flag] + } + lappend opts($flag) [lindex $args $i] + } + default { + error [format $err(unknownOpt) [lindex $args $i]] + } + } + } + + # Validate the parameters + if {![llength $opts(-name)]} { + error [format $err(valueMissing) "-name"] + } + if {![llength $opts(-version)]} { + error [format $err(valueMissing) "-version"] + } + + if {!([llength $opts(-source)] || [llength $opts(-load)])} { + error $err(noLoadOrSource) + } + + # OK, now everything is good. Generate the package ifneeded statement. + set cmdline "package ifneeded $opts(-name) $opts(-version) " + + set cmdList {} + set lazyFileList {} + + # Handle -load and -source specs + foreach key {load source} { + foreach filespec $opts(-$key) { + lassign $filespec filename proclist + + if { [llength $proclist] == 0 } { + set cmd "\[list $key \[file join \$dir [list $filename]\]\]" + lappend cmdList $cmd + } else { + lappend lazyFileList [list $filename $key $proclist] + } + } + } + + if {[llength $lazyFileList]} { + lappend cmdList "\[list tclPkgSetup \$dir $opts(-name)\ + $opts(-version) [list $lazyFileList]\]" + } + append cmdline [join $cmdList "\\n"] + return $cmdline +} + +interp alias {} ::pkg::create {} ::tcl::Pkg::Create diff --git a/deepseek/lib/tcl8.6/parray.tcl b/deepseek/lib/tcl8.6/parray.tcl new file mode 100644 index 0000000000000000000000000000000000000000..a9c2cb15a9bd81339f2d91535b3758bb4785023e --- /dev/null +++ b/deepseek/lib/tcl8.6/parray.tcl @@ -0,0 +1,28 @@ +# parray: +# Print the contents of a global array on stdout. +# +# Copyright (c) 1991-1993 The Regents of the University of California. +# Copyright (c) 1994 Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. +# + +proc parray {a {pattern *}} { + upvar 1 $a array + if {![array exists array]} { + return -code error "\"$a\" isn't an array" + } + set maxl 0 + set names [lsort [array names array $pattern]] + foreach name $names { + if {[string length $name] > $maxl} { + set maxl [string length $name] + } + } + set maxl [expr {$maxl + [string length $a] + 2}] + foreach name $names { + set nameString [format %s(%s) $a $name] + puts stdout [format "%-*s = %s" $maxl $nameString $array($name)] + } +} diff --git a/deepseek/lib/tcl8.6/safe.tcl b/deepseek/lib/tcl8.6/safe.tcl new file mode 100644 index 0000000000000000000000000000000000000000..8c79abdccbc23e372f1bf81d407fe1c0a64033f1 --- /dev/null +++ b/deepseek/lib/tcl8.6/safe.tcl @@ -0,0 +1,1289 @@ +# safe.tcl -- +# +# This file provide a safe loading/sourcing mechanism for safe interpreters. +# It implements a virtual path mechanism to hide the real pathnames from the +# child. It runs in a parent interpreter and sets up data structure and +# aliases that will be invoked when used from a child interpreter. +# +# See the safe.n man page for details. +# +# Copyright (c) 1996-1997 Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution of +# this file, and for a DISCLAIMER OF ALL WARRANTIES. + +# +# The implementation is based on namespaces. These naming conventions are +# followed: +# Private procs starts with uppercase. +# Public procs are exported and starts with lowercase +# + +# Needed utilities package +package require opt 0.4.8 + +# Create the safe namespace +namespace eval ::safe { + # Exported API: + namespace export interpCreate interpInit interpConfigure interpDelete \ + interpAddToAccessPath interpFindInAccessPath setLogCmd +} + +# Helper function to resolve the dual way of specifying staticsok (either +# by -noStatics or -statics 0) +proc ::safe::InterpStatics {} { + foreach v {Args statics noStatics} { + upvar $v $v + } + set flag [::tcl::OptProcArgGiven -noStatics] + if {$flag && (!$noStatics == !$statics) + && ([::tcl::OptProcArgGiven -statics])} { + return -code error\ + "conflicting values given for -statics and -noStatics" + } + if {$flag} { + return [expr {!$noStatics}] + } else { + return $statics + } +} + +# Helper function to resolve the dual way of specifying nested loading +# (either by -nestedLoadOk or -nested 1) +proc ::safe::InterpNested {} { + foreach v {Args nested nestedLoadOk} { + upvar $v $v + } + set flag [::tcl::OptProcArgGiven -nestedLoadOk] + # note that the test here is the opposite of the "InterpStatics" one + # (it is not -noNested... because of the wanted default value) + if {$flag && (!$nestedLoadOk != !$nested) + && ([::tcl::OptProcArgGiven -nested])} { + return -code error\ + "conflicting values given for -nested and -nestedLoadOk" + } + if {$flag} { + # another difference with "InterpStatics" + return $nestedLoadOk + } else { + return $nested + } +} + +#### +# +# API entry points that needs argument parsing : +# +#### + +# Interface/entry point function and front end for "Create" +proc ::safe::interpCreate {args} { + set Args [::tcl::OptKeyParse ::safe::interpCreate $args] + RejectExcessColons $slave + InterpCreate $slave $accessPath \ + [InterpStatics] [InterpNested] $deleteHook +} + +proc ::safe::interpInit {args} { + set Args [::tcl::OptKeyParse ::safe::interpIC $args] + if {![::interp exists $slave]} { + return -code error "\"$slave\" is not an interpreter" + } + RejectExcessColons $slave + InterpInit $slave $accessPath \ + [InterpStatics] [InterpNested] $deleteHook +} + +# Check that the given child is "one of us" +proc ::safe::CheckInterp {child} { + namespace upvar ::safe [VarName $child] state + if {![info exists state] || ![::interp exists $child]} { + return -code error \ + "\"$child\" is not an interpreter managed by ::safe::" + } +} + +# Interface/entry point function and front end for "Configure". This code +# is awfully pedestrian because it would need more coupling and support +# between the way we store the configuration values in safe::interp's and +# the Opt package. Obviously we would like an OptConfigure to avoid +# duplicating all this code everywhere. +# -> TODO (the app should share or access easily the program/value stored +# by opt) + +# This is even more complicated by the boolean flags with no values that +# we had the bad idea to support for the sake of user simplicity in +# create/init but which makes life hard in configure... +# So this will be hopefully written and some integrated with opt1.0 +# (hopefully for tcl8.1 ?) +proc ::safe::interpConfigure {args} { + switch [llength $args] { + 1 { + # If we have exactly 1 argument the semantic is to return all + # the current configuration. We still call OptKeyParse though + # we know that "child" is our given argument because it also + # checks for the "-help" option. + set Args [::tcl::OptKeyParse ::safe::interpIC $args] + CheckInterp $slave + namespace upvar ::safe [VarName $slave] state + + return [join [list \ + [list -accessPath $state(access_path)] \ + [list -statics $state(staticsok)] \ + [list -nested $state(nestedok)] \ + [list -deleteHook $state(cleanupHook)]]] + } + 2 { + # If we have exactly 2 arguments the semantic is a "configure + # get" + lassign $args slave arg + + # get the flag sub program (we 'know' about Opt's internal + # representation of data) + set desc [lindex [::tcl::OptKeyGetDesc ::safe::interpIC] 2] + set hits [::tcl::OptHits desc $arg] + if {$hits > 1} { + return -code error [::tcl::OptAmbigous $desc $arg] + } elseif {$hits == 0} { + return -code error [::tcl::OptFlagUsage $desc $arg] + } + CheckInterp $slave + namespace upvar ::safe [VarName $slave] state + + set item [::tcl::OptCurDesc $desc] + set name [::tcl::OptName $item] + switch -exact -- $name { + -accessPath { + return [list -accessPath $state(access_path)] + } + -statics { + return [list -statics $state(staticsok)] + } + -nested { + return [list -nested $state(nestedok)] + } + -deleteHook { + return [list -deleteHook $state(cleanupHook)] + } + -noStatics { + # it is most probably a set in fact but we would need + # then to jump to the set part and it is not *sure* + # that it is a set action that the user want, so force + # it to use the unambiguous -statics ?value? instead: + return -code error\ + "ambigous query (get or set -noStatics ?)\ + use -statics instead" + } + -nestedLoadOk { + return -code error\ + "ambigous query (get or set -nestedLoadOk ?)\ + use -nested instead" + } + default { + return -code error "unknown flag $name (bug)" + } + } + } + default { + # Otherwise we want to parse the arguments like init and + # create did + set Args [::tcl::OptKeyParse ::safe::interpIC $args] + CheckInterp $slave + namespace upvar ::safe [VarName $slave] state + + # Get the current (and not the default) values of whatever has + # not been given: + if {![::tcl::OptProcArgGiven -accessPath]} { + set doreset 0 + set accessPath $state(access_path) + } else { + set doreset 1 + } + if { + ![::tcl::OptProcArgGiven -statics] + && ![::tcl::OptProcArgGiven -noStatics] + } then { + set statics $state(staticsok) + } else { + set statics [InterpStatics] + } + if { + [::tcl::OptProcArgGiven -nested] || + [::tcl::OptProcArgGiven -nestedLoadOk] + } then { + set nested [InterpNested] + } else { + set nested $state(nestedok) + } + if {![::tcl::OptProcArgGiven -deleteHook]} { + set deleteHook $state(cleanupHook) + } + # we can now reconfigure : + InterpSetConfig $slave $accessPath $statics $nested $deleteHook + # auto_reset the child (to completely synch the new access_path) + if {$doreset} { + if {[catch {::interp eval $slave {auto_reset}} msg]} { + Log $slave "auto_reset failed: $msg" + } else { + Log $slave "successful auto_reset" NOTICE + } + + # Sync the paths used to search for Tcl modules. + ::interp eval $slave {tcl::tm::path remove {*}[tcl::tm::list]} + if {[llength $state(tm_path_slave)] > 0} { + ::interp eval $slave [list \ + ::tcl::tm::add {*}[lreverse $state(tm_path_slave)]] + } + + # Remove stale "package ifneeded" data for non-loaded packages. + # - Not for loaded packages, because "package forget" erases + # data from "package provide" as well as "package ifneeded". + # - This is OK because the script cannot reload any version of + # the package unless it first does "package forget". + foreach pkg [::interp eval $slave {package names}] { + if {[::interp eval $slave [list package provide $pkg]] eq ""} { + ::interp eval $slave [list package forget $pkg] + } + } + } + return + } + } +} + +#### +# +# Functions that actually implements the exported APIs +# +#### + +# +# safe::InterpCreate : doing the real job +# +# This procedure creates a safe interpreter and initializes it with the safe +# base aliases. +# NB: child name must be simple alphanumeric string, no spaces, no (), no +# {},... {because the state array is stored as part of the name} +# +# Returns the child name. +# +# Optional Arguments : +# + child name : if empty, generated name will be used +# + access_path: path list controlling where load/source can occur, +# if empty: the parent auto_path will be used. +# + staticsok : flag, if 0 :no static package can be loaded (load {} Xxx) +# if 1 :static packages are ok. +# + nestedok: flag, if 0 :no loading to sub-sub interps (load xx xx sub) +# if 1 : multiple levels are ok. + +# use the full name and no indent so auto_mkIndex can find us +proc ::safe::InterpCreate { + child + access_path + staticsok + nestedok + deletehook + } { + # Create the child. + # If evaluated in ::safe, the interpreter command for foo is ::foo; + # but for foo::bar is safe::foo::bar. So evaluate in :: instead. + if {$child ne ""} { + namespace eval :: [list ::interp create -safe $child] + } else { + # empty argument: generate child name + set child [::interp create -safe] + } + Log $child "Created" NOTICE + + # Initialize it. (returns child name) + InterpInit $child $access_path $staticsok $nestedok $deletehook +} + +# +# InterpSetConfig (was setAccessPath) : +# Sets up child virtual auto_path and corresponding structure within +# the parent. Also sets the tcl_library in the child to be the first +# directory in the path. +# NB: If you change the path after the child has been initialized you +# probably need to call "auto_reset" in the child in order that it gets +# the right auto_index() array values. + +proc ::safe::InterpSetConfig {child access_path staticsok nestedok deletehook} { + global auto_path + + # determine and store the access path if empty + if {$access_path eq ""} { + set access_path $auto_path + + # Make sure that tcl_library is in auto_path and at the first + # position (needed by setAccessPath) + set where [lsearch -exact $access_path [info library]] + if {$where < 0} { + # not found, add it. + set access_path [linsert $access_path 0 [info library]] + Log $child "tcl_library was not in auto_path,\ + added it to slave's access_path" NOTICE + } elseif {$where != 0} { + # not first, move it first + set access_path [linsert \ + [lreplace $access_path $where $where] \ + 0 [info library]] + Log $child "tcl_libray was not in first in auto_path,\ + moved it to front of slave's access_path" NOTICE + } + + # Add 1st level subdirs (will searched by auto loading from tcl + # code in the child using glob and thus fail, so we add them here + # so by default it works the same). + set access_path [AddSubDirs $access_path] + } + + Log $child "Setting accessPath=($access_path) staticsok=$staticsok\ + nestedok=$nestedok deletehook=($deletehook)" NOTICE + + namespace upvar ::safe [VarName $child] state + + # clear old autopath if it existed + # build new one + # Extend the access list with the paths used to look for Tcl Modules. + # We save the virtual form separately as well, as syncing it with the + # child has to be deferred until the necessary commands are present for + # setup. + + set norm_access_path {} + set slave_access_path {} + set map_access_path {} + set remap_access_path {} + set slave_tm_path {} + + set i 0 + foreach dir $access_path { + set token [PathToken $i] + lappend slave_access_path $token + lappend map_access_path $token $dir + lappend remap_access_path $dir $token + lappend norm_access_path [file normalize $dir] + incr i + } + + set morepaths [::tcl::tm::list] + set firstpass 1 + while {[llength $morepaths]} { + set addpaths $morepaths + set morepaths {} + + foreach dir $addpaths { + # Prevent the addition of dirs on the tm list to the + # result if they are already known. + if {[dict exists $remap_access_path $dir]} { + if {$firstpass} { + # $dir is in [::tcl::tm::list] and belongs in the slave_tm_path. + # Later passes handle subdirectories, which belong in the + # access path but not in the module path. + lappend slave_tm_path [dict get $remap_access_path $dir] + } + continue + } + + set token [PathToken $i] + lappend access_path $dir + lappend slave_access_path $token + lappend map_access_path $token $dir + lappend remap_access_path $dir $token + lappend norm_access_path [file normalize $dir] + if {$firstpass} { + # $dir is in [::tcl::tm::list] and belongs in the slave_tm_path. + # Later passes handle subdirectories, which belong in the + # access path but not in the module path. + lappend slave_tm_path $token + } + incr i + + # [Bug 2854929] + # Recursively find deeper paths which may contain + # modules. Required to handle modules with names like + # 'platform::shell', which translate into + # 'platform/shell-X.tm', i.e arbitrarily deep + # subdirectories. + lappend morepaths {*}[glob -nocomplain -directory $dir -type d *] + } + set firstpass 0 + } + + set state(access_path) $access_path + set state(access_path,map) $map_access_path + set state(access_path,remap) $remap_access_path + set state(access_path,norm) $norm_access_path + set state(access_path,slave) $slave_access_path + set state(tm_path_slave) $slave_tm_path + set state(staticsok) $staticsok + set state(nestedok) $nestedok + set state(cleanupHook) $deletehook + + SyncAccessPath $child + return +} + +# +# +# FindInAccessPath: +# Search for a real directory and returns its virtual Id (including the +# "$") +proc ::safe::interpFindInAccessPath {child path} { + CheckInterp $child + namespace upvar ::safe [VarName $child] state + + if {![dict exists $state(access_path,remap) $path]} { + return -code error "$path not found in access path" + } + + return [dict get $state(access_path,remap) $path] +} + +# +# addToAccessPath: +# add (if needed) a real directory to access path and return its +# virtual token (including the "$"). +proc ::safe::interpAddToAccessPath {child path} { + # first check if the directory is already in there + # (inlined interpFindInAccessPath). + CheckInterp $child + namespace upvar ::safe [VarName $child] state + + if {[dict exists $state(access_path,remap) $path]} { + return [dict get $state(access_path,remap) $path] + } + + # new one, add it: + set token [PathToken [llength $state(access_path)]] + + lappend state(access_path) $path + lappend state(access_path,slave) $token + lappend state(access_path,map) $token $path + lappend state(access_path,remap) $path $token + lappend state(access_path,norm) [file normalize $path] + + SyncAccessPath $child + return $token +} + +# This procedure applies the initializations to an already existing +# interpreter. It is useful when you want to install the safe base aliases +# into a preexisting safe interpreter. +proc ::safe::InterpInit { + child + access_path + staticsok + nestedok + deletehook + } { + # Configure will generate an access_path when access_path is empty. + InterpSetConfig $child $access_path $staticsok $nestedok $deletehook + + # NB we need to add [namespace current], aliases are always absolute + # paths. + + # These aliases let the child load files to define new commands + # This alias lets the child use the encoding names, convertfrom, + # convertto, and system, but not "encoding system " to set the + # system encoding. + # Handling Tcl Modules, we need a restricted form of Glob. + # This alias interposes on the 'exit' command and cleanly terminates + # the child. + + foreach {command alias} { + source AliasSource + load AliasLoad + encoding AliasEncoding + exit interpDelete + glob AliasGlob + } { + ::interp alias $child $command {} [namespace current]::$alias $child + } + + # This alias lets the child have access to a subset of the 'file' + # command functionality. + + ::interp expose $child file + foreach subcommand {dirname extension rootname tail} { + ::interp alias $child ::tcl::file::$subcommand {} \ + ::safe::AliasFileSubcommand $child $subcommand + } + foreach subcommand { + atime attributes copy delete executable exists isdirectory isfile + link lstat mtime mkdir nativename normalize owned readable readlink + rename size stat tempfile type volumes writable + } { + ::interp alias $child ::tcl::file::$subcommand {} \ + ::safe::BadSubcommand $child file $subcommand + } + + # Subcommands of info + foreach {subcommand alias} { + nameofexecutable AliasExeName + } { + ::interp alias $child ::tcl::info::$subcommand \ + {} [namespace current]::$alias $child + } + + # The allowed child variables already have been set by Tcl_MakeSafe(3) + + # Source init.tcl and tm.tcl into the child, to get auto_load and + # other procedures defined: + + if {[catch {::interp eval $child { + source [file join $tcl_library init.tcl] + }} msg opt]} { + Log $child "can't source init.tcl ($msg)" + return -options $opt "can't source init.tcl into slave $child ($msg)" + } + + if {[catch {::interp eval $child { + source [file join $tcl_library tm.tcl] + }} msg opt]} { + Log $child "can't source tm.tcl ($msg)" + return -options $opt "can't source tm.tcl into slave $child ($msg)" + } + + # Sync the paths used to search for Tcl modules. This can be done only + # now, after tm.tcl was loaded. + namespace upvar ::safe [VarName $child] state + if {[llength $state(tm_path_slave)] > 0} { + ::interp eval $child [list \ + ::tcl::tm::add {*}[lreverse $state(tm_path_slave)]] + } + return $child +} + +# Add (only if needed, avoid duplicates) 1 level of sub directories to an +# existing path list. Also removes non directories from the returned +# list. +proc ::safe::AddSubDirs {pathList} { + set res {} + foreach dir $pathList { + if {[file isdirectory $dir]} { + # check that we don't have it yet as a children of a previous + # dir + if {$dir ni $res} { + lappend res $dir + } + foreach sub [glob -directory $dir -nocomplain *] { + if {[file isdirectory $sub] && ($sub ni $res)} { + # new sub dir, add it ! + lappend res $sub + } + } + } + } + return $res +} + +# This procedure deletes a safe interpreter managed by Safe Tcl and cleans up +# associated state. +# - The command will also delete non-Safe-Base interpreters. +# - This is regrettable, but to avoid breaking existing code this should be +# amended at the next major revision by uncommenting "CheckInterp". + +proc ::safe::interpDelete {child} { + Log $child "About to delete" NOTICE + + # CheckInterp $child + namespace upvar ::safe [VarName $child] state + + # When an interpreter is deleted with [interp delete], any sub-interpreters + # are deleted automatically, but this leaves behind their data in the Safe + # Base. To clean up properly, we call safe::interpDelete recursively on each + # Safe Base sub-interpreter, so each one is deleted cleanly and not by + # the automatic mechanism built into [interp delete]. + foreach sub [interp children $child] { + if {[info exists ::safe::[VarName [list $child $sub]]]} { + ::safe::interpDelete [list $child $sub] + } + } + + # If the child has a cleanup hook registered, call it. Check the + # existence because we might be called to delete an interp which has + # not been registered with us at all + + if {[info exists state(cleanupHook)]} { + set hook $state(cleanupHook) + if {[llength $hook]} { + # remove the hook now, otherwise if the hook calls us somehow, + # we'll loop + unset state(cleanupHook) + try { + {*}$hook $child + } on error err { + Log $child "Delete hook error ($err)" + } + } + } + + # Discard the global array of state associated with the child, and + # delete the interpreter. + + if {[info exists state]} { + unset state + } + + # if we have been called twice, the interp might have been deleted + # already + if {[::interp exists $child]} { + ::interp delete $child + Log $child "Deleted" NOTICE + } + + return +} + +# Set (or get) the logging mechanism + +proc ::safe::setLogCmd {args} { + variable Log + set la [llength $args] + if {$la == 0} { + return $Log + } elseif {$la == 1} { + set Log [lindex $args 0] + } else { + set Log $args + } + + if {$Log eq ""} { + # Disable logging completely. Calls to it will be compiled out + # of all users. + proc ::safe::Log {args} {} + } else { + # Activate logging, define proper command. + + proc ::safe::Log {child msg {type ERROR}} { + variable Log + {*}$Log "$type for slave $child : $msg" + return + } + } +} + +# ------------------- END OF PUBLIC METHODS ------------ + +# +# Sets the child auto_path to the parent recorded value. Also sets +# tcl_library to the first token of the virtual path. +# +proc ::safe::SyncAccessPath {child} { + namespace upvar ::safe [VarName $child] state + + set slave_access_path $state(access_path,slave) + ::interp eval $child [list set auto_path $slave_access_path] + + Log $child "auto_path in $child has been set to $slave_access_path"\ + NOTICE + + # This code assumes that info library is the first element in the + # list of auto_path's. See -> InterpSetConfig for the code which + # ensures this condition. + + ::interp eval $child [list \ + set tcl_library [lindex $slave_access_path 0]] +} + +# Returns the virtual token for directory number N. +proc ::safe::PathToken {n} { + # We need to have a ":" in the token string so [file join] on the + # mac won't turn it into a relative path. + return "\$p(:$n:)" ;# Form tested by case 7.2 +} + +# +# translate virtual path into real path +# +proc ::safe::TranslatePath {child path} { + namespace upvar ::safe [VarName $child] state + + # somehow strip the namespaces 'functionality' out (the danger is that + # we would strip valid macintosh "../" queries... : + if {[string match "*::*" $path] || [string match "*..*" $path]} { + return -code error "invalid characters in path $path" + } + + # Use a cached map instead of computed local vars and subst. + + return [string map $state(access_path,map) $path] +} + +# file name control (limit access to files/resources that should be a +# valid tcl source file) +proc ::safe::CheckFileName {child file} { + # This used to limit what can be sourced to ".tcl" and forbid files + # with more than 1 dot and longer than 14 chars, but I changed that + # for 8.4 as a safe interp has enough internal protection already to + # allow sourcing anything. - hobbs + + if {![file exists $file]} { + # don't tell the file path + return -code error "no such file or directory" + } + + if {![file readable $file]} { + # don't tell the file path + return -code error "not readable" + } +} + +# AliasFileSubcommand handles selected subcommands of [file] in safe +# interpreters that are *almost* safe. In particular, it just acts to +# prevent discovery of what home directories exist. + +proc ::safe::AliasFileSubcommand {child subcommand name} { + if {[string match ~* $name]} { + set name ./$name + } + tailcall ::interp invokehidden $child tcl:file:$subcommand $name +} + +# AliasGlob is the target of the "glob" alias in safe interpreters. + +proc ::safe::AliasGlob {child args} { + Log $child "GLOB ! $args" NOTICE + set cmd {} + set at 0 + array set got { + -directory 0 + -nocomplain 0 + -join 0 + -tails 0 + -- 0 + } + + if {$::tcl_platform(platform) eq "windows"} { + set dirPartRE {^(.*)[\\/]([^\\/]*)$} + } else { + set dirPartRE {^(.*)/([^/]*)$} + } + + set dir {} + set virtualdir {} + + while {$at < [llength $args]} { + switch -glob -- [set opt [lindex $args $at]] { + -nocomplain - -- - -tails { + lappend cmd $opt + set got($opt) 1 + incr at + } + -join { + set got($opt) 1 + incr at + } + -types - -type { + lappend cmd -types [lindex $args [incr at]] + incr at + } + -directory { + if {$got($opt)} { + return -code error \ + {"-directory" cannot be used with "-path"} + } + set got($opt) 1 + set virtualdir [lindex $args [incr at]] + incr at + } + -* { + Log $child "Safe base rejecting glob option '$opt'" + return -code error "Safe base rejecting glob option '$opt'" + } + default { + break + } + } + if {$got(--)} break + } + + # Get the real path from the virtual one and check that the path is in the + # access path of that child. Done after basic argument processing so that + # we know if -nocomplain is set. + if {$got(-directory)} { + try { + set dir [TranslatePath $child $virtualdir] + DirInAccessPath $child $dir + } on error msg { + Log $child $msg + if {$got(-nocomplain)} return + return -code error "permission denied" + } + if {$got(--)} { + set cmd [linsert $cmd end-1 -directory $dir] + } else { + lappend cmd -directory $dir + } + } else { + # The code after this "if ... else" block would conspire to return with + # no results in this case, if it were allowed to proceed. Instead, + # return now and reduce the number of cases to be considered later. + Log $child {option -directory must be supplied} + if {$got(-nocomplain)} return + return -code error "permission denied" + } + + # Apply the -join semantics ourselves. + if {$got(-join)} { + set args [lreplace $args $at end [join [lrange $args $at end] "/"]] + } + + # Process the pattern arguments. If we've done a join there is only one + # pattern argument. + + set firstPattern [llength $cmd] + foreach opt [lrange $args $at end] { + if {![regexp $dirPartRE $opt -> thedir thefile]} { + set thedir . + # The *.tm search comes here. + } + # "Special" treatment for (joined) argument {*/pkgIndex.tcl}. + # Do the expansion of "*" here, and filter out any directories that are + # not in the access path. The outcome is to lappend to cmd a path of + # the form $virtualdir/subdir/pkgIndex.tcl for each subdirectory subdir, + # after removing any subdir that are not in the access path. + if {($thedir eq "*") && ($thefile eq "pkgIndex.tcl")} { + set mapped 0 + foreach d [glob -directory [TranslatePath $child $virtualdir] \ + -types d -tails *] { + catch { + DirInAccessPath $child \ + [TranslatePath $child [file join $virtualdir $d]] + lappend cmd [file join $d $thefile] + set mapped 1 + } + } + if {$mapped} continue + # Don't [continue] if */pkgIndex.tcl has no matches in the access + # path. The pattern will now receive the same treatment as a + # "non-special" pattern (and will fail because it includes a "*" in + # the directory name). + } + # Any directory pattern that is not an exact (i.e. non-glob) match to a + # directory in the access path will be rejected here. + # - Rejections include any directory pattern that has glob matching + # patterns "*", "?", backslashes, braces or square brackets, (UNLESS + # it corresponds to a genuine directory name AND that directory is in + # the access path). + # - The only "special matching characters" that remain in patterns for + # processing by glob are in the filename tail. + # - [file join $anything ~${foo}] is ~${foo}, which is not an exact + # match to any directory in the access path. Hence directory patterns + # that begin with "~" are rejected here. Tests safe-16.[5-8] check + # that "file join" remains as required and does not expand ~${foo}. + # - Bug [3529949] relates to unwanted expansion of ~${foo} and this is + # how the present code avoids the bug. All tests safe-16.* relate. + try { + DirInAccessPath $child [TranslatePath $child \ + [file join $virtualdir $thedir]] + } on error msg { + Log $child $msg + if {$got(-nocomplain)} continue + return -code error "permission denied" + } + lappend cmd $opt + } + + Log $child "GLOB = $cmd" NOTICE + + if {$got(-nocomplain) && [llength $cmd] eq $firstPattern} { + return + } + try { + # >>>>>>>>>> HERE'S THE CALL TO SAFE INTERP GLOB <<<<<<<<<< + # - Pattern arguments added to cmd have NOT been translated from tokens. + # Only the virtualdir is translated (to dir). + # - In the pkgIndex.tcl case, there is no "*" in the pattern arguments, + # which are a list of names each with tail pkgIndex.tcl. The purpose + # of the call to glob is to remove the names for which the file does + # not exist. + set entries [::interp invokehidden $child glob {*}$cmd] + } on error msg { + # This is the only place that a call with -nocomplain and no invalid + # "dash-options" can return an error. + Log $child $msg + return -code error "script error" + } + + Log $child "GLOB < $entries" NOTICE + + # Translate path back to what the child should see. + set res {} + set l [string length $dir] + foreach p $entries { + if {[string equal -length $l $dir $p]} { + set p [string replace $p 0 [expr {$l-1}] $virtualdir] + } + lappend res $p + } + + Log $child "GLOB > $res" NOTICE + return $res +} + +# AliasSource is the target of the "source" alias in safe interpreters. + +proc ::safe::AliasSource {child args} { + set argc [llength $args] + # Extended for handling of Tcl Modules to allow not only "source + # filename", but "source -encoding E filename" as well. + if {[lindex $args 0] eq "-encoding"} { + incr argc -2 + set encoding [lindex $args 1] + set at 2 + if {$encoding eq "identity"} { + Log $child "attempt to use the identity encoding" + return -code error "permission denied" + } + } else { + set at 0 + set encoding {} + } + if {$argc != 1} { + set msg "wrong # args: should be \"source ?-encoding E? fileName\"" + Log $child "$msg ($args)" + return -code error $msg + } + set file [lindex $args $at] + + # get the real path from the virtual one. + if {[catch { + set realfile [TranslatePath $child $file] + } msg]} { + Log $child $msg + return -code error "permission denied" + } + + # check that the path is in the access path of that child + if {[catch { + FileInAccessPath $child $realfile + } msg]} { + Log $child $msg + return -code error "permission denied" + } + + # Check that the filename exists and is readable. If it is not, deliver + # this -errorcode so that caller in tclPkgUnknown does not write a message + # to tclLog. Has no effect on other callers of ::source, which are in + # "package ifneeded" scripts. + if {[catch { + CheckFileName $child $realfile + } msg]} { + Log $child "$realfile:$msg" + return -code error -errorcode {POSIX EACCES} $msg + } + + # Passed all the tests, lets source it. Note that we do this all manually + # because we want to control [info script] in the child so information + # doesn't leak so much. [Bug 2913625] + set old [::interp eval $child {info script}] + set replacementMsg "script error" + set code [catch { + set f [open $realfile] + fconfigure $f -eofchar "\x1A {}" + if {$encoding ne ""} { + fconfigure $f -encoding $encoding + } + set contents [read $f] + close $f + ::interp eval $child [list info script $file] + } msg opt] + if {$code == 0} { + set code [catch {::interp eval $child $contents} msg opt] + set replacementMsg $msg + } + catch {interp eval $child [list info script $old]} + # Note that all non-errors are fine result codes from [source], so we must + # take a little care to do it properly. [Bug 2923613] + if {$code == 1} { + Log $child $msg + return -code error $replacementMsg + } + return -code $code -options $opt $msg +} + +# AliasLoad is the target of the "load" alias in safe interpreters. + +proc ::safe::AliasLoad {child file args} { + set argc [llength $args] + if {$argc > 2} { + set msg "load error: too many arguments" + Log $child "$msg ($argc) {$file $args}" + return -code error $msg + } + + # package name (can be empty if file is not). + set package [lindex $args 0] + + namespace upvar ::safe [VarName $child] state + + # Determine where to load. load use a relative interp path and {} + # means self, so we can directly and safely use passed arg. + set target [lindex $args 1] + if {$target ne ""} { + # we will try to load into a sub sub interp; check that we want to + # authorize that. + if {!$state(nestedok)} { + Log $child "loading to a sub interp (nestedok)\ + disabled (trying to load $package to $target)" + return -code error "permission denied (nested load)" + } + } + + # Determine what kind of load is requested + if {$file eq ""} { + # static package loading + if {$package eq ""} { + set msg "load error: empty filename and no package name" + Log $child $msg + return -code error $msg + } + if {!$state(staticsok)} { + Log $child "static packages loading disabled\ + (trying to load $package to $target)" + return -code error "permission denied (static package)" + } + } else { + # file loading + + # get the real path from the virtual one. + try { + set file [TranslatePath $child $file] + } on error msg { + Log $child $msg + return -code error "permission denied" + } + + # check the translated path + try { + FileInAccessPath $child $file + } on error msg { + Log $child $msg + return -code error "permission denied (path)" + } + } + + try { + return [::interp invokehidden $child load $file $package $target] + } on error msg { + # Some packages return no error message. + set msg0 "load of binary library for package $package failed" + if {$msg eq {}} { + set msg $msg0 + } else { + set msg "$msg0: $msg" + } + Log $child $msg + return -code error $msg + } +} + +# FileInAccessPath raises an error if the file is not found in the list of +# directories contained in the (parent side recorded) child's access path. + +# the security here relies on "file dirname" answering the proper +# result... needs checking ? +proc ::safe::FileInAccessPath {child file} { + namespace upvar ::safe [VarName $child] state + set access_path $state(access_path) + + if {[file isdirectory $file]} { + return -code error "\"$file\": is a directory" + } + set parent [file dirname $file] + + # Normalize paths for comparison since lsearch knows nothing of + # potential pathname anomalies. + set norm_parent [file normalize $parent] + + namespace upvar ::safe [VarName $child] state + if {$norm_parent ni $state(access_path,norm)} { + return -code error "\"$file\": not in access_path" + } +} + +proc ::safe::DirInAccessPath {child dir} { + namespace upvar ::safe [VarName $child] state + set access_path $state(access_path) + + if {[file isfile $dir]} { + return -code error "\"$dir\": is a file" + } + + # Normalize paths for comparison since lsearch knows nothing of + # potential pathname anomalies. + set norm_dir [file normalize $dir] + + namespace upvar ::safe [VarName $child] state + if {$norm_dir ni $state(access_path,norm)} { + return -code error "\"$dir\": not in access_path" + } +} + +# This procedure is used to report an attempt to use an unsafe member of an +# ensemble command. + +proc ::safe::BadSubcommand {child command subcommand args} { + set msg "not allowed to invoke subcommand $subcommand of $command" + Log $child $msg + return -code error -errorcode {TCL SAFE SUBCOMMAND} $msg +} + +# AliasEncoding is the target of the "encoding" alias in safe interpreters. + +proc ::safe::AliasEncoding {child option args} { + # Note that [encoding dirs] is not supported in safe children at all + set subcommands {convertfrom convertto names system} + try { + set option [tcl::prefix match -error [list -level 1 -errorcode \ + [list TCL LOOKUP INDEX option $option]] $subcommands $option] + # Special case: [encoding system] ok, but [encoding system foo] not + if {$option eq "system" && [llength $args]} { + return -code error -errorcode {TCL WRONGARGS} \ + "wrong # args: should be \"encoding system\"" + } + } on error {msg options} { + Log $child $msg + return -options $options $msg + } + tailcall ::interp invokehidden $child encoding $option {*}$args +} + +# Various minor hiding of platform features. [Bug 2913625] + +proc ::safe::AliasExeName {child} { + return "" +} + +# ------------------------------------------------------------------------------ +# Using Interpreter Names with Namespace Qualifiers +# ------------------------------------------------------------------------------ +# (1) We wish to preserve compatibility with existing code, in which Safe Base +# interpreter names have no namespace qualifiers. +# (2) safe::interpCreate and the rest of the Safe Base previously could not +# accept namespace qualifiers in an interpreter name. +# (3) The interp command will accept namespace qualifiers in an interpreter +# name, but accepts distinct interpreters that will have the same command +# name (e.g. foo, ::foo, and :::foo) (bug 66c2e8c974). +# (4) To satisfy these constraints, Safe Base interpreter names will be fully +# qualified namespace names with no excess colons and with the leading "::" +# omitted. +# (5) Trailing "::" implies a namespace tail {}, which interp reads as {{}}. +# Reject such names. +# (6) We could: +# (a) EITHER reject usable but non-compliant names (e.g. excess colons) in +# interpCreate, interpInit; +# (b) OR accept such names and then translate to a compliant name in every +# command. +# The problem with (b) is that the user will expect to use the name with the +# interp command and will find that it is not recognised. +# E.g "interpCreate ::foo" creates interpreter "foo", and the user's name +# "::foo" works with all the Safe Base commands, but "interp eval ::foo" +# fails. +# So we choose (a). +# (7) The command +# namespace upvar ::safe S$child state +# becomes +# namespace upvar ::safe [VarName $child] state +# ------------------------------------------------------------------------------ + +proc ::safe::RejectExcessColons {child} { + set stripped [regsub -all -- {:::*} $child ::] + if {[string range $stripped end-1 end] eq {::}} { + return -code error {interpreter name must not end in "::"} + } + if {$stripped ne $child} { + set msg {interpreter name has excess colons in namespace separators} + return -code error $msg + } + if {[string range $stripped 0 1] eq {::}} { + return -code error {interpreter name must not begin "::"} + } + return +} + +proc ::safe::VarName {child} { + # return S$child + return S[string map {:: @N @ @A} $child] +} + +proc ::safe::Setup {} { + #### + # + # Setup the arguments parsing + # + #### + + # Share the descriptions + set temp [::tcl::OptKeyRegister { + {-accessPath -list {} "access path for the slave"} + {-noStatics "prevent loading of statically linked pkgs"} + {-statics true "loading of statically linked pkgs"} + {-nestedLoadOk "allow nested loading"} + {-nested false "nested loading"} + {-deleteHook -script {} "delete hook"} + }] + + # create case (slave is optional) + ::tcl::OptKeyRegister { + {?slave? -name {} "name of the slave (optional)"} + } ::safe::interpCreate + + # adding the flags sub programs to the command program (relying on Opt's + # internal implementation details) + lappend ::tcl::OptDesc(::safe::interpCreate) $::tcl::OptDesc($temp) + + # init and configure (slave is needed) + ::tcl::OptKeyRegister { + {slave -name {} "name of the slave"} + } ::safe::interpIC + + # adding the flags sub programs to the command program (relying on Opt's + # internal implementation details) + lappend ::tcl::OptDesc(::safe::interpIC) $::tcl::OptDesc($temp) + + # temp not needed anymore + ::tcl::OptKeyDelete $temp + + #### + # + # Default: No logging. + # + #### + + setLogCmd {} + + # Log eventually. + # To enable error logging, set Log to {puts stderr} for instance, + # via setLogCmd. + return +} + +namespace eval ::safe { + # internal variables + + # Log command, set via 'setLogCmd'. Logging is disabled when empty. + variable Log {} + + # The package maintains a state array per child interp under its + # control. The name of this array is S. This array is + # brought into scope where needed, using 'namespace upvar'. The S + # prefix is used to avoid that a child interp called "Log" smashes + # the "Log" variable. + # + # The array's elements are: + # + # access_path : List of paths accessible to the child. + # access_path,norm : Ditto, in normalized form. + # access_path,slave : Ditto, as the path tokens as seen by the child. + # access_path,map : dict ( token -> path ) + # access_path,remap : dict ( path -> token ) + # tm_path_slave : List of TM root directories, as tokens seen by the child. + # staticsok : Value of option -statics + # nestedok : Value of option -nested + # cleanupHook : Value of option -deleteHook +} + +::safe::Setup diff --git a/deepseek/lib/tcl8.6/tclAppInit.c b/deepseek/lib/tcl8.6/tclAppInit.c new file mode 100644 index 0000000000000000000000000000000000000000..552f9e4b2426327929f79700720e085794a2a0f8 --- /dev/null +++ b/deepseek/lib/tcl8.6/tclAppInit.c @@ -0,0 +1,176 @@ +/* + * tclAppInit.c -- + * + * Provides a default version of the main program and Tcl_AppInit + * procedure for tclsh and other Tcl-based applications (without Tk). + * + * Copyright (c) 1993 The Regents of the University of California. + * Copyright (c) 1994-1997 Sun Microsystems, Inc. + * Copyright (c) 1998-1999 Scriptics Corporation. + * + * See the file "license.terms" for information on usage and redistribution of + * this file, and for a DISCLAIMER OF ALL WARRANTIES. + */ + +#undef BUILD_tcl +#undef STATIC_BUILD +#include "tcl.h" +#if TCL_MAJOR_VERSION < 9 && TCL_MINOR_VERSION < 7 +# define Tcl_LibraryInitProc Tcl_PackageInitProc +# define Tcl_StaticLibrary Tcl_StaticPackage +#endif + +#ifdef TCL_TEST +extern Tcl_LibraryInitProc Tcltest_Init; +extern Tcl_LibraryInitProc Tcltest_SafeInit; +#endif /* TCL_TEST */ + +#ifdef TCL_XT_TEST +extern void XtToolkitInitialize(void); +extern Tcl_LibraryInitProc Tclxttest_Init; +#endif /* TCL_XT_TEST */ + +/* + * The following #if block allows you to change the AppInit function by using + * a #define of TCL_LOCAL_APPINIT instead of rewriting this entire file. The + * #if checks for that #define and uses Tcl_AppInit if it does not exist. + */ + +#ifndef TCL_LOCAL_APPINIT +#define TCL_LOCAL_APPINIT Tcl_AppInit +#endif +#ifndef MODULE_SCOPE +# define MODULE_SCOPE extern +#endif +MODULE_SCOPE int TCL_LOCAL_APPINIT(Tcl_Interp *); +MODULE_SCOPE int main(int, char **); + +/* + * The following #if block allows you to change how Tcl finds the startup + * script, prime the library or encoding paths, fiddle with the argv, etc., + * without needing to rewrite Tcl_Main() + */ + +#ifdef TCL_LOCAL_MAIN_HOOK +MODULE_SCOPE int TCL_LOCAL_MAIN_HOOK(int *argc, char ***argv); +#endif + +/* + *---------------------------------------------------------------------- + * + * main -- + * + * This is the main program for the application. + * + * Results: + * None: Tcl_Main never returns here, so this procedure never returns + * either. + * + * Side effects: + * Just about anything, since from here we call arbitrary Tcl code. + * + *---------------------------------------------------------------------- + */ + +int +main( + int argc, /* Number of command-line arguments. */ + char *argv[]) /* Values of command-line arguments. */ +{ +#ifdef TCL_XT_TEST + XtToolkitInitialize(); +#endif + +#ifdef TCL_LOCAL_MAIN_HOOK + TCL_LOCAL_MAIN_HOOK(&argc, &argv); +#elif (TCL_MAJOR_VERSION > 8 || TCL_MINOR_VERSION > 6) && (!defined(_WIN32) || defined(UNICODE)) + /* New in Tcl 8.7. This doesn't work on Windows without UNICODE */ + TclZipfs_AppHook(&argc, &argv); +#endif + + Tcl_Main(argc, argv, TCL_LOCAL_APPINIT); + return 0; /* Needed only to prevent compiler warning. */ +} + +/* + *---------------------------------------------------------------------- + * + * Tcl_AppInit -- + * + * This procedure performs application-specific initialization. Most + * applications, especially those that incorporate additional packages, + * will have their own version of this procedure. + * + * Results: + * Returns a standard Tcl completion code, and leaves an error message in + * the interp's result if an error occurs. + * + * Side effects: + * Depends on the startup script. + * + *---------------------------------------------------------------------- + */ + +int +Tcl_AppInit( + Tcl_Interp *interp) /* Interpreter for application. */ +{ + if ((Tcl_Init)(interp) == TCL_ERROR) { + return TCL_ERROR; + } + +#ifdef TCL_XT_TEST + if (Tclxttest_Init(interp) == TCL_ERROR) { + return TCL_ERROR; + } +#endif + +#ifdef TCL_TEST + if (Tcltest_Init(interp) == TCL_ERROR) { + return TCL_ERROR; + } + Tcl_StaticLibrary(interp, "Tcltest", Tcltest_Init, Tcltest_SafeInit); +#endif /* TCL_TEST */ + + /* + * Call the init procedures for included packages. Each call should look + * like this: + * + * if (Mod_Init(interp) == TCL_ERROR) { + * return TCL_ERROR; + * } + * + * where "Mod" is the name of the module. (Dynamically-loadable packages + * should have the same entry-point name.) + */ + + /* + * Call Tcl_CreateCommand for application-specific commands, if they + * weren't already created by the init procedures called above. + */ + + /* + * Specify a user-specific startup file to invoke if the application is + * run interactively. Typically the startup file is "~/.apprc" where "app" + * is the name of the application. If this line is deleted then no + * user-specific startup file will be run under any conditions. + */ + +#ifdef DJGPP + (Tcl_ObjSetVar2)(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL, + Tcl_NewStringObj("~/tclsh.rc", -1), TCL_GLOBAL_ONLY); +#else + (Tcl_ObjSetVar2)(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL, + Tcl_NewStringObj("~/.tclshrc", -1), TCL_GLOBAL_ONLY); +#endif + + return TCL_OK; +} + +/* + * Local Variables: + * mode: c + * c-basic-offset: 4 + * fill-column: 78 + * End: + */ diff --git a/deepseek/lib/tcl8.6/word.tcl b/deepseek/lib/tcl8.6/word.tcl new file mode 100644 index 0000000000000000000000000000000000000000..a993918b44c590b0b1eba3d7ae64cebf195e644a --- /dev/null +++ b/deepseek/lib/tcl8.6/word.tcl @@ -0,0 +1,154 @@ +# word.tcl -- +# +# This file defines various procedures for computing word boundaries in +# strings. This file is primarily needed so Tk text and entry widgets behave +# properly for different platforms. +# +# Copyright (c) 1996 Sun Microsystems, Inc. +# Copyright (c) 1998 Scriptics Corporation. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. + +# The following variables are used to determine which characters are +# interpreted as white space. + +if {$::tcl_platform(platform) eq "windows"} { + # Windows style - any but a Unicode space char + if {![info exists ::tcl_wordchars]} { + set ::tcl_wordchars {\S} + } + if {![info exists ::tcl_nonwordchars]} { + set ::tcl_nonwordchars {\s} + } +} else { + # Motif style - any Unicode word char (number, letter, or underscore) + if {![info exists ::tcl_wordchars]} { + set ::tcl_wordchars {\w} + } + if {![info exists ::tcl_nonwordchars]} { + set ::tcl_nonwordchars {\W} + } +} + +# Arrange for caches of the real matcher REs to be kept, which enables the REs +# themselves to be cached for greater performance (and somewhat greater +# clarity too). + +namespace eval ::tcl { + variable WordBreakRE + array set WordBreakRE {} + + proc UpdateWordBreakREs args { + # Ignores the arguments + global tcl_wordchars tcl_nonwordchars + variable WordBreakRE + + # To keep the RE strings short... + set letter $tcl_wordchars + set space $tcl_nonwordchars + + set WordBreakRE(after) "$letter$space|$space$letter" + set WordBreakRE(before) "^.*($letter$space|$space$letter)" + set WordBreakRE(end) "$space*$letter+$space" + set WordBreakRE(next) "$letter*$space+$letter" + set WordBreakRE(previous) "$space*($letter+)$space*\$" + } + + # Initialize the cache + UpdateWordBreakREs + trace add variable ::tcl_wordchars write ::tcl::UpdateWordBreakREs + trace add variable ::tcl_nonwordchars write ::tcl::UpdateWordBreakREs +} + +# tcl_wordBreakAfter -- +# +# This procedure returns the index of the first word boundary after the +# starting point in the given string, or -1 if there are no more boundaries in +# the given string. The index returned refers to the first character of the +# pair that comprises a boundary. +# +# Arguments: +# str - String to search. +# start - Index into string specifying starting point. + +proc tcl_wordBreakAfter {str start} { + variable ::tcl::WordBreakRE + set result {-1 -1} + regexp -indices -start $start -- $WordBreakRE(after) $str result + return [lindex $result 1] +} + +# tcl_wordBreakBefore -- +# +# This procedure returns the index of the first word boundary before the +# starting point in the given string, or -1 if there are no more boundaries in +# the given string. The index returned refers to the second character of the +# pair that comprises a boundary. +# +# Arguments: +# str - String to search. +# start - Index into string specifying starting point. + +proc tcl_wordBreakBefore {str start} { + variable ::tcl::WordBreakRE + set result {-1 -1} + regexp -indices -- $WordBreakRE(before) [string range $str 0 $start] result + return [lindex $result 1] +} + +# tcl_endOfWord -- +# +# This procedure returns the index of the first end-of-word location after a +# starting index in the given string. An end-of-word location is defined to be +# the first whitespace character following the first non-whitespace character +# after the starting point. Returns -1 if there are no more words after the +# starting point. +# +# Arguments: +# str - String to search. +# start - Index into string specifying starting point. + +proc tcl_endOfWord {str start} { + variable ::tcl::WordBreakRE + set result {-1 -1} + regexp -indices -start $start -- $WordBreakRE(end) $str result + return [lindex $result 1] +} + +# tcl_startOfNextWord -- +# +# This procedure returns the index of the first start-of-word location after a +# starting index in the given string. A start-of-word location is defined to +# be a non-whitespace character following a whitespace character. Returns -1 +# if there are no more start-of-word locations after the starting point. +# +# Arguments: +# str - String to search. +# start - Index into string specifying starting point. + +proc tcl_startOfNextWord {str start} { + variable ::tcl::WordBreakRE + set result {-1 -1} + regexp -indices -start $start -- $WordBreakRE(next) $str result + return [lindex $result 1] +} + +# tcl_startOfPreviousWord -- +# +# This procedure returns the index of the first start-of-word location before +# a starting index in the given string. +# +# Arguments: +# str - String to search. +# start - Index into string specifying starting point. + +proc tcl_startOfPreviousWord {str start} { + variable ::tcl::WordBreakRE + set word {-1 -1} + if {$start > 0} { + regexp -indices -- $WordBreakRE(previous) [string range [string range $str 0 $start] 0 end-1] \ + result word + } + return [lindex $word 0] +} diff --git a/deepseek/lib/tclConfig.sh b/deepseek/lib/tclConfig.sh new file mode 100644 index 0000000000000000000000000000000000000000..3aeda4388f245edc43c549e7bcfe48ae8eb1ba70 --- /dev/null +++ b/deepseek/lib/tclConfig.sh @@ -0,0 +1,169 @@ +# tclConfig.sh -- +# +# This shell script (for sh) is generated automatically by Tcl's +# configure script. It will create shell variables for most of +# the configuration options discovered by the configure script. +# This script is intended to be included by the configure scripts +# for Tcl extensions so that they don't have to figure this all +# out for themselves. +# +# The information in this file is specific to a single platform. + +# Tcl's version number. +TCL_VERSION='8.6' +TCL_MAJOR_VERSION='8' +TCL_MINOR_VERSION='6' +TCL_PATCH_LEVEL='.14' + +# C compiler to use for compilation. +TCL_CC='/croot/tk_1714770549989/_build_env/bin/x86_64-conda-linux-gnu-cc' + +# -D flags for use with the C compiler. +TCL_DEFS='-DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.6\" -DPACKAGE_STRING=\"tcl\ 8.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_ATFORK=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DHAVE_ZLIB=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DHAVE_HIDDEN=1 -DTCL_CFG_DO64BIT=1 -DHAVE_CAST_TO_UNION=1 -DHAVE_VFORK=1 -DHAVE_POSIX_SPAWNP=1 -DHAVE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2=1 -DHAVE_POSIX_SPAWNATTR_SETFLAGS=1 -DTCL_SHLIB_EXT=\".so\" -DNDEBUG=1 -DTCL_CFG_OPTIMIZED=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_MKSTEMP=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GETADDRINFO=1 -DHAVE_FREEADDRINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_STRUCT_ADDRINFO=1 -DHAVE_STRUCT_IN6_ADDR=1 -DHAVE_STRUCT_SOCKADDR_IN6=1 -DHAVE_STRUCT_SOCKADDR_STORAGE=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_DECL_GETHOSTBYNAME_R=1 -DHAVE_GETHOSTBYNAME_R_6=1 -DHAVE_GETHOSTBYNAME_R=1 -DHAVE_DECL_GETHOSTBYADDR_R=1 -DHAVE_GETHOSTBYADDR_R_8=1 -DHAVE_GETHOSTBYADDR_R=1 -DHAVE_TERMIOS_H=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLOCKS=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_BLKCNT_T=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_MKSTEMPS=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DTCL_UNLOAD_DLLS=1 -DHAVE_CPUID=1 ' + +# TCL_DBGX used to be used to distinguish debug vs. non-debug builds. +# This was a righteous pain so the core doesn't do that any more. +TCL_DBGX= + +# Default flags used in an optimized and debuggable build, respectively. +TCL_CFLAGS_DEBUG='-g' +TCL_CFLAGS_OPTIMIZE='-O2' + +# Default linker flags used in an optimized and debuggable build, respectively. +TCL_LDFLAGS_DEBUG='' +TCL_LDFLAGS_OPTIMIZE='' + +# Flag, 1: we built a shared lib, 0 we didn't +TCL_SHARED_BUILD=1 + +# The name of the Tcl library (may be either a .a file or a shared library): +TCL_LIB_FILE='libtcl8.6.so' + +# Additional libraries to use when linking Tcl. +TCL_LIBS='-ldl -lz -lpthread -lm' + +# Top-level directory in which Tcl's platform-independent files are +# installed. +TCL_PREFIX='/root/envs/deepseek' + +# Top-level directory in which Tcl's platform-specific files (e.g. +# executables) are installed. +TCL_EXEC_PREFIX='/root/envs/deepseek' + +# Flags to pass to cc when compiling the components of a shared library: +TCL_SHLIB_CFLAGS='-fPIC' + +# Flags to pass to cc to get warning messages +TCL_CFLAGS_WARNING='-Wall -Wpointer-arith' + +# Extra flags to pass to cc: +TCL_EXTRA_CFLAGS='-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /root/envs/deepseek/include -fdebug-prefix-map=/croot/tk_1714770549989/work=/usr/local/src/conda/tk-8.6.14 -fdebug-prefix-map=/root/envs/deepseek=/usr/local/src/conda-prefix -pipe -m64 -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /root/envs/deepseek/include' + +# Base command to use for combining object files into a shared library: +TCL_SHLIB_LD='${CC} ${CFLAGS} ${LDFLAGS} -shared' + +# Base command to use for combining object files into a static library: +TCL_STLIB_LD='${AR} cr' + +# Either '$LIBS' (if dependent libraries should be included when linking +# shared libraries) or an empty string. See Tcl's configure.in for more +# explanation. +TCL_SHLIB_LD_LIBS='${LIBS}' + +# Suffix to use for the name of a shared library. +TCL_SHLIB_SUFFIX='.so' + +# Library file(s) to include in tclsh and other base applications +# in order to provide facilities needed by DLOBJ above. +TCL_DL_LIBS='-ldl' + +# Flags to pass to the compiler when linking object files into +# an executable tclsh or tcltest binary. +TCL_LD_FLAGS='-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/root/envs/deepseek/lib -Wl,-rpath-link,/root/envs/deepseek/lib -L/root/envs/deepseek/lib -Wl,--export-dynamic ' + +# Flags to pass to cc/ld, such as "-R /usr/local/tcl/lib", that tell the +# run-time dynamic linker where to look for shared libraries such as +# libtcl.so. Used when linking applications. Only works if there +# is a variable "LIB_RUNTIME_DIR" defined in the Makefile. +TCL_CC_SEARCH_FLAGS='"-Wl,-rpath,${LIB_RUNTIME_DIR}"' +TCL_LD_SEARCH_FLAGS='"-Wl,-rpath,${LIB_RUNTIME_DIR}"' + +# Additional object files linked with Tcl to provide compatibility +# with standard facilities from ANSI C or POSIX. +TCL_COMPAT_OBJS='' + +# Name of the ranlib program to use. +TCL_RANLIB='/croot/tk_1714770549989/_build_env/bin/x86_64-conda-linux-gnu-ranlib' + +# -l flag to pass to the linker to pick up the Tcl library +TCL_LIB_FLAG='-ltcl8.6' + +# String to pass to linker to pick up the Tcl library from its +# build directory. +TCL_BUILD_LIB_SPEC='-L/croot/tk_1714770549989/work/tcl8.6.14/unix -ltcl8.6' + +# String to pass to linker to pick up the Tcl library from its +# installed directory. +TCL_LIB_SPEC='-L/root/envs/deepseek/lib -ltcl8.6' + +# String to pass to the compiler so that an extension can +# find installed Tcl headers. +TCL_INCLUDE_SPEC='-I/root/envs/deepseek/include' + +# Indicates whether a version numbers should be used in -l switches +# ("ok" means it's safe to use switches like -ltcl7.5; "nodots" means +# use switches like -ltcl75). SunOS and FreeBSD require "nodots", for +# example. +TCL_LIB_VERSIONS_OK='ok' + +# String that can be evaluated to generate the part of a shared library +# name that comes after the "libxxx" (includes version number, if any, +# extension, and anything else needed). May depend on the variables +# VERSION and SHLIB_SUFFIX. On most UNIX systems this is +# ${VERSION}${SHLIB_SUFFIX}. +TCL_SHARED_LIB_SUFFIX='${VERSION}.so' + +# String that can be evaluated to generate the part of an unshared library +# name that comes after the "libxxx" (includes version number, if any, +# extension, and anything else needed). May depend on the variable +# VERSION. On most UNIX systems this is ${VERSION}.a. +TCL_UNSHARED_LIB_SUFFIX='${VERSION}.a' + +# Location of the top-level source directory from which Tcl was built. +# This is the directory that contains a README file as well as +# subdirectories such as generic, unix, etc. If Tcl was compiled in a +# different place than the directory containing the source files, this +# points to the location of the sources, not the location where Tcl was +# compiled. +TCL_SRC_DIR='/croot/tk_1714770549989/work/tcl8.6.14' + +# List of standard directories in which to look for packages during +# "package require" commands. Contains the "prefix" directory plus also +# the "exec_prefix" directory, if it is different. +TCL_PACKAGE_PATH='{/root/envs/deepseek/lib} ' + +# Tcl supports stub. +TCL_SUPPORTS_STUBS=1 + +# The name of the Tcl stub library (.a): +TCL_STUB_LIB_FILE='libtclstub8.6.a' + +# -l flag to pass to the linker to pick up the Tcl stub library +TCL_STUB_LIB_FLAG='-ltclstub8.6' + +# String to pass to linker to pick up the Tcl stub library from its +# build directory. +TCL_BUILD_STUB_LIB_SPEC='-L/croot/tk_1714770549989/work/tcl8.6.14/unix -ltclstub8.6' + +# String to pass to linker to pick up the Tcl stub library from its +# installed directory. +TCL_STUB_LIB_SPEC='-L/root/envs/deepseek/lib -ltclstub8.6' + +# Path to the Tcl stub library in the build directory. +TCL_BUILD_STUB_LIB_PATH='/croot/tk_1714770549989/work/tcl8.6.14/unix/libtclstub8.6.a' + +# Path to the Tcl stub library in the install directory. +TCL_STUB_LIB_PATH='/root/envs/deepseek/lib/libtclstub8.6.a' + +# Flag, 1: we built Tcl with threads enabled, 0 we didn't +TCL_THREADS=1 diff --git a/deepseek/lib/tclooConfig.sh b/deepseek/lib/tclooConfig.sh new file mode 100644 index 0000000000000000000000000000000000000000..22795420fdf07447889873fa28500ac53f9e7438 --- /dev/null +++ b/deepseek/lib/tclooConfig.sh @@ -0,0 +1,19 @@ +# tclooConfig.sh -- +# +# This shell script (for sh) is generated automatically by TclOO's configure +# script, or would be except it has no values that we substitute. It will +# create shell variables for most of the configuration options discovered by +# the configure script. This script is intended to be included by TEA-based +# configure scripts for TclOO extensions so that they don't have to figure +# this all out for themselves. +# +# The information in this file is specific to a single platform. + +# These are mostly empty because no special steps are ever needed from Tcl 8.6 +# onwards; all libraries and include files are just part of Tcl. +TCLOO_LIB_SPEC="" +TCLOO_STUB_LIB_SPEC="" +TCLOO_INCLUDE_SPEC="" +TCLOO_PRIVATE_INCLUDE_SPEC="" +TCLOO_CFLAGS="" +TCLOO_VERSION=1.1.0 diff --git a/deepseek/lib/tkConfig.sh b/deepseek/lib/tkConfig.sh new file mode 100644 index 0000000000000000000000000000000000000000..df360144d0450a6f659aed859ec0dd7a7d3b0e4a --- /dev/null +++ b/deepseek/lib/tkConfig.sh @@ -0,0 +1,96 @@ +# tkConfig.sh -- +# +# This shell script (for sh) is generated automatically by Tk's +# configure script. It will create shell variables for most of +# the configuration options discovered by the configure script. +# This script is intended to be included by the configure scripts +# for Tk extensions so that they don't have to figure this all +# out for themselves. This file does not duplicate information +# already provided by tclConfig.sh, so you may need to use that +# file in addition to this one. +# +# The information in this file is specific to a single platform. + +# Tk's version number. +TK_VERSION='8.6' +TK_MAJOR_VERSION='8' +TK_MINOR_VERSION='6' +TK_PATCH_LEVEL='.14' + +# -D flags for use with the C compiler. +TK_DEFS='-DPACKAGE_NAME=\"tk\" -DPACKAGE_TARNAME=\"tk\" -DPACKAGE_VERSION=\"8.6\" -DPACKAGE_STRING=\"tk\ 8.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_ATFORK=1 -DTCL_THREADS=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DHAVE_HIDDEN=1 -DTCL_CFG_DO64BIT=1 -DHAVE_CAST_TO_UNION=1 -DTCL_SHLIB_EXT=\".so\" -DNDEBUG=1 -DTCL_CFG_OPTIMIZED=1 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_PW_GECOS=1 -DHAVE_XKBKEYCODETOKEYSYM=1 -DXKEYCODETOKEYSYM_IS_DEPRECATED=1 ' + +# Flag, 1: we built a shared lib, 0 we didn't +TK_SHARED_BUILD=1 + +# TK_DBGX used to be used to distinguish debug vs. non-debug builds. +# This was a righteous pain so the core doesn't do that any more. +TK_DBGX= + +# The name of the Tk library (may be either a .a file or a shared library): +TK_LIB_FILE='libtk8.6.so' + +# Additional libraries to use when linking Tk. +TK_LIBS='-lX11 -lpthread -ldl -lz -lpthread -lm' + +# Top-level directory in which Tk's platform-independent files are +# installed. +TK_PREFIX='/root/envs/deepseek' + +# Top-level directory in which Tk's platform-specific files (e.g. +# executables) are installed. +TK_EXEC_PREFIX='/root/envs/deepseek' + +# -I switch(es) to use to make all of the X11 include files accessible: +TK_XINCLUDES='' + +# Linker switch(es) to use to link with the X11 library archive. +TK_XLIBSW='-lX11' + +# -l flag to pass to the linker to pick up the Tk library +TK_LIB_FLAG='-ltk8.6' + +# String to pass to linker to pick up the Tk library from its +# build directory. +TK_BUILD_LIB_SPEC='-L/croot/tk_1714770549989/work/tk8.6.14/unix -ltk8.6' + +# String to pass to linker to pick up the Tk library from its +# installed directory. +TK_LIB_SPEC='-L/root/envs/deepseek/lib -ltk8.6' + +# String to pass to the compiler so that an extension can +# find installed Tk headers. +TK_INCLUDE_SPEC='-I/root/envs/deepseek/include' + +# Location of the top-level source directory from which Tk was built. +# This is the directory that contains a README file as well as +# subdirectories such as generic, unix, etc. If Tk was compiled in a +# different place than the directory containing the source files, this +# points to the location of the sources, not the location where Tk was +# compiled. +TK_SRC_DIR='/croot/tk_1714770549989/work/tk8.6.14' + +# Needed if you want to make a 'fat' shared library library +# containing tk objects or link a different wish. +TK_CC_SEARCH_FLAGS='"-Wl,-rpath,${LIB_RUNTIME_DIR}"' +TK_LD_SEARCH_FLAGS='"-Wl,-rpath,${LIB_RUNTIME_DIR}"' + +# The name of the Tk stub library (.a): +TK_STUB_LIB_FILE='libtkstub8.6.a' + +# -l flag to pass to the linker to pick up the Tk stub library +TK_STUB_LIB_FLAG='-ltkstub8.6' + +# String to pass to linker to pick up the Tk stub library from its +# build directory. +TK_BUILD_STUB_LIB_SPEC='-L/croot/tk_1714770549989/work/tk8.6.14/unix -ltkstub8.6' + +# String to pass to linker to pick up the Tk stub library from its +# installed directory. +TK_STUB_LIB_SPEC='-L/root/envs/deepseek/lib -ltkstub8.6' + +# Path to the Tk stub library in the build directory. +TK_BUILD_STUB_LIB_PATH='/croot/tk_1714770549989/work/tk8.6.14/unix/libtkstub8.6.a' + +# Path to the Tk stub library in the install directory. +TK_STUB_LIB_PATH='/root/envs/deepseek/lib/libtkstub8.6.a' diff --git a/deepseek/man/man1/bzegrep.1 b/deepseek/man/man1/bzegrep.1 new file mode 100644 index 0000000000000000000000000000000000000000..b208cf5aec12ae399a3b00a8a94228171186f070 --- /dev/null +++ b/deepseek/man/man1/bzegrep.1 @@ -0,0 +1 @@ +.so man1/bzgrep.1 diff --git a/deepseek/man/man1/bzless.1 b/deepseek/man/man1/bzless.1 new file mode 100644 index 0000000000000000000000000000000000000000..b849965938bed4048b65f842a3dc7f69770e66a3 --- /dev/null +++ b/deepseek/man/man1/bzless.1 @@ -0,0 +1 @@ +.so man1/bzmore.1 diff --git a/deepseek/man/man1/bzmore.1 b/deepseek/man/man1/bzmore.1 new file mode 100644 index 0000000000000000000000000000000000000000..b437d3b031f5dc1290359496971d2c2545b188ff --- /dev/null +++ b/deepseek/man/man1/bzmore.1 @@ -0,0 +1,152 @@ +.\"Shamelessly copied from zmore.1 by Philippe Troin +.\"for Debian GNU/Linux +.TH BZMORE 1 +.SH NAME +bzmore, bzless \- file perusal filter for crt viewing of bzip2 compressed text +.SH SYNOPSIS +.B bzmore +[ name ... ] +.br +.B bzless +[ name ... ] +.SH NOTE +In the following description, +.I bzless +and +.I less +can be used interchangeably with +.I bzmore +and +.I more. +.SH DESCRIPTION +.I Bzmore +is a filter which allows examination of compressed or plain text files +one screenful at a time on a soft-copy terminal. +.I bzmore +works on files compressed with +.I bzip2 +and also on uncompressed files. +If a file does not exist, +.I bzmore +looks for a file of the same name with the addition of a .bz2 suffix. +.PP +.I Bzmore +normally pauses after each screenful, printing --More-- +at the bottom of the screen. +If the user then types a carriage return, one more line is displayed. +If the user hits a space, +another screenful is displayed. Other possibilities are enumerated later. +.PP +.I Bzmore +looks in the file +.I /etc/termcap +to determine terminal characteristics, +and to determine the default window size. +On a terminal capable of displaying 24 lines, +the default window size is 22 lines. +Other sequences which may be typed when +.I bzmore +pauses, and their effects, are as follows (\fIi\fP is an optional integer +argument, defaulting to 1) : +.PP +.IP \fIi\|\fP +display +.I i +more lines, (or another screenful if no argument is given) +.PP +.IP ^D +display 11 more lines (a ``scroll''). +If +.I i +is given, then the scroll size is set to \fIi\|\fP. +.PP +.IP d +same as ^D (control-D) +.PP +.IP \fIi\|\fPz +same as typing a space except that \fIi\|\fP, if present, becomes the new +window size. Note that the window size reverts back to the default at the +end of the current file. +.PP +.IP \fIi\|\fPs +skip \fIi\|\fP lines and print a screenful of lines +.PP +.IP \fIi\|\fPf +skip \fIi\fP screenfuls and print a screenful of lines +.PP +.IP "q or Q" +quit reading the current file; go on to the next (if any) +.PP +.IP "e or q" +When the prompt --More--(Next file: +.IR file ) +is printed, this command causes bzmore to exit. +.PP +.IP s +When the prompt --More--(Next file: +.IR file ) +is printed, this command causes bzmore to skip the next file and continue. +.PP +.IP = +Display the current line number. +.PP +.IP \fIi\|\fP/expr +search for the \fIi\|\fP-th occurrence of the regular expression \fIexpr.\fP +If the pattern is not found, +.I bzmore +goes on to the next file (if any). +Otherwise, a screenful is displayed, starting two lines before the place +where the expression was found. +The user's erase and kill characters may be used to edit the regular +expression. +Erasing back past the first column cancels the search command. +.PP +.IP \fIi\|\fPn +search for the \fIi\|\fP-th occurrence of the last regular expression entered. +.PP +.IP !command +invoke a shell with \fIcommand\|\fP. +The character `!' in "command" are replaced with the +previous shell command. The sequence "\\!" is replaced by "!". +.PP +.IP ":q or :Q" +quit reading the current file; go on to the next (if any) +(same as q or Q). +.PP +.IP . +(dot) repeat the previous command. +.PP +The commands take effect immediately, i.e., it is not necessary to +type a carriage return. +Up to the time when the command character itself is given, +the user may hit the line kill character to cancel the numerical +argument being formed. +In addition, the user may hit the erase character to redisplay the +--More-- message. +.PP +At any time when output is being sent to the terminal, the user can +hit the quit key (normally control\-\\). +.I Bzmore +will stop sending output, and will display the usual --More-- +prompt. +The user may then enter one of the above commands in the normal manner. +Unfortunately, some output is lost when this is done, due to the +fact that any characters waiting in the terminal's output queue +are flushed when the quit signal occurs. +.PP +The terminal is set to +.I noecho +mode by this program so that the output can be continuous. +What you type will thus not show on your terminal, except for the / and ! +commands. +.PP +If the standard output is not a teletype, then +.I bzmore +acts just like +.I bzcat, +except that a header is printed before each file. +.SH FILES +.DT +/etc/termcap Terminal data base +.SH "SEE ALSO" +more(1), less(1), bzip2(1), bzdiff(1), bzgrep(1) diff --git a/evalkit_tf437/include/python3.10/classobject.h b/evalkit_tf437/include/python3.10/classobject.h new file mode 100644 index 0000000000000000000000000000000000000000..1952f673b7d865442a85487f70c36fbab58f7102 --- /dev/null +++ b/evalkit_tf437/include/python3.10/classobject.h @@ -0,0 +1,57 @@ +/* Former class object interface -- now only bound methods are here */ + +/* Revealing some structures (not for general use) */ + +#ifndef Py_LIMITED_API +#ifndef Py_CLASSOBJECT_H +#define Py_CLASSOBJECT_H +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct { + PyObject_HEAD + PyObject *im_func; /* The callable object implementing the method */ + PyObject *im_self; /* The instance it is bound to */ + PyObject *im_weakreflist; /* List of weak references */ + vectorcallfunc vectorcall; +} PyMethodObject; + +PyAPI_DATA(PyTypeObject) PyMethod_Type; + +#define PyMethod_Check(op) Py_IS_TYPE(op, &PyMethod_Type) + +PyAPI_FUNC(PyObject *) PyMethod_New(PyObject *, PyObject *); + +PyAPI_FUNC(PyObject *) PyMethod_Function(PyObject *); +PyAPI_FUNC(PyObject *) PyMethod_Self(PyObject *); + +/* Macros for direct access to these values. Type checks are *not* + done, so use with care. */ +#define PyMethod_GET_FUNCTION(meth) \ + (((PyMethodObject *)meth) -> im_func) +#define PyMethod_GET_SELF(meth) \ + (((PyMethodObject *)meth) -> im_self) + +typedef struct { + PyObject_HEAD + PyObject *func; +} PyInstanceMethodObject; + +PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type; + +#define PyInstanceMethod_Check(op) Py_IS_TYPE(op, &PyInstanceMethod_Type) + +PyAPI_FUNC(PyObject *) PyInstanceMethod_New(PyObject *); +PyAPI_FUNC(PyObject *) PyInstanceMethod_Function(PyObject *); + +/* Macros for direct access to these values. Type checks are *not* + done, so use with care. */ +#define PyInstanceMethod_GET_FUNCTION(meth) \ + (((PyInstanceMethodObject *)meth) -> func) + +#ifdef __cplusplus +} +#endif +#endif /* !Py_CLASSOBJECT_H */ +#endif /* Py_LIMITED_API */ diff --git a/evalkit_tf437/include/python3.10/datetime.h b/evalkit_tf437/include/python3.10/datetime.h new file mode 100644 index 0000000000000000000000000000000000000000..bb565201a164d7ed66c66697ae3ac5d6951b54b2 --- /dev/null +++ b/evalkit_tf437/include/python3.10/datetime.h @@ -0,0 +1,267 @@ +/* datetime.h + */ +#ifndef Py_LIMITED_API +#ifndef DATETIME_H +#define DATETIME_H +#ifdef __cplusplus +extern "C" { +#endif + +/* Fields are packed into successive bytes, each viewed as unsigned and + * big-endian, unless otherwise noted: + * + * byte offset + * 0 year 2 bytes, 1-9999 + * 2 month 1 byte, 1-12 + * 3 day 1 byte, 1-31 + * 4 hour 1 byte, 0-23 + * 5 minute 1 byte, 0-59 + * 6 second 1 byte, 0-59 + * 7 usecond 3 bytes, 0-999999 + * 10 + */ + +/* # of bytes for year, month, and day. */ +#define _PyDateTime_DATE_DATASIZE 4 + +/* # of bytes for hour, minute, second, and usecond. */ +#define _PyDateTime_TIME_DATASIZE 6 + +/* # of bytes for year, month, day, hour, minute, second, and usecond. */ +#define _PyDateTime_DATETIME_DATASIZE 10 + + +typedef struct +{ + PyObject_HEAD + Py_hash_t hashcode; /* -1 when unknown */ + int days; /* -MAX_DELTA_DAYS <= days <= MAX_DELTA_DAYS */ + int seconds; /* 0 <= seconds < 24*3600 is invariant */ + int microseconds; /* 0 <= microseconds < 1000000 is invariant */ +} PyDateTime_Delta; + +typedef struct +{ + PyObject_HEAD /* a pure abstract base class */ +} PyDateTime_TZInfo; + + +/* The datetime and time types have hashcodes, and an optional tzinfo member, + * present if and only if hastzinfo is true. + */ +#define _PyTZINFO_HEAD \ + PyObject_HEAD \ + Py_hash_t hashcode; \ + char hastzinfo; /* boolean flag */ + +/* No _PyDateTime_BaseTZInfo is allocated; it's just to have something + * convenient to cast to, when getting at the hastzinfo member of objects + * starting with _PyTZINFO_HEAD. + */ +typedef struct +{ + _PyTZINFO_HEAD +} _PyDateTime_BaseTZInfo; + +/* All time objects are of PyDateTime_TimeType, but that can be allocated + * in two ways, with or without a tzinfo member. Without is the same as + * tzinfo == None, but consumes less memory. _PyDateTime_BaseTime is an + * internal struct used to allocate the right amount of space for the + * "without" case. + */ +#define _PyDateTime_TIMEHEAD \ + _PyTZINFO_HEAD \ + unsigned char data[_PyDateTime_TIME_DATASIZE]; + +typedef struct +{ + _PyDateTime_TIMEHEAD +} _PyDateTime_BaseTime; /* hastzinfo false */ + +typedef struct +{ + _PyDateTime_TIMEHEAD + unsigned char fold; + PyObject *tzinfo; +} PyDateTime_Time; /* hastzinfo true */ + + +/* All datetime objects are of PyDateTime_DateTimeType, but that can be + * allocated in two ways too, just like for time objects above. In addition, + * the plain date type is a base class for datetime, so it must also have + * a hastzinfo member (although it's unused there). + */ +typedef struct +{ + _PyTZINFO_HEAD + unsigned char data[_PyDateTime_DATE_DATASIZE]; +} PyDateTime_Date; + +#define _PyDateTime_DATETIMEHEAD \ + _PyTZINFO_HEAD \ + unsigned char data[_PyDateTime_DATETIME_DATASIZE]; + +typedef struct +{ + _PyDateTime_DATETIMEHEAD +} _PyDateTime_BaseDateTime; /* hastzinfo false */ + +typedef struct +{ + _PyDateTime_DATETIMEHEAD + unsigned char fold; + PyObject *tzinfo; +} PyDateTime_DateTime; /* hastzinfo true */ + + +/* Apply for date and datetime instances. */ + +// o is a pointer to a time or a datetime object. +#define _PyDateTime_HAS_TZINFO(o) (((_PyDateTime_BaseTZInfo *)(o))->hastzinfo) + +#define PyDateTime_GET_YEAR(o) ((((PyDateTime_Date*)o)->data[0] << 8) | \ + ((PyDateTime_Date*)o)->data[1]) +#define PyDateTime_GET_MONTH(o) (((PyDateTime_Date*)o)->data[2]) +#define PyDateTime_GET_DAY(o) (((PyDateTime_Date*)o)->data[3]) + +#define PyDateTime_DATE_GET_HOUR(o) (((PyDateTime_DateTime*)o)->data[4]) +#define PyDateTime_DATE_GET_MINUTE(o) (((PyDateTime_DateTime*)o)->data[5]) +#define PyDateTime_DATE_GET_SECOND(o) (((PyDateTime_DateTime*)o)->data[6]) +#define PyDateTime_DATE_GET_MICROSECOND(o) \ + ((((PyDateTime_DateTime*)o)->data[7] << 16) | \ + (((PyDateTime_DateTime*)o)->data[8] << 8) | \ + ((PyDateTime_DateTime*)o)->data[9]) +#define PyDateTime_DATE_GET_FOLD(o) (((PyDateTime_DateTime*)o)->fold) +#define PyDateTime_DATE_GET_TZINFO(o) (_PyDateTime_HAS_TZINFO(o) ? \ + ((PyDateTime_DateTime *)(o))->tzinfo : Py_None) + +/* Apply for time instances. */ +#define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) +#define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) +#define PyDateTime_TIME_GET_SECOND(o) (((PyDateTime_Time*)o)->data[2]) +#define PyDateTime_TIME_GET_MICROSECOND(o) \ + ((((PyDateTime_Time*)o)->data[3] << 16) | \ + (((PyDateTime_Time*)o)->data[4] << 8) | \ + ((PyDateTime_Time*)o)->data[5]) +#define PyDateTime_TIME_GET_FOLD(o) (((PyDateTime_Time*)o)->fold) +#define PyDateTime_TIME_GET_TZINFO(o) (_PyDateTime_HAS_TZINFO(o) ? \ + ((PyDateTime_Time *)(o))->tzinfo : Py_None) + +/* Apply for time delta instances */ +#define PyDateTime_DELTA_GET_DAYS(o) (((PyDateTime_Delta*)o)->days) +#define PyDateTime_DELTA_GET_SECONDS(o) (((PyDateTime_Delta*)o)->seconds) +#define PyDateTime_DELTA_GET_MICROSECONDS(o) \ + (((PyDateTime_Delta*)o)->microseconds) + + +/* Define structure for C API. */ +typedef struct { + /* type objects */ + PyTypeObject *DateType; + PyTypeObject *DateTimeType; + PyTypeObject *TimeType; + PyTypeObject *DeltaType; + PyTypeObject *TZInfoType; + + /* singletons */ + PyObject *TimeZone_UTC; + + /* constructors */ + PyObject *(*Date_FromDate)(int, int, int, PyTypeObject*); + PyObject *(*DateTime_FromDateAndTime)(int, int, int, int, int, int, int, + PyObject*, PyTypeObject*); + PyObject *(*Time_FromTime)(int, int, int, int, PyObject*, PyTypeObject*); + PyObject *(*Delta_FromDelta)(int, int, int, int, PyTypeObject*); + PyObject *(*TimeZone_FromTimeZone)(PyObject *offset, PyObject *name); + + /* constructors for the DB API */ + PyObject *(*DateTime_FromTimestamp)(PyObject*, PyObject*, PyObject*); + PyObject *(*Date_FromTimestamp)(PyObject*, PyObject*); + + /* PEP 495 constructors */ + PyObject *(*DateTime_FromDateAndTimeAndFold)(int, int, int, int, int, int, int, + PyObject*, int, PyTypeObject*); + PyObject *(*Time_FromTimeAndFold)(int, int, int, int, PyObject*, int, PyTypeObject*); + +} PyDateTime_CAPI; + +#define PyDateTime_CAPSULE_NAME "datetime.datetime_CAPI" + + +/* This block is only used as part of the public API and should not be + * included in _datetimemodule.c, which does not use the C API capsule. + * See bpo-35081 for more details. + * */ +#ifndef _PY_DATETIME_IMPL +/* Define global variable for the C API and a macro for setting it. */ +static PyDateTime_CAPI *PyDateTimeAPI = NULL; + +#define PyDateTime_IMPORT \ + PyDateTimeAPI = (PyDateTime_CAPI *)PyCapsule_Import(PyDateTime_CAPSULE_NAME, 0) + +/* Macro for access to the UTC singleton */ +#define PyDateTime_TimeZone_UTC PyDateTimeAPI->TimeZone_UTC + +/* Macros for type checking when not building the Python core. */ +#define PyDate_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->DateType) +#define PyDate_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->DateType) + +#define PyDateTime_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->DateTimeType) +#define PyDateTime_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->DateTimeType) + +#define PyTime_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->TimeType) +#define PyTime_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->TimeType) + +#define PyDelta_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->DeltaType) +#define PyDelta_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->DeltaType) + +#define PyTZInfo_Check(op) PyObject_TypeCheck(op, PyDateTimeAPI->TZInfoType) +#define PyTZInfo_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->TZInfoType) + + +/* Macros for accessing constructors in a simplified fashion. */ +#define PyDate_FromDate(year, month, day) \ + PyDateTimeAPI->Date_FromDate(year, month, day, PyDateTimeAPI->DateType) + +#define PyDateTime_FromDateAndTime(year, month, day, hour, min, sec, usec) \ + PyDateTimeAPI->DateTime_FromDateAndTime(year, month, day, hour, \ + min, sec, usec, Py_None, PyDateTimeAPI->DateTimeType) + +#define PyDateTime_FromDateAndTimeAndFold(year, month, day, hour, min, sec, usec, fold) \ + PyDateTimeAPI->DateTime_FromDateAndTimeAndFold(year, month, day, hour, \ + min, sec, usec, Py_None, fold, PyDateTimeAPI->DateTimeType) + +#define PyTime_FromTime(hour, minute, second, usecond) \ + PyDateTimeAPI->Time_FromTime(hour, minute, second, usecond, \ + Py_None, PyDateTimeAPI->TimeType) + +#define PyTime_FromTimeAndFold(hour, minute, second, usecond, fold) \ + PyDateTimeAPI->Time_FromTimeAndFold(hour, minute, second, usecond, \ + Py_None, fold, PyDateTimeAPI->TimeType) + +#define PyDelta_FromDSU(days, seconds, useconds) \ + PyDateTimeAPI->Delta_FromDelta(days, seconds, useconds, 1, \ + PyDateTimeAPI->DeltaType) + +#define PyTimeZone_FromOffset(offset) \ + PyDateTimeAPI->TimeZone_FromTimeZone(offset, NULL) + +#define PyTimeZone_FromOffsetAndName(offset, name) \ + PyDateTimeAPI->TimeZone_FromTimeZone(offset, name) + +/* Macros supporting the DB API. */ +#define PyDateTime_FromTimestamp(args) \ + PyDateTimeAPI->DateTime_FromTimestamp( \ + (PyObject*) (PyDateTimeAPI->DateTimeType), args, NULL) + +#define PyDate_FromTimestamp(args) \ + PyDateTimeAPI->Date_FromTimestamp( \ + (PyObject*) (PyDateTimeAPI->DateType), args) + +#endif /* !defined(_PY_DATETIME_IMPL) */ + +#ifdef __cplusplus +} +#endif +#endif +#endif /* !Py_LIMITED_API */ diff --git a/evalkit_tf437/include/python3.10/dictobject.h b/evalkit_tf437/include/python3.10/dictobject.h new file mode 100644 index 0000000000000000000000000000000000000000..da5a36ba07f32ef5c51e10b214ddb2476a6564dc --- /dev/null +++ b/evalkit_tf437/include/python3.10/dictobject.h @@ -0,0 +1,97 @@ +#ifndef Py_DICTOBJECT_H +#define Py_DICTOBJECT_H +#ifdef __cplusplus +extern "C" { +#endif + +/* Dictionary object type -- mapping from hashable object to object */ + +/* The distribution includes a separate file, Objects/dictnotes.txt, + describing explorations into dictionary design and optimization. + It covers typical dictionary use patterns, the parameters for + tuning dictionaries, and several ideas for possible optimizations. +*/ + +PyAPI_DATA(PyTypeObject) PyDict_Type; + +#define PyDict_Check(op) \ + PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS) +#define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type) + +PyAPI_FUNC(PyObject *) PyDict_New(void); +PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key); +PyAPI_FUNC(PyObject *) PyDict_GetItemWithError(PyObject *mp, PyObject *key); +PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item); +PyAPI_FUNC(int) PyDict_DelItem(PyObject *mp, PyObject *key); +PyAPI_FUNC(void) PyDict_Clear(PyObject *mp); +PyAPI_FUNC(int) PyDict_Next( + PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value); +PyAPI_FUNC(PyObject *) PyDict_Keys(PyObject *mp); +PyAPI_FUNC(PyObject *) PyDict_Values(PyObject *mp); +PyAPI_FUNC(PyObject *) PyDict_Items(PyObject *mp); +PyAPI_FUNC(Py_ssize_t) PyDict_Size(PyObject *mp); +PyAPI_FUNC(PyObject *) PyDict_Copy(PyObject *mp); +PyAPI_FUNC(int) PyDict_Contains(PyObject *mp, PyObject *key); + +/* PyDict_Update(mp, other) is equivalent to PyDict_Merge(mp, other, 1). */ +PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other); + +/* PyDict_Merge updates/merges from a mapping object (an object that + supports PyMapping_Keys() and PyObject_GetItem()). If override is true, + the last occurrence of a key wins, else the first. The Python + dict.update(other) is equivalent to PyDict_Merge(dict, other, 1). +*/ +PyAPI_FUNC(int) PyDict_Merge(PyObject *mp, + PyObject *other, + int override); + +/* PyDict_MergeFromSeq2 updates/merges from an iterable object producing + iterable objects of length 2. If override is true, the last occurrence + of a key wins, else the first. The Python dict constructor dict(seq2) + is equivalent to dict={}; PyDict_MergeFromSeq(dict, seq2, 1). +*/ +PyAPI_FUNC(int) PyDict_MergeFromSeq2(PyObject *d, + PyObject *seq2, + int override); + +PyAPI_FUNC(PyObject *) PyDict_GetItemString(PyObject *dp, const char *key); +PyAPI_FUNC(int) PyDict_SetItemString(PyObject *dp, const char *key, PyObject *item); +PyAPI_FUNC(int) PyDict_DelItemString(PyObject *dp, const char *key); +#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000 +PyAPI_FUNC(PyObject *) PyObject_GenericGetDict(PyObject *, void *); +#endif + +/* Dictionary (keys, values, items) views */ + +PyAPI_DATA(PyTypeObject) PyDictKeys_Type; +PyAPI_DATA(PyTypeObject) PyDictValues_Type; +PyAPI_DATA(PyTypeObject) PyDictItems_Type; + +#define PyDictKeys_Check(op) PyObject_TypeCheck(op, &PyDictKeys_Type) +#define PyDictValues_Check(op) PyObject_TypeCheck(op, &PyDictValues_Type) +#define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type) +/* This excludes Values, since they are not sets. */ +# define PyDictViewSet_Check(op) \ + (PyDictKeys_Check(op) || PyDictItems_Check(op)) + +/* Dictionary (key, value, items) iterators */ + +PyAPI_DATA(PyTypeObject) PyDictIterKey_Type; +PyAPI_DATA(PyTypeObject) PyDictIterValue_Type; +PyAPI_DATA(PyTypeObject) PyDictIterItem_Type; + +PyAPI_DATA(PyTypeObject) PyDictRevIterKey_Type; +PyAPI_DATA(PyTypeObject) PyDictRevIterItem_Type; +PyAPI_DATA(PyTypeObject) PyDictRevIterValue_Type; + + +#ifndef Py_LIMITED_API +# define Py_CPYTHON_DICTOBJECT_H +# include "cpython/dictobject.h" +# undef Py_CPYTHON_DICTOBJECT_H +#endif + +#ifdef __cplusplus +} +#endif +#endif /* !Py_DICTOBJECT_H */ diff --git a/evalkit_tf437/include/python3.10/exports.h b/evalkit_tf437/include/python3.10/exports.h new file mode 100644 index 0000000000000000000000000000000000000000..fc1a5c5ead6276e856de8e07080a125375a8acd0 --- /dev/null +++ b/evalkit_tf437/include/python3.10/exports.h @@ -0,0 +1,30 @@ +#ifndef Py_EXPORTS_H +#define Py_EXPORTS_H + +#if defined(_WIN32) || defined(__CYGWIN__) + #define Py_IMPORTED_SYMBOL __declspec(dllimport) + #define Py_EXPORTED_SYMBOL __declspec(dllexport) + #define Py_LOCAL_SYMBOL +#else +/* + * If we only ever used gcc >= 5, we could use __has_attribute(visibility) + * as a cross-platform way to determine if visibility is supported. However, + * we may still need to support gcc >= 4, as some Ubuntu LTS and Centos versions + * have 4 < gcc < 5. + */ + #ifndef __has_attribute + #define __has_attribute(x) 0 // Compatibility with non-clang compilers. + #endif + #if (defined(__GNUC__) && (__GNUC__ >= 4)) ||\ + (defined(__clang__) && __has_attribute(visibility)) + #define Py_IMPORTED_SYMBOL __attribute__ ((visibility ("default"))) + #define Py_EXPORTED_SYMBOL __attribute__ ((visibility ("default"))) + #define Py_LOCAL_SYMBOL __attribute__ ((visibility ("hidden"))) + #else + #define Py_IMPORTED_SYMBOL + #define Py_EXPORTED_SYMBOL + #define Py_LOCAL_SYMBOL + #endif +#endif + +#endif /* Py_EXPORTS_H */ diff --git a/evalkit_tf437/include/python3.10/patchlevel.h b/evalkit_tf437/include/python3.10/patchlevel.h new file mode 100644 index 0000000000000000000000000000000000000000..161e088a02b55a213f65d7dee095ec58f23da185 --- /dev/null +++ b/evalkit_tf437/include/python3.10/patchlevel.h @@ -0,0 +1,35 @@ + +/* Python version identification scheme. + + When the major or minor version changes, the VERSION variable in + configure.ac must also be changed. + + There is also (independent) API version information in modsupport.h. +*/ + +/* Values for PY_RELEASE_LEVEL */ +#define PY_RELEASE_LEVEL_ALPHA 0xA +#define PY_RELEASE_LEVEL_BETA 0xB +#define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */ +#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */ + /* Higher for patch releases */ + +/* Version parsed out into numeric values */ +/*--start constants--*/ +#define PY_MAJOR_VERSION 3 +#define PY_MINOR_VERSION 10 +#define PY_MICRO_VERSION 16 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 + +/* Version as a string */ +#define PY_VERSION "3.10.16" +/*--end constants--*/ + +/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. + Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ +#define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \ + (PY_MINOR_VERSION << 16) | \ + (PY_MICRO_VERSION << 8) | \ + (PY_RELEASE_LEVEL << 4) | \ + (PY_RELEASE_SERIAL << 0)) diff --git a/evalkit_tf437/include/python3.10/pydtrace.h b/evalkit_tf437/include/python3.10/pydtrace.h new file mode 100644 index 0000000000000000000000000000000000000000..75f8e7f70979c5266635dcf476605421b6a0fad9 --- /dev/null +++ b/evalkit_tf437/include/python3.10/pydtrace.h @@ -0,0 +1,59 @@ +/* Static DTrace probes interface */ + +#ifndef Py_DTRACE_H +#define Py_DTRACE_H +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef WITH_DTRACE + +#include "pydtrace_probes.h" + +/* pydtrace_probes.h, on systems with DTrace, is auto-generated to include + `PyDTrace_{PROBE}` and `PyDTrace_{PROBE}_ENABLED()` macros for every probe + defined in pydtrace_provider.d. + + Calling these functions must be guarded by a `PyDTrace_{PROBE}_ENABLED()` + check to minimize performance impact when probing is off. For example: + + if (PyDTrace_FUNCTION_ENTRY_ENABLED()) + PyDTrace_FUNCTION_ENTRY(f); +*/ + +#else + +/* Without DTrace, compile to nothing. */ + +static inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2) {} +static inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2) {} +static inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2) {} +static inline void PyDTrace_GC_START(int arg0) {} +static inline void PyDTrace_GC_DONE(Py_ssize_t arg0) {} +static inline void PyDTrace_INSTANCE_NEW_START(int arg0) {} +static inline void PyDTrace_INSTANCE_NEW_DONE(int arg0) {} +static inline void PyDTrace_INSTANCE_DELETE_START(int arg0) {} +static inline void PyDTrace_INSTANCE_DELETE_DONE(int arg0) {} +static inline void PyDTrace_IMPORT_FIND_LOAD_START(const char *arg0) {} +static inline void PyDTrace_IMPORT_FIND_LOAD_DONE(const char *arg0, int arg1) {} +static inline void PyDTrace_AUDIT(const char *arg0, void *arg1) {} + +static inline int PyDTrace_LINE_ENABLED(void) { return 0; } +static inline int PyDTrace_FUNCTION_ENTRY_ENABLED(void) { return 0; } +static inline int PyDTrace_FUNCTION_RETURN_ENABLED(void) { return 0; } +static inline int PyDTrace_GC_START_ENABLED(void) { return 0; } +static inline int PyDTrace_GC_DONE_ENABLED(void) { return 0; } +static inline int PyDTrace_INSTANCE_NEW_START_ENABLED(void) { return 0; } +static inline int PyDTrace_INSTANCE_NEW_DONE_ENABLED(void) { return 0; } +static inline int PyDTrace_INSTANCE_DELETE_START_ENABLED(void) { return 0; } +static inline int PyDTrace_INSTANCE_DELETE_DONE_ENABLED(void) { return 0; } +static inline int PyDTrace_IMPORT_FIND_LOAD_START_ENABLED(void) { return 0; } +static inline int PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED(void) { return 0; } +static inline int PyDTrace_AUDIT_ENABLED(void) { return 0; } + +#endif /* !WITH_DTRACE */ + +#ifdef __cplusplus +} +#endif +#endif /* !Py_DTRACE_H */ diff --git a/evalkit_tf437/include/python3.10/pymacro.h b/evalkit_tf437/include/python3.10/pymacro.h new file mode 100644 index 0000000000000000000000000000000000000000..202b936d964f00dec2f7cb8a3fc993f1bd6cfc85 --- /dev/null +++ b/evalkit_tf437/include/python3.10/pymacro.h @@ -0,0 +1,132 @@ +#ifndef Py_PYMACRO_H +#define Py_PYMACRO_H + +/* Minimum value between x and y */ +#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x)) + +/* Maximum value between x and y */ +#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y)) + +/* Absolute value of the number x */ +#define Py_ABS(x) ((x) < 0 ? -(x) : (x)) + +#define _Py_XSTRINGIFY(x) #x + +/* Convert the argument to a string. For example, Py_STRINGIFY(123) is replaced + with "123" by the preprocessor. Defines are also replaced by their value. + For example Py_STRINGIFY(__LINE__) is replaced by the line number, not + by "__LINE__". */ +#define Py_STRINGIFY(x) _Py_XSTRINGIFY(x) + +/* Get the size of a structure member in bytes */ +#define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) + +/* Argument must be a char or an int in [-128, 127] or [0, 255]. */ +#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff)) + +/* Assert a build-time dependency, as an expression. + + Your compile will fail if the condition isn't true, or can't be evaluated + by the compiler. This can be used in an expression: its value is 0. + + Example: + + #define foo_to_char(foo) \ + ((char *)(foo) \ + + Py_BUILD_ASSERT_EXPR(offsetof(struct foo, string) == 0)) + + Written by Rusty Russell, public domain, http://ccodearchive.net/ */ +#define Py_BUILD_ASSERT_EXPR(cond) \ + (sizeof(char [1 - 2*!(cond)]) - 1) + +#define Py_BUILD_ASSERT(cond) do { \ + (void)Py_BUILD_ASSERT_EXPR(cond); \ + } while(0) + +/* Get the number of elements in a visible array + + This does not work on pointers, or arrays declared as [], or function + parameters. With correct compiler support, such usage will cause a build + error (see Py_BUILD_ASSERT_EXPR). + + Written by Rusty Russell, public domain, http://ccodearchive.net/ + + Requires at GCC 3.1+ */ +#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \ + (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ >= 4))) +/* Two gcc extensions. + &a[0] degrades to a pointer: a different type from an array */ +#define Py_ARRAY_LENGTH(array) \ + (sizeof(array) / sizeof((array)[0]) \ + + Py_BUILD_ASSERT_EXPR(!__builtin_types_compatible_p(typeof(array), \ + typeof(&(array)[0])))) +#else +#define Py_ARRAY_LENGTH(array) \ + (sizeof(array) / sizeof((array)[0])) +#endif + + +/* Define macros for inline documentation. */ +#define PyDoc_VAR(name) static const char name[] +#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str) +#ifdef WITH_DOC_STRINGS +#define PyDoc_STR(str) str +#else +#define PyDoc_STR(str) "" +#endif + +/* Below "a" is a power of 2. */ +/* Round down size "n" to be a multiple of "a". */ +#define _Py_SIZE_ROUND_DOWN(n, a) ((size_t)(n) & ~(size_t)((a) - 1)) +/* Round up size "n" to be a multiple of "a". */ +#define _Py_SIZE_ROUND_UP(n, a) (((size_t)(n) + \ + (size_t)((a) - 1)) & ~(size_t)((a) - 1)) +/* Round pointer "p" down to the closest "a"-aligned address <= "p". */ +#define _Py_ALIGN_DOWN(p, a) ((void *)((uintptr_t)(p) & ~(uintptr_t)((a) - 1))) +/* Round pointer "p" up to the closest "a"-aligned address >= "p". */ +#define _Py_ALIGN_UP(p, a) ((void *)(((uintptr_t)(p) + \ + (uintptr_t)((a) - 1)) & ~(uintptr_t)((a) - 1))) +/* Check if pointer "p" is aligned to "a"-bytes boundary. */ +#define _Py_IS_ALIGNED(p, a) (!((uintptr_t)(p) & (uintptr_t)((a) - 1))) + +/* Use this for unused arguments in a function definition to silence compiler + * warnings. Example: + * + * int func(int a, int Py_UNUSED(b)) { return a; } + */ +#if defined(__GNUC__) || defined(__clang__) +# define Py_UNUSED(name) _unused_ ## name __attribute__((unused)) +#else +# define Py_UNUSED(name) _unused_ ## name +#endif + +#if defined(RANDALL_WAS_HERE) +# define Py_UNREACHABLE() \ + Py_FatalError( \ + "If you're seeing this, the code is in what I thought was\n" \ + "an unreachable state.\n\n" \ + "I could give you advice for what to do, but honestly, why\n" \ + "should you trust me? I clearly screwed this up. I'm writing\n" \ + "a message that should never appear, yet I know it will\n" \ + "probably appear someday.\n\n" \ + "On a deep level, I know I'm not up to this task.\n" \ + "I'm so sorry.\n" \ + "https://xkcd.com/2200") +#elif defined(Py_DEBUG) +# define Py_UNREACHABLE() \ + Py_FatalError( \ + "We've reached an unreachable state. Anything is possible.\n" \ + "The limits were in our heads all along. Follow your dreams.\n" \ + "https://xkcd.com/2200") +#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) +# define Py_UNREACHABLE() __builtin_unreachable() +#elif defined(__clang__) || defined(__INTEL_COMPILER) +# define Py_UNREACHABLE() __builtin_unreachable() +#elif defined(_MSC_VER) +# define Py_UNREACHABLE() __assume(0) +#else +# define Py_UNREACHABLE() \ + Py_FatalError("Unreachable C code path reached") +#endif + +#endif /* Py_PYMACRO_H */ diff --git a/evalkit_tf437/include/python3.10/structmember.h b/evalkit_tf437/include/python3.10/structmember.h new file mode 100644 index 0000000000000000000000000000000000000000..93b7aff8091848fd8550da9bd6a0843ec82727dd --- /dev/null +++ b/evalkit_tf437/include/python3.10/structmember.h @@ -0,0 +1,75 @@ +#ifndef Py_STRUCTMEMBER_H +#define Py_STRUCTMEMBER_H +#ifdef __cplusplus +extern "C" { +#endif + + +/* Interface to map C struct members to Python object attributes */ + +#include /* For offsetof */ + +/* An array of PyMemberDef structures defines the name, type and offset + of selected members of a C structure. These can be read by + PyMember_GetOne() and set by PyMember_SetOne() (except if their READONLY + flag is set). The array must be terminated with an entry whose name + pointer is NULL. */ + +typedef struct PyMemberDef { + const char *name; + int type; + Py_ssize_t offset; + int flags; + const char *doc; +} PyMemberDef; + +/* Types */ +#define T_SHORT 0 +#define T_INT 1 +#define T_LONG 2 +#define T_FLOAT 3 +#define T_DOUBLE 4 +#define T_STRING 5 +#define T_OBJECT 6 +/* XXX the ordering here is weird for binary compatibility */ +#define T_CHAR 7 /* 1-character string */ +#define T_BYTE 8 /* 8-bit signed int */ +/* unsigned variants: */ +#define T_UBYTE 9 +#define T_USHORT 10 +#define T_UINT 11 +#define T_ULONG 12 + +/* Added by Jack: strings contained in the structure */ +#define T_STRING_INPLACE 13 + +/* Added by Lillo: bools contained in the structure (assumed char) */ +#define T_BOOL 14 + +#define T_OBJECT_EX 16 /* Like T_OBJECT, but raises AttributeError + when the value is NULL, instead of + converting to None. */ +#define T_LONGLONG 17 +#define T_ULONGLONG 18 + +#define T_PYSSIZET 19 /* Py_ssize_t */ +#define T_NONE 20 /* Value is always None */ + + +/* Flags */ +#define READONLY 1 +#define READ_RESTRICTED 2 +#define PY_WRITE_RESTRICTED 4 +#define RESTRICTED (READ_RESTRICTED | PY_WRITE_RESTRICTED) + +#define PY_AUDIT_READ READ_RESTRICTED + +/* Current API, use this */ +PyAPI_FUNC(PyObject *) PyMember_GetOne(const char *, struct PyMemberDef *); +PyAPI_FUNC(int) PyMember_SetOne(char *, struct PyMemberDef *, PyObject *); + + +#ifdef __cplusplus +} +#endif +#endif /* !Py_STRUCTMEMBER_H */ diff --git a/evalkit_tf437/include/python3.10/structseq.h b/evalkit_tf437/include/python3.10/structseq.h new file mode 100644 index 0000000000000000000000000000000000000000..8f51c89163a4e17ef188001de6d9fa53d70b97ad --- /dev/null +++ b/evalkit_tf437/include/python3.10/structseq.h @@ -0,0 +1,49 @@ + +/* Named tuple object interface */ + +#ifndef Py_STRUCTSEQ_H +#define Py_STRUCTSEQ_H +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct PyStructSequence_Field { + const char *name; + const char *doc; +} PyStructSequence_Field; + +typedef struct PyStructSequence_Desc { + const char *name; + const char *doc; + struct PyStructSequence_Field *fields; + int n_in_sequence; +} PyStructSequence_Desc; + +extern const char * const PyStructSequence_UnnamedField; + +#ifndef Py_LIMITED_API +PyAPI_FUNC(void) PyStructSequence_InitType(PyTypeObject *type, + PyStructSequence_Desc *desc); +PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type, + PyStructSequence_Desc *desc); +#endif +PyAPI_FUNC(PyTypeObject*) PyStructSequence_NewType(PyStructSequence_Desc *desc); + +PyAPI_FUNC(PyObject *) PyStructSequence_New(PyTypeObject* type); + +#ifndef Py_LIMITED_API +typedef PyTupleObject PyStructSequence; + +/* Macro, *only* to be used to fill in brand new objects */ +#define PyStructSequence_SET_ITEM(op, i, v) PyTuple_SET_ITEM(op, i, v) + +#define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) +#endif + +PyAPI_FUNC(void) PyStructSequence_SetItem(PyObject*, Py_ssize_t, PyObject*); +PyAPI_FUNC(PyObject*) PyStructSequence_GetItem(PyObject*, Py_ssize_t); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_STRUCTSEQ_H */ diff --git a/evalkit_tf437/include/python3.10/token.h b/evalkit_tf437/include/python3.10/token.h new file mode 100644 index 0000000000000000000000000000000000000000..eb1b9ea47b469aff22032524129060a04659d28f --- /dev/null +++ b/evalkit_tf437/include/python3.10/token.h @@ -0,0 +1,97 @@ +/* Auto-generated by Tools/scripts/generate_token.py */ + +/* Token types */ +#ifndef Py_LIMITED_API +#ifndef Py_TOKEN_H +#define Py_TOKEN_H +#ifdef __cplusplus +extern "C" { +#endif + +#undef TILDE /* Prevent clash of our definition with system macro. Ex AIX, ioctl.h */ + +#define ENDMARKER 0 +#define NAME 1 +#define NUMBER 2 +#define STRING 3 +#define NEWLINE 4 +#define INDENT 5 +#define DEDENT 6 +#define LPAR 7 +#define RPAR 8 +#define LSQB 9 +#define RSQB 10 +#define COLON 11 +#define COMMA 12 +#define SEMI 13 +#define PLUS 14 +#define MINUS 15 +#define STAR 16 +#define SLASH 17 +#define VBAR 18 +#define AMPER 19 +#define LESS 20 +#define GREATER 21 +#define EQUAL 22 +#define DOT 23 +#define PERCENT 24 +#define LBRACE 25 +#define RBRACE 26 +#define EQEQUAL 27 +#define NOTEQUAL 28 +#define LESSEQUAL 29 +#define GREATEREQUAL 30 +#define TILDE 31 +#define CIRCUMFLEX 32 +#define LEFTSHIFT 33 +#define RIGHTSHIFT 34 +#define DOUBLESTAR 35 +#define PLUSEQUAL 36 +#define MINEQUAL 37 +#define STAREQUAL 38 +#define SLASHEQUAL 39 +#define PERCENTEQUAL 40 +#define AMPEREQUAL 41 +#define VBAREQUAL 42 +#define CIRCUMFLEXEQUAL 43 +#define LEFTSHIFTEQUAL 44 +#define RIGHTSHIFTEQUAL 45 +#define DOUBLESTAREQUAL 46 +#define DOUBLESLASH 47 +#define DOUBLESLASHEQUAL 48 +#define AT 49 +#define ATEQUAL 50 +#define RARROW 51 +#define ELLIPSIS 52 +#define COLONEQUAL 53 +#define OP 54 +#define AWAIT 55 +#define ASYNC 56 +#define TYPE_IGNORE 57 +#define TYPE_COMMENT 58 +#define SOFT_KEYWORD 59 +#define ERRORTOKEN 60 +#define N_TOKENS 64 +#define NT_OFFSET 256 + +/* Special definitions for cooperation with parser */ + +#define ISTERMINAL(x) ((x) < NT_OFFSET) +#define ISNONTERMINAL(x) ((x) >= NT_OFFSET) +#define ISEOF(x) ((x) == ENDMARKER) +#define ISWHITESPACE(x) ((x) == ENDMARKER || \ + (x) == NEWLINE || \ + (x) == INDENT || \ + (x) == DEDENT) + + +PyAPI_DATA(const char * const) _PyParser_TokenNames[]; /* Token names */ +PyAPI_FUNC(int) PyToken_OneChar(int); +PyAPI_FUNC(int) PyToken_TwoChars(int, int); +PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_TOKEN_H */ +#endif /* Py_LIMITED_API */ diff --git a/evalkit_tf437/share/terminfo/h/h100bw b/evalkit_tf437/share/terminfo/h/h100bw new file mode 100644 index 0000000000000000000000000000000000000000..19003800f547d0f1cafa1839c290ca7e8f8e49fd Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/h100bw differ diff --git a/evalkit_tf437/share/terminfo/h/h19us b/evalkit_tf437/share/terminfo/h/h19us new file mode 100644 index 0000000000000000000000000000000000000000..cbcbac1de175eedcf88f9a355853bbadca1c430c Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/h19us differ diff --git a/evalkit_tf437/share/terminfo/h/hp236 b/evalkit_tf437/share/terminfo/h/hp236 new file mode 100644 index 0000000000000000000000000000000000000000..713202d6fa315829d8e7f64249308a1b45e46c78 Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hp236 differ diff --git a/evalkit_tf437/share/terminfo/h/hp2397a b/evalkit_tf437/share/terminfo/h/hp2397a new file mode 100644 index 0000000000000000000000000000000000000000..70ea75de59c7d50e6776d9b677fef950a18046ea Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hp2397a differ diff --git a/evalkit_tf437/share/terminfo/h/hp2621-k45 b/evalkit_tf437/share/terminfo/h/hp2621-k45 new file mode 100644 index 0000000000000000000000000000000000000000..0449f5de2b30d19eafec6436d1b978621f2d3820 Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hp2621-k45 differ diff --git a/evalkit_tf437/share/terminfo/h/hp2626-12 b/evalkit_tf437/share/terminfo/h/hp2626-12 new file mode 100644 index 0000000000000000000000000000000000000000..292c3ce22078c57290cb0984a3d19249c350fb25 Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hp2626-12 differ diff --git a/evalkit_tf437/share/terminfo/h/hp98720 b/evalkit_tf437/share/terminfo/h/hp98720 new file mode 100644 index 0000000000000000000000000000000000000000..7e57ca7080fe277c78af1a673f85c392ff0a9a4b Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hp98720 differ diff --git a/evalkit_tf437/share/terminfo/h/hpterm b/evalkit_tf437/share/terminfo/h/hpterm new file mode 100644 index 0000000000000000000000000000000000000000..99dd05ad4aa8d132bbf463f405a3df26e72a10a0 Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hpterm differ diff --git a/evalkit_tf437/share/terminfo/h/hpterm-color2 b/evalkit_tf437/share/terminfo/h/hpterm-color2 new file mode 100644 index 0000000000000000000000000000000000000000..79ff77206d01fe41715a867dd9ec035f97d85827 Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hpterm-color2 differ diff --git a/evalkit_tf437/share/terminfo/h/hz1552-rv b/evalkit_tf437/share/terminfo/h/hz1552-rv new file mode 100644 index 0000000000000000000000000000000000000000..be0b17406f677551443bf65c1e7123980eacb20f Binary files /dev/null and b/evalkit_tf437/share/terminfo/h/hz1552-rv differ