From 5e96cf3cbd2745625619e3f22488acaf2ec2dfab Mon Sep 17 00:00:00 2001 From: Slava Rogozhkin Date: Sun, 3 Nov 2024 02:19:55 +0300 Subject: [PATCH] add car, point, rectangle --- README.md | 1 + __pycache__/more_class.cpython-312.pyc | Bin 0 -> 5431 bytes __pycache__/point.cpython-312.pyc | Bin 0 -> 2153 bytes __pycache__/rectangle.cpython-312.pyc | Bin 0 -> 5080 bytes bin/Activate.ps1 | 247 + bin/activate | 70 + bin/activate.csh | 27 + bin/activate.fish | 69 + bin/pip | 8 + bin/pip3 | 8 + bin/pip3.12 | 8 + bin/python | 1 + bin/python3 | 1 + bin/python3.12 | 1 + car.py | 57 + .../INSTALLER | 1 + .../LICENSE.txt | 28 + .../multipledispatch-1.0.0.dist-info/METADATA | 142 + .../multipledispatch-1.0.0.dist-info/RECORD | 19 + .../REQUESTED | 0 .../multipledispatch-1.0.0.dist-info/WHEEL | 5 + .../top_level.txt | 1 + .../multipledispatch/__init__.py | 9 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 388 bytes .../__pycache__/conflict.cpython-312.pyc | Bin 0 -> 6737 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 3128 bytes .../__pycache__/dispatcher.cpython-312.pyc | Bin 0 -> 19659 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5305 bytes .../__pycache__/variadic.cpython-312.pyc | Bin 0 -> 4146 bytes .../multipledispatch/conflict.py | 121 + .../site-packages/multipledispatch/core.py | 89 + .../multipledispatch/dispatcher.py | 464 + .../site-packages/multipledispatch/utils.py | 138 + .../multipledispatch/variadic.py | 95 + .../pip-24.3.1.dist-info/AUTHORS.txt | 799 ++ .../pip-24.3.1.dist-info/INSTALLER | 1 + .../pip-24.3.1.dist-info/LICENSE.txt | 20 + .../pip-24.3.1.dist-info/METADATA | 90 + .../site-packages/pip-24.3.1.dist-info/RECORD | 853 ++ .../pip-24.3.1.dist-info/REQUESTED | 0 .../site-packages/pip-24.3.1.dist-info/WHEEL | 5 + .../pip-24.3.1.dist-info/entry_points.txt | 3 + .../pip-24.3.1.dist-info/top_level.txt | 1 + lib/python3.12/site-packages/pip/__init__.py | 13 + lib/python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 679 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 833 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2197 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 779 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14491 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12659 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17624 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 36837 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 662 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5110 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10200 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13607 bytes .../site-packages/pip/_internal/build_env.py | 319 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 270 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8598 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10186 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30387 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1766 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7116 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2292 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4898 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15032 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 3836 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 12233 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7825 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 367 bytes .../pip/_internal/cli/autocompletion.py | 176 + .../pip/_internal/cli/base_command.py | 231 + .../pip/_internal/cli/cmdoptions.py | 1075 +++ .../pip/_internal/cli/command_context.py | 27 + .../pip/_internal/cli/index_command.py | 170 + .../site-packages/pip/_internal/cli/main.py | 80 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 94 + .../pip/_internal/cli/req_command.py | 329 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3994 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9693 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2584 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5185 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13155 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10060 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7495 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4377 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2960 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1665 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6663 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 3972 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29106 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15749 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7510 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 10469 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4701 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8857 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 67 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 146 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 783 ++ .../pip/_internal/commands/list.py | 375 + .../pip/_internal/commands/search.py | 172 + .../pip/_internal/commands/show.py | 217 + .../pip/_internal/commands/uninstall.py | 114 + .../pip/_internal/commands/wheel.py | 182 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 933 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2885 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1692 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8419 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2273 bytes .../pip/_internal/distributions/base.py | 53 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 158 + .../pip/_internal/distributions/wheel.py | 42 + .../site-packages/pip/_internal/exceptions.py | 809 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 224 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21609 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40640 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12516 bytes .../pip/_internal/index/collector.py | 494 + .../pip/_internal/index/package_finder.py | 1020 ++ .../pip/_internal/index/sources.py | 284 + .../pip/_internal/locations/__init__.py | 456 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16432 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6783 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8020 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3773 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 214 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5861 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2918 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35190 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 16076 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 688 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 350 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4483 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12557 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11071 bytes .../_internal/metadata/importlib/_compat.py | 85 + .../_internal/metadata/importlib/_dists.py | 221 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 301 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 258 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1596 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10836 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4215 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1686 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2269 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26609 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1015 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 4979 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1843 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4945 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 6544 bytes .../pip/_internal/models/candidate.py | 25 + .../pip/_internal/models/direct_url.py | 224 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 590 ++ .../pip/_internal/models/scheme.py | 25 + .../pip/_internal/models/search_scope.py | 127 + .../pip/_internal/models/selection_prefs.py | 53 + .../pip/_internal/models/target_python.py | 121 + .../pip/_internal/models/wheel.py | 118 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 246 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22091 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6443 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8471 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11599 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18866 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2247 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2941 bytes .../pip/_internal/network/auth.py | 566 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 187 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 522 + .../pip/_internal/network/utils.py | 98 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 189 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7096 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10120 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25764 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 195 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7659 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1849 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1883 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3003 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1669 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2008 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3838 bytes .../operations/build/build_tracker.py | 138 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 181 + .../pip/_internal/operations/freeze.py | 258 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 258 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1790 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34095 bytes .../operations/install/editable_legacy.py | 47 + .../pip/_internal/operations/install/wheel.py | 741 ++ .../pip/_internal/operations/prepare.py | 732 ++ .../site-packages/pip/_internal/pyproject.py | 185 + .../pip/_internal/req/__init__.py | 90 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3437 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21247 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 22115 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38467 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5475 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32086 bytes .../pip/_internal/req/constructors.py | 560 ++ .../pip/_internal/req/req_file.py | 574 ++ .../pip/_internal/req/req_install.py | 934 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 189 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1177 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 196 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22571 bytes .../_internal/resolution/legacy/resolver.py | 597 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 200 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8141 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29400 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32511 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6785 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10515 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5032 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 15348 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12306 bytes .../_internal/resolution/resolvelib/base.py | 139 + .../resolution/resolvelib/candidates.py | 574 ++ .../resolution/resolvelib/factory.py | 823 ++ .../resolution/resolvelib/found_candidates.py | 174 + .../resolution/resolvelib/provider.py | 258 + .../resolution/resolvelib/reporter.py | 81 + .../resolution/resolvelib/requirements.py | 245 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 244 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 184 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4519 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1855 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2399 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2896 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 6339 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 673 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4180 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3525 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3195 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2137 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 3982 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7318 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1153 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2408 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7592 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13547 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 33440 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2572 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 2097 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4539 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8628 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12013 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 13487 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2066 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4455 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5892 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 79 + .../pip/_internal/utils/compatibility_tags.py | 188 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 124 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 149 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 101 + .../pip/_internal/utils/hashes.py | 147 + .../pip/_internal/utils/logging.py | 347 + .../site-packages/pip/_internal/utils/misc.py | 772 ++ .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/retry.py | 42 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 245 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 337 + .../site-packages/pip/_internal/utils/urls.py | 55 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 523 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5044 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19009 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7597 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12516 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 28989 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 527 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 688 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 116 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4542 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 139444 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 895 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2639 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6457 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3780 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16217 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4340 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6687 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5254 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1667 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 428 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7756 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2726 bytes .../_vendor/cachecontrol/caches/file_cache.py | 182 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 499 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/py.typed | 0 .../pip/_vendor/cachecontrol/serialize.py | 146 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 311 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 638 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3204 bytes .../pip/_vendor/certifi/cacert.pem | 4929 ++++++++++ .../site-packages/pip/_vendor/certifi/core.py | 114 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1262 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45519 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 65574 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24309 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 59854 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15069 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7647 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41553 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17305 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19746 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88028 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30337 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 52538 bytes .../pip/_vendor/distlib/compat.py | 1137 +++ .../pip/_vendor/distlib/database.py | 1329 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1295 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 162 + .../pip/_vendor/distlib/metadata.py | 1031 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 447 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 1984 ++++ .../pip/_vendor/distlib/version.py | 750 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1100 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 953 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 285 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53785 bytes .../pip/_vendor/distro/distro.py | 1403 +++ .../site-packages/pip/_vendor/distro/py.typed | 0 .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 874 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4969 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 880 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 15784 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99469 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2626 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 209 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158841 bytes .../site-packages/pip/_vendor/idna/codec.py | 118 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 395 + .../pip/_vendor/idna/idnadata.py | 4245 ++++++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../site-packages/pip/_vendor/idna/py.typed | 0 .../pip/_vendor/idna/uts46data.py | 8598 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1734 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2018 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8163 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 42036 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 168 + .../pip/_vendor/msgpack/fallback.py | 951 ++ .../pip/_vendor/packaging/__init__.py | 15 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 551 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 4960 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9678 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4547 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 13978 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3234 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7908 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 11004 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 24946 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4403 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 38732 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 23212 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 7334 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19500 bytes .../pip/_vendor/packaging/_elffile.py | 110 + .../pip/_vendor/packaging/_manylinux.py | 262 + .../pip/_vendor/packaging/_musllinux.py | 85 + .../pip/_vendor/packaging/_parser.py | 354 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/_tokenizer.py | 194 + .../pip/_vendor/packaging/markers.py | 325 + .../pip/_vendor/packaging/metadata.py | 804 ++ .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 91 + .../pip/_vendor/packaging/specifiers.py | 1009 ++ .../pip/_vendor/packaging/tags.py | 627 ++ .../pip/_vendor/packaging/utils.py | 174 + .../pip/_vendor/packaging/version.py | 563 ++ .../pip/_vendor/pkg_resources/__init__.py | 3676 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 161254 bytes .../pip/_vendor/platformdirs/__init__.py | 627 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19822 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1941 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10690 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 12904 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 8000 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 15030 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 590 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13667 bytes .../pip/_vendor/platformdirs/android.py | 249 + .../pip/_vendor/platformdirs/api.py | 292 + .../pip/_vendor/platformdirs/macos.py | 130 + .../pip/_vendor/platformdirs/py.typed | 0 .../pip/_vendor/platformdirs/unix.py | 275 + .../pip/_vendor/platformdirs/version.py | 16 + .../pip/_vendor/platformdirs/windows.py | 272 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3482 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 728 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26578 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2622 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3215 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4714 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38355 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1553 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2602 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4071 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4750 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12092 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6687 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8183 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 32966 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14063 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 70 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37905 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6896 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4209 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4216 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7287 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41020 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28542 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6049 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20119 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6871 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2952 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13767 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9133 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5813 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15112 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 987 ++ .../pip/_vendor/pygments/formatters/img.py | 685 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 518 + .../pip/_vendor/pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 349 + .../pip/_vendor/pygments/formatters/svg.py | 185 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 963 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14615 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 68257 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42961 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 589 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 72 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 247 + .../pip/_vendor/pygments/style.py | 203 + .../pip/_vendor/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2658 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3642 bytes .../pip/_vendor/pygments/styles/_mapping.py | 54 + .../pip/_vendor/pygments/token.py | 214 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 324 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 607 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 368 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14687 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1074 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14347 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5247 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 578 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2018 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 28425 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7185 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13915 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 916 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1671 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25192 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7592 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4222 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1045 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35422 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1260 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27840 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6017 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5617 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36360 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 719 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 314 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 78 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 151 + .../pip/_vendor/requests/help.py | 127 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1037 ++ .../pip/_vendor/requests/packages.py | 25 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1096 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 628 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6845 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2648 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25874 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10494 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 194 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 414 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/py.typed | 0 .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 273 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7009 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10286 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7866 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205970 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1723 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2343 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 531 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 849 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12067 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4141 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1864 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3614 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5154 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 715 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6564 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13173 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 959 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 859 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28970 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2484 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3557 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3320 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1602 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12281 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9060 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4266 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11832 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5804 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26563 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1695 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8578 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113430 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2252 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9204 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10935 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10360 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1482 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4206 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1839 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3565 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3066 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9881 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6029 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5202 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20152 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19003 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4883 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13548 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9561 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6372 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7118 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1805 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5291 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12177 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40141 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 74929 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10371 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14781 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1786 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 561 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6607 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6562 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3819 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2473 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28109 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6058 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6055 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33494 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2133 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39942 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43533 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3342 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 60843 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6329 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 308 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31505 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11430 bytes .../pip/_vendor/rich/_cell_widths.py | 454 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 159 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 71 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 93 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 93 + .../site-packages/pip/_vendor/rich/box.py | 480 + .../site-packages/pip/_vendor/rich/cells.py | 167 + .../site-packages/pip/_vendor/rich/color.py | 621 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 139 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 442 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 112 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 251 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 312 + .../site-packages/pip/_vendor/rich/pretty.py | 995 ++ .../pip/_vendor/rich/progress.py | 1699 ++++ .../pip/_vendor/rich/progress_bar.py | 223 + .../site-packages/pip/_vendor/rich/prompt.py | 375 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/py.typed | 0 .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 738 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 131 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 958 ++ .../site-packages/pip/_vendor/rich/table.py | 1000 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1357 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 753 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 378 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26893 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3902 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 360 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../pip/_vendor/truststore/__init__.py | 36 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1338 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 16767 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 18981 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2199 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1093 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15759 bytes .../pip/_vendor/truststore/_api.py | 316 + .../pip/_vendor/truststore/_macos.py | 571 ++ .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 567 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/typing_extensions.py | 3641 +++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3399 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16358 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 212 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20397 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36532 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13487 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10396 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4006 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20423 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7288 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33937 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1140 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 192 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1842 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11558 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5708 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24442 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35495 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7505 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 209 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17421 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14757 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 920 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 193 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41249 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 203 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1819 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7330 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 540 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1140 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4741 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1546 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1346 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4177 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 2986 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21716 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15358 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5045 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10747 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11133 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15779 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4397 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 504 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 18 + lib/python3.12/site-packages/pip/py.typed | 4 + lib64 | 1 + main.py | 43 + more_class.py | 62 + pyvenv.cfg | 5 + 888 files changed, 139591 insertions(+) create mode 100644 README.md create mode 100644 __pycache__/more_class.cpython-312.pyc create mode 100644 __pycache__/point.cpython-312.pyc create mode 100644 __pycache__/rectangle.cpython-312.pyc create mode 100644 bin/Activate.ps1 create mode 100644 bin/activate create mode 100644 bin/activate.csh create mode 100644 bin/activate.fish create mode 100755 bin/pip create mode 100755 bin/pip3 create mode 100755 bin/pip3.12 create mode 120000 bin/python create mode 120000 bin/python3 create mode 120000 bin/python3.12 create mode 100644 car.py create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/INSTALLER create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/LICENSE.txt create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/METADATA create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/RECORD create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/REQUESTED create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/WHEEL create mode 100644 lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/top_level.txt create mode 100644 lib/python3.12/site-packages/multipledispatch/__init__.py create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/conflict.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/core.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/dispatcher.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/utils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/__pycache__/variadic.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/multipledispatch/conflict.py create mode 100644 lib/python3.12/site-packages/multipledispatch/core.py create mode 100644 lib/python3.12/site-packages/multipledispatch/dispatcher.py create mode 100644 lib/python3.12/site-packages/multipledispatch/utils.py create mode 100644 lib/python3.12/site-packages/multipledispatch/variadic.py create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/AUTHORS.txt create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/INSTALLER create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/LICENSE.txt create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/METADATA create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/RECORD create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/REQUESTED create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/WHEEL create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/entry_points.txt create mode 100644 lib/python3.12/site-packages/pip-24.3.1.dist-info/top_level.txt create mode 100644 lib/python3.12/site-packages/pip/__init__.py create mode 100644 lib/python3.12/site-packages/pip/__main__.py create mode 100644 lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/index_command.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/retry.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/certifi/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/distro/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/tomli/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/truststore/py.typed create mode 100644 lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 lib/python3.12/site-packages/pip/py.typed create mode 120000 lib64 create mode 100644 main.py create mode 100644 more_class.py create mode 100644 pyvenv.cfg diff --git a/README.md b/README.md new file mode 100644 index 0000000..8200d78 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +source ./bin/activate diff --git a/__pycache__/more_class.cpython-312.pyc b/__pycache__/more_class.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..410bbfc4e56fa2f539dfe09873fe463dea71d878 GIT binary patch literal 5431 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 KC4!Ld&Hn-3ecPn~ literal 0 HcmV?d00001 diff --git a/__pycache__/point.cpython-312.pyc b/__pycache__/point.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ff9e97baccef395a7d6944cd79ace816b9a2f4d GIT binary patch literal 2153 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 literal 0 HcmV?d00001 diff --git a/bin/Activate.ps1 b/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/bin/activate b/bin/activate new file mode 100644 index 0000000..4ed1a4b --- /dev/null +++ b/bin/activate @@ -0,0 +1,70 @@ +# This file must be used with "source bin/activate" *from bash* +# You cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +# on Windows, a path can contain colons and backslashes and has to be converted: +if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then + # transform D:\path\to\venv to /d/path/to/venv on MSYS + # and to /cygdrive/d/path/to/venv on Cygwin + export VIRTUAL_ENV=$(cygpath "/home/slife/git/specialist") +else + # use the path as-is + export VIRTUAL_ENV="/home/slife/git/specialist" +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(specialist) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(specialist) " + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/bin/activate.csh b/bin/activate.csh new file mode 100644 index 0000000..1ab43b4 --- /dev/null +++ b/bin/activate.csh @@ -0,0 +1,27 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. + +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/slife/git/specialist" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(specialist) $prompt" + setenv VIRTUAL_ENV_PROMPT "(specialist) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/bin/activate.fish b/bin/activate.fish new file mode 100644 index 0000000..1575ee9 --- /dev/null +++ b/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/). You cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/slife/git/specialist" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(specialist) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(specialist) " +end diff --git a/bin/pip b/bin/pip new file mode 100755 index 0000000..44de72a --- /dev/null +++ b/bin/pip @@ -0,0 +1,8 @@ +#!/home/slife/git/specialist/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/bin/pip3 b/bin/pip3 new file mode 100755 index 0000000..44de72a --- /dev/null +++ b/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/slife/git/specialist/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/bin/pip3.12 b/bin/pip3.12 new file mode 100755 index 0000000..44de72a --- /dev/null +++ b/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/home/slife/git/specialist/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/bin/python b/bin/python new file mode 120000 index 0000000..af674c4 --- /dev/null +++ b/bin/python @@ -0,0 +1 @@ +/sbin/python \ No newline at end of file diff --git a/bin/python3 b/bin/python3 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/bin/python3.12 b/bin/python3.12 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/bin/python3.12 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/car.py b/car.py new file mode 100644 index 0000000..5019d1c --- /dev/null +++ b/car.py @@ -0,0 +1,57 @@ +class Car(): + # Пробег + kilometer = 0 + + def fill(self, add_gas): + total = self.gas + add_gas + if total <= self.capacity: + self.gas += add_gas + print('залито', add_gas, 'топлива\n') + if total > self.capacity: + self.gas += (add_gas - (total - self.capacity)) + print('залито до полного бака:', add_gas - (total - self.capacity), ',', total - self.capacity, '- лишние\n') + + def ride(self, expense): + # Сколько можем проехать из желаемого + possible_drive = self.gas / self.per_km + + # Сколко едем по факту + if expense < possible_drive: + fact_drive = expense + else: fact_drive = possible_drive + + if fact_drive < expense: + print('Можем проехать только', fact_drive, 'км') + self.gas -= (fact_drive * self.per_km) + self.kilometer += fact_drive + self.per_km += ((self.per_km * 0.01 * fact_drive) / 100) + + print('Проехано:', fact_drive, 'км\n') + + def __init__(self, gas, capacity, per_km): + self.capacity = capacity + self.gas = gas + self.per_km = per_km + + def __str__(self): + return 'Вместимость бака: ' + str(self.capacity) + '\nТоплива в баке: ' + str(self.gas) + '\nРасход на километр: ' + str(self.per_km) + '\nПробег:' + str(self.kilometer) +'\n' + + +c1 = Car(2, 40, 0.1) +print('Cтааартуем\n\n', c1, sep='') + +while True: + expense = input('Сколько желаем проехать: \n (n - exit)') + if expense == 'n': + break + else: + c1.ride(int(expense)) + + if c1.gas <= 0: + print('Топливо закончилось!') + print('Залить до полного? y/n') + if input() == 'y': + c1.fill(c1.capacity) + else: break + +print(c1) diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/INSTALLER b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/LICENSE.txt b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/LICENSE.txt new file mode 100644 index 0000000..2ac4eaf --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/LICENSE.txt @@ -0,0 +1,28 @@ +Copyright (c) 2014 Matthew Rocklin + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + a. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + b. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + c. Neither the name of multipledispatch nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/METADATA b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/METADATA new file mode 100644 index 0000000..5b158c2 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/METADATA @@ -0,0 +1,142 @@ +Metadata-Version: 2.1 +Name: multipledispatch +Version: 1.0.0 +Summary: Multiple dispatch +Home-page: http://github.com/mrocklin/multipledispatch/ +Author: Matthew Rocklin +Author-email: mrocklin@gmail.com +License: BSD +Keywords: dispatch +License-File: LICENSE.txt + +Multiple Dispatch +================= + +|Build Status| |Coverage Status| |Version Status| + +A relatively sane approach to multiple dispatch in Python. + +This implementation of multiple dispatch is efficient, mostly complete, +performs static analysis to avoid conflicts, and provides optional namespace +support. It looks good too. + +See the documentation at https://multiple-dispatch.readthedocs.io/ + + +Example +------- + +.. code-block:: python + + >>> from multipledispatch import dispatch + + >>> @dispatch(int, int) + ... def add(x, y): + ... return x + y + + >>> @dispatch(object, object) + ... def add(x, y): + ... return "%s + %s" % (x, y) + + >>> add(1, 2) + 3 + + >>> add(1, 'hello') + '1 + hello' + +What this does +-------------- + +- Dispatches on all non-keyword arguments + +- Supports inheritance + +- Supports instance methods + +- Supports union types, e.g. ``(int, float)`` + +- Supports builtin abstract classes, e.g. ``Iterator, Number, ...`` + +- Caches for fast repeated lookup + +- Identifies possible ambiguities at function definition time + +- Provides hints to resolve ambiguities when they occur + +- Supports namespaces with optional keyword arguments + +- Supports variadic dispatch + +What this doesn't do +-------------------- + +- Diagonal dispatch + +.. code-block:: python + + a = arbitrary_type() + @dispatch(a, a) + def are_same_type(x, y): + return True + +- Efficient update: The addition of a new signature requires a full resolve of + the whole function. This becomes troublesome after you get to a few hundred + type signatures. + + +Installation and Dependencies +----------------------------- + +``multipledispatch`` is on the Python Package Index (PyPI): + +:: + + pip install multipledispatch + +It is Pure-Python and depends only on the standard library. +It is a light weight dependency. + + +License +------- + +New BSD. See `License file`_. + + +Links +----- + +- `Five-minute Multimethods in Python by Guido`_ +- `multimethods package on PyPI`_ +- `singledispatch in Python 3.4's functools`_ +- `Clojure Protocols`_ +- `Julia methods docs`_ +- `Karpinksi notebook: *The Design Impact of Multiple Dispatch*`_ +- `Wikipedia article`_ +- `PEP 3124 - *Overloading, Generic Functions, Interfaces, and Adaptation*`_ + + +.. _`Five-minute Multimethods in Python by Guido`: + http://www.artima.com/weblogs/viewpost.jsp?thread=101605 +.. _`multimethods package on PyPI`: + https://pypi.python.org/pypi/multimethods +.. _`singledispatch in Python 3.4's functools`: + http://docs.python.org/3.4/library/functools.html#functools.singledispatch +.. _`Clojure Protocols`: + http://clojure.org/protocols +.. _`Julia methods docs`: + https://docs.julialang.org/en/v1/manual/methods/ +.. _`Karpinksi notebook: *The Design Impact of Multiple Dispatch*`: + http://nbviewer.ipython.org/gist/StefanKarpinski/b8fe9dbb36c1427b9f22 +.. _`Wikipedia article`: + http://en.wikipedia.org/wiki/Multiple_dispatch +.. _`PEP 3124 - *Overloading, Generic Functions, Interfaces, and Adaptation*`: + http://legacy.python.org/dev/peps/pep-3124/ + +.. |Build Status| image:: https://travis-ci.org/mrocklin/multipledispatch.svg + :target: https://travis-ci.org/mrocklin/multipledispatch +.. |Version Status| image:: https://pypip.in/v/multipledispatch/badge.svg + :target: https://img.shields.io/pypi/v/multipledispatch.svg +.. |Coverage Status| image:: https://coveralls.io/repos/mrocklin/multipledispatch/badge.svg + :target: https://coveralls.io/r/mrocklin/multipledispatch +.. _License file: https://github.com/mrocklin/multipledispatch/blob/master/LICENSE.txt diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/RECORD b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/RECORD new file mode 100644 index 0000000..57ea7bd --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/RECORD @@ -0,0 +1,19 @@ +multipledispatch-1.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +multipledispatch-1.0.0.dist-info/LICENSE.txt,sha256=h2fIpWokpp1L9CVhxAi98-P_pAaZmJrsULlvS0NR79k,1503 +multipledispatch-1.0.0.dist-info/METADATA,sha256=4gEUlgE6jeKibDzkh80Hq56fuCzQ3_u6R1yPB8zaQ1g,3798 +multipledispatch-1.0.0.dist-info/RECORD,, +multipledispatch-1.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +multipledispatch-1.0.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92 +multipledispatch-1.0.0.dist-info/top_level.txt,sha256=vRF_h0KIHn0lByVnZJXlzz6qKK2mMsFnH5lLkho5rOI,17 +multipledispatch/__init__.py,sha256=5-rB5C4Mkvu1Ut05KGhpwCUN5oM826vnInwINsdeu5c,162 +multipledispatch/__pycache__/__init__.cpython-312.pyc,, +multipledispatch/__pycache__/conflict.cpython-312.pyc,, +multipledispatch/__pycache__/core.cpython-312.pyc,, +multipledispatch/__pycache__/dispatcher.cpython-312.pyc,, +multipledispatch/__pycache__/utils.cpython-312.pyc,, +multipledispatch/__pycache__/variadic.cpython-312.pyc,, +multipledispatch/conflict.py,sha256=qv19UAXUYepz_wFxtxKofIzIYWW55WytKEKy-94zS7U,3833 +multipledispatch/core.py,sha256=akmICB-OX2W_9OAf9kGvzqBDzx3Xi9mefTvmVSkoAAY,2267 +multipledispatch/dispatcher.py,sha256=yUjsjuUfPqZg772Da_uzOY8Mb2JSobC_yieDEZnm-28,13492 +multipledispatch/utils.py,sha256=QSKK5uzF_HpokILNaOpuTFCzj5LJS6_urD81CP1P6eY,3594 +multipledispatch/variadic.py,sha256=UB3lJZC02uW5AQSLl9417rc_8eDjaAOr7BIWqszxhU8,2725 diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/REQUESTED b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/WHEEL b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/WHEEL new file mode 100644 index 0000000..1f37c02 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.40.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/top_level.txt b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/top_level.txt new file mode 100644 index 0000000..7085f96 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch-1.0.0.dist-info/top_level.txt @@ -0,0 +1 @@ +multipledispatch diff --git a/lib/python3.12/site-packages/multipledispatch/__init__.py b/lib/python3.12/site-packages/multipledispatch/__init__.py new file mode 100644 index 0000000..d9f960c --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/__init__.py @@ -0,0 +1,9 @@ +from .core import dispatch +from .dispatcher import ( + Dispatcher, + halt_ordering, + restart_ordering, + MDNotImplementedError, +) + +__version__ = "0.6.0" diff --git a/lib/python3.12/site-packages/multipledispatch/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/multipledispatch/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd1eb28cbd0a7ee48550010940233d6bddf57968 GIT binary patch literal 388 zcmYjNJxc>Y5Z%3xBqS!;hK^R_;LpPVwf=dkk-wkMVd&T!k-(#hdG2-LNTdP1++zUP(@JDv6>Ar5*RA zr~JfMK@zAi2~{uYIo(hC%ODEBsauI?GsuOhQ=64h&>wDM z;y-2gW;WOMTGbL1R2K3pM2%13G(L}~^JvfnnMOe0#WcfB2p|Sdz_5c}2mQ_;asCKs zgswP$C#{pn?=35}0%oMR2UZBnObwYxr7)IBamVVVEp>GkpPVuyEF9Nq_K+4}m|93H z+*O-Q#<{43f!TMk@+qaCMI Chi!lW literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/multipledispatch/__pycache__/conflict.cpython-312.pyc b/lib/python3.12/site-packages/multipledispatch/__pycache__/conflict.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf579c4d572810c7d1768cfbbd704d3fc5d38c77 GIT binary patch literal 6737 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 f#1CyYYEP${;ota0E5y2$?kdiK|F literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/multipledispatch/__pycache__/core.cpython-312.pyc b/lib/python3.12/site-packages/multipledispatch/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af9c9ac6515e9ae0e611b527eb471f2058ad8969 GIT binary patch literal 3128 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/multipledispatch/__pycache__/utils.cpython-312.pyc b/lib/python3.12/site-packages/multipledispatch/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e26f8d5c7a5c53b785bcc090c42f6cdfc5e1892 GIT binary patch literal 5305 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 B?Pvf1 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/multipledispatch/__pycache__/variadic.cpython-312.pyc b/lib/python3.12/site-packages/multipledispatch/__pycache__/variadic.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..283d039c2b8b5e350e314ee59fa2270fe46d465b GIT binary patch literal 4146 zcmbVPO>7j&6|U-@vB%>vHeizghAjdtp4gt@$5J+63}{WFY=jfV7I+<5?e=tyr=e%s zTh#;DG7?IV!b*EU%5Lx>ha8B+%0$W`hmDfM9&$j+#a>%7X^~Sd$&D~pw8<&&RsVQq z>_t&Zo;NjB^1$CeV@}zdiSB==}|UL@gP1YE#g8Oe|tihm`3Qr9>m& zC6@MpSUT5M^kChTZY3U&sf3zK!dy$;TvCm;!f1*opS8t0Eeq*v`#;b?mij4gVV+ma zGA{%c14+XlwWH8^OgNdM7Map43Y+QZ#8kr4K_(Xx*`(id-4wQI*@ba?u3~ys!6(3I zL94TvfIj+Mb3ptIOnT84WQneXeUVwBH|w=R0~KwF7U?~ZACfA$OJz4DUKAZLAP)1+%Dj4nDQ_Kzu^KPbfIEM5YfBa*x(K^`W+#D=VRUzo3ud zNe#h-FC2-FY#xcz)OW$r(oEY@x&pw+tgU?6?Kfkt4ZSHw8Y* zZ-Dsn@8rw-|5UX6DTA7ym8sj(^IIQ#dOGBJxEb z*nQn}oUAT7u%C*y_0uXGDnKe4GmMEnxMc4R-xg2(kB4XheR&B4xcf5y?a%r)^6x&H z-0bQ9qNo3P-}A!{(=R%|wmh`j`POTqb)}!2tA%H(>2NmqaUu<;Y=a)O-7zd+W_JYN zrJ^6O8M2cAux?^hnp%X;x^?tT>u&WC0!XIjUO;l1h3!Wim{wsEqRN?FWGa-bWJ(4Q zV-gt6qAOsCz;vwmLsP)4$AyfC2ICeF1@_J}clIVPc&tyMIG#lxCSae2S?0M+L1}xh zz{wpO#dc<0*NK0i(HkX>6k)Dl71v`k%8eOjOU6H_nhtI;gY21!wE$LK5MW=I+*4r7 zY6@o}1EUi88lkGiF!%?CvDo`nP{LWIl?Sc+WUH5S9a=uQ-pRh`oP09=w0kpqVJ&-M z{p9eU^v|zuj^0=sy|I3Ia_!{gYHCvSfKEfIK_sf2Hvye`ywu%0SqYQVc0L2lpk`Bx z))lp=H%MX2l0TsP9&1)*O@)Z_i2sMKDwi8?WB1{E4X ziJcF~hET?a98neFQmx3~xX{vB)81Y-D5vcoUtV&#rh` zHU1q)@qD)x5gdLDOQ(aim|fJ;;B~Vr(laXst}Y3x2OW-Fhb=`!B^X?S+y??!)JHN0 z9u+nYpI&c2vzj;)5Cx{<7E*xJ4!}@-wGq`C3p${DXO(e{d*t*GRv*5=@DAgjP%RdNgRiaI8~nZooqGg*b-39haP zxhM(^lTnEyb8MW$<-!HWlYtYkUfJT|%`msfN-h|~{bqT|yv=1!t!Q{&kjx6e&s7xa zYmsdLdkAyYAQ6PHmIvw*N?c6IcCR&BYsI5KX{d3wt;M!#HXt{zRJ_PXq zVt9ZR9oO`-(~FsS{G^-~n5ZE0t7@YS$_K~wq+w)R#c`Mrhe7yBwUeK|ZaP(dRR~uE z83&{8C!l`yqNf9`G&~*cbwFA?7Hu5YyNE=nr(&#KM12bcq)vE3E+}Ha`qkD&Iy1swUE24Mo*-GPEGx)4$qci{F$TwGe2OeH~*?Hnc=Fl%E ze^p*TGPIT%dXd@lGSjtu?=x*9bD`Fn=z>Zm(UuOgZ&F~fF5W`HK=`eOVYvmv5Cb@b z@u^F-Z{trC--3_CNACgor=}-UwRA@^FsY^sFcY_!sQBPE5_Lg?vM&_{#(W>Jd4&ah zxKnZ^XJKrRtR>fC1+#(}2)PHdJ9wuUBKW-El2<&tGRI7&D&wME*e-2iK86|k&FL`m zFMt+1&dkaJt5nOgSaB2?z>Aq;u3Cl-gM>O99N|=RshztWR`Ue$&Q&YB(r;M#NcIhoq51AYSQ|(!Y}at(JrI3SA!EBKZCK doo;$|E4QDfaRk1$2KLd^>cQN<2z)D7{|mF#`4s>F literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/multipledispatch/conflict.py b/lib/python3.12/site-packages/multipledispatch/conflict.py new file mode 100644 index 0000000..3049b91 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/conflict.py @@ -0,0 +1,121 @@ +from .utils import _toposort, groupby +from .variadic import isvariadic + + +class AmbiguityWarning(Warning): + pass + + +def supercedes(a, b): + """A is consistent and strictly more specific than B""" + if len(a) < len(b): + # only case is if a is empty and b is variadic + return not a and len(b) == 1 and isvariadic(b[-1]) + elif len(a) == len(b): + return all(map(issubclass, a, b)) + else: + # len(a) > len(b) + p1 = 0 + p2 = 0 + while p1 < len(a) and p2 < len(b): + cur_a = a[p1] + cur_b = b[p2] + if not (isvariadic(cur_a) or isvariadic(cur_b)): + if not issubclass(cur_a, cur_b): + return False + p1 += 1 + p2 += 1 + elif isvariadic(cur_a): + assert p1 == len(a) - 1 + return p2 == len(b) - 1 and issubclass(cur_a, cur_b) + elif isvariadic(cur_b): + assert p2 == len(b) - 1 + if not issubclass(cur_a, cur_b): + return False + p1 += 1 + return p2 == len(b) - 1 and p1 == len(a) + + +def consistent(a, b): + """It is possible for an argument list to satisfy both A and B""" + + # Need to check for empty args + if not a: + return not b or isvariadic(b[0]) + if not b: + return not a or isvariadic(a[0]) + + # Non-empty args check for mutual subclasses + if len(a) == len(b): + return all(issubclass(aa, bb) or issubclass(bb, aa) for aa, bb in zip(a, b)) + else: + p1 = 0 + p2 = 0 + while p1 < len(a) and p2 < len(b): + cur_a = a[p1] + cur_b = b[p2] + if not issubclass(cur_b, cur_a) and not issubclass(cur_a, cur_b): + return False + if not (isvariadic(cur_a) or isvariadic(cur_b)): + p1 += 1 + p2 += 1 + elif isvariadic(cur_a): + p2 += 1 + elif isvariadic(cur_b): + p1 += 1 + # We only need to check for variadic ends + # Variadic types are guaranteed to be the last element + return isvariadic(cur_a) and p2 == len(b) or isvariadic(cur_b) and p1 == len(a) + + +def ambiguous(a, b): + """A is consistent with B but neither is strictly more specific""" + return consistent(a, b) and not (supercedes(a, b) or supercedes(b, a)) + + +def ambiguities(signatures): + """All signature pairs such that A is ambiguous with B""" + signatures = list(map(tuple, signatures)) + return set( + (a, b) + for a in signatures + for b in signatures + if hash(a) < hash(b) + and ambiguous(a, b) + and not any(supercedes(c, a) and supercedes(c, b) for c in signatures) + ) + + +def super_signature(signatures): + """A signature that would break ambiguities""" + n = len(signatures[0]) + assert all(len(s) == n for s in signatures) + + return [max([type.mro(sig[i]) for sig in signatures], key=len)[0] for i in range(n)] + + +def edge(a, b, tie_breaker=hash): + """A should be checked before B + + Tie broken by tie_breaker, defaults to ``hash`` + """ + # A either supercedes B and B does not supercede A or if B does then call + # tie_breaker + return supercedes(a, b) and ( + not supercedes(b, a) or tie_breaker(a) > tie_breaker(b) + ) + + +def ordering(signatures): + """A sane ordering of signatures to check, first to last + + Topoological sort of edges as given by ``edge`` and ``supercedes`` + """ + signatures = list(map(tuple, signatures)) + edges = [(a, b) for a in signatures for b in signatures if edge(a, b)] + edges = groupby(lambda x: x[0], edges) + for s in signatures: + if s not in edges: + edges[s] = [] + edges = dict((k, [b for a, b in v]) for k, v in edges.items()) + return _toposort(edges) diff --git a/lib/python3.12/site-packages/multipledispatch/core.py b/lib/python3.12/site-packages/multipledispatch/core.py new file mode 100644 index 0000000..fb449e0 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/core.py @@ -0,0 +1,89 @@ +import inspect +import sys + +from .dispatcher import Dispatcher, MethodDispatcher, ambiguity_warn + +global_namespace = dict() + + +def dispatch(*types, **kwargs): + """Dispatch function on the types of the inputs + + Supports dispatch on all non-keyword arguments. + + Collects implementations based on the function name. Ignores namespaces. + + If ambiguous type signatures occur a warning is raised when the function is + defined suggesting the additional method to break the ambiguity. + + Examples + -------- + + >>> @dispatch(int) + ... def f(x): + ... return x + 1 + + >>> @dispatch(float) + ... def f(x): + ... return x - 1 + + >>> f(3) + 4 + >>> f(3.0) + 2.0 + + Specify an isolated namespace with the namespace keyword argument + + >>> my_namespace = dict() + >>> @dispatch(int, namespace=my_namespace) + ... def foo(x): + ... return x + 1 + + Dispatch on instance methods within classes + + >>> class MyClass(object): + ... @dispatch(list) + ... def __init__(self, data): + ... self.data = data + ... @dispatch(int) + ... def __init__(self, datum): + ... self.data = [datum] + """ + namespace = kwargs.get("namespace", global_namespace) + + types = tuple(types) + + def _df(func): + name = func.__name__ + + if ismethod(func): + dispatcher = inspect.currentframe().f_back.f_locals.get( + name, + MethodDispatcher(name), + ) + else: + if name not in namespace: + namespace[name] = Dispatcher(name) + dispatcher = namespace[name] + + dispatcher.add(types, func) + return dispatcher + + return _df + + +def ismethod(func): + """Is func a method? + + Note that this has to work as the method is defined but before the class is + defined. At this stage methods look like functions. + """ + if hasattr(inspect, "signature"): + signature = inspect.signature(func) + return signature.parameters.get("self", None) is not None + else: + if sys.version_info.major < 3: + spec = inspect.getargspec(func) + else: + spec = inspect.getfullargspec(func) + return spec and spec.args and spec.args[0] == "self" diff --git a/lib/python3.12/site-packages/multipledispatch/dispatcher.py b/lib/python3.12/site-packages/multipledispatch/dispatcher.py new file mode 100644 index 0000000..cff55d3 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/dispatcher.py @@ -0,0 +1,464 @@ +from warnings import warn +import inspect +from .conflict import ordering, ambiguities, super_signature, AmbiguityWarning +from .utils import expand_tuples +from .variadic import Variadic, isvariadic +import itertools as itl + + +class MDNotImplementedError(NotImplementedError): + """A NotImplementedError for multiple dispatch""" + + +def ambiguity_warn(dispatcher, ambiguities): + """Raise warning when ambiguity is detected + + Parameters + ---------- + dispatcher : Dispatcher + The dispatcher on which the ambiguity was detected + ambiguities : set + Set of type signature pairs that are ambiguous within this dispatcher + + See Also: + Dispatcher.add + warning_text + """ + warn(warning_text(dispatcher.name, ambiguities), AmbiguityWarning) + + +def halt_ordering(): + """Deprecated interface to temporarily disable ordering.""" + warn( + "halt_ordering is deprecated, you can safely remove this call.", + DeprecationWarning, + ) + + +def restart_ordering(on_ambiguity=ambiguity_warn): + """Deprecated interface to temporarily resume ordering.""" + warn( + "restart_ordering is deprecated, if you would like to eagerly order" + "the dispatchers, you should call the ``reorder()`` method on each" + " dispatcher.", + DeprecationWarning, + ) + + +def variadic_signature_matches_iter(types, full_signature): + """Check if a set of input types matches a variadic signature. + + Notes + ----- + The algorithm is as follows: + + Initialize the current signature to the first in the sequence + + For each type in `types`: + If the current signature is variadic + If the type matches the signature + yield True + Else + Try to get the next signature + If no signatures are left we can't possibly have a match + so yield False + Else + yield True if the type matches the current signature + Get the next signature + """ + sigiter = iter(full_signature) + sig = next(sigiter) + for typ in types: + matches = issubclass(typ, sig) + yield matches + if not isvariadic(sig): + # we're not matching a variadic argument, so move to the next + # element in the signature + sig = next(sigiter) + else: + try: + sig = next(sigiter) + except StopIteration: + assert isvariadic(sig) + yield True + else: + # We have signature items left over, so all of our arguments + # haven't matched + yield False + + +def variadic_signature_matches(types, full_signature): + # No arguments always matches a variadic signature + assert full_signature + return all(variadic_signature_matches_iter(types, full_signature)) + + +class Dispatcher(object): + """Dispatch methods based on type signature + + Use ``dispatch`` to add implementations + + Examples + -------- + + >>> from multipledispatch import dispatch + >>> @dispatch(int) + ... def f(x): + ... return x + 1 + + >>> @dispatch(float) + ... def f(x): + ... return x - 1 + + >>> f(3) + 4 + >>> f(3.0) + 2.0 + """ + + __slots__ = "__name__", "name", "funcs", "_ordering", "_cache", "doc" + + def __init__(self, name, doc=None): + self.name = self.__name__ = name + self.funcs = {} + self.doc = doc + + self._cache = {} + + def register(self, *types, **kwargs): + """register dispatcher with new implementation + + >>> f = Dispatcher('f') + >>> @f.register(int) + ... def inc(x): + ... return x + 1 + + >>> @f.register(float) + ... def dec(x): + ... return x - 1 + + >>> @f.register(list) + ... @f.register(tuple) + ... def reverse(x): + ... return x[::-1] + + >>> f(1) + 2 + + >>> f(1.0) + 0.0 + + >>> f([1, 2, 3]) + [3, 2, 1] + """ + + def _df(func): + self.add(types, func, **kwargs) + return func + + return _df + + @classmethod + def get_func_params(cls, func): + if hasattr(inspect, "signature"): + sig = inspect.signature(func) + return sig.parameters.values() + + @classmethod + def get_func_annotations(cls, func): + """get annotations of function positional parameters""" + params = cls.get_func_params(func) + if params: + Parameter = inspect.Parameter + + params = ( + param + for param in params + if param.kind + in (Parameter.POSITIONAL_ONLY, Parameter.POSITIONAL_OR_KEYWORD) + ) + + annotations = tuple(param.annotation for param in params) + + if all(ann is not Parameter.empty for ann in annotations): + return annotations + + def add(self, signature, func): + """Add new types/method pair to dispatcher + + >>> D = Dispatcher('add') + >>> D.add((int, int), lambda x, y: x + y) + >>> D.add((float, float), lambda x, y: x + y) + + >>> D(1, 2) + 3 + >>> D(1, 2.0) + Traceback (most recent call last): + ... + NotImplementedError: Could not find signature for add: + + When ``add`` detects a warning it calls the ``on_ambiguity`` callback + with a dispatcher/itself, and a set of ambiguous type signature pairs + as inputs. See ``ambiguity_warn`` for an example. + """ + # Handle annotations + if not signature: + annotations = self.get_func_annotations(func) + if annotations: + signature = annotations + + # Handle union types + if any(isinstance(typ, tuple) for typ in signature): + for typs in expand_tuples(signature): + self.add(typs, func) + return + + new_signature = [] + + for index, typ in enumerate(signature, start=1): + if not isinstance(typ, (type, list)): + str_sig = ", ".join( + c.__name__ if isinstance(c, type) else str(c) for c in signature + ) + raise TypeError( + "Tried to dispatch on non-type: %s\n" + "In signature: <%s>\n" + "In function: %s" % (typ, str_sig, self.name) + ) + + # handle variadic signatures + if isinstance(typ, list): + if index != len(signature): + raise TypeError("Variadic signature must be the last element") + + if len(typ) != 1: + raise TypeError( + "Variadic signature must contain exactly one element. " + "To use a variadic union type place the desired types " + "inside of a tuple, e.g., [(int, str)]" + ) + new_signature.append(Variadic[typ[0]]) + else: + new_signature.append(typ) + + self.funcs[tuple(new_signature)] = func + self._cache.clear() + + try: + del self._ordering + except AttributeError: + pass + + @property + def ordering(self): + try: + return self._ordering + except AttributeError: + return self.reorder() + + def reorder(self, on_ambiguity=ambiguity_warn): + self._ordering = od = ordering(self.funcs) + amb = ambiguities(self.funcs) + if amb: + on_ambiguity(self, amb) + return od + + def __call__(self, *args, **kwargs): + types = tuple([type(arg) for arg in args]) + try: + func = self._cache[types] + except KeyError: + func = self.dispatch(*types) + if not func: + raise NotImplementedError( + "Could not find signature for %s: <%s>" + % (self.name, str_signature(types)) + ) + self._cache[types] = func + try: + return func(*args, **kwargs) + + except MDNotImplementedError: + funcs = self.dispatch_iter(*types) + next(funcs) # burn first + for func in funcs: + try: + return func(*args, **kwargs) + except MDNotImplementedError: + pass + + raise NotImplementedError( + "Matching functions for " + "%s: <%s> found, but none completed successfully" + % ( + self.name, + str_signature(types), + ), + ) + + def __str__(self): + return "" % self.name + + __repr__ = __str__ + + def dispatch(self, *types): + """Deterimine appropriate implementation for this type signature + + This method is internal. Users should call this object as a function. + Implementation resolution occurs within the ``__call__`` method. + + >>> from multipledispatch import dispatch + >>> @dispatch(int) + ... def inc(x): + ... return x + 1 + + >>> implementation = inc.dispatch(int) + >>> implementation(3) + 4 + + >>> print(inc.dispatch(float)) + None + + See Also: + ``multipledispatch.conflict`` - module to determine resolution order + """ + + if types in self.funcs: + return self.funcs[types] + + try: + return next(self.dispatch_iter(*types)) + except StopIteration: + return None + + def dispatch_iter(self, *types): + n = len(types) + for signature in self.ordering: + if len(signature) == n and all(map(issubclass, types, signature)): + result = self.funcs[signature] + yield result + elif len(signature) and isvariadic(signature[-1]): + if variadic_signature_matches(types, signature): + result = self.funcs[signature] + yield result + + def resolve(self, types): + """Deterimine appropriate implementation for this type signature + + .. deprecated:: 0.4.4 + Use ``dispatch(*types)`` instead + """ + warn("resolve() is deprecated, use dispatch(*types)", DeprecationWarning) + + return self.dispatch(*types) + + def __getstate__(self): + return {"name": self.name, "funcs": self.funcs} + + def __setstate__(self, d): + self.name = d["name"] + self.funcs = d["funcs"] + self._ordering = ordering(self.funcs) + self._cache = dict() + + @property + def __doc__(self): + docs = ["Multiply dispatched method: %s" % self.name] + + if self.doc: + docs.append(self.doc) + + other = [] + for sig in self.ordering[::-1]: + func = self.funcs[sig] + if func.__doc__: + s = "Inputs: <%s>\n" % str_signature(sig) + s += "-" * len(s) + "\n" + s += func.__doc__.strip() + docs.append(s) + else: + other.append(str_signature(sig)) + + if other: + docs.append("Other signatures:\n " + "\n ".join(other)) + + return "\n\n".join(docs) + + def _help(self, *args): + return self.dispatch(*map(type, args)).__doc__ + + def help(self, *args, **kwargs): + """Print docstring for the function corresponding to inputs""" + print(self._help(*args)) + + def _source(self, *args): + func = self.dispatch(*map(type, args)) + if not func: + raise TypeError("No function found") + return source(func) + + def source(self, *args, **kwargs): + """Print source code for the function corresponding to inputs""" + print(self._source(*args)) + + +def source(func): + s = "File: %s\n\n" % inspect.getsourcefile(func) + s = s + inspect.getsource(func) + return s + + +class MethodDispatcher(Dispatcher): + """Dispatch methods based on type signature + + See Also: + Dispatcher + """ + + __slots__ = ("obj", "cls") + + @classmethod + def get_func_params(cls, func): + if hasattr(inspect, "signature"): + sig = inspect.signature(func) + return itl.islice(sig.parameters.values(), 1, None) + + def __get__(self, instance, owner): + self.obj = instance + self.cls = owner + return self + + def __call__(self, *args, **kwargs): + types = tuple([type(arg) for arg in args]) + func = self.dispatch(*types) + if not func: + raise NotImplementedError( + "Could not find signature for %s: <%s>" + % (self.name, str_signature(types)) + ) + return func(self.obj, *args, **kwargs) + + +def str_signature(sig): + """String representation of type signature + + >>> str_signature((int, float)) + 'int, float' + """ + return ", ".join(cls.__name__ for cls in sig) + + +def warning_text(name, amb): + """The text for ambiguity warnings""" + text = "\nAmbiguities exist in dispatched function %s\n\n" % (name) + text += "The following signatures may result in ambiguous behavior:\n" + for pair in amb: + text += "\t" + ", ".join("[" + str_signature(s) + "]" for s in pair) + "\n" + text += "\n\nConsider making the following additions:\n\n" + text += "\n\n".join( + [ + "@dispatch(" + str_signature(super_signature(s)) + ")\ndef %s(...)" % name + for s in amb + ] + ) + return text diff --git a/lib/python3.12/site-packages/multipledispatch/utils.py b/lib/python3.12/site-packages/multipledispatch/utils.py new file mode 100644 index 0000000..08cacc8 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/utils.py @@ -0,0 +1,138 @@ +from collections import OrderedDict + + +def raises(err, lamda): + try: + lamda() + return False + except err: + return True + + +def expand_tuples(L): + """ + + >>> expand_tuples([1, (2, 3)]) + [(1, 2), (1, 3)] + + >>> expand_tuples([1, 2]) + [(1, 2)] + """ + if not L: + return [()] + elif not isinstance(L[0], tuple): + rest = expand_tuples(L[1:]) + return [(L[0],) + t for t in rest] + else: + rest = expand_tuples(L[1:]) + return [(item,) + t for t in rest for item in L[0]] + + +# Taken from theano/theano/gof/sched.py +# Avoids licensing issues because this was written by Matthew Rocklin +def _toposort(edges): + """Topological sort algorithm by Kahn [1] - O(nodes + vertices) + + inputs: + edges - a dict of the form {a: {b, c}} where b and c depend on a + outputs: + L - an ordered list of nodes that satisfy the dependencies of edges + + >>> _toposort({1: (2, 3), 2: (3, )}) + [1, 2, 3] + + Closely follows the wikipedia page [2] + + [1] Kahn, Arthur B. (1962), "Topological sorting of large networks", + Communications of the ACM + [2] http://en.wikipedia.org/wiki/Toposort#Algorithms + """ + incoming_edges = reverse_dict(edges) + incoming_edges = OrderedDict((k, set(val)) for k, val in incoming_edges.items()) + S = OrderedDict.fromkeys(v for v in edges if v not in incoming_edges) + L = [] + + while S: + n, _ = S.popitem() + L.append(n) + for m in edges.get(n, ()): + assert n in incoming_edges[m] + incoming_edges[m].remove(n) + if not incoming_edges[m]: + S[m] = None + if any(incoming_edges.get(v, None) for v in edges): + raise ValueError("Input has cycles") + return L + + +def reverse_dict(d): + """Reverses direction of dependence dict + + >>> d = {'a': (1, 2), 'b': (2, 3), 'c':()} + >>> reverse_dict(d) # doctest: +SKIP + {1: ('a',), 2: ('a', 'b'), 3: ('b',)} + + :note: dict order are not deterministic. As we iterate on the + input dict, it make the output of this function depend on the + dict order. So this function output order should be considered + as undeterministic. + + """ + result = OrderedDict() + for key in d: + for val in d[key]: + result[val] = result.get(val, tuple()) + (key,) + return result + + +# Taken from toolz +# Avoids licensing issues because this version was authored by Matthew Rocklin +def groupby(func, seq): + """Group a collection by a key function + + >>> names = ['Alice', 'Bob', 'Charlie', 'Dan', 'Edith', 'Frank'] + >>> groupby(len, names) # doctest: +SKIP + {3: ['Bob', 'Dan'], 5: ['Alice', 'Edith', 'Frank'], 7: ['Charlie']} + + >>> iseven = lambda x: x % 2 == 0 + >>> groupby(iseven, [1, 2, 3, 4, 5, 6, 7, 8]) # doctest: +SKIP + {False: [1, 3, 5, 7], True: [2, 4, 6, 8]} + + See Also: + ``countby`` + """ + + d = OrderedDict() + for item in seq: + key = func(item) + if key not in d: + d[key] = list() + d[key].append(item) + return d + + +def typename(type): + """Get the name of `type`. + + Parameters + ---------- + type : Union[Type, Tuple[Type]] + + Returns + ------- + str + The name of `type` or a tuple of the names of the types in `type`. + + Examples + -------- + >>> typename(int) + 'int' + >>> typename((int, float)) + '(int, float)' + """ + try: + return type.__name__ + except AttributeError: + if len(type) == 1: + return typename(*type) + return "(%s)" % ", ".join(map(typename, type)) diff --git a/lib/python3.12/site-packages/multipledispatch/variadic.py b/lib/python3.12/site-packages/multipledispatch/variadic.py new file mode 100644 index 0000000..588f3a6 --- /dev/null +++ b/lib/python3.12/site-packages/multipledispatch/variadic.py @@ -0,0 +1,95 @@ +from multipledispatch.utils import typename + + +class VariadicSignatureType(type): + # checking if subclass is a subclass of self + def __subclasscheck__(self, subclass): + other_type = subclass.variadic_type if isvariadic(subclass) else (subclass,) + return subclass is self or all( + issubclass(other, self.variadic_type) for other in other_type + ) + + def __eq__(self, other): + """ + Return True if other has the same variadic type + + Parameters + ---------- + other : object (type) + The object (type) to check + + Returns + ------- + bool + Whether or not `other` is equal to `self` + """ + return isvariadic(other) and set(self.variadic_type) == set(other.variadic_type) + + def __hash__(self): + return hash((type(self), frozenset(self.variadic_type))) + + +def isvariadic(obj): + """Check whether the type `obj` is variadic. + + Parameters + ---------- + obj : type + The type to check + + Returns + ------- + bool + Whether or not `obj` is variadic + + Examples + -------- + >>> isvariadic(int) + False + >>> isvariadic(Variadic[int]) + True + """ + return isinstance(obj, VariadicSignatureType) + + +class VariadicSignatureMeta(type): + """A metaclass that overrides ``__getitem__`` on the class. This is used to + generate a new type for Variadic signatures. See the Variadic class for + examples of how this behaves. + """ + + def __getitem__(self, variadic_type): + if not (isinstance(variadic_type, (type, tuple)) or type(variadic_type)): + raise ValueError( + "Variadic types must be type or tuple of types" + " (Variadic[int] or Variadic[(int, float)]" + ) + + if not isinstance(variadic_type, tuple): + variadic_type = (variadic_type,) + return VariadicSignatureType( + "Variadic[%s]" % typename(variadic_type), + (), + dict(variadic_type=variadic_type, __slots__=()), + ) + + +class Variadic(metaclass=VariadicSignatureMeta): + """A class whose getitem method can be used to generate a new type + representing a specific variadic signature. + + Examples + -------- + >>> Variadic[int] # any number of int arguments + + >>> Variadic[(int, str)] # any number of one of int or str arguments + + >>> issubclass(int, Variadic[int]) + True + >>> issubclass(int, Variadic[(int, str)]) + True + >>> issubclass(str, Variadic[(int, str)]) + True + >>> issubclass(float, Variadic[(int, str)]) + False + """ diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/AUTHORS.txt b/lib/python3.12/site-packages/pip-24.3.1.dist-info/AUTHORS.txt new file mode 100644 index 0000000..8ccefbc --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/AUTHORS.txt @@ -0,0 +1,799 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adolfo Ochagavía +Adrien Morison +Agus +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Anton Zelenov +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +arena +arenasys +Arindam Choudhury +Armin Ronacher +Arnon Yaari +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Branch Vincent +Brandon L. Reiss +Brandt Bucher +Brannon Dorsey +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Charlie Marsh +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris Markiewicz +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +chrysle +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +ctg123 +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Poznik +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +devsagul +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dimitri Papadopoulos Orfanos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dustin Rodrigues +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Fredrik Orderud +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Geoffrey Sneddon +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ikko Ashimine +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Fleischman +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jinzhe Zeng +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +John Sirois +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Cannon +Josh Hansen +Josh Schneier +Joshua +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +Jussi Kukkonen +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +konstin +kpinc +Krishna Oza +Kumar McMillan +Kuntal Majumder +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Luis Medel +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark McLoughlin +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +Matt Wozniski +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Hughes +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +morotti +mrKazzila +Muha Ajjan +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Shen +Peter Waller +Petr Viktorin +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Ran Benita +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +rmorotti +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +S. Guliaev +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shenxianpeng +shireenrao +Shivansh-007 +Shixian Sheng +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Srishti Hegde +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Sviatoslav Sydorenko (Святослав Сидоренко) +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +Xianpeng Shen +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yusuke Hayashi +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/INSTALLER b/lib/python3.12/site-packages/pip-24.3.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/LICENSE.txt b/lib/python3.12/site-packages/pip-24.3.1.dist-info/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/METADATA b/lib/python3.12/site-packages/pip-24.3.1.dist-info/METADATA new file mode 100644 index 0000000..9e5aa3a --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/METADATA @@ -0,0 +1,90 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.3.1 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +|pypi-version| |python-versions| |docs-badge| + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/RECORD b/lib/python3.12/site-packages/pip-24.3.1.dist-info/RECORD new file mode 100644 index 0000000..0d4cfd0 --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/RECORD @@ -0,0 +1,853 @@ +../../../bin/pip,sha256=qtx1gXmPgszw3-9AKsEvaoyTn6o5gbAoCxjLBkRL0kA,242 +../../../bin/pip3,sha256=qtx1gXmPgszw3-9AKsEvaoyTn6o5gbAoCxjLBkRL0kA,242 +../../../bin/pip3.12,sha256=qtx1gXmPgszw3-9AKsEvaoyTn6o5gbAoCxjLBkRL0kA,242 +pip-24.3.1.dist-info/AUTHORS.txt,sha256=Cbb630k8EL9FkBzX9Vpi6hpYWrLSlh08eXodL5u0eLI,10925 +pip-24.3.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.3.1.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.3.1.dist-info/METADATA,sha256=V8iCNK1GYbC82PWsLMsASDh9AO4veocRlM4Pn9q2KFI,3677 +pip-24.3.1.dist-info/RECORD,, +pip-24.3.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.3.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91 +pip-24.3.1.dist-info/entry_points.txt,sha256=eeIjuzfnfR2PrhbjnbzFU6MnSS70kZLxwaHHq6M-bD0,87 +pip-24.3.1.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=faXY_neeYrA_88plEhkyhwAaYeds7wu5U1iGwP24J0s,357 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=cPPWuJ6NK_k-GzfvlejLFgwzmYUROmpAR6QC3Q-vkXQ,1450 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=MfcoOluDZ8QMCFYal04IqOJ9q6m2V7a0aOsnI-WOxUo,513 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=wsTPOWyPTKvUREUcO585OU01kbQufpdigY8fVHv3WIw,10584 +pip/_internal/cache.py,sha256=Jb698p5PNigRtpW5o26wQNkkUv4MnQ94mc471wL63A0,10369 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/index_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=Lli3Mr6aDNu7ZkJJFFvwD2-hFxNI6Avz8OwMyS5TVrs,6865 +pip/_internal/cli/base_command.py,sha256=F8nUcSM-Y-MQljJUe724-yxmc5viFXHyM_zH70NmIh4,8289 +pip/_internal/cli/cmdoptions.py,sha256=mDqBr0d0hoztbRJs-PWtcKpqNAc7khU6ZpoesZKocT8,30110 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/index_command.py,sha256=-0oPTruZGkLSMrWDleZ6UtcKP3G-SImRRuhH0RfVE3o,5631 +pip/_internal/cli/main.py,sha256=BDZef-bWe9g9Jpr4OVs4dDf-845HJsKw835T7AqEnAc,2817 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=VCMtduzECUV87KaHNu-xJ-wLNL82yT3x16V4XBxOAqI,10825 +pip/_internal/cli/progress_bars.py,sha256=VgydyqjZvfhqpuNcFDn00QNuA9GxRe9CKrRG8jhPuKU,2723 +pip/_internal/cli/req_command.py,sha256=DqeFhmUMs6o6Ev8qawAcOoYNdAZsfyKS0MZI5jsJYwQ,12250 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Hr_4eiMd9cgVDgEvjtIdw915NmL7ROIWW8enkr8slPQ,2268 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=DNDRgE9YsKrbYzU0s3VKi8rHtKF4X13CJ_br_8PUXO0,6797 +pip/_internal/commands/download.py,sha256=0qB0nys6ZEPsog451lDsjL5Bx7Z97t-B80oFZKhpzKM,5273 +pip/_internal/commands/freeze.py,sha256=2Vt72BYTSm9rzue6d8dNzt8idxWK4Db6Hd-anq7GQ80,3203 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=RAXxmJwFhVb5S1BYzb5ifX3sn9Na8v2CCVYwSMP8pao,4731 +pip/_internal/commands/inspect.py,sha256=PGrY9TRTRCM3y5Ml8Bdk8DEOXquWRfscr4DRo1LOTPc,3189 +pip/_internal/commands/install.py,sha256=iqesiLIZc6Op9uihMQFYRhAA2DQRZUxbM4z1BwXoFls,29428 +pip/_internal/commands/list.py,sha256=oiIzSjLP6__d7dIS3q0Xb5ywsaOThBWRqMyjjKzkPdM,12769 +pip/_internal/commands/search.py,sha256=fWkUQVx_gm8ebbFAlCgqtxKXT9rNahpJ-BI__3HNZpg,5626 +pip/_internal/commands/show.py,sha256=IG9L5uo8w6UA4tI_IlmaxLCoNKPa5JNJCljj3NWs0OE,7507 +pip/_internal/commands/uninstall.py,sha256=7pOR7enK76gimyxQbzxcG1OsyLXL3DvX939xmM8Fvtg,3892 +pip/_internal/commands/wheel.py,sha256=eJRhr_qoNNxWAkkdJCNiQM7CXd4E1_YyQhsqJnBPGGg,6414 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=QeB9qvKXDIjLdPBDE5fMgpfGqMMCr-govnuoQnGuiF8,1783 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=PlcP4a6-R6c98XnOM-b6Lkb3rsvh9iG4ok8shaanrzs,6751 +pip/_internal/distributions/wheel.py,sha256=THBYfnv7VVt8mYhMYUtH13S1E7FDwtDyDfmUcl8ai0E,1317 +pip/_internal/exceptions.py,sha256=2_byISIv3kSnI_9T-Esfxrt0LnTRgcUHyxu0twsHjQY,26481 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=RdPO0JLAlmyBWPAWYHPyRoGjz3GNAeTngCNkbGey_mE,16265 +pip/_internal/index/package_finder.py,sha256=yRC4xsyudwKnNoU6IXvNoyqYo5ScT7lB6Wa-z2eh7cs,37666 +pip/_internal/index/sources.py,sha256=lPBLK5Xiy8Q6IQMio26Wl7ocfZOKkgGklIBNyUJ23fI,8632 +pip/_internal/locations/__init__.py,sha256=UaAxeZ_f93FyouuFf4p7SXYF-4WstXuEvd3LbmPCAno,14925 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=x6nyVLj7X11Y4khIdf-mFlxMl2FWadtVEgeb8upc_WI,6013 +pip/_internal/locations/_sysconfig.py,sha256=IGzds60qsFneRogC-oeBaY7bEh3lPt_v47kMJChQXsU,7724 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=P0cAJrH_mtmMZvlZ16ZXm_-izA4lpr5wy08laICuiaA,2644 +pip/_internal/metadata/base.py,sha256=ft0K5XNgI4ETqZnRv2-CtvgYiMOMAeGMAzxT-f6VLJA,25298 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=c6av8sP8BBjAZuFSJow1iWfygUXNM3xRTCn5nqw6B9M,2796 +pip/_internal/metadata/importlib/_dists.py,sha256=anh0mLI-FYRPUhAdipd0Va3YJJc6HelCKQ0bFhY10a0,8017 +pip/_internal/metadata/importlib/_envs.py,sha256=UUB980XSrDWrMpQ1_G45i0r8Hqlg_tg3IPQ63mEqbNc,7431 +pip/_internal/metadata/pkg_resources.py,sha256=U07ETAINSGeSRBfWUG93E4tZZbaW_f7PGzEqZN0hulc,10542 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753 +pip/_internal/models/direct_url.py,sha256=uBtY2HHd3TO9cKQJWh0ThvE5FRr-MWRYChRU4IG9HZE,6578 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=jHax9O-9zlSzEwjBCDkx0OXjKXwBDwOuPwn-PsR8dCs,21034 +pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575 +pip/_internal/models/search_scope.py,sha256=67NEnsYY84784S-MM7ekQuo9KXLH-7MzFntXjapvAo0,4531 +pip/_internal/models/selection_prefs.py,sha256=qaFfDs3ciqoXPg6xx45N1jPLqccLJw4N0s4P0PyHTQ8,2015 +pip/_internal/models/target_python.py,sha256=2XaH2rZ5ZF-K5wcJbEMGEl7SqrTToDDNkrtQ2v_v_-Q,4271 +pip/_internal/models/wheel.py,sha256=G7dND_s4ebPkEL7RJ1qCY0QhUUWIIK6AnjWgRATF5no,4539 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=D4gASjUrqoDFlSt6gQ767KAAjv6PUyJU0puDlhXNVRE,20809 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=FLOP29dPYECBiAi7eEjvAbNkyzaKNqbyjOT2m8HPW8U,6048 +pip/_internal/network/lazy_wheel.py,sha256=PBdoMoNQQIA84Fhgne38jWF52W4x_KtsHjxgv4dkRKA,7622 +pip/_internal/network/session.py,sha256=XmanBKjVwPFmh1iJ58q6TDh9xabH37gREuQJ_feuZGA,18741 +pip/_internal/network/utils.py,sha256=Inaxel-NxBu4PQWkjyErdnfewsFCcgHph7dzR1-FboY,4088 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=-ARW_TcjHCOX7D2NUOGntB4Fgc6b4aolsXkAK6BWL7w,4774 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=8i6i1QZX9m_lKPStEFsHKM0MT4a-CD408JOw99daLmo,2190 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=K-6kNhmj-1xDF45ny1yheMerF0ui4EoQCLzEoHh6-tc,3045 +pip/_internal/operations/check.py,sha256=L24vRL8VWbyywdoeAhM89WCd8zLTnjIbULlKelUgIec,5912 +pip/_internal/operations/freeze.py,sha256=V59yEyCSz_YhZuhH09-6aV_zvYBMrS_IxFFNqn2QzlA,9864 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=PoEsNEPGbIZ2yQphPsmYTKLOCMs4gv5OcCdzW124NcA,1283 +pip/_internal/operations/install/wheel.py,sha256=X5Iz9yUg5LlK5VNQ9g2ikc6dcRu8EPi_SUi5iuEDRgo,27615 +pip/_internal/operations/prepare.py,sha256=joWJwPkuqGscQgVNImLK71e9hRapwKvRCM8HclysmvU,28118 +pip/_internal/pyproject.py,sha256=rw4fwlptDp1hZgYoplwbAGwWA32sWQkp7ysf8Ju6iXc,7287 +pip/_internal/req/__init__.py,sha256=HxBFtZy_BbCclLgr26waMtpzYdO5T3vxePvpGAXSt5s,2653 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=v1qzCN1mIldwx-nCrPc8JO4lxkm3Fv8M5RWvt8LISjc,18430 +pip/_internal/req/req_file.py,sha256=gOOJTzL-mDRPcQhjwqjDrjn4V-3rK9TnEFnU3v8RA4Q,18752 +pip/_internal/req/req_install.py,sha256=yhT98NGDoAEk03jznTJnYCznzhiMEEA2ocgsUG_dcNU,35788 +pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858 +pip/_internal/req/req_uninstall.py,sha256=qzDIxJo-OETWqGais7tSMCDcWbATYABT-Tid3ityF0s,23853 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=3HZiJBRd1FTN6jQpI4qRO8-TbLYeIbUTS6PFvXnXs2w,24068 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=DCf669FsqyQY5uqXeePDHQY1e4QO-pBzWH8O0s9-K94,5023 +pip/_internal/resolution/resolvelib/candidates.py,sha256=5UZ1upNnmqsP-nmEZaDYxaBgCoejw_e2WVGmmAvBxXc,20001 +pip/_internal/resolution/resolvelib/factory.py,sha256=511CaUR41LqjALuFafLVfx15WRvMhxYTdjQCoSvp4gw,32661 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9hrTyQqFvl9I7Tji79F1AxHv39Qh1rkJ_7deSHSMfQc,6383 +pip/_internal/resolution/resolvelib/provider.py,sha256=bcsFnYvlmtB80cwVdW1fIwgol8ZNr1f1VHyRTkz47SM,9935 +pip/_internal/resolution/resolvelib/reporter.py,sha256=00JtoXEkTlw0-rl_sl54d71avwOsJHt9GGHcrj5Sza0,3168 +pip/_internal/resolution/resolvelib/requirements.py,sha256=7JG4Z72e5Yk4vU0S5ulGvbqTy4FMQGYhY5zQhX9zTtY,8065 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=pkjQixuWyQ1vrVxZAaYD6SSHgXuFUnHZybXEWTkh0S0,8145 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/retry.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ckkFveBiYQjRWjkNsajt_oWPS57tJvE8XxoC4OIYgCY,2399 +pip/_internal/utils/compatibility_tags.py,sha256=OWq5axHpW-MEEPztGdvgADrgJPAcV9a88Rxm4Z8VBs8,6272 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=k7Qg_UBAaaTdyq82YVARA6D7RmcGTXGv7fnfcgigj4Q,3707 +pip/_internal/utils/direct_url_helpers.py,sha256=r2MRtkVDACv9AGqYODBUC9CjwgtsUU1s68hmgfCJMtA,3196 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=ajvA-q4ocliW9kPp8Yquh-4vssXbu-UKbo5FV9V4X64,4950 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=vUkWq_1pJuzcYNcGKLlQmABoUiisK8noYY1yc8Wq4w4,3734 +pip/_internal/utils/hashes.py,sha256=XGGLL0AG8-RhWnyz87xF6MFZ--BKadHU35D47eApCKI,4972 +pip/_internal/utils/logging.py,sha256=7BFKB1uFjdxD5crM-GtwA5T2qjbQ2LPD-gJDuJeDNTg,11606 +pip/_internal/utils/misc.py,sha256=NRV0_2fFhzy1jhvInSBv4dqCmTwct8PV7Kp0m-BPRGM,23530 +pip/_internal/utils/packaging.py,sha256=iI3LH43lVNR4hWBOqF6lFsZq4aycb2j0UcHlmDmcqUg,2109 +pip/_internal/utils/retry.py,sha256=mhFbykXjhTnZfgzeuy-vl9c8nECnYn_CMtwNJX2tYzQ,1392 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=EsvqSRiSMHF98T8Txmu6NLU3U--MpTTQjtNgKP0P--M,8988 +pip/_internal/utils/temp_dir.py,sha256=5qOXe8M4JeY6vaFQM867d5zkp1bSwMZ-KT5jymmP0Zg,9310 +pip/_internal/utils/unpacking.py,sha256=eyDkSsk4nW8ZfiSjNzJduCznpHyaGHVv3ak_LMGsiEM,11951 +pip/_internal/utils/urls.py,sha256=qceSOZb5lbNDrHNsv7_S4L4Ytszja5NwPKUMnZHbYnM,1599 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=b442jkydFHjXzDy6cMR7MpzWBJ1Q82hR5F33cmcHV3g,4494 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=EKStcQaKpNu0NK4p5Q10Oc4xb3DUxFw024XrJy40bFQ,3528 +pip/_internal/vcs/git.py,sha256=3tpc9LQA_J4IVW5r5NvWaaSeDzcmJOrSFZN0J8vIKfU,18177 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=ddTugHBqHzV3ebKlU5QXHPN4gUqlyXbOx8q8NgXKvs8,11735 +pip/_internal/vcs/versioncontrol.py,sha256=cvf_-hnTAjQLXJ3d17FMNhQfcO1AcKWUF10tfrYyP-c,22440 +pip/_internal/wheel_builder.py,sha256=DL3A8LKeRj_ACp11WS5wSgASgPFqeyAeXJKdXfmaWXU,11799 +pip/_vendor/__init__.py,sha256=JYuAXvClhInxIrA2FTp5p-uuWVL7WV6-vEpTs46-Qh4,4873 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=GiYoagwPEiJ_xR_lbwWGaoCiPtF_rz4isjfjdDAgHU4,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=fByO_Pd_EOemjWbuocvBWdN85xT0q_TBm2lxS6vD4fk,6355 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=9AlmmTJc6cslb6k5z_6q0sGPHVrMj8zv-uWy-simmfE,5406 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=o-ejGJlBmpKK8QQLyTPJj0t7siU8XVHXuV8MCybCxQ8,18575 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=IYe4QmHERWsMvtxNrp920WeaIsaTTyqLB14DSheSbtY,4834 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=p_GYZrjUwPBUhpLlCZoGb0miKBKSqDAyZC5DvIuqbHQ,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=lO3rZukXdPyuk6BWUJFOKQliWaXH6HGh9l1GGrUgG0c,299427 +pip/_vendor/certifi/core.py,sha256=2SRT5rIcQChFDbe37BQa-kULxAgJ8qN6l1jfqTp4HIs,4486 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/distlib/__init__.py,sha256=dcwgYGYGQqAEawBXPDtIx80DO_3cOmFv8HTc8JMzknQ,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=2jRSjRI4o-vlXeTK2BCGIUhkc6e9ZGhSsacRM5oseTw,41467 +pip/_vendor/distlib/database.py,sha256=mHy_LxiXIsIVRb-T0-idBrVLw3Ffij5teHCpbjmJ9YU,51160 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=oBeAZpFuPQSY09MgNnLfQGGAXXvVO96BFpZyKMuK4tM,51026 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=X6sDvkFGcYS8gUW8hfsWuKEKAqhQZAJ7iXOMLxRYjYk,5164 +pip/_vendor/distlib/metadata.py,sha256=zil3sg2EUfLXVigljY2d_03IJt-JSs7nX-73fECMX2s,38724 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=BJliaDAZaVB7WAkwokgC3HXwLD2iWiHaVI50H7C6eG8,18608 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=vMPGvsS4j9hF6Y9k3Tyom1aaHLb0rFmZAEyzeAdel9w,66682 +pip/_vendor/distlib/version.py,sha256=s5VIs8wBn0fxzGxWM_aA2ZZyx525HcZbMvcTlTyZ3Rg,23727 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distlib/wheel.py,sha256=DFIVguEQHCdxnSdAO0dfFsgMcvVZitg7bCOuLwZ7A_s,43979 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=PS6m-XmdST7Wj7J7ulRMakPDt5EBJyYrT3CPtjh-7t4,3426 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=lyhpoe2vulEaB_65xhXmoKgO-xUqFDvcwxu5hpNNO4E,12663 +pip/_vendor/idna/idnadata.py,sha256=dqRwytzkjIHMBa2R1lYvHDwACenZPt8eGVu1Y8UBE-E,78320 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=Tkt0KnIeyIlnHddOaz9WSkkislNgokJAuE-p5GorMqo,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=1KuksWqLuccPXm2uyRVkhfiFLNIhM_H2m4azCcnOqEU,206503 +pip/_vendor/msgpack/__init__.py,sha256=gsMP7JTECZNUSjvOyIbdhNOkpB9Z8BcGwabVGY2UcdQ,1077 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629 +pip/_vendor/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175 +pip/_vendor/packaging/__init__.py,sha256=dtw2bNmWCQ9WnMoK3bk_elL1svSlikXtLpZhCFIB9SE,496 +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_elffile.py,sha256=_LcJW4YNKywYsl4169B2ukKRqwxjxst_8H0FRVQKlz8,3282 +pip/_vendor/packaging/_manylinux.py,sha256=Xo4V0PZz8sbuVCbTni0t1CR0AHeir_7ib4lTmV8scD4,9586 +pip/_vendor/packaging/_musllinux.py,sha256=p9ZqNYiOItGee8KcZFeHF_YcdhVwGHdK6r-8lgixvGQ,2694 +pip/_vendor/packaging/_parser.py,sha256=s_TvTvDNK0NrM2QB3VKThdWFM4Nc0P6JnkObkl3MjpM,10236 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/_tokenizer.py,sha256=J6v5H7Jzvb-g81xp_2QACKwO7LxHQA6ikryMU7zXwN8,5273 +pip/_vendor/packaging/markers.py,sha256=dWKSqn5Sp-jDmOG-W3GfLHKjwhf1IsznbT71VlBoB5M,10671 +pip/_vendor/packaging/metadata.py,sha256=KINuSkJ12u-SyoKNTy_pHNGAfMUtxNvZ53qA1zAKcKI,32349 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=gYyRSAdbrIyKDY66ugIDUQjRMvxkH2ALioTmX3tnL6o,2947 +pip/_vendor/packaging/specifiers.py,sha256=HfGgfNJRvrzC759gnnoojHyiWs_DYmcw5PEh5jHH-YE,39738 +pip/_vendor/packaging/tags.py,sha256=Fo6_cit95-7QfcMb16XtI7AUiSMgdwA_hCO_9lV2pz4,21388 +pip/_vendor/packaging/utils.py,sha256=NAdYUwnlAOpkat_RthavX8a07YuVxgGL_vwrx73GSDM,5287 +pip/_vendor/packaging/version.py,sha256=wE4sSVlF-d1H6HFC1vszEe35CwTig_fh4HHIFg95hFE,16210 +pip/_vendor/pkg_resources/__init__.py,sha256=jrhDRbOubP74QuPXxd7U7Po42PH2l-LZ2XfcO7llpZ4,124463 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=FTA6LGNm40GwNZt3gG3uLAacWvf2E_2HTmH0rAALGR8,22285 +pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xZXY9Jd46WOsxT2U6-5HsNtDZ-IQqxcEUrBLl3hYk4o,9016 +pip/_vendor/platformdirs/api.py,sha256=QBYdUac2eC521ek_y53uD1Dcq-lJX8IgSRVd4InC6uc,8996 +pip/_vendor/platformdirs/macos.py,sha256=wftsbsvq6nZ0WORXSiCrZNkRHz_WKuktl0a6mC7MFkI,5580 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=Cci9Wqt35dAMsg6HT9nRGHSBW5obb0pR3AE1JJnsCXg,10643 +pip/_vendor/platformdirs/version.py,sha256=r7F76tZRjgQKzrpx_I0_ZMQOMU-PS7eGnHD7zEK3KB0,411 +pip/_vendor/platformdirs/windows.py,sha256=IFpiohUBwxPtCzlyKwNtxyW4Jk8haa6W8o59mfrDXVo,10125 +pip/_vendor/pygments/__init__.py,sha256=7N1oiaWulw_nCsTY4EEixYLz15pWY5u4uPAFFi-ielU,2983 +pip/_vendor/pygments/__main__.py,sha256=isIhBxLg65nLlXukG4VkMuPfNdd7gFzTZ_R_z3Q8diY,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=LIVzmAunlk9sRJJp54O4KRy9GDIN4Wu13v9p9QzfGPM,23656 +pip/_vendor/pygments/console.py,sha256=yhP9UsLAVmWKVQf2446JJewkA7AiXeeTf4Ieg3Oi2fU,1718 +pip/_vendor/pygments/filter.py,sha256=_ADNPCskD8_GmodHi6_LoVgPU3Zh336aBCT5cOeTMs0,1910 +pip/_vendor/pygments/filters/__init__.py,sha256=RdedK2KWKXlKwR7cvkfr3NUj9YiZQgMgilRMFUg2jPA,40392 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=jDWBTndlBH2Z5IYZFVDnP0qn1CaTQjTWt7iAGtCnJEg,4390 +pip/_vendor/pygments/formatters/__init__.py,sha256=8No-NUs8rBTSSBJIv4hSEQt2M0cFB4hwAT0snVc2QGE,5385 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=3JQLI45tcrQ_kRUMjuab6C7Hb0XUsbVWqqbSn9cMjkI,3320 +pip/_vendor/pygments/formatters/groff.py,sha256=M39k0PaSSZRnxWjqBSVPkF0mu1-Vr7bm6RsFvs-CNN4,5106 +pip/_vendor/pygments/formatters/html.py,sha256=SE2jc3YCqbMS3rZW9EAmDlAUhdVxJ52gA4dileEvCGU,35669 +pip/_vendor/pygments/formatters/img.py,sha256=MwA4xWPLOwh6j7Yc6oHzjuqSPt0M1fh5r-5BTIIUfsU,23287 +pip/_vendor/pygments/formatters/irc.py,sha256=dp1Z0l_ObJ5NFh9MhqLGg5ptG5hgJqedT2Vkutt9v0M,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=XMmhOCqUKDBQtG5mGJNAFYxApqaC5puo5cMmPfK3944,19306 +pip/_vendor/pygments/formatters/other.py,sha256=56PMJOliin-rAUdnRM0i1wsV1GdUPd_dvQq0_UPfF9c,5034 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=y16U00aVYYEFpeCfGXlYBSMacG425CbfoG8oKbKegIg,2218 +pip/_vendor/pygments/formatters/rtf.py,sha256=ZT90dmcKyJboIB0mArhL7IhE467GXRN0G7QAUgG03To,11957 +pip/_vendor/pygments/formatters/svg.py,sha256=KKsiophPupHuxm0So-MsbQEWOT54IAiSF7hZPmxtKXE,7174 +pip/_vendor/pygments/formatters/terminal.py,sha256=AojNG4MlKq2L6IsC_VnXHu4AbHCBn9Otog6u45XvxeI,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=kGkNUVo3FpwjytIDS0if79EuUoroAprcWt3igrcIqT0,11753 +pip/_vendor/pygments/lexer.py,sha256=TYHDt___gNW4axTl2zvPZff-VQi8fPaIh5OKRcVSjUM,35349 +pip/_vendor/pygments/lexers/__init__.py,sha256=pIlxyQJuu_syh9lE080cq8ceVbEVcKp0osAFU5fawJU,12115 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=61-h3zr103m01OS5BUq_AfUiL9YI06Ves9ipQ7k4vr4,76097 +pip/_vendor/pygments/lexers/python.py,sha256=2J_YJrPTr_A6fJY_qKiKv0GpgPwHMrlMSeo59qN3fe4,53687 +pip/_vendor/pygments/modeline.py,sha256=gtRYZBS-CKOCDXHhGZqApboHBaZwGH8gznN3O6nuxj4,1005 +pip/_vendor/pygments/plugin.py,sha256=ioeJ3QeoJ-UQhZpY9JL7vbxsTVuwwM7BCu-Jb8nN0AU,1891 +pip/_vendor/pygments/regexopt.py,sha256=Hky4EB13rIXEHQUNkwmCrYqtIlnXDehNR3MztafZ43w,3072 +pip/_vendor/pygments/scanner.py,sha256=NDy3ofK_fHRFK4hIDvxpamG871aewqcsIb6sgTi7Fhk,3092 +pip/_vendor/pygments/sphinxext.py,sha256=iOptJBcqOGPwMEJ2p70PvwpZPIGdvdZ8dxvq6kzxDgA,7981 +pip/_vendor/pygments/style.py,sha256=rSCZWFpg1_DwFMXDU0nEVmAcBHpuQGf9RxvOPPQvKLQ,6420 +pip/_vendor/pygments/styles/__init__.py,sha256=qUk6_1z5KmT8EdJFZYgESmG6P_HJF_2vVrDD7HSCGYY,2042 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312 +pip/_vendor/pygments/token.py,sha256=qZwT7LSPy5YBY3JgDjut642CCy7JdQzAfmqD9NmT5j0,6226 +pip/_vendor/pygments/unistring.py,sha256=p5c1i-HhoIhWemy9CUsaN9o39oomYHNxXll0Xfw6tEA,63208 +pip/_vendor/pygments/util.py,sha256=2tj2nS1X9_OpcuSjf8dOET2bDVZhs8cEKd_uT6-Fgg8,10031 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=FVfglgZmNQnmYPXpOohDU58F5EUb_-VnSTaAesS187g,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=J7VeVxKBvawbtlX2DERVo05J9BXTcWYLMHNd1Baa-bk,27607 +pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449 +pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=Mo9f9xZpefod8Zm-n9_StJcVTmwSukXR2p3IQyyVXvU,1485 +pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590 +pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272 +pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=x4K4CmH-lC0l2Kb-iPfMN4dRXxHEcbOaEWBL_i09AwI,35483 +pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057 +pip/_vendor/requests/sessions.py,sha256=ykTI8UWGSltOfH07HKollH7kTBGw4WhiBVaQGmckTw4,30495 +pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=L79vnFbzJ3SFLKtJwpoWe41Tozi3RlZv94pY1TFIyow,33631 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=eO7Cq8JnrgG8zVoeImiAs92q3hXNMIfp0w5lMsO7Q2Y,8477 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=Zt58apszI6hAAcXPpgdWKpu3c31UBWebOeR4mbyptvU,5471 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=sCUkisXkQfoq-IQPyBELfJ8l7LihZJX3HbH8K7Cie-M,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263 +pip/_vendor/rich/box.py,sha256=nr5fYIUghB_iUCEq6y0Z3LlCT8gFPDrzN9u2kn7tJl4,10831 +pip/_vendor/rich/cells.py,sha256=aMmGK4BjXhgE6_JF1ZEGmW3O7mKkE8g84vUnj4Et4To,4780 +pip/_vendor/rich/color.py,sha256=bCRATVdRe5IClJ6Hl62de2PKQ_U4i2MZ4ugjUEg7Tao,18223 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=deFZIubq2M9A2MCsKFAsFQlWDvcOMsGuUA07QkOaHIw,99173 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=6ZAjUcNhBRajBCo9umFUclyi2xL0-55JL7S0vYGUJu4,9585 +pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004 +pip/_vendor/rich/live.py,sha256=vUcnJV2LMSK3sQNaILbm0-_B8BpAeiHfcQMAMLfpRe0,14271 +pip/_vendor/rich/live_render.py,sha256=zJtB471jGziBtEwxc54x12wEQtH4BuQr1SA8v9kU82w,3666 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=2Fd1V7e1kHxlPFIusoHY5T7-Cs0RpkrihgVG9ZVqJ4g,10705 +pip/_vendor/rich/pretty.py,sha256=5oIHP_CGWnHEnD0zMdW5qfGC5kHqIKn7zH_eC4crULE,35848 +pip/_vendor/rich/progress.py,sha256=P02xi7T2Ua3qq17o83bkshe4c0v_45cg8VyTj6US6Vg,59715 +pip/_vendor/rich/progress_bar.py,sha256=L4jw8E6Qb_x-jhOrLVhkuMaPmiAhFIl8jHQbWFrKuR8,8164 +pip/_vendor/rich/prompt.py,sha256=wdOn2X8XTJKnLnlw6PoMY7xG4iUPp3ezt4O5gqvpV-E,11304 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=hU1ueeXqI6YeFa08K9DAjlF2QLxcJY9pwZx7RsXavlk,24246 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=TnZDuOD4DeHFbkaVEAji1gf8qgAlMU9Boe_GksMGCkk,35475 +pip/_vendor/rich/table.py,sha256=nGEvAZHF4dy1vT9h9Gj9O5qhSQO3ODAxJv0RY1vnIB8,39680 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=5rQ3zvNrg5UZKNLecbh7fiw9v3HeFulNVtRY_CBDjjE,47312 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=CUpxYLjQWIb6vQQ6O72X0hvDV6caryGqU6UweHgOyCY,29601 +pip/_vendor/rich/tree.py,sha256=meAOUU6sYnoBEOX2ILrPLY9k5bWrWNQKkaiEFvHinXM,9167 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/__init__.py,sha256=WIDeyzWm7EVX44g354M25vpRXbeY1lsPH6EmUJUcq4o,1264 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=GeXRNTlxPZ3kif4kNoh6JY0oE4QRzTGcgXr6l_X_Gk0,10555 +pip/_vendor/truststore/_macos.py,sha256=nZlLkOmszUE0g6ryRwBVGY5COzPyudcsiJtDWarM5LQ,20503 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=rAHyKYD8M7t-bXfG8VgOVa3TpfhVhbt4rZQlO45YuP8,17993 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/typing_extensions.py,sha256=78hFl0HpDY-ylHUVCnWdU5nTHxUP2-S-3wEZk6CQmLk,134499 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=t9wGB6ooOTXXgiY66K1m6BZS1CJyXHAU8EoWDTe6Shk,64 +pip/_vendor/urllib3/connection.py,sha256=ttIA909BrbTUzwkqEe_TzZVh4JOOj7g61Ysei2mrwGg,20314 +pip/_vendor/urllib3/connectionpool.py,sha256=e2eiAwNbFNCKxj4bwDKNK-w7HIdSz3OmMxU_TIt-evQ,40408 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050 +pip/_vendor/urllib3/util/ssl_.py,sha256=QDuuTxPSCj1rYtZ4xpD7Ux-r20TD50aHyqKyhQ7Bq4A,17460 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=43152uDtpsunEE29vmLqqKZUosdrbvzIFkzscLB55Cg,332 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/REQUESTED b/lib/python3.12/site-packages/pip-24.3.1.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/WHEEL b/lib/python3.12/site-packages/pip-24.3.1.dist-info/WHEEL new file mode 100644 index 0000000..da25d7b --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (75.2.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/entry_points.txt b/lib/python3.12/site-packages/pip-24.3.1.dist-info/entry_points.txt new file mode 100644 index 0000000..25fcf7e --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main diff --git a/lib/python3.12/site-packages/pip-24.3.1.dist-info/top_level.txt b/lib/python3.12/site-packages/pip-24.3.1.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/lib/python3.12/site-packages/pip-24.3.1.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/lib/python3.12/site-packages/pip/__init__.py b/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 0000000..efefccf --- /dev/null +++ b/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.3.1" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/lib/python3.12/site-packages/pip/__main__.py b/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 0000000..5991326 --- /dev/null +++ b/lib/python3.12/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/lib/python3.12/site-packages/pip/__pip-runner__.py b/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 0000000..c633787 --- /dev/null +++ b/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from pyproject.toml +PYTHON_REQUIRES = (3, 8) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9dcfab2698821f3b1107d43ec04e728d4da2452 GIT binary patch literal 679 zcmX|9L2DE-6i#MlXV+b;SV5=&q99rif znO%cq7cs%4+rQC zl!RNmkEg;CI8+iL9XHU0+MJWqAgMimv(41hHTw1rpc0m_24_q`{vCz@B8-ce9C6iAY$t6#m0RV z;HTU~5gUP{7YJY*2oPjJb(m2VQPjc_b({&ziVaZ|pwNns>k;aYKwWtZ&iv^;TB(RV z&IJ0xg$x8VMwGQn0M1>Zaf*jlcE~)r{s%J=DMh)e{KMzuNrfRMK$X5S#KLKcsK-vv zi|Ju2-Of}s1Y$O*HTU;jQP-mRMA`^^|j2Hd)6oa)@JzauZzXx?FXA zmt))Xnmpd1UhN6ts@=7D#xQKNwq`b{VekZDPRDFh*`>}bS&FlcOC3*E&aNA=RBtd(cWqi@ro~)Ox7b77 z_Pu7eb0vSdpu5bYiz7d-E`;>xbMm&&lh@l_^2nk$oEgzq{%`l4SOzLW=m1g&kRE7& z6C0(Vw7DEy3k#tiI@|th|IPEyQwv|zh412UC0N;54OYX+mz6;h@R{(!o;p29gEp~M z>=n1lz4H6QZgHo$Tiz*uDDBTL?Psp8-->Qlf=aj?dSCImLp8JcY)_s2ftL=kwtiDK T?%jL!;2SO>7fK6n?Y2{*SSV6B0rxi=Z^F61xE^P!&Q|8X%x1Aqj_Cs#c44oNQw6nw@os zgCnI;q*AF;b3jdcgG&WXEA`l8@4Yw}HDM(rs`k*_0zUNT)Hhx)iA39x_RYL~^M2=h z@26-q47ghFo|yc`2kNWvb1r0Kw5lzUG4AI1lph?S+5h*$%U#y!E~*3l|o9=}8yaRo8~+ynVwA(ROb9&0ck zE<`dB!u2Ekqb;6}w`ZaPTmmh$3|iQ;o7sn1z3%$hOQ(Ibj5}2B!}x!!9DGo0G#+;(LYIFYQc{ zis*IVf>e=M^a|`sDtq-(m+hW5+gP$L?KzoIYPoz4zmZT5RZ!^dy$32Kyc#IPoA@ zZSSiE`|j9VvBaH-#bJnP4P&@LMd4v8iW628cPQYwMNw{+)J6ixMY4I7u>!@W&>F!$ zgoX(>dJbocljHcYHYCfi<%_=%{Jyrj2>$)g`N>t_*SO1qsvC+j-*-VZIP9>Q&^gUN;!EZ0iWW8|HC0b2-Lu^S5x@I@s_2AFxj2 zKi==GieyJ5ggh4{BGuzSB0GLa99)dO@DtLz69g%+DJC|=#LD|C*Q#R2TKbWgd=hTk z3Jz@sM>m3_Pg*+G#Ldp`jn3`|tq+b?J9}y^y$^5yaK4tlS{H>-xGqW&{|-n#f4vn* z^eMdc6b}88==$o+y|cALJ+(w{72<#RgQV>_AlW$pMEW%PNput1HlS_g+D7NeTIcD< s@XoV9Y~|fYfx}f8s~#DvAq^bfg7~6u6XF{XUunPB^}YQw^fxm82a) int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae6f7e1d44c67dc7ed5145a0296ec6c2b76f477f GIT binary patch literal 779 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 bU-VwoGmfVO<7d3FmFdd0?E0KQO6UDQ)}7x? literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca8e578ce5edeb21acf20872e1200612368d2f56 GIT binary patch literal 12659 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 Z_EsL=4rHslUf}s>_}SJ^IaXo2`d@|dfBFCb literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc51d507a22a195186466cff3cf11217fb0146cf GIT binary patch literal 17624 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd22b986303c2ba96a3ad8686d1e6670798c73aa GIT binary patch literal 36837 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eeaef35ddedec2816f3fe0a4e3e54bd13a87b6c9 GIT binary patch literal 662 zcmX|9ziSjh6rS1LJI_mks8uX<6cG+|heSaml1i*J7D;tYnA>@GJGeiFd2{MY1Pcqn z#zHVQ){1|Mjkeo}SlLBR8!O+eF^_$3zxnmOZ@<}3D=R}raq9J@*$!vydl>wW-XU15 z6L`Zk)4X6MAM-LAN1W-tjv)dL@hYu{)CnZhME9Qe#=RyQ9s3aoMp2vGHR#*Hed|qK zsbZ^5l$&AOci`u)%Bb&A#DqdF&QhVCTt}hjQ_fk$_V^zAc({9;jp8Toc5;J)9_s+X zJp?VLwG(xrMOIf>7a%Zm#(ES!S6-B=5$H`(hzSS>Q*cmarkV`}h4JaI19yl*X>Iee?17q*o*?b0p)8fDQromi0B(u66G}Wu_RpZx(p^WyP-vcLWI_?HtG4j7H!XTQR$WBCg#{jf3s literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01db0cf14695f93b2ba877ac6df1e1156040769d GIT binary patch literal 5110 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2931cbc90b3bf510e937a9fe10a1c0942ccead78 GIT binary patch literal 10200 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�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 h Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = get_requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + "--disable-pip-version-check", + # The prefix specified two lines above, thus + # target from config file or env var should be ignored + "--target", + "", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-vv") + elif logger.getEffectiveLevel() <= VERBOSE: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/lib/python3.12/site-packages/pip/_internal/cache.py b/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..6b45126 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just reuse the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..397903f4a7cbb1a75c1f579fdda59163007bc688 GIT binary patch literal 270 zcmXw!F-`+95Jl}If+$iNPT&fZf{aMoh?b59(a>0qJ-Zn(Yg=olSZa8-?G@|1-s#|2dsbMA6mmx_&S7s}KK@XLB4EvlmXhh)&K1Zx2t~bu{+X)TnIm z*^nn+E5ocpr6R?fRQ63{yi-gb75R*9Wh|-|*<^I(>~QiplZQ*KU9ehzh+|LteTGeF z5E4^`P*a8!(UM_G8JN}(ySxd0Ilo&#qKvoaKN1uy=o82r2FnDxM9NyvV|N&@n&7sK Y_w7ZY^uSR%|F?4fw<_8p1I^D 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58bceb993338ad4876920b9bc39b4db50fbda0ca GIT binary patch literal 10186 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 CXZ{cX literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4017358ee0cf38cf0524ddc1677bc7b5cabcd9f3 GIT binary patch literal 30387 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 BgU$c| literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..755d3307090a7c49acf0c9972e7201cf48aab1f4 GIT binary patch literal 1766 zcmZ`(O>7%g5T3VxUZ-|9juToUik!xcvXRKPph$oairdl(5Ee?UN?njvi+7W5S+C98 zO%q2sL{%hQ32s1&I3pDT7fy%^^vuO>Qzcp|H5C`QS&dLC;K00H+fAbIq@6c2Z{EC_ zZ)Wz_bh;044SY5>C-DHkGoibL4zu$vGHYOgMO>&5om4oTBTVL8z9Q&CMbyQLq)P-i zuqBJPgzv<4F21cNIJgLwvZ4F+Fq6 zrYavEJr`@M{Ih5?%UQyzu-@^ZOO|LSY?+;)jXW!0E`pwHz#`H6 zE`chC*>lwjMr?IMbr#?BLW$bJJoUX#SDkhQ+w3G!AruXTv2!e0B zvtiOO%C71AhT*f9b1Q$puU)NHY|VF_SzDWP0?n`4Wyf?KKhRv~1FcpMu2#L5CeOU6 z`A%TJP{T4}>3pr`)HHlMu&HOdTG@59a*R?pkjYw|D)`9KbBDk;*-b!33qObC$qGD> z(>D_>`S^xByp=oE5H{o!4^E7I^gxXR3c5Wki8wl2a8LlCJ za8d3pxIrS&dq+uT+bcm&4O8gHf-m?r5={Z}-Ofgt!@~4T>-hK?@W}$s%N4vu;FHWE ze+3rE=mE!kJl<5sw{!Uj%{C__C$=&}o0-vjnbF_+hjw`w$hRdpHPJYKKQ*$O zK(Uz_{pYFbUw;yv-gu@kK)y^BB=}lo<_8&7KZylC@pA&jJ5sWs@OKm*wPAm! z7mXUNUUw{;miL0(o01ZG{=ahhQMnE;&o!K*gKL?rcP0@>mK0U~DY#+UW^LN-OT?XF zO^+jqryxe04x?ge5?Q>FIk) zp(z*W5L)B2Dcp+c5jMS^S+Q|?`wXK}wdP&MrwrqxdDD$gqRF9b{weEldW;d4He~}7 zg^DvC4|CaeUBkc@%HmPfLeo(T(Id>15%zEK&m(!V3V(6DsJ8n+8fo?PK} Or9pC*JO)N1KmP$dzmI1C literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..528b7df7815222af5537053183ce8521c1102b4b GIT binary patch literal 7116 zcmb6-TWlNGm3M|i4xged*`h=}Jn~CsERl{9#m>X=JFa6@PHVMAh%6>!&PW=0_~@OH z^#Fxx7sjp}q;QSx)-qba?qY#Da6bI$el^ZdKlVqowIw~Vu?lwckv}GK&>;QTJ?9RG zdYHjtuf+SBbIyI8_rFIXK?0@a*Zao*X9pqwg#)+vYMr%jp>u<%Bu!LKrHz(gb@s1R!oaof7+i7qyucuYXq~QbcpqRMmQTuM_6ApnzGS!lp~r* z!+`5InzP%|+t{~&(UNUVw{nCh8aKJ$-Pn4o?YPT1qjZ}Z)B~%S z)W{X0Hfhnjo*G=c8daOsZJJjNs{EKwZ2`y*2H6Ub+qH<+epjf$#%KA&4rL!K5j>gC zS&E)BrA$7XRdTA7F%;9(Olf*T&rC>JWmeL2mPVC~B~9zrgrwwPLe*xZlw?h4Qckm` z^Yl_O82m}j&@X9{Zkdv)n}8x^^XinL^-EOyxm+XP4@kOM`y!c^ZWz)OE@vonuu`^= zr|dpCu{Av@&Z-6S}o=ZE3%j98XFHEGkW>^3uRSe#%l6OH-vh4Gs)U z6|6iC6OuzEr@@zL1-2+zdKPxfR@HOk(mQ(Lf@Yd}J_pBCr7@~&In_)Czr=eRNpQCB zr;0J9nF)^_8GZMi)AGq5oIZK(?8q5g7>3nt|M`Li$ch1=Vn(BuKBi;$q;t2>ZLM|j z+O-+$hx*Lf983oAS97l@WWNRIz-YJsF?e#&u z`ROgE9QUrN4s@Bqbkn|rY#wyEbbnq-=WWKI=OMkEv>9auFtj_k9((A-c% z0`Bq!L$Sv4Gz<8+aE+R#CYo%IIcwVC+Qwu(H4XDglX8JvrJr0 zQ<|r?IIYke?7d;4C0cfbQ>ImF|6JC&X3QJol!H4~HfcLb4KST6p{0XB{LQ`DQR^s3Mr7Pykg)n9ceDGmJQD zpx)yF(ys=uc+-(ZGQ*{tE|5gTZmp^0n&t$RspsZS2Z0-;Q$~te(8lPWq^c$B_~B9 zqtvo8OA_1&SOzZ$708TV26odeS%zM1*#vJ3re=)U0a<2dR+ddfmlkLbG;|MCb6pLN zn{;U%0tgfQ8S*XgpFeU{Ecx44{P9Y1a8dYWWDPzLTg)>fWM=9+gIUQf2A@RRel>kNc<1y= zbnr<_$5P+z*Y63BT80)+K906jn&ai>-cob#?cFQQ`xxl5G+<{LddnQZi+oXZey z3&K(-`8_M}ZACsumU&Nb4CL%P*SxqWy-Jyz+naDu1YoeN`l?k3rpA$4Hdns zxb3FR(x2ezK7e9x>d0U120!i~UR10J^6uoxj>XGG;ROyn+ zUCB~c@{UzbohYSFd~)bf>fEEQ;l)!Q{;=vN+uLs(xqf81wSPI>4>j10Yx7s_HH>+0(Mx+RH~t}$ zNMTEv3~iZ!VbSY8p~)Ud^?(nEJhY`;=4i-@x|6P+ocHB;mCXBiQWRi)>Hk*GoW;rlNMgH%>pUj0|7cE;rVF-PwlXa%+ulLwuKJ`b`54iqDo3CPlGPBrBt}Vg>N}-Tr#}Jy_`eu~HO4@ckpqIi|>) zb74apS2D8$7+;xl;)G=t1}+bRqV{H#40w;P0gxSGKAfh?6M68!=^)O9HaK%=iV@TH zVr{;ah}qrDg>_xTq#M}QbPLm&c7QD*t2(v$ylD#s#hS3a=Yewc=-@_%46V1 zPEpO2wH$;3n#z1fTbRu2IkrFgCTxff;jRQchwXFRVLJq#DJU-)Cn*{Q+Y5GWX4V$5 zK~)f7Cj-KlYxb=$W!Zu<1se$fOcsnE_~Xr&v{?!rxn>n6$i z#NUg5i2OcsM_-W+FZ&NKM-Q)tI&R0xy{Ag>A3F6Ue)v)RwX5e=<2{S#K5yxIeE9gU zcirf_-gl$_djHbwoy1DZ%b!@4o%@z|4qiWVU;I<_kI_oJw;WHE;;Blkvm856iXFIf z=27hBO8f3-Azy27QLMI*aO<@+Hh+*)blXZQ|a7Q?o5_C zlQ2Kb=C2+7;ONcqO5)&h;*Fc*pY;7X^&kZw&pRKFd~js7edn#n%}Av~y48KN`zxuR-)?QO0ugRW<}pXOC(}YTjr@GYnZyaI_D;o9G=LbNtd?=u)gujLd(8>f0;i zE1viIzwz_lm%xtswpIC%ch~K)DuL!+`~5xl%|9keFP{1u$7>!Jpc?mkyYIYGCD7b6 z*08C@$*z5s-o0N14tis&+hSEOv~YJV@ul6@yQ?CO{O$;0Ad(8U{WSzV$C+WfL#}g} z89lX4z6}~eW+rz*XM>pp2NO&ZUj&2U8W&7^Bs`9?fv~y_Gy?bm#ux^x7&pkEUow|K zcl2)76%58rIype}?_f3XN7%-g_vmHFZY1mYiZQwI67+q*#)~#lu`iIP!jC=|0*igW zI`khxCp&fq=Ih0^^=lGLZ3)_VO@KU(03jHJW@+!Nknq{t&Z1X*hUTXVwWwm+Q!1^8_Q^vcQvP5uhfjup<$SLO`pL;J!ACq!rXx1%h4u-^ zKO5TfOU=FToaiRM5B8s70rR&|Es$qTq&bG+MG|{qjR-NYbzcWb zOUIMuzB}T**h=%OfAzrdM(ld*Z~q-_hqP7T=#y~EwUMhM%bgci!lO7CzB;_zk-Wcs zariIcHzA1?IQpHLg8hB;!to*Upfz$l;dvnWv7hiB9~2)XJ=h;)_0Z6X0nexX9MlOP z9mTu*306PF>StInbBB@RN5nA4kzqA>)7x+CFQxfB>jUn4NVjE@rlzjAjpV8ZeWS zc}#+Tmqg|2CLSqjvaR+6fohu44Pq(k9VaV_I)|RX3S$R50Kw=m%hNj7!Wa#6mCR%_ zOTsRIUc$NkSmDjs{x=+#;!R3nhziuiJF0p(j{A!Dal%?N;i8|Bz-J`*lyv?lIaneG zzaTrmAcIfI@y|WYPlcW@gu|{A`=V5d64d$_LK?^Ovj_upd8C)OH{o`rk3qf6p)@5|p1=&{}YFF{wQ!T7fK6rTO{`X_c`f)fk@CpZxXC2k551*H|Vi7M16P&l+~D_M(oFl+Wtvl|je z4&=Zgk&wcnQjJPQk5u8%TYIVsqEe+^5)mnAAu3Yofmu>LcEuaSymq%tb2Gcw~#R%U(4$(%2FnfIk2 z3m`dNG$L}ukYtIW`*=NS#N?Qd1wC#g7KR@~Pa>6B)V5MmL~##L+++&t3b6;g3LkzjY6nB~nkphqJbZw~(Jw^ z-L0Cc7D8Qs)JUBV;>;lbEdDZo?Ke0JWO!B~Huj9V?1@^%vC-1qAI*7as`mulubGt`re%}sb#fCIu$gnP z>rz&?$_ng=_4jLzrGp__chVN_@HnUD_|E^jEBSr7^B#tzySjJ1bq^x7NxF$C<}caz*M~k~(i@Zgt)0y3H<22R0;>>S}!c!>(UC7Y9!) zCqJ3__(?oHKQuSgkRHUl7y0ggHo8!v{RQH{suZ7(&BdBV8i&6-_+4*f&$3i_gTI-+ zmA#Q&mhzO9=A`Rw^YOX(tF;Iic(sv63E%n)#DYgprR02KF0r_M=qF`GI<_Pod$lG| z#Y<-pB67Da`C%U2&E*b;U)J{*Ez=}9tSz*XVdp+9Y{oIQ}?8yW*7K?9EB-uBF-1^SmPLmdCoEnzb+ys z`3S);`Uu4yq0}F!`!9546&+qhgR7{26&-jI&CYhLM6*lLY~#HL(fo|~e5jl0nVoF# WjWai*OR1hU1oPYF4JybHu>UXFR~?Z6 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57a774396fc7495fb3fbc2b5e53aa38b61695b2c GIT binary patch literal 4898 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 IL}QQt1(yC~2><{9 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..559a33a6e5b4b488f816e5f065b21809c3c2521c GIT binary patch literal 15032 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c7b0d446b914f2db5e607c33f02e78fe62485ed GIT binary patch literal 3836 zcmahMOKcm*b(YKJF3A-sk@`@QC9OY=&B7)ttFD~Du^~&2lFG4DNdcNI0%FA-N-Hmy z#OyM%R0LL4 zO0tq>1ipFm=DoKwZ{AOTXlMu^7?BTOnEW+hf29j|1Z&84GlS4Aq#~8kkzAb_nSr%O z_hea_&3a{TmXo=xPxfVbna>Kcz)(I`_h$ogARCl}Sy2|V4RS*^B!{wLIh<{j8?#Mv zQ#K+;vQate@O$;V9D;GEu?ZIjy=gjvktSUVhMlEJx`fVZg}MbyZFDI*QW-7w+p1jUo!jjwr6~5!wsL@Jub26U8tyn2hDI%Nb|v;HYBZi&|EL%fK=`iLI1osMxR+dJ|iq z8`WD*C?sXg=CSQH;mo#=V5>lkG`Np5JOBmw9fsfbQ=pC@1{|vh&vfM&LMH!XaH)F^ zD?-RaLO(XYX<`09+1tJ(7JqqweK=gDyM zUgJ#B^DW zGbM8>SI|`{XXvxi1eOZmqLOAv))bahoKXt8C1rCePS~twWaf_jEMN2ggo@2H(VSR% z`{$NoUfE5Vx4pV%;K}Ogzdi?U%bC=vZ5CUK9U(XaK{S=hW0Ep)I%lX)sQ1{6^n`j1 zWw&ycq65M!>N|>&#_^ENWgs#wLSLGMD45)ptcD5{#G$0N;j z=_}+_h$frWu@M&teNNI!0ewP3fBI%Q)Uy^ESs1qcO^;i;7B6f@+TI=66q|2eUb?(I zyfSvb<(|BF`7`nKR~%~Xe#W9eA};??_N4Kc$|HB*bn%_YS)P4^izavOBr3SeKcDoCTV>>3TkNPqLF4O^)iMxtO$n!xy;e zdQRIf3t7bX5ks@d`$Jxccqi8ROW@B1LZDbU-c6|Iq-&Yk(Lv*mX1nc00JqSNO{RBq zIjjgx*K>T00F%lTp@L*Qb6{`RKFoLN`9C(G*(&b2G#7cJ=JnF|AU|aQ2I5|uHD^uR zXIg5mVA&;)9Os%QJ-Z~46EN8!hpQe$bMX{WX6j2CQ;9QrF0JV1 z*~DJf0T4Hn02a`e5WE>!3Tz0mRUuYxPuxHH;8eMHV6}Z7ddI@N0g_27h8m82B-9D13-?$rb*3L%RkjS zHto9;IRiZOXTA%dnkNDtuJaSNf?!%1bf)`5+jLbCP`GhncvEbA_qEc%!iBA9_p-GX zJ+g4|3vZ;|Ph8%~15c;8#Hu>G-!v!}9t-|GDKDBS|{oEO$LSMayQvo5{;S1sC&Y3P#$><#f~L z^9r$`3_10}aR%EjPP!8p)oXyj5D1J?p+NvpZ9+(BEdB5i-?kNw zZG@%Ou(W=#@4?jX$JfK7WnpyF-&A_@k-uZt?#Tzu>*2Fy;p~^;=wgucgPwQ~q0vQ7 z0 xuFC@s@--=*u7u~M{FItNCwl+EiXhq4Tyf?DM{bXO{JMjG&UHQIV9&Y#{{X?@nCSoj literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..712648a27ccf0809bc260ac902c4f19da9e7b437 GIT binary patch literal 12233 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 M(eW23%?@Ps4?qcJ761SM literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py b/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 0000000..f3f70ac --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,176 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + # Don't complete if autocompletion environment variables + # are not present + if not os.environ.get("COMP_WORDS") or not os.environ.get("COMP_CWORD"): + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ```` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..bc1ab65 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,231 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import List, Optional, Tuple + +from pip._vendor.rich import reconfigure +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def _run_wrapper(self, level_number: int, options: Values, args: List[str]) -> int: + def _inner_run() -> int: + try: + return self.run(options, args) + finally: + self.handle_pip_version_check(options) + + if options.debug_mode: + rich_traceback.install(show_locals=True) + return _inner_run() + + try: + status = _inner_run() + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + reconfigure(no_color=options.no_color) + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + return self._run_wrapper(level_number, options, args) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..0b7cff7 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1075 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off", "raw"], + default="on", + help="Specify whether the progress bar should be used [on, off, raw] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user [warn, ignore] (default: warn)", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "truststore", # always on since 24.2 + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + "legacy-certs", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..139995a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/index_command.py b/lib/python3.12/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 0000000..db105d0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/index_command.py @@ -0,0 +1,170 @@ +""" +Contains command classes which may interact with an index / the network. + +Unlike its sister module, req_command, this module still uses lazy imports +so commands which don't always hit the network (e.g. list w/o --outdated or +--uptodate) don't need waste time importing PipSession and friends. +""" + +import logging +import os +import sys +from optparse import Values +from typing import TYPE_CHECKING, List, Optional + +from pip._vendor import certifi + +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._internal.network.session import PipSession + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + logger.debug("Disabling truststore because Python version isn't 3.10+") + return None + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError: + logger.warning("Disabling truststore because platform isn't supported") + return None + + ctx = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + ctx.load_verify_locations(certifi.where()) + return ctx + + +class SessionCommandMixin(CommandContextMixIn): + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> "PipSession": + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> "PipSession": + from pip._internal.network.session import PipSession + + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "legacy-certs" not in options.deprecated_features_enabled: + ssl_context = _create_truststore_ssl_context() + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + session.trust_env = False + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +def _pip_self_version_check(session: "PipSession", options: Values) -> None: + from pip._internal.self_outdated_check import pip_self_version_check as check + + check(session, options) + + +class IndexGroupCommand(Command, SessionCommandMixin): + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + try: + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + ) + with session: + _pip_self_version_check(session, options) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/main.py b/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..563ac79 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,80 @@ +"""Primary application entrypoint. +""" + +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..5ade356 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..bc4aca0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, NoReturn, Optional, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: Optional[str]) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: Optional[str]) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> NoReturn: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..1236180 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,94 @@ +import functools +import sys +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.cli.spinners import RateLimiter +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: Optional[int], +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=5) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def _raw_progress_bar( + iterable: Iterable[bytes], + *, + size: Optional[int], +) -> Generator[bytes, None, None]: + def write_progress(current: int, total: int) -> None: + sys.stdout.write("Progress %d of %d\n" % (current, total)) + sys.stdout.flush() + + current = 0 + total = size or 0 + rate_limiter = RateLimiter(0.25) + + write_progress(current, total) + for chunk in iterable: + current += len(chunk) + if rate_limiter.ready() or current == total: + write_progress(current, total) + rate_limiter.reset() + yield chunk + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "raw": + return functools.partial(_raw_progress_bar, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..92900f9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,329 @@ +"""Contains the RequirementCommand base class. + +This class is in a separate module so the commands that do not always +need PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.index_command import SessionCommandMixin as SessionCommandMixin +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) + +logger = logging.getLogger(__name__) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=( + parsed_req.options.get("config_settings") + if parsed_req.options + else None + ), + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..cf2b976 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..858a410 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c7fa4db6bfcc416407894da15b4293feed57b83 GIT binary patch literal 3994 zcmaJ^&2tmU74I2Iqp@X4_=8XLF@P}$u*Bz*01Gi@SqzI|mn@rTcS|)^x1@p5jJ9Wl zkyftKA&0n9l`NH1;X@9jDu+#x1IPRix!~fklc`MwDz%5)RPmm2%6mN;Gv1&~Su@?g z-|Jt$e*OBxe@&-{2|Q!Jo30+s67o;1gio?xSXX62o{*0TB}GCdDw|SKf^W=}>#<@? zLM(2^>xp8bt`wDevX~TD!c^-+#UY8vgvF>rlg~g0pW?7VD2TFQIz)$Q>RBwne=E@u zfu?DOW+UhpfsWEKIvznM1iF=OquV3s4uS5ZyXa&D-7U~PbT8c(K{bKyrw8c42s$Ou zLv)%Rj-W>bnxjYQu?Tuxpffa23la2$Ku^+B^mGJ0Bha(-9eOT;{z#xdrswH}2zpVV z@6t>3as>T}KxgR{Iu}8&3iLgCjlLg2uM2dZ-k>+%pv4qZ*a#c0$U7nAEKNVS2w!@O zjnD;_ptspjMWJ_o5ie#0cAF*H2wGO+^g}?iEjjm5`_S+mz5GD0GOcV|u5MU{Rn>IU z)EY(upn6@ms5AU8oYRGzhFj+3<$7ZdTAHQmpU0=Q3a1GniO)yH%1?~J) zzc6oA?6y|7Y13q-hVIsmYh_b+oD!-X*PJGF!&`pRupAfqZtsQ8^CiP_83)CD=tjQJ z`p?bo$NFcv58tJGeyOk1bzeFMZo13!DUZyL&tg+N4as0on?yu;AE&ASZ? zf6K?AaVR;yfkZTw3TLd%+It2F2DG2PCd@*qlee30qv>jWcNpDJ1W4oTi>AR@omsA< zRcv0@-Mk2FgO%O?7g*#)V6hPPwGRS|b8Cz`cPO|6D{pZfl$@HqG*AgiKXn)0q0&*TfKo6yON#Q7C`z9^*!(^%hsPn*I=1OC1u~STvbNS%X=WS!IJk;wi9>Dn_+EHK;Q|H#s!6 zEq`JzS`9m&zNK5ZBu%@ln;NV@t!mnfPz<#DjiE1x>AYMUm_PyTr|$~0P<>}m)$X+J z%wvjdxQxc2Y(R(}4OAAaKQfO- zq4McadDA36)D2U|uvfTU4_$|8f`%CWgy?l(KZ5l~K0(*Qex|N84U-1$!kR(Zmfhr= zmJ;M=O?PSo^AkxwbsgTJ>Om;LGG&l1PK`O5UDWmXi$YS0|Nwp3=R;G5FmJmy4!^=Hi~)+K}q)=cS;mbmN*^~zVcv6=T*m7ICGoa zDoc1G^&bVkDfq2Fg4Yw`_F+Og1kbzA;6}16FUOYSZvSpV$o=?+(MF*oKkKV5C*1J9 zL^_F1EWGP1D>CUQRPK;YoJzl!JJKJeUrWo$PVz3v#oE_~HF)MY(_z|mE7&`%GQ+vY z4YWV<;Ox_u47VoWD&&Ht;VAP$ASd(V;FO>2pNoGYxi~+D$dFNQ*xWUZML!)BOTnS) zC#%fWU6-J4(STK(kP^tNx(Q)}s|r=Pw|pX^@yc4Bh% z+S3~^CkowLf6Gk1$jm;S_X5a9olcqs}p`{tqvKrjcLNAqHWZ;0ooKq`|0T zj?4XQsia$$4NC##p-apqF&2IjOXyKBYV~4}{+Bpr8LoThLx^`TCP~u2Wm$@^t3(?8 zJ2~(VGQCEozayt!XLhXad2!^%%goJgsyB8|%E?|lz4E1}9`V#2o;tanjBinTF(i5; zB$0ib^3e43aOh8>0)OCp@Mpi!c z)M-!M=Bcy5Wt85$B*>3|6rSWgb+4zM01`a88<3xcWZ>q(fc!ilE1P8tfowG(8=J{@ z1M-W2Y;Pv>0r_P>!oNk)LCydPgM3dG-Yx(+`uLcq!XE_o9FXHm?{+}`49LhhaVRj( zp9kdPX4(CLY*~=q^e^47=2j^dF&6%-(yjv+$;? literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c203dbcbb2b3e9de83a28d0e4af3c92a2b8d68f GIT binary patch literal 9693 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad545e46ddd1e1f564c3b5aa4cc90841e6a52852 GIT binary patch literal 2584 zcma(TOK%%Rc-H&!J5CdvSCcNZX=^BUTM(tZ1PXl|N|72K(n7V`?2esH_SM;OD@Tsh zLk~W1NCi@REH_Xtg%kgQ3sEZ7EUrKT4%||?0f`ge?0TJmdSGPDeBU?UYrog{`$8d$ zU>*44Xrq@#=vRg$OB?|GZvnW2Ok{F4QrVfZIVYv2I0o}J?+B_8!GbM1k}5^8Xv+N@&oEbi>u`SV94bP7fK)Lb`u8x374#Z!YMC!j-$I~B^8S2 zu3UNlN+>UWxUg_;aS<*j8klM(uIo*kYS_JQ5zlq7ODlXhYAj=8Rr7UYRc~M|z%(H> z-Jt3F9--I_pEU^9Dc;Yf)rse5mK#vrwy_CT3e3t-1_=2Z!~!9&N&O}@;tz>;X@K-k z18@goqH-ouQzobKW=a)IUKLFNOQwiroSp(6Q^J|LWXiV$HQP#8GGTs!`91jPwKE@K zV%1y9&>dy)L4mTYU&o5!IlfM%cNh1g)f@zbu#vmP$`>fCy-v1L)cL&iy0ukDbt`Yh)h0r>`F3_P=n@`dl-HGcG zO^Omxc_4;pCV>)7E4hTScP4kVkkAs!CfH>wv9&I@#dp!w6W~p{&9|d~t`uXQ{rh^R zEylONJqFxaI-1;@Tsz&)w6kW4rDIcw=^Xm(83BD(6;N9OncDxbAPp^)Awm$D_1t=X zy|B*`cnFpX?OZ#*IVcpcGYNK1fgKs_90sZ4J_(^+Tse?ePSTB zr9fy4L8>hiiH;}oi)fz(F^MIIDEJ+(MO2Y4uRT8>DDWfrTGJw!!6%d(%a*aMSb^et zbgw9@ge7L}#aLij9}2NvjO3P@RB3t5xM(A`>e{iGeV}aEUyA1{bQ!3=t<$g(SBEo7b6l|CpgcUG>A&J6+(5GatnKhGLTi^|A29jqi z@^wrCKnW|iFirFunyWjQunZAax|NYo2(VozB}QR|6Xy1hm4dH>0=J<-r!57c>{tOq z!<^x{b=xv%gzTR>dEi{Z28|7|u!q@U`?kU~z|mEhW6;3AkcUi!a?<}JAQgA`aR2+` z+Op^1T3}msTx(dg7Wmk(bQY7EZ7tRO7G3t-m#U{u*8&L4i;1q9Z}~Nd62!{Y?HUXf zHgSVmG(xL>3rsiNwbK5{R0Ya3xDZUibhwFn^XIqcFK(ru>*O}B_70uAKeK)4&8_so zj=V9`D^K_Gv%S)>?Na4o>HJpd{C4SLuQdDlNMGa `iWIMTj5zQXyT-cSMlx zkE7Y+Pf<}l``w8L)eBpt=Qq-KU$_@UnidjG6Wwu8d}y~IN4jbkIi~D*zl%xaqBnN1r5oY%B#P2FbY2AHgAre^>!W;I-oU~SNOPyp`r zP;3V9juAF-2^&%&50xD9kTfz6=+}rGWmiYo#%d$lVAi4FBy6|PkHR~@OwauwOzfn% z!qm-kJ5oiQx%_#ZjmJj6E zojItX>ad2YhHX`s^Z;vvVj}E02%o|P&n#^Qz-HoLujj(@ztuUI>ZVThxU2u8#`7_O zM-V!?8dYpG3gRKaCPR4i-@2grZQvZdoR)3TmPYl)U>r<7jTu_ni04BF{tH}!a9~1? zG2If24Ioj-Ye3mcLzsRe&h%U4b+}-!XmAm>9iHR3pHT4;nt6mKen+Q&MrR+P*ZxWg vT7&-6<(6dA5o-4QT~hnI+aw5n|jH}E?ig+4coHZI<;k0QksUcuw8M7)GA9Z zGrN>6N(6i`P#Xwf1PEXQ?IG=@Hf*2{P@wK9hZMc^VnHpWZXBRM(?ijVTDyn#)c2OV zOH!iKCJSQs&CGk>ym@~!!{5i_Q4XHu2SdJN5bV!Sqx^vw?hjTF{qI4-yrCW*p zl+VTe+;=!7ev?yrX!v2EF>|hG*(db=4I2}J&kFrO)~eJ1ioc{9CVazVdZ{Fr6(pzM z92*;-o(3{fq^4A1da-ssI!G#Ng{&A0RMYAtua_zsHC4S#3{z(2ijik(#jL-SiFsQa45jR*^wyQB^V8XZp_LUJZ8T?J zovYUe$kjGscQ)s1bC02PcBn~zvCQPfN$KpHGgl-OxHLX9o*f}WBjniWj6#<(<*KF; zfi$(R*F6QC)lnkqM4<(_s+mN*K(?)%te}Y-Qu5zhO*DuAAV|bXwEpaC;>q;fpa(A@ zP)Z1yCxoYZ#YB^8l=1viFftEcSLIw$rA{Qwz zy+jHX*<3hE@-nysW$f5gR7Ufrw%j6T8;uMMof+^tsb)~Gfyk&&#?Y%QPcvzZbxe(; zgwY~o3uR6Gg3gF0LsyHq>$Ap0;JM+Z>xMnPf@+g;wbkFA-jY;M!7c~|Sw_*%o+L)H zK_QT|>n*uJQjVIMTE=)2$Ut*}J4EaZAgKnS~Ii*XKq@r_l|r@bK*FskvbRGc!HI)Y3Fo{FZu+7C-|wq0%;s z@s?^Xqy`%0jSTEuJPHntmzPHE+S91%O%QL9$c9go)v4gPC|mV(Lti0%iI$7tKXF@d zdD1(gFxwu5$e23f#EIa-?$Bh4mh>gZYwh~~f2_9t|C4oxvTYJAu1Br0h@lfY1#zcH z+#ZOCF-R_8`J9JXC9t#8>rn16DNT7E8cr6pDS=WQ&>`Ni40%!4Cexz0Lkhgb&&$Sw z6@cBq;<5Hw(TaYJGW)oZZyaJ8?~v1YegcTQ9Odx*l=CaTTtM;XcsL0KZ}PdI5~3j` zOv5zt3h*fb+EoZC5g3Us^Fq|>8}kk@Kw){W9Y0IpY*T^q?o?7@>SUghszG6kfkN+g z!`C_cq-U%Uqh^(rC-P9oy(a<`p1hv_5PI)&tK6bD)Fc+2vstqT^zI7E z&{?bR%OK!cFaW2)pwj&n5n@Ul5PATi_bVbKls-U60z&^b1ip2(4SF%WvrpO8*=7&@ z4PGC&%n7?EY9Ud?xT*QYd8^wnbw=?RVVDd(U7Hk11{`{4K5R-Ehl`U@`H72Qg3UGY}dewTHx&6@cF)-Qp&-$gxaqn>C% zO`-zbx4SnY!)uY@`@Z|%`epV(_K%U1&tWB;6>d1huy~mjjeKj$W7yk8!Vj*z%bCb; zKb;E0LuafWFx|@}w;Fip6rJb!fmN>RzVr1LTqJ4#RTa9mvUh(!3Y<0#}{BEKy_U@E1``kWvRgb)txGSoM%zl^4 z+~rc8&{jj8b$G^cxmtNfOQqAw;p(gE8O0d)XN@($GE=Tjb8gysf z{%zMH@ArY%>ijiM2-n0(I0Bmn-gI`9E4^TM7u6*SS8lw7L%k3!4zn4rkAmL{HSXXH z&0E_yJ~ee^YLvXKS4pXAn4}^b23e^`YdnFyOh{Ns=Q?}w%7ipMHg$1wX4>N4q00sU z>CB{x4P-^|Qg)5W6)U7rg_cb#0RIYDA=nY&uD~#gtzZQew|dW=ogQ~@$pFhRU zLz)U@%nDv(P(&<#QCG`Cn4#s_VSJ$tVPagE(U>@HH=NRCut8uja5g-0z{3upM1WPx zwcR`G3Up)O8lS-H2KRa2;6`6+tuM9S_v)?Cv*Rb99QoDh^?m0)I(`2e_jY|4{K>(` zr*Fld?mM^HoxGF1oxOKqt$X0v?n8H__oZivfsMqGwZxGRul=I_v-;!t^~A}I#F@3k zncpsaviLM{W4GvX)?8*y!40I%H^F?Kd`J2iIZ;Hxu97NE};B9D97?*QY)@^`yRj{PKEY;zht8?*Xh`2X0OL z`=5KcSH^q>CjHN2W3TgqpY;GeA#__2Ny58>Bw0~OD(Om9Lpml&?^b2a83{|0qUWKz zUoDn#dt~(8DqM;s2%{x-5Re$wAcp%gc*vcFR-V9g)l-d6A^6~URDI^ zV`HyEHLQ@iT!8~;L!HC0!=$|(CY{&RG;G+o!`piYLz`F~nBWg7vuXev?Bk6P+}Dm& zHC4?>msH3X3@COKUqkq^mw5^)Z|PR#^@eRvv$HUO71ux`Yz2Hi-=|#kQ?B~mF%KzQBh}HGu^LjgMQWpUV|CH`v3i;^Q6e?9 z-&k-y7aQN9wYRY*6Lp#r?5|QnnP`89(Q9|j(mu!U@MXkDtL6*ANJ5l-jLHneW>t1L zEGw$@`DrB_j|C$DU>S@@qrsTqGpXFri!VO^qG}mEKR7rvI_hIp=U_ZG9-c@@L4;S? zv*DPa)=r2@AXL~87!OB8S>-N6vkYTeUkFbRNm5*bvK{Kgm=cJ@CtwOI_MMjE6RKlI z3M*nDo=~O}N=RF~mRj|f?PKtv%YX*l5ZDZQj1f#@tiX(MLW5v_l^rt+7SSSDMXPA5 zhfV@3+Q-d;4O+@bi(Pa;ol|sSE3}kBOZm<|0tYP)XmOWpaY9Q)$rcy1RF-ThhnA|6 zEpBM>2o<7BU}0WXsD$@w_?jxnYfAR;Kuc}GH&%-_p+>aBch!wsg<5E>hyHbtH<13U zXoGR<;k|K|^EIlTqAk=nJGc$hV&~y`E*J|=h}cXr zNFx@xU#scmBS266JW>^}Op1Ikq=c`C#l89NxWtc3@hE{nQsL!kF%%vTi-L~~+{=qX z7={^wlmHdY&XX?T7%Y###U;HH&{98tTGYB+K|1GyvK$YEgNi8dGht;C7D9;IA14H_ z_mi>TsNSy_;wTwLhfBl=IZi-dDU zH3S!J9)DS!m3etGo`?wiC6O263NMS(LEuj4s(%O>Rr_2%7L1BLVSVeeuS(0|q#%g>*JtrM>Xqtg+6ptkAow7$JCx1y7aADR4WZ$gUj zlZrAe_xJVbz5H=$qOXmgA!{~}Ad)rVa!5ZO`;Eg)!3Yu_*)h3?zm!n;ozn^NnOGzq z6#Pm!DuV3b_dMOEePHnfd=Oe-fiR=M8?fdqz-(8-l9C8U$Xdi0yv1Wt5PLeRbOEYUvdqJ% z0v{gdahfm?g2pvCI3fk7l3&}L?+ApWN>;~jPXjG z^u_gR(_ES*V*q6Z6A{HvUd{zOK&Fx+GQSrkG5_)roUm7;nPaaImi`kUFZcE$$HJB! z(emEupfU-4@lB)LM~@F|YoNT4FCX0j>8zMd`8=CGx*K8N9UcF~cM+~7FsfM+m4p-< z3F+FFC?yM|AUUb+7l>+_qozo8aWaJvJ05`+OacQo1p6-cj&6O>)K};as!p&9Ho^X9 z_Ae70q`&je?C%oFNq_f_{_Ktqh1V&>(vC-{DE+PPm^46|nx%Y|BT1`4SgKhgER~ai z%*5oyA&uUE%z?y_+Oa*yE`I*JEXw?aGo$ARhIydNp_6CMJ^vzK$ck5jQaE@C3>D}NkH7YwPMy7F98vmr|_E% ziA!XKCKqr45~3Zx+8T-q0bqPtwFd=K!ml@jN`XbFRbkM4l7awG9hi{fiRrg#m6gTF zxQuMUKM3?q#-n1N90`w$eG_4&PuDLXxB4RCOMTO`%49sY&%bAHAFde0MCdZu8*(40 zk-k7Uric=lp?!wXheCn9>7Sle%kt}zll)*|^PsNV3n2PoQS!e)a*f)wI$n3)aAvH0 z+RAS_YBnqCH>(;pJ#|@@t~i`^QnuFnl+9+()=)O*4#?)ss+LVp{bt3nY#D(w1DtyY zoM*G5$$&fbgm9;J!j;`9%UHY8)~;20b^kvcef#J~*2CMdeoD1ySeI2cC{4(rLYaaF zGLb_60o%Cz2q^;mrt=mKXFO0_f@7i9Y(V65s5MOSd?n6C{HlT~C<^o&=6Pn$Bw6N6 zf(gy-Ipzv2?N=NI+*G+y%I6>v*{O>ByHQfAjM5zQjxK+5c}`*|9s_EWGG?7;ZMec( zqa~lu(Q{yOU!mSL8!~5}Q+65cbM#cRQO@Uc+`AS7dX5UXjTV@JH_G{Zsy$yeO7G|e znzDgMH^WsGzO4>VbemoxM%u@{pd_LFq!N42L zki%EV^b+{9^X9)akLvjhJwsh(UZQ5`|IfL7wh^CMWznZlS(NW81IB{NfB~R#M4hV~ zQPD(xC0j;BFr&aL(4;os?Uj9~8Ky-EtjVZ9Y3kv9tmFrjNPU<*jY%&g=$FQzbAZ?p z=$D4&cm&O8)rRI}0EOi5kn((0Y8kFagOpWQ9E>dxTmfA@5r-D-Y}Ey;3}8tERqbTK zq(-eILukUy7|9GC@dQX&PDD>xWvAj{5WR9-f>lV!cxrh-5J5mj!80JDUUK33cVmJq zs5*^B2f!i}RcDd#1T?~jNHzfUStKuZ@?nDARqG_!nh{ZwB_u})!wf1d%BZ-}o`Oe$ zkO`$SQX-bDD=BrMDsKST|T;W6tYZJXS%9$ zv$}pcuoQqSQ{9uU?z!i*c01Amqw@9P8^fFKJ)3UNvTe!s zMrW#Sqha@k`>FdJ<8U*~-Q@v~9%zZc2{M2T3Q>J=%x_b9o_&#H5wlA=EtPNQ+NcD`hA#H8QSXUU+_xB zPiuZ$lcIlIf5*|jRaN)>;V-isG=F)&;Rzuh$VUL5@7t;ecT*o!m!IsWKG196H z*L9L-K5U?&{2|X_+HD(ZXFlB1HPp=fypD$Q&zm_&rM)mfk)}YYPBg_$*rjDkfmiJ* zsT=50x?$W@(5sY|pi60qqFyER1<2c+W-!(SAsW*-bCP5z$rot$UqnHkE*6+0oQ!1uxb z_825*DVmr7uYmHIrwf)`LitY_VNYX5$meKd(jU>wG)=wcWx*8xduE3A(IXHwG{wOJ zLFWz(a^j7Gur&FfR^7w^)g>DGk1|eZ$PL?(2{9&KotBOz50#W2J0zR`2nj&R$NagD zZ@_SJ7bO2p{oxvwrI>2hZ@Zsc_jKH6sEVp(%aUc;wd7iF>C3pE{-pc4Kgx)f>%OOG z=>QZo1u;w%1Vkc23V8nLY?DwDs0fha7&YM&)A1PJop6X3g?tNHO40F%Iwz%$d);jw=7D`L@MP~8*JrH}s@7_H>F~I==2``^;67HPOxk+YD1~huyc?|G2#eCM3wY zUF#aGF_)HfNH@eL*6l`k%{^dsfgk=ZW5mkACPL{*9A_|6wyFQC_L%DfG1JXdnqZvavs7wtK=dNfO|G?TNA7&?HG7^87;I|G#T-2SW?mi zMk6b|3`GsuHrxWjl?36^E6}nNwO_-IyGk-7*+7`$J?wTE62PmgGUIAayP8*&)Wx-L zuDhByT!$7Iux~Q%wzRt~yxjZ@Su>64ra3xizp}?cJz8b;G{EES!hffMN4>q^%vP z(N*sq>(h6!7NZ3pS=%0i{Od6MlOq4mBV-a7d;+99vO#JQU%2jc>uD65j&L=+6El;kUK=JTRvjs-Z7 z$q-yXYk@q*Iu3xXrl1c;o~c|o!Ki`IY0hNK*UjaOM+gJtX9W{-&YV{+b7l!ctT|({ zpnpz4!XdL6fBDtEc7df{i-1}(w^Ms4nVtc&^Ceg%*nuG}9N@Dg4-bR?t4Ad92&$J5 z6P$g7B|N&2;xe3Hh2i{&L?1&WL`MuQS=s~3Ac~I2fd`CN?oYbBaJHk_lKs3_8Uecs zrLXFlmLMJ&faoQN2TAvm3$$PbXhBIA7Q`LaG@^vIzjOwZZ(wp3$EwrD($+$N_3<8d zg)Jm39D@J@v0@=3-h3Ic$h2iX`n~V&htJs;jZ#|NU=d&*kWNHrndX_iJ~!G43+0$qfH)d3pU(O~-Vl2fOa**oh$%@k5HRnRM|_-SEO>Ipf{ZaCjoze- zfC`N)(PT3OE}~Lpk+?K-jfMBT#0AkpC3{O!)T3y51G>ma_&`^UEt$sNbYpL(@kF}u z#H~Xcjb}5B-%K}t^W(x2TKu?Egjp8?-^s!)Y4C z5OBRa9%I&@P;VjyP!z(&ngks2N(Le2 zEPhFbQFdtVNvKNt9z#dP@)dnW8R_*Jg_h^}l{0s&om%#KNqI>Dkhad3m84RR+g70LTK&I|z5=#Ojx3grSh z!|yuA=DEM*W@rV?BJz|n8eq&_U~c642^JV1Jkp&{@i!S`8*zW1btLH>B)2H=Y%~{n z=HYsQ6bBiE;SyAeewA)Z?jMA(JHlZ&97FJ0I9$8Mp+#9x(xKI$1j8}BSJGxrn)tSJ z5PIiiI8}`#yN9$RUAR^RGlWDiBS7EguI^wN`ok%z&#qP!1dOz)GyzO_g{W#JPD1h| z*a9cBxiM9HXi^Ma4#54Uh+1(9K42uSoQlIm8*)QUwPJ6g@+$`cL=;}o)}poAwOatV zjG_q6Za}V7gGm&VAxIty+Z=+*M|ds8hX}vL-e@I&*HTfPspv{qbgf!8DxO|2-_1LT z`_k@x8}0)O+-8}3;pkRn!+PV1jmp7w$KWP}P=;+a{b8B>)j zOPQRmtkq(>KyNu}GLF`?qcwFQ_3Y}2)x_!qIHPTcZYm!;PX1x5oc|o6ER~y8p5^|( z>EGPdzDWPTzUip=a;v;PQ{Iy<@A;gfaTu6**U+utFCw=ix4yI9cy6Qe{JP`(msti| zAIKf>9k(6326j`ociT?%Gq?A7PFR@tEj3Vne^=d!1I+seI4FZe)b15YFF}tG3yJaM zYzzfz3N=mMhL~e61A3(vumF(vOb=@vs0DeCeEFsYA_IB-QxIjHV+2l*$I^ni9%h4+ zM0yksOp*i7!ofdY#ftOM;AOZsm4NF$csWNus^%wv`0-r|PfRL&ED^l~&}b}36A8Te zBPV-L14shHpm4Ja4ysDPpdqZcCY^r1TSrMh-y*%W&;pBk zM2Ju%`lbY*Dif6_c7`p`%zi{fs37q41whHDV?ZU8xfYbaKDE^BG&Yw)JTwJYN>sqV7*#=t=C*=%82O-2))wr_nZ+q7rEqBWti}d#n!U50w_{ z1vj1;ls|yNGN@$mVxYA1DP>X`;$0WAIT8Ya*b1Ij&d)35-Q`sP zK<3N{Fl6+#UC$ke`k0Yq|M?i+96@TpkcGZA`mHWM|3X9z!tD=9oQBgopbEUw1%GgZ zZNi@{KcnAr;E71_gB&>lUkBGHU?kNxbTuTB`xVj=thI@`cXHa-0hQWa3oRBLg7;*1 zN&Q|Tn!>@?$fuzTM9|GP`J?&`!$l(RXhjT2}h6isMM-!ZPZMuiy zd<;(7P@Jqc_H0zbZuVwv0P{db)BAeEF6zzQ0~V&pF~B_}`?v)Ka17{DyZBd*()Dl* zO)EJ!qf{UkRCLwjAp}}uU=RlX+mXlx1~{6@tJItieVz8PBXFylTr^V6+BKtOTPek< zt3;p~xY7f6j5K|L20O6^@rt0v!KQpfrtlO+!jNgQv-Do)^s{~t?Z%zPU>oR=vdY(w z-8i;h=7kF{%g2_Etvgyboz-tt{q0oPYz2fa(YYz6;kNQJ=z_B@hteAt+RZCt`4m zD0!yfTC6owSXcyUr;PY*Ye2B(O7;TX-K}{})0fnzp_e?dM zHTyKx*s{*nW=&S7_1e(3r-SRy4%1I@wJQg+6lANO)zI7Zq_`$;V@-C9ZsP2zD_IJ% zoBK(2>)BtPyFIdvHQ6I9=TAXr$kse-q4%IO6mKfqm}MO-*OoG4Rokktw(spQDc(GZ zt!>!ao*Kuh_O+8YtKK_9inltjwOwoN)LPlK(f4emcvH|@UEJ|iXoc)1dvo-kpcRU@ zpcS$#&vN_MSnRO>rUyIh-*%X}gITwSyFlZVm>Y9q87IX&+vDKsQfzAUEf^4rYl9@a zsb#kYx3O}&$p+t6W90_u)tW4Y`P$%pl54wwxc4=y7Q6}pHlh~BnS)Bz3fG^sYiLLs zs#%$xMgX#-NGF6O)MmIw=FeRt^M@i~|0R&b;E0n;#1b-aDIi%1DhV0D;MO0xYeDWw zsEs>@E4*z+u3Ts|h}OJz7Fbu@At$?K%?#Z!UP1{+WWVvP==DLMs^|kWh-g?2X$l_W z2P&RO43oPe5}xl7Jwd2e`Vqc%W73I$)*~7p9+TdJSDQXuuPWXY0aij)$W5|da`5+ji@5bg+p!h_yB ziY5$JbjE3@)~@J|8_{FCraPW76{{n8;+ZIEXA-9~oy@d9K!FaaGuGA{F}$)B#`{CJraKzVOPo>cC&Ua=?QxQ z)|&LCs=`&Q&6ccA`NK7=Zco;xHib8_x|pm>)rad@-I3g!Y6v&5x-%I_HHI5m-IZ)g zHHVv7-JNVnwT4?+-IJ73Tf$pd-J9H+Y74iqx-Ypc)gEr=h=nNJ$Z>Py9usH-d06jf0MZq2;q@zgywT_=tsDhQzC{?lIjHToZ13*;v{!A(rP0LXAr=sVTh!&-B zMT?A1Xy-C%1UPxRzyHX|lTh{aXVSxo_!x~MdT8(=q>{dnpqX?^No$BCGpeK`n)19B zp^BOrqcJvTA}vFIB$ETS!LTh0R z-2|D6Q%ceo-|RV;Nhv*QGBK?5#1mSNI;zAH(IlL0Pcm_~$2gnap`E*W)P$z&7>&lx zN8^gx1AFR;B+{Bf;qZH6#>uKZvT}AT9vYp{o$9&Fc!X_}Ho{!MvqbenHbqth=l2I+ z9Gnqnx6N5U79LrHRuaR^Ovupe3~oZ@kDq}_`W(>&6UB%r6wC%FN5qPcVs(;eF0=Lh zV&zc+m^@~yY{`-Li#NoW5rjthdxEr)okZovEgX3U#^D`2&p$)PxgbB3tx+e`P$D&& zRFGyEEgfK&5VX_HFabr*(s_W=z3ah@tHJ|g#|NZTvmPLVgrp+VOB4@RuV*I?s3PkD z=@#g1fuH&~WToTJSG6w+kE{fmmjc}jf$pWi&V|6vyimX5sClJnMfA_?%{PV?#h%~u z#94Q_=~B}dDjw8NJ$+UDM^)Co2K%}z!=q(a_6MlIl@+BClBjGkkLyt~Npc$!vU&6a zwKBjvKMx*8!ihAY09uWgDLKtCp9$1u|&? zyeRoAu2FNC<7N9xxtkkF3_md}}+`vG@_ zo#d%a6daBdO?U=wLDvizd}4LM6x$pjMk8`ycX$DU$c?{lGde%m`PUuR3S<%vCQ{ zwS8dyTt#mDZc_^vw9;y*>JGpzv-x378cmGS4r~@=5a>Z(=Z0wzzpV^JMRJm)B6V-t zaAmX?U~rr21;~K59gVXm<_|799=qAMDw2JV{rLO`=RZuX@s?`m?Y;f;^3SzjYQM-$ z4_tog(o=tZe97Ii;BJ{!=lTlnN9LX@xPv!Rt2}XdR|yRGy`4Ds->V|-ss-F%!MC^I z+M5^le*Qa`*_(Gf_Jz6yrhcWSua}>5^mW;O*bdo8J_~$*)MdrI*V?z=uDeo9kukPi zcl9M<7l3QVYv1U)O={d&36wbu`Ag={cOs3+!X$AJt;995HAmhcZ&|bwub5cN)Ni)P zwrlqHi^3Fyp$oRilIAvRBVMysF3W=QB=Cq%FP?EY+ zqhqS3Y8kK*ET189eTF7w&;tsEp)^A&N?YAsRQaGKLHBZWCp1>d>qfLFibOF?GbyuX${&stX{#P?3YLKHk?(K5E}`*vbDwv_QU& zl9AGw4gdproeluHD2lL2PD2QmavbOeVj3@#mK;aV=PYUh1YVKyOh_!JEKiZ|a%I}p zO3HkMc?OlRpz2HNyWGApUUOw}&a6%HIex@f9%t4nb|K^hx=F(mVJRn!lqlM4Bjr6? za+Z^5nCY&FX$M9kK_|Op`Xmg{#Ykj0kyIiPiaeuRGO8|&MzwRgT~2_31r}o!Qi}{` z8BLrWLz@(=1|ULvk;p*8BDv@`gP`aTe(+$gqHqPO$EyKZYD&`<#AfKG(uyi*kUkCI z{qR#&$Uv-mI_Db;o=2ySu6Q@i49}+KPZhkoroQ}ZyXV#T9p9$Q7cX7R`?lxB?U1i{ zo8P2wkH0?t_QlsP&R@8G@#@7w>zDE^PZqp=)BLi}zvOFM@U<}-oEC1od@FSgv)kV8 ze!aU;*D?L&J1+m!5JlCZ*A!QXYN)tRbsfQ>AY%mguTc48qH}&S=tE7{}z6B8S*;on%i)ou|{$vq?qL zG7<_st+Wz@xXcB0OJiyx9fwb}b6PKy~f#^-S_iHBeSJTFu1=GDE$shgAAfxglvj{ow5DUQt%Y^^VFPc{@I&nJ{AXm+f23} z;TWUDU>&7YGADijO@ET_gffC9(+B|H=mArK`9>vrE{nuJ$uj~UHDFK;Pzt!2G)gB- zI#3V5O_qEkX5dj2uI$)Bjp8L&s?l1*(PT7OzN2RWDvpq7AXfN1-HXDGyMdlUrK{7H z-?nd2e5}IJ!TtTv{U!cq);`g$+lwKDjYZGDGhGMbge&_zPZVnBoxb?X}>X9fF?pR`rz#**a*TPmiU%^ZO?*+|KvGyB20 zurUj)ZlhUp-1z~x4NeoV05tt!eHL$tA~w=#@b1iVt5`g+3L{ z6`CcuH(Ldgv(rY|k>lVToPXLr@Avl};qcXXQ9a1!z z44nx&DB3DUfJp_T6NDCy)!oAxnu=tP61I0z+G6pf#q!_?K=|$A*U!&+B|jjq7d%GR7;i&f^zy1F9C5iY_B#I_#t= z=*_@S{SU~d$a0l`>e$`dN9M*0wLMcOmR*~dT%8N9&Vp7o7Zkix-2Tghmj>VDXZzm}KXz{c;aa=-w_y8jUapnq8s=R2u2Xsc=@Q^9zvyoIy{8la z!HfEZw~y}+@c$C9_P5z}8*1A`e4S`0g+iQ6G(6m)!+^(SON>8r3h8~?iuT0QAShF$DPt_ZZGNPRWegb$(6S5L9a8fYbAb4hcn4MtOM2s=00N0Ve zHx`YY9ZSn#t)l@(UjTqt;HRR#1^VB)@5fCaG=12z=y~#kmUk}9sq=l)vCD}|iCKR3 z>jiJ?99Qsez0optbiwoFZCCZOujRkC9?lD`zi!+DVTxAU?Zz!L?Q^H|p<}n&kNuT( zb}taAwFv?etv008wq;-a9lLL4?}EKyS@d4^T=LAETNGQDUB1ivFYTZCM#0sT7n(j_ zYb4%2?(^R{VH|VaUTf_;VEc%3945j?E&=iftOi&=Swqoxg(w7{P2kCdgXa=USdjU! zRd&iY2;bXeyJD9`MN}L}f3l!B;gP`sJ+28WIMeO{3;`EI?b&TkJiLJfM4+M*5{nKq zyA>rHI5CFNnXO|`lGHv*!Sp>?)VEKZqIEFC&^qQ4pamIY?N^Xh#u-P7AzElIC15>- zzb}<_3iOwZ^fJ(f<~ju0H^fz(m1)wAaQ#1hQ&V3SL-kUyERYJvEMWlE_ zx(E*(_yOSwW)@S35~o2c0F|?6k4T(m#zqac5Rj7~93rSna=6lhav}aA#_ZkC!% zya!8B4?_mll;~d)yBEan`BT@=Ts^ZWKE5ov(L7xeI~K%_d2W8s^+Q(=EsFa~?STa` zuq3uFh^-%sTbR*mXe$A>rN$~HUCDku1+9Oc{VHz|;(EVyQDyH<<|_=64K8ZKF+#bjL6i_P@>qE!dwHgz0qd?n3$5t9^$cFc&inXE`V9CS> z0mG6GksTU7|F8rsgns>fX#}HX_a&1>D`qKUbZU|bKC;!UmCKR#a^0-S&WB=j{TUct z55?%#I?TDvQ`vAY9t}dZMjF{}*2?8bce!rXD)97_+KLr8c?<)w1n+`H#{gP)nXM3r z@(yKho;sIMAyUBJLm_k^WzxwBDWyaqxBxoM5Y%zdf+1-j!y*M^Xt&~^@q~6xijHX+ zLxMAKlsy;;zz79clp59{Dgi@e2$m+2YPSUaF~p!qnK5m2Ok=P`p(AB5h*7bi6zGcB zxoA4Bu<2j~t|1XqLhO0PbQQBMd|oStN3vf0P@Y#}V;V*;vUT_ktC5xA=vY!y(y@#T z3(GbX+cDqs12v|h0iCVsh=G{xV9}NY#6Z}4 zuK(#HUq5~1MGTmN$6xVscK+#vAeVC!D&>f{cQ1r-|vp~I2gD0w&umN2b`j?Qcf9>Jv zSUOv^P8C7RHH3pdSuhpkz3jc@UA6F@_Ite5;k@T2j+&W6@Aee7?p_r4U<~}wyKV1v zz0p_mb*Ad=e5wy+MhN4 zq;YBg;KKgF!uI2f;t7Vj#LjgGOc>mV%SVU zH^!7Patv=6@Sah8XNc(TNaQ&PDi(X}k%*j$0f=>sg~e(T@ie@Tz>CUrV+kn1^SnU6 zhj)Z3nxZjG(b?2_2t(4>pmr6WcCZy(7eXh^?C+tXqGA0K`K`rb6<0;h(=c`9PM`%| znAZf}x^>mrY^?|5mOwFIJ0H8+z^XUYd)Q*&Wa$15umtzezkx!xHR~8Xu zh++ER3U#Xne-u$ET79|=>IjUQgQ8hstRLMoz4Dco(W_ol$$CY;WaO+jSN0fxfB>|n z+@WYV&~G8qY6fWjDIye0CJY0v<$?Cl*(k&?i}IJE8KE~l2vq*}iV-5%01x;}+L#KM zWY{$_mTt(G@**n#$3ihaqt~sUDFq^0j)Hy3o*n}0JK?DzsfJ*o5c4qJaPPx!0GRiJ zfjWKjMkrDVHO54i?f^Lf5pMWf3PqR62x=fv8Deb<)-Y;kJda?Ym4*H)1PHoZ2Ccn? zwG#d5;z5JXpP<*F0|W(8(Fcb>D#v|7Jf9HnC&cjyaehh~KP657NxBQ9`!~e@DQW+d zJo(?G^HZ|xQ}Q^=A7%M|mhZXa2u#;6IRXog!0clM$F?cks*U41W=^gWDCTNdF<-le zUu&Yk^{#py+`d_Du7AE}?klhV#TtRn)y+Q6I}bykxbdx80g;fH@+_p6= gRu6i)=GjB51d92SYgpXd+Qrq+?E7B=1v{(%18aCB;{X5v literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e9d7da53b997b99bf477c0e5565f5e7401cd44d GIT binary patch literal 7495 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 Pp7tkgNB+Z5!tCyUK%Rj# literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0fb2512fffb5d6d7fc982584e93c2fe121705243 GIT binary patch literal 4377 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 J0{e0s{|_Jp1Y-aI literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e121651d660f122b739f54cab1af29630a583614 GIT binary patch literal 2960 zcmai0U1%KF6~6PgJF`FfiGEf;wmYt@Ivc9p#;xtz!~!ELaT6nhq`G)Zn2u(yc4srQ zv$=QHiq;atA0!a^8yDgRa@Y?30NpyWkuA8W6!k($2xYM( zLNB_KCzoV_k4diLB}$2qm))eNmei0}T+K_BQeL{04&{WK@v^0?*HP*S<)qu`b(Olj z?ozjaM1+Ovh4%g@I^44*L}IB|M6V!QeS~Zct6NfA+h?b6znz9(2KUb=?Cc}Clv@{wv1D74-H1ri%LGt(zi`oX`i_Hc1ni^ z66}X{Q?J07?#~0~`j+YHb<=voEW-$~D$WC3NQL&Z6-=>inKgY5>kW!+eZdJT`q)@F z-KoKJg5PX71bes^P<`HUu^#xk?SsCK&A^;uOLIa=R<^_mT6w#w09t8;4b=|LF9_NS4P4WABUSYD0 zX~2?J#dj=BS;Dk<1X$9>^Jc>hm|Vebo$xc{Ri;{=Z9t4DOPO}afi2-KBPtMci z!lbJ2)L5c!5{e1yfnZ}2@QGkN@kdSayOUtz*kE zUC6Vd>&zAFi$TS&{jl)jr6Pqy8EeCn7VA#EXgIY1lbY!kttcO9k>jyYUu5ayW71~s zL;@5}3=F{$r~zaJ?Wvi^*|qGhs&A|MUZ!g=Gq~4%X219RUe6Gx-B)+J$G5x3_qux5 zwO?!Rj_q_ke;|p^b+kH>cK#5hv{b7fY1zl=we+rfaa+B(DQy1ecQ>Bg_*}hq09zoI zY-60sCMi?vBtm&b4Ke*^U;xu1EuM~v({O!^$LbND`G!%8u_>T{M=ESHXi2DsRXo;2 z{j#(q-a@Z~TbAX3=ULcnVM$(+f+OT|DaPhjJDUXbt1~hRy5c!AC@)SmyGH5tR8%8w z06R+a8W{!?maY>Bozb9BX_!P80e&>FF(HKCfbeAq&pehjct8z*-r!|{@a)PfS zguWIPMQwGUY<^{OZ|K~oa_&IRDA!wOQc7;)N((`^*}G{y84THvC;(c?MQeu3ai2wD z;TN;ol?hmcc*H{Nwt!hj!BMSVg4aLB$z`-G21kgmwo${U$8AZ7k-97e?J9~O6Jjmk zvWMexNjj}kFUheTAhAzI8hl~!zj%MB$I@xFe5<|v3>rZ%A}TD10=ka``1|Gmv42at zj~0Zy)I2{OK2mxRmtNZ`LuHNLRF2vL6Up3EKEY(aj-kMEL_=v~QVlNf|CU6q3up&|d&qL4Vh>tM)s$KGOy_ezxD) z|M=nB!;Nb@oujMrexLqc?k|1$)yX#gHuvNet=v74NJOyx$M-+WRy!PRK4gq;NfS9V6o1}LJ*&W zB3?Ku;swif3UemKM!T95enobQ5qv=e4GL!PghdsD1BMMfyIdo1;4_1}46JzV3*Rd? zaGI6pP%Df@RCcs74(`A$pd!5xo|<0?gfJI=z?TZ$eTj2ACt&;wc*cN*h|u?P^2Y+R(<2ceD#DiNnN*kbCFi aA%d=TM@R@~Hl!AUZZqmWk`B2PZv7wG5VWQM literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..703d563aecc0b062cc4e21febebf3a7c360d66b5 GIT binary patch literal 1665 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e344e4f5d63f83b528fa09d1ceb996c5f5308ace GIT binary patch literal 3972 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..844976a0cacc8c4b3835abbcd86dac21888957e2 GIT binary patch literal 29106 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�n*BWg&lft#Y;vn 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�GdrOV(#I>f6R~F9Scbu37i2M{t(9kO5+} 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66f7ed102fccb748c8fc2463e85565389d3cd1fd GIT binary patch literal 15749 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 E3mtX`QUCw| literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8da61aaefce43f040156181807491805091505a7 GIT binary patch literal 10469 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 L=(mWG?uY*iD;BF2 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..378bd768dad641e6da52cf52fef1e5fc8fddddc2 GIT binary patch literal 8857 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 can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/lib/python3.12/site-packages/pip/_internal/commands/check.py b/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..f54a16d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,67 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import get_default_environment +from pip._internal.operations.check import ( + check_package_set, + check_unsupported, + create_package_set_from_installed, +) +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + unsupported = list( + check_unsupported( + get_default_environment().iter_installed_distributions(), + get_supported(), + ) + ) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + for package in unsupported: + write_output( + "%s %s is not supported on this platform", + package.raw_name, + package.version, + ) + if missing or conflicting or parsing_probs or unsupported: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..9e89e27 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..1a1dc6b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..567ca96 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.compat import open_text_resource +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with open_text_resource("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/download.py b/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..917bbb9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,146 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into

.", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..885fdfe --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,109 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/lib/python3.12/site-packages/pip/_internal/commands/help.py b/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/index.py b/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..2e2661b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional + +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Version] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 0000000..e810c13 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/lib/python3.12/site-packages/pip/_internal/commands/install.py b/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..ad45a2f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,783 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + if modifying_pip: + # Eagerly import this module to avoid crashes. Otherwise, this + # module would be imported *after* pip was replaced, resulting in + # crashes if the new self_outdated_check module was incompatible + # with the rest of pip that's already imported. + import pip._internal.self_outdated_check # noqa: F401 + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "ERROR: Failed to build installable wheels for some " + "pyproject.toml based projects ({})".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + # Display a summary of installed packages, with extra care to + # display a package name as it was requested by the user. + installed.sort(key=operator.attrgetter("name")) + summary = [] + installed_versions = {} + for distribution in env.iter_all_distributions(): + installed_versions[distribution.canonical_name] = distribution.version + for package in installed: + display_name = package.name + version = installed_versions.get(canonicalize_name(display_name), None) + if version: + text = f"{display_name}-{version}" + else: + text = display_name + summary.append(text) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(summary) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/lib/python3.12/site-packages/pip/_internal/commands/list.py b/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..8494370 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,375 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: Version + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def handle_pip_version_check(self, options: Values) -> None: + if options.outdated or options.uptodate: + super().handle_pip_version_check(options) + + def _build_package_finder( + self, options: Values, session: "PipSession" + ) -> "PackageFinder": + """ + Create a package finder appropriate to this list command. + """ + # Lazy import the heavy index modules as most list invocations won't need 'em. + from pip._internal.index.collector import LinkCollector + from pip._internal.index.package_finder import PackageFinder + + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: _ProcessedDists = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, proj.raw_version] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/lib/python3.12/site-packages/pip/_internal/commands/search.py b/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..74b8d65 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,172 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional, TypedDict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = ( + f"XMLRPC request failed [code: {fault.faultCode}]\n{fault.faultString}" + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, TransformedHit] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/lib/python3.12/site-packages/pip/_internal/commands/show.py b/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..c54d548 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,217 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + requires = sorted( + # Avoid duplicates in requirements (e.g. due to environment markers). + {req.name for req in dist.iter_dependencies()}, + key=str.lower, + ) + except InvalidRequirement: + requires = sorted(dist.iter_raw_dependencies(), key=str.lower) + + try: + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + except InvalidRequirement: + required_by = ["#N/A"] + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + project_urls = metadata.get_all("Project-URL", []) + homepage = metadata.get("Home-page", "") + if not homepage: + # It's common that there is a "homepage" Project-URL, but Home-page + # remains unset (especially as PEP 621 doesn't surface the field). + # + # This logic was taken from PyPI's codebase. + for url in project_urls: + url_label, url = url.split(",", maxsplit=1) + normalized_label = ( + url_label.casefold().replace("-", "").replace("_", "").strip() + ) + if normalized_label == "homepage": + homepage = url.strip() + break + + yield _PackageInfo( + name=dist.raw_name, + version=dist.raw_version, + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=homepage, + project_urls=project_urls, + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..bc0edea --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,114 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.index_command import SessionCommandMixin +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..278719f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,182 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/lib/python3.12/site-packages/pip/_internal/configuration.py b/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..c25273d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c6804cd9d7e9b7c818545ca55452d2d8803c156 GIT binary patch literal 933 zcmaJ;zi-n(6uxWxt0ZaE&;>;xS4frIDz*v(0~JuI3kyR#AbGKz_>vqsJL%m86x4x% zKLM$XT@il@OGE~cMInDQ|Z?|aJb99EDsqBjJvQ%}MouT*3_a~}4A4z@<9;(eeELQ)& zhl5|rpf{TXn2^Y4Bj(S?&s<_7#T)A|na4TUR;gmn-Pq7fqx_!fj}IbsJs l^Ag5*h7M=w(F{GDp@X@xf%iUd-kz7hf7NeX>fp0JKLNds0Q&#{ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbd948f445116b28ae1b69670c94a5afd2ff9d77 GIT binary patch literal 2885 zcmb7G-H#Jh6u&d=wA1dkTRsGK`5IxBEwU{iJ{UEI1rayKl?X4EhuP`e+wHK^nc?24 zOE)}h42kf-n}%12iAwOnKfwRM7l=m9C{d$6_*Pj|;*;mx>2zCIh)&Ww=bn4cJ>S3S zmxV%}z_am#XBYm?5b_Idl1J+is{s(#2qjc;Ne$nstF+Xb+Dg?@3hq;Gx~0`LNvGXR zD_hGdgsD6OXPT?GalBNuoZXFU;GuKPAS-*z}_F)sve z;gn@BS_|wo$D@qfYi0?_^){Y(A<9+Ia4|{*rhxRyU@NC1$kRA~fo7j21%Qpe$s(<#@0e zzTWVx7L#_t^c46A%C_b03k}=noY|qQ#d2MgSyC?;6B=QLQw0E4*V!dP;` zrXg6^4u)bm(D%)9g`YT>n19$$hYu;sOZ|43WDnC}QR>94nOxF$VG13>Xaz(F7g@sh zFkQUuO@|J!C<_>Lre`}$l%JG587x!>^x%^cd_y;0tsGOeH>8b^l$c0Shf^ zh1Ob%oCe14F-B!gd}GPyix7@Yb5L+T~RNRs{mKY$SLHa za*>#Q?GCxA%#~A-CfWhxk#3rf=Y*!o5&VFk7R+tPO_VcDIU=Sh(3oMY{ByS2^joYd zT&KaR3r<)S0ka*;1=y*&PQ4nyH2B_;%Avzm;e>2DDS9<oW(TyY(gBzfRUF1j z(BWfXWO?U$Q(H;A+yx@yDOet?kRSBImFyjT+t>QUcbm3cPG8km;egl*uDu7tmWe{p zfi(5clJvZ%l$GUgW{jj#O)E6w8p3?_iUw^6WpkiI*QOt9iak8k97#jL#LhO1Ip1Rk zPzc)yv@vKHSz&m+{=%_>&RDn00FaWVHRk6l0cU~5nK_s^GwI{0^87r^pzFfT5?pM6 zd`2rbm1xtPAI`P{S3*CdCph={O@)^r8v=7-@QtuWB^id<>v7Ye%g?M^hKI%W;5`Lc zR>=KPGPdWd;@;c(UcL!9|F;Yrui;o)z7>{1@5UEc*bjCn1(nNBFLVAQqMECbJjKm<{kG>@>(F&wpsLwdl%enSH(;wD}HP zcETd?K4_a>J$62^-phyAjrxf?6*SVTRB^acm2g&x+}%ymt(tndxMl}&I|wkXGcCUU{@iH~4;aEbh(mNdOPscKtq@2GSMygz^b zPkeQClF5Cmjo;D6yQ-#5UZ48($c^cH1jyAC$xKLQw-As&DL literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f96f5ba5e0ed086400b162ec6565c35a2c367610 GIT binary patch literal 1692 zcma)6&2QsW5P$xRlO|1|+rsX$i-k%>gw`(GBP*mu2t*EL1)O}qIDRjQxBlAq9I1{t zRHz3yaY5=8ZmjlC;S$6FWU10hhy%AkmJ26l?4%@BL5$>iKhMnj_|43F-?v%~0`mOV zd&8bW$S?S_6m0?KJpgBf5-Noxk{n4wEQfNWI7*3?P>nQ4E3q2tQO&7IL?-VMs+|(5 zGvx`ajp7)2t!w;-uqzeD2Wb{0u@?fqcE2w&?)lj}0gOR^j2^JJ9(ewdH)QVyF=ZSK zowq%~R)c(8Z7IeA%pU+aBaAo_C5}ubM`0?Jna1?%;2FqNIaQx5f}I+846v!Es#B*L zYrvT|XbnD@8UusY!QRY`Zll3OsmsdjfM&G z@hA``O_(s_Br{{iC`9KbOiexRA!E}MW;S9bXOG4K2Y(O`5*}5)5jee&Gmqxwa(%{P z(@&ywoH1&Zrb6c|8}rzg7TlHt7GSP|IwLuGEFC@uRj7i61A(FDU!U5eBx1G*g8{RL zL1v4T`GFTgIqWd#+i9MSlK8-SWrUs`Lr3KQRJ|(~3KXzt3aFbH1dO` zb0d~{)XO|~HE$F9>b(5xge_d!0(C-uZf|{c{N?da?cE>RyVLgm)aXs`_I?E2-e30_ zyZkvkhdwB;R?)7~9*86?+pXyMBjz8um6@_s9QxQmtFqQrd;?s(3975|O~gB>UO@FC zD1o!_8dUsmRc+7Ks9z*xa&UDH{&Ny;C2F8f$gD}~t&(83RT!=tdl7TpqT#wxLdPNE zrt3a}$}K!K*QJRMW+UZE%6OJ@WLGHg9PthyuA|yUg}qp){Uizb4g5#WWRWsmF`sPfQv}@nI_T9m^cm5y%=gQJJ(`D_|>FaOK35+vC*IG|Iw`LlQ zGo9SHJ*y!y$jz5$bwmx)*nGADsM;DgJM7jAJw(Mmt#VWHUe85g+^h2a7T<%7@Tn2ELCq9NlFrG^U&;M* Wa_^iRJkz(O*7T+QKM9N_p}zs+?!#gL literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bc5992c84be657568fae32635eff0aefb68d2e3 GIT binary patch literal 8419 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 None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..ab8d53b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..28ea5ce --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,158 @@ +import logging +from typing import TYPE_CHECKING, Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: "PackageFinder") -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: "PackageFinder") -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..bfadd39 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,42 @@ +from typing import TYPE_CHECKING, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/lib/python3.12/site-packages/pip/_internal/exceptions.py b/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..45a876a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,809 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Literal, Optional, Union + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.version import InvalidVersion +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._vendor.requests.models import Request, Response + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional["Response"] = None, + request: Optional["Request"] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class MetadataInvalid(InstallationError): + """Metadata is invalid.""" + + def __init__(self, ireq: "InstallRequirement", error: str) -> None: + self.ireq = ireq + self.error = error + + def __str__(self) -> str: + return f"Requested {self.ireq} has invalid metadata: {self.error}" + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List[HashError] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) + + +class UninstallMissingRecord(DiagnosticPipError): + reference = "uninstall-no-record-file" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + installer = distribution.installer + if not installer or installer == "pip": + dep = f"{distribution.raw_name}=={distribution.version}" + hint = Text.assemble( + "You might be able to recover from this via: ", + (f"pip install --force-reinstall --no-deps {dep}", "green"), + ) + else: + hint = Text( + f"The package was installed by {installer}. " + "You should check if it can uninstall the package." + ) + + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "The package's contents are unknown: " + f"no RECORD file was found for {distribution.raw_name}." + ), + hint_stmt=hint, + ) + + +class LegacyDistutilsInstall(DiagnosticPipError): + reference = "uninstall-distutils-installed-package" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "It is a distutils installed project and thus we cannot accurately " + "determine which files belong to it which would lead to only a partial " + "uninstall." + ), + hint_stmt=None, + ) + + +class InvalidInstalledPackage(DiagnosticPipError): + reference = "invalid-installed-package" + + def __init__( + self, + *, + dist: "BaseDistribution", + invalid_exc: Union[InvalidRequirement, InvalidVersion], + ) -> None: + installed_location = dist.installed_location + + if isinstance(invalid_exc, InvalidRequirement): + invalid_type = "requirement" + else: + invalid_type = "version" + + super().__init__( + message=Text( + f"Cannot process installed package {dist} " + + (f"in {installed_location!r} " if installed_location else "") + + f"because it has an invalid {invalid_type}:\n{invalid_exc.args[0]}" + ), + context=( + "Starting with pip 24.1, packages with invalid " + f"{invalid_type}s can not be processed." + ), + hint_stmt="To proceed this package must be uninstalled.", + ) diff --git a/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b85537e54771cc02aa7b49bd34c28f098bfe56b9 GIT binary patch literal 224 zcmX@j%ge<81VU5P(&d2kV-N=h7@>^M96-i&h7^V&&f>EFQ_cZ$j>v@Gc?jK&MZmQEl5nxPE1cN)-T8`(2oaOk(ZdGp9!*2KOQKM tSrQ+wS5SG2!zMRBr8Fniu80k256G#-AfJ3-W@Kdi#Kg$RQp5t}0su`AJ+=S< literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1da5d825ad7c21407e8eb744db0ead209f9c5d6a GIT binary patch literal 21609 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 vK>+1^j>GNx6uaFTef`hFbpz*)o(B literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3baf00642d599e23686ff5d672c4e49cec01efb3 GIT binary patch literal 40640 zcmdtL33Oc7nI8CRUx6y13P2UshmAmiSO^f@H*o<-kQ79Vlq|suR75?H1px*2tD-2B z0hv}iX;9WgVC-&!EjxnRK5Z&er|BdU(7?hJ%qa>? zyv&mM{(Ik2RVZ3+pU%uV^GLk9@9yv3|Ni&i?*IPhiVCNItNI&TF0_4J5dM-L)XSj+ zHhy6ggd0Lcm=Gd{h;i01VPL<;2_yS8O_ncF(Cm4&^ty>opNeJorx+dnrjF~Gvr zv)kqdCk9#AH#;=9ePTNc`)7yec1-MG;hNc%pRFLI&st>To59Szh{^@W)!3y z(#X38K2sB;l2`IXnu2(gJkoLL#I%vZ{5~N(y3{Cr0uJgiPJ{mxDaXosu1ar3^Tur3?{&T@7l=azQ? zKXgqz73q@PQYWjo8-3WrLLun{T2SKAPS01(6K5nFE58-xd)4yq@@j;M&#<&Ur1h(5 z6Hl|a0mN<7;?AQxI1nouFPJWhYXeT`-1rCtIJM zznqB1q_`+cv*Cmk5fk&`nT0cBy<#*LkzSVKe@$H*4;gZfNH`ImnhnR}A$zXk-1BEf zCXb#NIeKbr{CLhWD$ggS*jXu&vyUYtIedOr%9&3`<9L4RQX)DZ3(w|Elx#V7`4ZAB z&%_XkTAlGr(o}RhD#>v?na+hT;HPRT9Gj0tr^2(*q%;`|&q*O;u5v8)5+WkcA}h+~ z+>=MbaY=bXA1Zs&&pCbvM?5lC&II{QY7a;hEB=R^LXp|*!X;6 zbpCP-u}a;ay(meuqtRK3+RS;MiN!Bpx->6iTv!TvQE@sNd-3Qz>Y7T-%Q+WobaEDv z)c+c#p)l2cG#raWF=!GJDn{q!xp3m>d@Lc)&msbY6MGTAuCr2Dp1OE;YW@=C^PiQd zW|Tf7OVg4p#ik^x*nKW6Uyu@K77`cPuvvJ247qBh#iym;xEz(GIVqMvb_epFp1*KG zlJVgA?1_<)(~~35of{cHJN6XKrS(KOevwt|q-l;NCTHhq;N9mhM`t6GF)1-SKZWO- zsf*Ioi<2_1JU)3zZQpciDBw7^a7j9TIV?v)CYhiu=cC!shT>@{ zet9;Lt2h&$dNF)K8l~3dcZ8goMlk1oiO=n1G&Vh-tBqcW&C610>p80|B`(XcDP=tp zdORJ%X{J+kL|BA_6Fg3VZnAqc-i#4aK#X^hr<|lr-%>i&EmE zB#XF-7osmoF(4NLVNscBF&Y=A=I1V9!2o55SE7lFVpt?#=!&y?+7!T!_wj;lB9Opk zso%*`_hR{l=hVs=*z6S#i`)AWgk{9}X<)Gg;kHY%6bG0`V;5LgcwMXt>g-&2W?t@_ zivrwmpOWX*8VMV+CD32kTzRK=MryRm9KAJo-MoWuEV>%3M z7r}J#8kAAyFD;go6{qKAHaApBa!9Kq$`SLXO1jZrQJHfgr`$j+uotw>;_BKJ|2ifDXN zhbvYMZ5nY};WXpoFTOBvaehu3h|fl+rGX34!~olfu))L=1GCZd102bzSBG=1!@e&h7D(^>DithX-f^=G^t zX>SJt$Wl?6uN2(gpFP?xxN9@6Eos-5PXvp_dEZ|7hWna3>wZG-klXuTY-WcuzYPWQ z+mY!P@hbHF)w&}_;ZKaiNA{ThWVZqLDMV_Qigq`Cfv6jTB!IjYCX68MOfwoX)p83O z5oGz)9M(_G0V3;DTCsm>4#%hFaDHkI*Mb35gPoQsZH?n0cg{Y^NSevXoO5z=Za#8( zRzlc4Ir$rx!?Q$q;K?k-F3;u6;me8noCDMlCnR!J+VY;fB+t))Qpi~s!m$@Y*i>V2 zg2I@*tkW#HN+nKNpt-6`pz$bfaxNN2=BbOhK*>tfQsf@Y%m&SlypL`N)f-K5JdE2{ zg{(KYV!q+H?)bXv>R2|=x@vyQantdpD`l?9R@5$^d*k_Q&wuT6S4XqKwpIUI!JEN1 z8&c-lY)$jZxf{=4fBx&AyE=2`l)4%7|IAMJ)KUN_NS{Xmy+9h}b1(#38vPCyQ}LOw*MS z7kC4A#4S}soKht?2%Exrm?IUSqP+{IkcSh6BZSVwAPSSm7={O_a|sxS?Q4WMC7w=5 zmykl7VaBkC9V`)@x;z_}MP*7kl27{kE-iF_Zg6P(7e3#A=yTip_I%+`sAD|mR&p^I z%2jHVGJm%58IR{G5{zI}@v9ru@BEcX4l4{r%KaFgDUG_p11(n*{x)8~?S`;uy=sgY zm#mAHMPU*#{8}{PNvEwqAxx^vTv#;WiE3aM(J7M(T>~o2fG3TKdh?-$QroWDF95zk9vSd2>v?JcM?jE3ntAB~0Og)R|AyW;bgc z=Rhj;qQ;_%*zQI3OS8q5^orrQctx6>Wxr^j(+ZEFtY|F|Kfz#SnouUZC|wMMq|;$t=P?FL<|WIbC0Q&zdPuTKr3 zmYzjRqE>x=u^TYb8nGdFK#kLXskWk#EYs6P6ZJG=$D7ydCDqVNf?T&~i8xq0pZ3m9 z<(-Rr_ddiIO=^8;rCAN@zwatr@RBt_3>CW;tutHHu>Py&#QWmSORpDqVKmwz?#GQr zq~cqqqVXWAu;k+7ff|S@ExBd}N+R&6!p4#fJs#YgzGzeX9N!hGoY`I`hjnJh=2*2} zwe*rb;#su6DMY*_@33=oS>+w9GrKpZEg2(Kc)MQ(wrDh4Bh`-^&0iI^AWW)F5Y^2t zCh#dUcbfRhi2SV)->=wen_92_tIZ%WrX|-5;lz?_Q6s099E%S5sYR$u79BH(OS0in zos)V2_|7qNbaRe~Uz;!IqVq9ObZm1u2DydntIVuMYG{2Wj;p1K2rUbxC)6DJFLIvL zpVZKMwW=Cm$+hT;w=Wt2Uv*fcr_~(#FK|im+M)fcADGiTM1{u>FP-$u1v z2<>z{e@@S(h87uyhxkuaV<76QDJoS40wS(ybX-?lqjE{@5WBFC3p#l?o^7+Ld zGYUJ|SRgF`K{|C2B3hb3$OiU`IV)#klJ(>BA`3=A?dl{e)ta-P9HBb;{D30tvSz8n)FmjfI@NGSI8DN;ikr1-`8D;fs_nJ`rn%2_#2mJH(6c(C-% zl8sMB<8fkZ)LyD0YkKd$ru{eBz~#u=6azwt;Fe_wWFlLkz++c_%RfZ^Ml3s?!Ee>8efsjmyPbQi` z{w&>E=|)H>XNJK2qD*u}&aO_1OdFg`m{6`{d5FiBpP}awx;;mcRZuLEh>7XMK%QTS z=Ny`jOdg^vb(Dp}5EvVXL?PayjPe-OvX`u$}S zTL+g%@B15XJazr4RM*}+JMVO-I*+D&$5QTN4_uy%tMRU@F zzTW-X(Fcvwk*-Fb^CP@NY{5IfriZvaBPrJGA>Pw#EtA9?N$9?v%HxE;yt zJf7ZpJhkIQDmb=c)vJFtRkuIo-JkUYSI@om{LSano-Mbw-`?^M59nFGn5sLL@*YDE zzA=B-)0sC~t7`8zwyt%2x9{z~^~P;0BahsIzjN)G?@qiuvF_V;`&ef9M0)tdUEhgp z%dR`-%df>UPxl;O?-^ScPp*tTs2{%l{OwbD z!SICPv;jZCCk=U%P}A_pE;MzPG*aL4R^QFO6&q@E`&WnGI&kwq+SPsQ>_2_#Zr{;t z-L~8Q%;1sq;E~j}qp6x>Y$EwU->yyhcBkCCf8wdVUpt)j1~gIrhQ(A@xqSQ~M!hau zx1C;mBt1Nm+CG}9Ij+>OHSOPe>)DiVIOQIGKstc-w6{Iu?MZukZtYt4ZeO;1=<;T3 zn^x!7EZ=p#?fP~_sRGPwa>iSynK?)PNr#Fx@lXcX1_%9V ze}C3Lr~|+wr_itynuBbxDHH5X2YWNY{psNTYt*SXa zDE!;Oh9^Cy|E1D^`#Xm5P?b!yuKWbuh?dRSCMP5FQxL}+frM&A&t;Vx72jfCUh3h7~1*J({2eps14>V_yq_B8}l{_*@fzc)$P}t^A37)3W1Ki zi$ZRpt|4DRp-Q1Obj$yCWu9utdj)6ZMiqrl8a{8Z^sRN|1^T_U<96WA_S;SAt%n}5 z2;N!hV$P{iH1VAEA~POfJ4ulep57N|O4xuc4GEA9@vR9w@@s}tO0I|@K|{!{MM32Q zifCO;K&_{rg^|#b34dltJs_MuCVT;i9)fCXIk^Y8Oj|i=N8AwWK}v<%zWxi-0F&Am z8RGAVIf-0LmRR+oxty$H(W>S)2(OPWnm#qpb7o=DB10atWRJOY0|WgHm+S@OVpnS~ zh||W3Nf}HL%aS8D7_rWfPOjuCC}mb_ir8j+CE4&8v42%qG#}G=HZ`}#XF5J*HXQ|R zX+4C(z)+5NhD=7Edu_ZIElEJpqT^j<-VMT{{j3mjhW|A{%1K-3XmpkY;4oX#nGOh~ zFG5Kya=;|XDyhvC@jV3AU<5ep0lGIPU19Z*qL&N=bih_P6{7kR;w(r3q=S~$GEnuz zjwtoA)*v@05jdjseCQ3#7+50`0_bc>A!0;g^Q^q6nm>V60pr7aDMk84@hK{KB^sA{ zSxrO-a{~&kKj=(h5pEGN7Mq&A98sn51$miTVsopYZJ4kcH4(D~VK%gatVQ;k6m=ym z$5@5n0wj?s<{_$Qq`6iKq!Q?4vRINK3fG!t6_sxpulO{x5uvI}#t&j=dfzG7chMBZ zxN3rR4IId<1d|S;_Q3{%4rN(s<|!*Lrl?Etgqgg;R5j4M@Zn@#x)=tZb6&!$E37Iy z-Obb!3VWjtAk#j9iL~IdU2Sj~|NO4$YMc7=2 zIHQ(4d7K%-D06`qLj7Fb(utSTRD&wp(JAkRRY!aZHdWLs6w`(`E@M>)Fb8=RKXMqi zWZ-dGlPv`)Us^&vu|8!)_u^f?w3IaAXNve5^&)9AN#8bz(>Ns<2&W5QfNpfjP+(qV zC}&>vu2RqM7;YGV6&uXLg762XD+YNHRe?2P+b2=pP>vh>w=se|PA{X%>mBi0$YFZxu3`BtzKR8n#-7T^`I0aiM~hZF636o{Cdlj3n$zj!YO{i^V=TX0t^rXzWyp`z-ImeH)ibZX?y$H*a!Ch zd<}@GhXKLv%lf*m*&kU2e_++Q?rUGRe{6Fu@BYmtfW^r-J$G$g+4|vYo(J{&GxbN) z^+)fc+pcwYV-}V(r>>n!6AZ1_jjg-KKxz}=3i{UK`mNJnIgPh;gg&;rmQQ}olePP^ z_R5UCA#HES+I{!!u9RC`x3{jHO4|pr_PR$^4vRHk3$p*}Q;e*d!pLctNeONABcNL} zJOecmEYOV;X2~L1BPNp0;>pII%=ENifu_xWRJ9K&uo+Fh$Pm;>Y$|*SGBzNrI0PMY z44)EW;>enrmy*DT&=%Gh!^PMwiN8mfRWZhuki{mg;{18CK8bUbHkzy8^-Xe#QLcuq zR043=sX(GfyQvf(57|p7Y@xgokDm2xo8};?*ZthS$w4*|x5fIk-A}&)mhySSnC7=tQj3wedyV^g-uCE@8-- z5r|0(nI)?dXNg#0%x#1D2N{vrdF-?i^pknQQ554qjB~+?<=c%$l7D&_k|<_63|q8f z;-gpF`^EDM;tOXA?PL4NtZec;&K3bn#C`phbu_V4)^_9wCvfLSdw<;I51 zb~uX1652dUmynOazZL;sXO$7I0q5ye1uOn!$g>2vdEYsLvOuP@mytb zFPV|a_!OaB^`bDr`vxgoZxq_;YD$H|%|+cvUIbQ;8&3+a8Wv4gVQnkhd3e$Ik{VxZ znL_p^w4t!8*fNDovcfovp$oTl0}?*EagtHTv8~erp@|{_CHxX()bzpy8?YiOW($ST zrczPa!QnO?dQw3(x(HXPpm-R0$+>w@qJP{?>``Uggb@d5 z8ZPSA%8bK)-UN%5TkU(Cb1 zuAzlwd%5{8$wW)N_%%tcxbE4OvTtLr37V={D8si5Vh?4~-xtVStn~ODy8S-gN_GuG zzzhq2hMK&HCla@qv1_<%EqxFCfm9Hptbx1*PY|w%9jT5z>6X2D8$H{FU~8&%XF9Me z@1SQViBMb=+GezDS?x}>?@rh6*%0uMw;L^kYk^eHp>*pLj}SA+_aAD13V+(AS{7{7 zqeI2}k7Rb>2m}8Y@kLA$WDwYWxS=9;95P#s*bw6=$62#|%Z^kR3ppYJ%ov?twWzw- z3Aa+SpVjQbaivO@6DE-5>Z2WvwOClE5p}v@8tI8tpuCs2q=u%=kxJ}*RS}Qmg+XOC zp1pYX73H<^Qb?;pn!hNm2C>zMt;Hdwnq2kfEi1_tf~7W=WvQ3~2xg>?!tya1Lp%?{ zB*M@icH}F>FET9?an`VbiYj~FI5#(9Mn;TUA-V*b57hvj6Xry{6fry`V*9oUFD2?w7ix@Jhn)(&0Q?OZ=r^t|wG)YVh0G%KcTW}rSrX5zBJ8bo!#Z+rS zrRFFZMUssnb@v4hRxcEFfr|@X;3lES)vr|;??0=;1x~!Z5F-Ab*HC~~i|SIeU`VKD`Xjb#3cB4CgTDhOFQ$X>zBONh3yR%L)XiEk+ui<{4^ku@weCN-Dhr|vq-f!%F zbA0*9tjnKrHQo=jabf;?U~qZtL2yeZxHBExxgOlTT=^4EHO@+88$#LImTY}jwry9| z7kpG<^E&f_&Ee#jmwHyTENMZoW%(WgSeC^G&ScVzF7b;QF&nifA}Y0o%7{uLXW7LJ zqcw?ULX#`&wlc?rH*9a%r%X{;27Un}#cbnjOZG+kqV4O(*PUiz3KC(+tA$Bzi7yzY zVBN>#uV4Wuzpep}0wTp)Nxn46xN~@D2S;UE24XB|h4Hnl)kAZo=&>Ppo0oAQk0@T9 zK@_`7D9`Dr42g%nqQKV?y~r%gaW7=~phDp=oP$o6$p=*yu|hq;z|BFOliK+Wx!Om z5dAg*>J$pXLbP7!+Rus2x+YkGx>YOCtZFP;-;QXHYBLI%!IptruiWcA_{e1Ja(>u( z@Md7uw>q_abj5e=M5^=PClpQ8YWvSYMRYmYL8Tv59QIlnyH#XLO2EOu_f>R=L~=8T zD7_T3P%<+uOVi@aqX7VEo-$q_aK!!%Gf#7YNZvf7>>GtOzpE^aY2$Sx3H6pNOXdWP zCA*;daH(PaH)4cZ!J?}b7L8D^C`(GMk4_m-Z{Dy?L9v7WKxwX+jzWF2Xa$dFc-^&V zMyr)*)ee(VTfq{u;~gvY7S#}9RU%7`!tZ-#)s$+O+KkDCN9!u%d9L3&9^7AoZ75?P{DD$NC-ub`AJ&wK}Gzh9IVK<(eA_uQuzh$+#OKME#J>*SdFCwy`g75h|KC1XD%jhRNc0F54eg3fqnw?upN( z2S(pcto_EV*7sZAfBApv`@O2vz-Y?elop@6A9^BN*PHd#-PnJ9KU4Q_O$WC^zu$w# zw!k98TbrsKzSHq9`hU=W&oh>?kNy0U7NPyL;pZD(q4jwKJ3{z&^O2qAABEgU_E~?l z(~LV4RTm*VZNFXy+ISqoTQce-w7%yq!GVXOCoXF}&$Py65S{$H1!&D$PJgVSE}KJm zj2@X#ZyB_tA`}-8S$U)*8zW>hZ=0#bq?cS@Ig=n}i(TdH&v8J!Y&o@6ve><9J1Io0 zDpLWGnq!8n7)mZReaV?75F4TW4C;lKL;+xlMmk zLu!rc?~*HGE2^nO&8h#Yd6S^KmfVZ3MK@?ULpdvW&{*ba>sg`jSUl`v;b^5`3n*(R z0Q+9kw=~h@s|L+J)*cR_S*MD%M=!^i-v*-gFTqI$od+Un>jhw>7oe%V0174s?h?{C zFr<(fA;eKvH{%c}tW{Q4<{l>kPAAI>m^8lYkgk^7)y6MRT}0!=%+fh{lKeAyKK1DW zqsL_&0VCFi6Ml*Sm|i8qkN9vFO^(7G4!jYOUXU&lQ_K{hyb};Y7WCm9-c|1$QznzW zED?qAy<9g<^^X$m$Tad~UPpvwZy|rqbj1v1gQw|c3M_Opr0U<$18t1Lvsc0kPy}mQ z=Xs#*(z?h@K&?foL^}ni)pTB(3e#yirU2%OZ7xaIHVCfJEmh+~;Lgo5xr&}%?+Q+R zCCDiFN|;YJ)yrl=tE*tl&Pw21aS%^>c}fBUiuoX78Do!Qqaee%7Nlr=SXG+#T6+V< z&bR2`84>YChs~4$13VOt8fuJb^=O?W*ai4dOJqvHROP%88a^pjFr(n!nawnG6!Zp+ zJcm6iV1I!@3q-r)RmteXy)^_MUqp@Q1B_hUuTnNGYQ zvzgYL!rO3&RQMbK0+ycyD93MR;z}~V~OrhK0(-lU?$8C_F|5an~e&S&+((S zP+5{X99HU@?wkc`MO z483cpo_|cS4(>XKa=k*43lwQ(mdbH3p78tg8bve0^*n`$vJF*mQuP>Rb~1q@=XhNz zP=fK5iS)}=an))8)64oVzeI_qOLCOA=+(M0skH3{PEkz_xB-HbR`Mi2;z@D}bq%p! z&K>+qL?;`|5UCoK{eXzlXK@2jx?iZR&(ws{HKAqa{o3Ga&)4UdUD;+4I{n5bB2hKX zJ`9%+ymsJYe{i*fOkvmk-OD3+qqCy=fj^k>52pQt*+ARcu}sIIbjP6$laX0%)>W^V z@_v{PWISzmJ#E>J&Xl(`>+!$w#>ff^8w68VauK9k;_gdBihgU4H-A&bX zr@T+5dY)Xzy{PEZ}0#1!IW3L-z2752XD8+-gmueM{3vc_YLV?CsU25t~(z1 zTUPp)kKS)+UQJ|Lwx?TQQv3bW-#fkDa(KPrNXj0_*3^BoeKqn{>}G7ezAs(Vx9ogC z)&d}_n;2!?l%{|O;k+h@`q`sa!QTwq)Qal+wOh!r_?7Fgq-wXoUbw3Zx0%iXH6-0)5yzVI(N0pLoK9{j1EXc~bz(H)BC3R;idXQ~ zgK4=RY+RkVb?y(p_|6ya1@|vkW<3DaCazm696OTfv9YFA%eW5!edz_4P)aNlxKRF* ztB@xt5VPQ9*P;nRdZh#j>64?{I3DF1`C<#k7s}|>Uf`P^wAK0mLt96zE7QkfX#Wj` ze@wS-x~<_>tfkG>mNx)MhRTd_`K&`U%w(7XqyVGi&Ww04Egrm+gsD8n_5oRh52k~I zsiEWR!4u1sA7e3N;XrEJ5CYpsQd>Bg;d(#I_~_{Pc*ul%sIHt2Fy~@s58O0?3kyj6 z%*EPQDMTkPauwtyPLprTZItkj=tg2Rnb04%*k;N^8l#*~d)>2~Y(6C|F!(GOy^p9| ziH7kO#nEknP-7G~(lBzn6l)c9h=V(_&F$GOTeG{#8vdcD)#7C4-1vpYF(9tF({+7$ z8$H^EKx5uPAtzLkc^8Fn!l7~XWTtUAjsLzK`3j1x6sm%&wP~-Ir|QVIyZMtUgf>h9 z+B8z!8H3Q$LCsQ|0i{j+k_ma!>e-u)yp5jhz)%_A*0gVH-a*eWByY^SDCDLtR8Xj( zHG1ThnoBWoa%b zjwdQzovQ9iJGwV)^jz;j*L5{5o+wMxBO5|o&`)DOg+J|552kNaV|f*;SQQoM092r6 zC|4~|a$2F}v`KbiXQ5n$GL(hjA4X!HBqNRpDLtV`op4Gnc#+x0%DN;sd6Q90gGkwG zC&j4BJWoKm3KggY=0Wfmqs4kytQWCRlxne6Qq@d{)_X0$)u?ElsZk4ZQ_VifPyIwq zP@`&THLQL;4a!t4t(K+LY2|zcX#tjIMQ#3q*kEKZQUi5ty_Q;AklKLMI;1uh^(KIr zrbtloBeoemug7ysq(Q2aL^iI}a~48cBhp$UO)!^jmfGN_6J_wW_K1l1c6iWiW@!$L zatC`?D?E0ZCpuY5agAzvJJPqnlc&h?P+MwBCsMlLC#ZXdbWSB##Q5G86_G1_S4)~B zT?OylL+}$BVtKmJudOq5Jg($o?-@dBpYq22%m=7tV&GS4|JQ0^8(P>}0DXgzUTG-O z2iPtgy?%_rcBt03%OP|*xyFphh~@=jsJJ;(xDb{CYJE;p_*uqGlO^;5_$B6@gbrp( zQx{`VSW7YbeRh8SMPkE1zO#)?tr8r^0<7G^jMckD_NHuKE67gzQF$J;Ea|5i7s7Y5 z@mwW6!IV|;yQ#bT(0p8h@gUclInR_T)n%k|{4vgsv|atrFap@sEoD{naJC3VN+YC1 z+K#U8-Rgqc9HUWL=3>J$rfDSFja`eRX{3JeC(w_7g2 zVVZW3iiIqzqLn1p4bI4vNg->xQ5JKQ&yu3R@8vCmb5t^F%@8ZXxJ}g^DoHaGo?C?{ zae$vnhEPlaT4EyMj|i`dQ{@1`P1P|LpF)T}8~25TIu39>_Fo>7@rLq3PcoLASfC_wuxMSIxU&;qC@93%fFB~_5a z)(hZD*(wRyIN|*7DV-Uq5N=~R<&P=UhubEfINU0)_DqqfsjBQeMU-3w#X!kz5!?+a zSKIyOq4nnB<)1{tS>HOkT&a1<5eG;w+N62OQN8ApvH%`u~lg$UA$ZV9LpVr_8sfMs#O=Z`sNnfWhl+jiiiYOOi zwKb;3K_#d;bX_tt0~&a|!OAt3J5PpKr(RMGA(p7kk_-Hn(i-tv;c2W&&G@Ex*maqY zs@5+a3$EAKz!MTB#Z7R5%oQRXh>41U@~oQgjP6c&6Id!u{{P6v2ds}~?gC2~wg$>A z4q6vjJf!^K3sWn_eM!+;V~YnKM*o1qtdhT`5L;$cvF=lpi%y8SNcxMXmm^a;trLF% z$yig(MV2lf*Y{`ZLz((r>H1ySw!uu>@pRj9xByiT%KEa6Tgl1=CN9D5OmIg!xFg%p zlWEwKZrGD;AIh|krQ63!>|Tnr$bdY)eCiQkOe}s&ud@O_o?~EV{Ywoz*&D;x=taSm1Z4yMAO+y4#-iv}Ziq(z@}fOjQ&KUQmRO;}!(ab8Ol(2$f#C z0nq{T~4AJ{{G`$LO9vY~Y{ z5h&YTHVy1U^duQ59#}p5KPWq_ThpGcDf`yV9X6w~cKmJ7#H$7w<$$0Z0GHd7aDEwk2hP;#^q%4G z35rn%%v}mk&YAh_*l?PLIl=eg9ONYEx;VMofJf&GAj;(qbWDM@oC61AA;pFuqY&cY z9#knq$?;9Ax-jwgX?SR%G8+#j!|6*0`#2WL1jp_L$Ck(LS2wRYQq?`{?w*Gxq5h;n zG5r|aZYYn3sKQ@w<^L5*@^e9@(|iLd$@XHnyOR&htz$J4zfG<5;|x~ z+nYYHZ{OVYzXeRo#+&VnC9lG^*iz6bQhxp8vg16I_6()$Lz_GMYmBo@ClKZTR&JoH zX#9%0lWf^Mz(pDUS;4^e59tG21`BBP=-)%zj{{_wv>DzozG0d&U&J=@g$5XHnP{ai z!N=gDF+uOku5ws`o$QBf`0pEEZ-U928D$Lc#HZs3?KHn)m}XuwQJyQxCT^Dh6YA#f zCr(o6PjCYn!*-xQLYTgzz&^%c<=(7vHt;pj_s2^Jnp}(OCslDKJQ;s6iUX?=#TijN z*;hQQpOXCtG{|Sr0Z>6!VM|Y@bJyL@UH`>m_Bnsjxhw5$T`{ceT-}-V)O<6L3GPh? z_ulpF{RHMozHH|%m?=5D(4+XAFsby`u3Y%qms9rUpFeUThV}cpcv!GAQ{|$4Tbr); z&~VX-pJKtiHYLcWT;;wBQ6$XQr-TXffgGr{k_)lUk|;bPwjA3~WV1i6nsPsd0x}I; z0gI;)u$2`1m$>D8%;t<6g{zKKnU@hx(-FJL+#EI*vI!=5q7ke@~sZv^|ZhP(hd7{`>OvNl~Cqod>wav9b^i5>iVfQ^9TOU2mXc| z7J!CU(MdAicJh+0sFghQoc-llZ(&aaQ zxS8EvfY3Fu9*Qd$$OhP4tBO9rQ&}RSESzYl9^Z$-zmRb}S#y?D9!p=s`LBZd^1&2t;@Z7c)Q9@IA~AF&FrLj&4$DO1`13zA^61geHJ#&aV5a*|)Vz4WPw;I~86jg#Q1}!Dy%Vzp3g1bv-4#=WX zs8<9dwjn)Xc1 zwsg%lIMd4pnxT#MS3(G+?@6a0EU?b`yU2w@?1K?r@FpqZ-HIR@09}1McMk z^i}kawj)q{!Y>C>Y)akOlnB8n0E4311yO@p(<@-(x@vemfNiA=qAA*XdT3i=8_F{p zWIzbdK!zb>h}mK2N2Z;cbdia>$I60Fk=qBt?|=_4O>!;W3ik&#^|VQFa}EXs1TLF) zhDv3Hb3!AYY%Ja!ic|j&n)1`A22<`9Y6Hto_T3vg8@=|-pZm9Be+V>Y0z>J*(Cvdi z99|EcSRRA*5%{~Tw?5--1$ns^`oPN8I^UZkmAQHDNNt@n$u*{#zEi=yWK|sITHw4jdP2*d^goOD}4!vfjnm(uET^ z6+EP$1KlC8wpIPNnv7p4mIxzZ80lKFL2wz5=@`W$c zc(QL)f{Q5Hc~lQYq|0MUl`uT?EF{%UiSI}TnScPEKlDB6KcZ#m?Wh{?5bP@{lDv#a znU0dk?Q{!JA%)a{m9`)gJmo66)J81?7ocdG>pO`36=GL zZ7-~m8h=_*@Sxa)`Td87Og|d39NurksTv!Mr{efZVi7G&yBCAl0Pc)A#o(1*B_>M> zL=@&Ki(CrCRDT0L$Ed4V3ZT!F(00Re2PMk6vx}H;n#`o1CM#G4KDF;al*;=qS$>Tc z%#Ue-J}^+DwxR!mkteWa*P=CIdC#h@CiNF*)o6QU*9?RJrB|X+jrnD+{^i)BO`gR@ zg5#ptDxSdV#ZitKQ7x zUvfok5&H~rs3q5;=F(6dA>bXHSm(SCj%Z*TYh+zz#}(}4OpN?LlMy+ImAQ@_&m1A?G}U1o4^T|u6_4U< z`<0nDJSgBvi5C;gcY@9h78r=1mAJk42pRLz8IAs;?GoC1>NS_|kar*`u%kE{Le|l7 zCuh$@)_9m1XwrcWH5Ojw2<1YKOjKRYuTuxySuCy>g6S$qB&^p|=4|5-Vg6whXL9enVA<#VNki|7?Z@@4pe#K#DNie?hzcKPUNY{E z2lcIVimvm+hTflV&}h8c-dQaD{(oVJptpfXCPvxG_zd*l+Gy-89gUrj8x695&bV8Y z(GY1gWPF5LI7hpcED_{O$(qyTx{m`QU=*(UiG7tPF>0{(bRaudba)h#ABYI(yal|C zPt!RoINOETfqgnHJS(>#J3OYtuMSVJOkIQ{{agieDo)X4c+3e5TJcO0%E*zNI~pH} zQECL{DLEV2RDgQPS&oeydFD7{TyiF?Wk%SdX&PGcoSt)x@Dn?5#l8z&W*+<0W2cM> zV$@2N(s_tV)$Ui9K=5QVLEmA8L5DtXh|77{qYj_+b>qavIAgfVo;CHA0qRonrc9P* zn${Q40npQaM#_+V?(N?7;33#_5S6km-MB5&_(Zz#2?*-$xAtUOhtjP>%>Q(E+S`p2 z?jVHPDv5+SY}gR2O*s1*eB>3HyWX0-IhkqNn{L|sP+2@17A&F-!P1O8^*A5e(2{By zT(2Km_Iw;@eamyxlL_od2X-JkgDzy>N!jT`n4pLnS`_i1yZ*krdgZ_^$Pfl}r+n_} zjH@~AYX0UG@;!df)%U%DtiN`74{PoN3*YZr$^NA5MRS<~}$q)CCqD-w%B+bZ2CJ=*T_yQHZU*Eo&`YQT($< z6+)mD{Nbj`wx?US|G9q{EMwIU#qG4Mb0lE=SAqUfhvi?}4Y=zLG>XJeb^sM-M%Z{A zx5sH0K=^A!TX|9q1Pd`QB^N}URDa2Z*zy7lvQAfOVb4F@NNJXL!4et=+_*=H$vOi9= z8Zm&4!{E@xBwK{7N-l^*iQp-@5L*r>ncx&ese^><ZOmPDo6E&Vg;K}1EY`uFExm<}JGOO|W)tNX6muI@>Ytq{9rG=@)&K}qxswu4Y8 z%}_-pmrC8LW2U|XUFydG=(D&!mJg*uePMtL@?I*t2WL~x{+hMBj{;C^(42b-{VKC@Z+8`Yf9*veN8p{nHnc20&bC35RU%p*H; zs~e6|`k(Yrjp|e9I%riB%?rGg+I77F}Vnh~^z9a!_dkvqd>c8+~Si&gIPZI&H zA3}dR47c%d@fdhTIf_%ha5jsR#Qb|hK=?<1gq{Tzj_AX)WRJg~@S5N~i`}FXFE|Ra zy^>iAK}ru=IwsMljkL{poPVAgG%H+Q_G7Y&ctTpKB$nBrEuFr4S&s87u-V189NvJ( zD`qW$H3pj~O}VbpRuVxoIp;AXG}=ZNG^x21r$~^8E3SN?dI_1w8QZ~5Bj(Id zq)H$=hR|QmClCk7KMw=}BUl&JO$-Ks{140j3h70rRbEByu4arUcNbG2Y$pIbT!v?O zQt0ZuXKBe5V8r+s8er1ysv7##_I-c-hl6|91N*)gymk1SzSYmrCv(2ld^?y9?7QC> z0x@1w3l}a`)t}%17zq;n^?8rIqVngT;JDX*MmGI+<6)~iIewI#-B!=;1M(E11lI_} zp%;!%(-*&pKq%<0*olvDF)w?n5QAwRlkMYhlTTj{Ao(wyBUfRMgD0ak82^$K=}YLx zab7#}xw2A@FBHKL(YOqT2)cgTctf~myo%GV*9^EDua*6V>NVqw$Cw)3G=2{7%a2-{ zxVGv|)RL=;a_t5pHFaMstF@rBa9P^$Mp+IJx3KESr^ ziD9*%jx`6E13KDKv$NMI(_S|`sw9ewhpM^vsKc}fqZmz&li2jS)xN=N_5z!InP?8K zq+|=4lo2`mlpMvk*C9dp4y6*1ad)zer~iF=ti~;*_?A0DEghxXtBB3j6jN%X$-t=- z`6Oj{l5W%$`7}a>-sYZofq@%iJ<0f)b?{gO|?*6bEE!x{jD7<_3KrG z%hs&ekr8*N#oai0{>F)GC$hD{8*|s^h$XQJt?*21ZUsr$1d_0RAQL>04juq|KfIgH z=DR90u7D|@yt%?r`JVmW;Ap!0cwWH6zdgD^KV-n(lyY_4 zYEFd?fgOM2scTQcA%4}C2VUQYUL3FAnQ4Uw+(YZFhu6JF@CAU1N-)&Eu2kss`)A)D zNp(HFUVS#@K1=%7gZJxN?uk3n_{^3GPY)^v{;LJQ@Mq<%OEvVS8g_r^>Aux`&$Ii! zxAunnx*HAE?0n$w%=+6h{+_hI2leC2V*$Y*c;phQ>eM{F$OBC-lAK8TiK}Dni}zf^ z)LYmgWWD>KeaU#Yq`h0z9xLDeTKA5jSVbijYfHIX3p78caLoThcVnt)DARN#-E?HV z>Dan^1iA5r1E=8WNhwCzA=CKyxcapV!d&C9+87TFmpjQULo`}=Zkcv4enjZEDKtU1 ze@8dc6EHqGX9uqallQ~|w*?~_l39_{r}FSUahacPW}r^i+ROr)uYsS@;|;p~Uvy)< zwt>LaO1CE|j)~vuDa2H}Ow+F``I)Ad$f2Ina2~pg&Q2pj|1K7L z9HZm`t(pNXxmQo_)slOaWTR#4>dUuGHDa*8;aX-fqqd z2;M$+$N#;P8x+ioR!h%XB#)9kw@G6oJqIfDc|U`G-VrFsD`HO;6e6VkOi^%9t`=_ z=lPVZ`R~ESw{gfaNN%~X- z>FhejT0O!~c?pslH(V5I+tjdKt<-NBHLzMKfY~Uimcwkq+#P&s^o=vHPnTBLWTO_u1WjaP6hva;1a2L?ru zsQ9iVBWSqiV>VZY*WHC|Km>}SdacZ&;YHvLSZOvd;v>ZdSVlnes51rvxoBgovt}Cs zCe0lFuRt!N#Gvtmq~ypN8ZsPLW;#0V`I~fNlzfTX4j>W2ocS0L1?;P|iu6m7e5r3v z=UMkFMGkJ=uTU=snL2}1gJPSSvrX*A(Tuqee5Gg%9hqgS>0IBYRIfG7T;lR0f1lDZ zesWuNJqOAu1_wx>3qgcUk>fFD)x+NhMgkH3rQOIpsCuINV-i_JuyeqycifK?3Na^7 z@St=df$tk|4uE=1-$ca_u~#JJOFy~JmR=5%v+TW!OR$3nF%AlZhzG>3>G}D|$@5{k zZ?Jz`7i)!b6u+vHuMgSuEckLPbf?soN~2H4rAy#EIP@{MX#CAsChnhWH)|nh=o?RZ zMeRKqTSBHv{|s=+zHTf38A32{eTFt5GJnn)qMVf@k(G#xlWDc(dm%rMa_dBqokez- zhI9y3^{d@~?rpzjUN$TbW?k+T(`z8c{P$grtIw^SU;B;K&#$|BZpGGJ`?Eg(YbRjm zSk(cF!Bw+rUrCZTqW;w2;Z)6$b?4EP`6yd&MQe-t#n#q21a83lKmuLh7kPYF1uzi< zY0=3E4L-__HAHI+&Ve8;X4Z$;Qu(D>9~w1%xGDLIGsNLCuu&;;V&lNiF@7)nOM#w^ zd^x~pcF5|qJ#ImrBdFtTL9W6$?S65j|3W|b#`(UX{y|p#FIgxWMCou2j-z00BOKM0 z-sh!Re1V!Q-S`q@F2z8jv6uq&}aEaFpf}@M1RTsbQ_`@Vcwhzd|sHH+n3@p0Zq=D zSRi9znV^V&wv;hMWGKX09tVX;TqC=1%hljqSwGfYECQPXj)SN;(RI1{vT6O~R-5_L z$u*SE06`Sa=2cP^P33bagDjKXn(U=p72U@0Vz~e-!bMQw*?z@kB95yt9*r|^e#%WI zI!XgtZieyub@vgB;3gq%uDQ6{x%r4R8}A1&@ectpmNC~}HWQR5KrE_{14gjtf@O1( zI-Y$JHrHAiU{E4oFGjQOF>h2xVRiX){Y z-;M11F=>})rGxSnWWj&9g~lD2!eIDN==w{+^<%-y{#X83aC{`R{)O;dMtE*rcc;csKi@^xZy21EUw_q4CAnGIG0MGG}F!GVG?;|R(?IWQdWj+%6 zJ`#pL5(YmK4t*pX{E5l?k$Km@cOJcJdk7CqzLnkUj>fCj2QKeQ&5C?IxH_`dz7}8W zzWG$DYHQlnd)1z;ZCE|J=3AS(wf|1whwVRTdf%REJd>{dOiJ*9E9(e7wDlUiS!ZS5 zgx?3%b*rY;vuo|E73u0Nc?+U|GMiv+Lm_Y`&J71bkG^QI8MZDb-dMP{@JK-Lr~cDM zL*GMz?)fj8j~fhrm?@-c@SSUL3iSBE?O%Boj<53;dP1eX+PsYgsn(RUC2bKm94z9T zQ82oGYP1=;@g)gEHz;PKD^HI<^>-Qu9}2kr^o-$z$>4k_(EX>+T2EUIJ!l>G{1@GI vhGT}cvw4Aj@3iyZAGU9>=lrn8;JbxH{QMAU_<6rOb@thR)AxwNY{LH^l2$T! literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa781b0faeb47accfa8552abde9b164d01a29086 GIT binary patch literal 12516 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 Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: "IndexContent") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: "IndexContent") -> Iterable[Link]: ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "IndexContent") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: "IndexContent") -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +@dataclass(frozen=True) +class IndexContent: + """Represents one response (or page), along with its URL. + + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + + content: bytes + content_type: str + encoding: Optional[str] + url: str + cache_link_parsing: bool = True + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> Optional[IndexContent]: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..0d65ce3 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1020 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +from dataclasses import dataclass +from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from pip._vendor.typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if canonicalize_name(wheel.name) != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + reason = f"{version} Requires-Python {link.requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Optional[Hashes], + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +@dataclass +class CandidatePreferences: + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + prefer_binary: bool = False + allow_all_prereleases: bool = False + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + candidates_and_versions = [(c, str(c.version)) for c in candidates] + versions = set( + specifier.filter( + (v for _, v in candidates_and_versions), + prereleases=allow_prereleases, + ) + ) + + applicable_candidates = [c for c, v in candidates_and_versions if v in versions] + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + assert match is not None, "guaranteed by filename validation" + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Tuple[Link, LinkType, str]] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> List[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + try: + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + except InvalidVersion: + return None + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: Optional[InstallationCandidate], + ) -> "TypeGuard[InstallationCandidate]": + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/lib/python3.12/site-packages/pip/_internal/index/sources.py b/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..3dafb30 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,284 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except InvalidWheelFilename: + try: + project_filename = parse_sdist_filename(entry.name)[0] + except InvalidSdistFilename: + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..32382be --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,456 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Generator, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7bdfe15750b9f97edb7ff958fbac8e56a149f560 GIT binary patch literal 16432 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 H4=ngU7fUMU literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a9d92cc3754507feed961863c546df3e16368909 GIT binary patch literal 6783 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f26ff84d46f0db2f961c97849a2658f6df511604 GIT binary patch literal 8020 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be4ce903832768e75ddead4a40fa2cc80be2b6db GIT binary patch literal 3773 zcmbUkT}&IvdDiRye;~w=~_Ot0ZcqP+cGL-ls-=>kHITi6-1r(@NJT_sGL3>O;R7d%+>7k#6Lj zZ|0ks?{B{Eo6mm@1iT1Z^XHx8|MejB4>qxyvp(4VrGU^1x{4H}2zivMK_MmZxh-Ym zP)vy&+EaE89VrJuTi!Y4O1T7fM$EgXJSh(!+wD&L;J|A(1CE< zTZn`NCP&Y!6jBGTqtD(hp&9WyDhaWsuh^E$F@ZJ>X@)81^RlVx+C@Ti0!Wu!C@3m1 zVAw{Anx<;w>7u4!lAczHS(Niwo2FtxEl^jXNN`>qqX9!Tak?O9CgpK#P$$7=k!YDl zNko{iZ=0#Q0?H~vu5rCSHfHH(wus+lwjIHSsW)i9G_ zpk#q_2jV?RW~vjGsghvEBv3Lj(d2wGuV?sG7|Ai&z=^^vjf`V6&DBeD_0o0jqzTxz zz-JtWZUI%j$bV?Dcd5VJ|JzfWhmUU@KECdYuiN7!1nbnT;ZmCDx=Gyy*__biDV*7{ zG;CmD%5Uf2JWNfP)>^J{R~@GalU)drv4&my+*QtH(b$DI13}(xWnO#@ z_5Cd&Hs}zr_$#gkTKnkp8%S)w6D`R;7GfUx#~@}slA@MtM5U5yPDoM9X`)hr-~xsm zpd`FJV1}|%!*11(AP<1&PUAQP9Zcbee_m9lS+X!CQ))d(I_dE^5;aYG<)b?aYwWp&IfSpqMSF*C^yw zQz39EgoSp@PMQG_mNclNhG)6MV6n^cDG9R`Urh#{EQkaczUMD6SU}I4k=y&L(l1KO z(Z9Lcw?a)zrE+O$zC6GB)5oFCt(Ml6-dnvZeYg7Vy4SiYEvMG~r=Goxe0cI<&sx0F z(!1{Oedh5kMaq%o3!fg{YCCktb=$Ss*1gfzy>_P3cDfu`Y+bfL@r9O!a__S8>A;hg z$f~evTRyXR!D4)~d~@~EU8NE_zV1H$+=)Wclc03J`9b7fzFC1vlcSc2@hwcq)^xJ2rq1?9nYvH6gOiAixnttydX%rw%cI0 zUJrmEdvSM{NDP*G;WLWREubye(Z{auY_&#KuHCw}a^u#G`yCIu?{%-?O6%#ex9YTe zej;qOAHEa09l3Ml_L2Kz57c|=?V?7H`akuY_oGMtH_x9CAH@aesi$Z_O~%Rz zRZ3 zyf%F0M^G8r$85M&2ZO7xNALjwi5n+#n-oP@8cw5Z%|LRsAWvxY4FRZcBVeRc#?$k z)M?HZz=LQTxKLuJu1esU3@)%5*Wjs;w!FN|6F6a(pl|N8lGv?#x!=(sw|qvd|;JLv|7tO{?5%aP5d=tfg?%~5Ge zECc~}uxt7HW@~h#HM-`hwDv3n7L5w(sX86PiMuV^2tYO5E_hcvstCYZ3kMHj1!mPV z0U^37ZX*Cy$srsCdeMQq%4TQ(MrVJe^SyIJ@C*cDt!CS$PhnRjxUl{E1`*XbG Rd>lQBHw_~3(SQK`{{VvGWCH*I literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py b/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 0000000..3d85625 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,172 @@ +"""Locations where we look for configs, install stuff, etc""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +# If pip's going to use distutils, it should not be using the copy that setuptools +# might have injected into the environment. This is done by removing the injected +# shim, if it's injected. +# +# See https://github.com/pypa/pip/issues/8761 for the original discussion and +# rationale for why this is done within pip. +try: + __import__("_distutils_hack").remove_shim() +except (ImportError, AttributeError): + pass + +import logging +import os +import sys +from distutils.cmd import Command as DistutilsCommand +from distutils.command.install import SCHEME_KEYS +from distutils.command.install import install as distutils_install_command +from distutils.sysconfig import get_python_lib +from typing import Dict, List, Optional, Union + +from pip._internal.models.scheme import Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +def distutils_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, + *, + ignore_config_files: bool = False, +) -> Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i: distutils_install_command = obj + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme: Dict[str, str] = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..ca860ea --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,214 @@ +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + converted_keys = {} + for key in SCHEME_KEYS: + converted_keys[key] = change_root(root, getattr(scheme, key)) + scheme = Scheme(**converted_keys) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/lib/python3.12/site-packages/pip/_internal/locations/base.py b/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..3f9f896 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,81 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/lib/python3.12/site-packages/pip/_internal/main.py b/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..33c6d24 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..aa232b6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,128 @@ +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, List, Optional, Type, cast + +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from typing import Literal, Protocol +else: + Protocol = object + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, regardless of Python + version. + * On Python 3.11+, Python distributors can patch ``importlib.metadata`` + to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This + makes pip use ``pkg_resources`` (unless the user set the aforementioned + environment variable to *True*). + """ + with contextlib.suppress(KeyError, ValueError): + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + return False + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +class Backend(Protocol): + NAME: 'Literal["importlib", "pkg_resources"]' + Distribution: Type[BaseDistribution] + Environment: Type[BaseEnvironment] + + +@functools.lru_cache(maxsize=None) +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d12068db0cc7d3e9d67b14df7eaa2602285d097c GIT binary patch literal 5861 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5a48705de6fbfd567ca41519f6c63d3d2d0a53d GIT binary patch literal 2918 zcmZt|TTC3+_0Dq_W|!p+7Ph+%c9I2_h0s)yOsO}3ofJddfQz!Kg@&CA49sJ5XBND4 zw&EkINMk7=Su$?Zdec^_Q&(y$Rce0S-~K?bTYTjzmipDdjj_}wUp;qrhb307G;_{9 z=iGD8oag*K8m&jLns2_iI0M+f*(O+W6*(k;+(H`CI0KnnhBNsLZweWKV>I3nO(`S! zxM0X;C=)WnnXp-xsWa;{^`??hIJAf~@z-1?qDeTa$vCJ!R;m;nia%5Pv*!-PgPoV7JPw^Z3Grn(Yr5*!UpV#iSzaYCX(+A2_S zOwYPhysSGem9AR4ZBa3+I&R`bf?sc(#ICBTuA2NICJyi}CU`1NsU~Jf=om3HR)xAbsS6Q5T>lh{;s zgYoJoRo!yo!9KsSwynv8F6&urIsU!%qlW4@`ht!L`>g2O_}#otu#+4E&oN5uh;pR> zw=!3)HyzQ&ue+F7s=*|cE5u&LS(ll~_6@LK)iuxsQbhIDACUs}4R6gmwt?N?Mk;|R zhDK$A-8`|f9Ls|05&;VE9KH^(TgXGp$GKIZdsVp1B%fOvr}6jr3UL~8Yl?D7%FTh> zB*R{V919VgGt?|jaHIpo9Hu}1)of}B;*oL;eF3KybvNbYa8_3h@KDOo=TkY~F+=@> zucRE^Wr54CK20Bn0 zKRo~b`47JPPbI#m#7ixu?7q^oEA|`$8&Sb@7Qg125Kw*Bl)+@ER?cN|{&K4yjF8J5 z=&wq(Y5XyYs0r_hMNUUW-VJIWjiGD5Lg+`Jp(qqZPw>zxN4Oh`TNh~ZgnQK>6eUk2 z=O8Fbz^lQU)EN3u&hm>W%U^?zQ+H`U|9?kmS=-F1u0C(zxCZSJ`VzFNe#$M8PEh}~gpz>3 z3_le8gmSAv1|v`{p#nq6)kRd~Tz1A^9;!L{+F&(-_@dwm8s`V8wGKXJnI-LW3+l6a z6O0sgg8RmF;yq#EnBS5zRxdom5_On*h+Hv#8rSI%_^z66v?nZha$C|eWKUm$2{_mNBPWC@V zJgDpL{du@70rr){%I^0q=|TSfppyQcbbo|{Hw~{;CnDwgr~+don57AYu-}%7i+cd0 zvB~k7^jLZ(J$LcV@ylb=emA9|MeNS0hCu~DsO01fodFj{GGRT6Doh}!7T9b})R8kx zX+LAY@Nx2n>(2lxnSkn40COm}N~KlR$YUC+o^x0yWC8J4B`V6XAdnH@C*W~pNbC(% zmK&t@k6!(4`yX0LU3*>0GJ^eIx(^vB$5BJ$#>LM&UwS{XDQ)Iq2IVT zj03@cC5rbYF)S%ruJKhHpdSj8q1%>;$<1)v~zBI_+a4Gzbb!LJ{^59aAE&sdT-#u z-NBt7+?l;S`^$HB2QF-l@10CPIeF&J#O;Y+Om2-Iw0CXFo6gUaayL5h^0OCFtmWp= zj&LV-JGS4M*l+0Bxb!I0a1eh9q>6jtQ%{tpjma;co&$5feAF?u2w#NRnTaKX;%L62%Aq-b_+SE2*SDuVZ}>WC@QJJ!b@IZ zFP0yEI{1P31d%u+_{9?*Hf=3$;1MzkG}d;U33!zSj^q9-BW`#Po&Og)^EpaAM5(7@ uR|~%pD-UyA@78n~0oa*7WS|`G<(ju<%LqWJwUoU(R9gD@^fR{gFZ(}0M$|F@ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..abe9945997224e1bd754dfa216a5b7bda5806a39 GIT binary patch literal 35190 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c1db3634ef3ae67f9463a0ec6f9fbc5680f95f5 GIT binary patch literal 16076 zcmcJ0Yj9iFdEmVOE^zT6Kms5LzQLymNhC#ywqBMj%9JeG7VSimVqaovLFgbxUg6)KHpMP@Q(QJ3Fn?c3L^^?7FkNvp}E}^ffbaW;3&!e~_q- zV`sLz-*@f<55mr5r#&2=d+v9>bMAS3=X;$G|FxmP#z1nvJ$PXx$T0sCU$n%jg$=?o z%nBng0vlsOEPWc(r!i!t@1~H6KDiJFPeaTcw}dQlKE%hZA#2Hod)yIn#2Z2l zEcRuLIpeO7iYy-dtTWyf>Y`;^tUDeE1>!xS9{O&N^~U=`eewQKKfF7HhS)%SFf>pJEPj1HO2oLBNCgeDb1F&Vkytb>3fP0(G#yDK6VYi33MT*rZ7eT}M1mfn z$jwEFBnFML<9OmCAPHZY5yhC?G?h$J%2!R1Mo=!;fb8|_O5)~w9-7a3Z z5ROF?uZHI$shRM3l8lFA$>|6V7Y5@HqS9O}vOsHPXF?kqeTRBG{do8i{iL6W5kV=3 z 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 Oqt{0NiGc^D)&B>5h3t+1 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 0000000..9097dd5 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/_json.py @@ -0,0 +1,84 @@ +# Extracted from https://github.com/pfmoore/pkg_metadata + +from email.header import Header, decode_header, make_header +from email.message import Message +from typing import Any, Dict, List, Union, cast + +METADATA_FIELDS = [ + # Name, Multiple-Use + ("Metadata-Version", False), + ("Name", False), + ("Version", False), + ("Dynamic", True), + ("Platform", True), + ("Supported-Platform", True), + ("Summary", False), + ("Description", False), + ("Description-Content-Type", False), + ("Keywords", False), + ("Home-page", False), + ("Download-URL", False), + ("Author", False), + ("Author-email", False), + ("Maintainer", False), + ("Maintainer-email", False), + ("License", False), + ("Classifier", True), + ("Requires-Dist", True), + ("Requires-Python", False), + ("Requires-External", True), + ("Project-URL", True), + ("Provides-Extra", True), + ("Provides-Dist", True), + ("Obsoletes-Dist", True), +] + + +def json_name(field: str) -> str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> Dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Union[Header, str]) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: Union[str, List[str]] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = cast(str, msg.get_payload()) + if payload: + result["description"] = payload + + return result diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..9eabcdb --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,688 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Protocol, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> "BaseDistribution": + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> "BaseDistribution": + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.raw_version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.raw_version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> Version: + raise NotImplementedError() + + @property + def raw_version(self) -> str: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.cached_property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata_dict(self) -> Dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_raw_dependencies(self) -> Iterable[str]: + """Raw Requires-Dist metadata.""" + return self.metadata.get_all("Requires-Dist", []) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is expected to be normalised names, + per PEP 685, with the returned value being handled appropriately by + `iter_dependencies`. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 0000000..a779138 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78d44db37e6575be6f5b8d502c9c58657e0d6c23 GIT binary patch literal 350 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9ad527a59b6b589e547d62d5dd9e7a70e2a8a78 GIT binary patch literal 12557 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 znE B> literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..465fc044c26c3c1c05cdd0ace4d6be427a886760 GIT binary patch literal 11071 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 0000000..ec1e815 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py @@ -0,0 +1,85 @@ +import importlib.metadata +import os +from typing import Any, Optional, Protocol, Tuple, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + + +class BadMetadata(ValueError): + def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> "BasePath": + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def parse_name_and_version_from_info_directory( + dist: importlib.metadata.Distribution, +) -> Tuple[Optional[str], Optional[str]]: + """Get a name and version from the metadata directory name. + + This is much faster than reading distribution metadata. + """ + info_location = get_info_location(dist) + if info_location is None: + return None, None + + stem, suffix = os.path.splitext(info_location.name) + if suffix == ".dist-info": + name, sep, version = stem.partition("-") + if sep: + return name, version + + if suffix == ".egg-info": + name = stem.split("-", 1)[0] + return name, None + + return None, None + + +def get_dist_canonical_name(dist: importlib.metadata.Distribution) -> NormalizedName: + """Get the distribution's normalized name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + if name := parse_name_and_version_from_info_directory(dist)[0]: + return canonicalize_name(name) + + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return canonicalize_name(name) diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 0000000..36cd326 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,221 @@ +import email.message +import importlib.metadata +import pathlib +import zipfile +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + Mapping, + Optional, + Sequence, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import ( + BasePath, + get_dist_canonical_name, + parse_name_and_version_from_info_directory, +) + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> "WheelDistribution": + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> Optional[str]: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: Optional[BasePath], + installed_location: Optional[BasePath], + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> Optional[str]: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + @property + def canonical_name(self) -> NormalizedName: + return get_dist_canonical_name(self._dist) + + @property + def version(self) -> Version: + if version := parse_name_and_version_from_info_directory(self._dist)[1]: + return parse_version(version) + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return [ + canonicalize_name(extra) + for extra in self.metadata.get_all("Provides-Extra", []) + ] + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + # strip() because email.message.Message.get_all() may return a leading \n + # in case a long header was wrapped. + req = get_requirement(req_string.strip()) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 0000000..4d906fd --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + name = get_dist_canonical_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + if name in self._found_names: + continue + self._found_names.add(name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation", + gone_in="25.1", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + canonical_name = canonicalize_name(name) + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonical_name + ) + return next(matches, None) diff --git a/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..4ea84f9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,301 @@ +import email.message +import email.parser +import logging +import os +import zipfile +from typing import ( + Collection, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + # This is populated lazily, to avoid loading metadata for all possible + # distributions eagerly. + self.__extra_mapping: Optional[Mapping[NormalizedName, str]] = None + + @property + def _extra_mapping(self) -> Mapping[NormalizedName, str]: + if self.__extra_mapping is None: + self.__extra_mapping = { + canonicalize_name(extra): extra for extra in self._dist.extras + } + + return self.__extra_mapping + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def installed_location(self) -> Optional[str]: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> Version: + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: + relevant_extras = set(self._extra_mapping) & set( + map(canonicalize_name, extras) + ) + extras = [self._extra_mapping[extra] for extra in relevant_extras] + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return self._extra_mapping.keys() + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c802ec7ebff3bf2899c2655c0236de651f47e6d7 GIT binary patch literal 258 zcmXv}F-`+95VVsBqDX1-0#`^WxK%8S82VWiQ{OtGW+oX=;fVDWa*-j(|`n1AS#I82LpSB-j7yH$$4S{ zPtTBg>0-F5R%>7qygW5CBuZc@2l^;rv literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9fc4492c7008a3029bd4e23a2e72ff4d17f4006 GIT binary patch literal 1596 zcmb7EO=#Rk6rR!FYIn17aW-xoa8N>jqW(z4@zD*XITZKD5XUW86jWtr){&!?HZ$YG zE_*N}y{AxELnwrv5}bp3YL4!yg|O^)^*}-BS2-DpUV!0;0Q!g^f+N(z9>x+YkgDFE%AFut)2z-Y3hOXEhdOg5OsWcUGqKBCCO1bNDPki4g^LfW5WPop|Dh&m4u zv;;`YkO@eah^SO25JPlo5`&bQCNXboUYQtFZz`k=xY8-vmGtC7%ta7Ifq)Dz2QdjD zb=sX8wQ4d>7HBO`Ek)OFNgaz{FihDh2 zQI|(yle(*+aCw_Hpza|TZWLZ~+Z}N|i7z@AW?dc%`f599+z3`FciUmx^}|?D76*~r zN(ha(d&rg3?xdy<{!sXS_sl<1?u`5=AQ}D|s15X^dHe_S^mpdz&AEG1_v?G6Gj5rF z`0k?@AHVX(o_TrP41wR9&QMa;D6Wmf$bc_nco{$+_0XEM9+A5WFpJiT%Qf!23w;ls z@t!H%;88y_u1Z$Ab?flZ*7>69R#&qEVWrq+@}aOX%Z?~>vsfK;S^~->UEP^~D^2D; z1+n}*s139~In}p6vG2_6o|)aA`*Qw^`E6%M+gbj4<*SvQx4*f$J8@;#yuzj+*sjXj z%Xt}Qk%{|A3D(OF-e${H)j~H zIt3AV=JF=8Nf|wzMUT4H$-CCco{a2xavye9Dp|*zDsw)s-zD}u*d&L17Suq+7(YR0 opP~y-(CbgpO9uv0s&}5-!_WSqOyDIvKvEA?q?|g)4B4800ma#U`2YX_ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c51a0815cdb512773c1dd87a633ac4dc2b22b656 GIT binary patch literal 10836 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 CIjHjh literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b7722118ead9a1b1e870e3a6281b76be29c7230 GIT binary patch literal 1686 zcmZ`(&1)n@6tDiA&Sb*uZj#wyjM5NUne1*_lVu~KBCcQp62s~)GMA$5s!4k6bhlL% z*%{^#Az%WE2ueJzUW~+pNB;*e8L~^V?Vj}HZ8XX*o_y6kUkY0=@6~&+UcXnr_pAAN zVj_=VUHJ0Sx~U`dn>6|h>~x(igW5*~5hXx1MMZBSqV6D~9je)ZnyMnI5}g=7m;;}d z`f|h?@##&aI`+FvTJ^HjOqx9-t@H`hqELsRno5+Kwhq<4RcboXs6ll28N{rcyQr>^ z+)klp5=;81QP;`Xj$X^{qB}~>dIweWNny?PK5*CRN=WFP*6TNE%qXX!;I?b`LUtOn z-H_NZi$3xRPnqp{9_8E?kxfGqM?U0LjYQjGL1Knf1d*5IxxX0)6ic5KH)B8D zP1b$zaS<`7jY+iW`XMvmj%*A>VlpbWSh(tGy=zM)_wsl4Cy1|KlBC0DTIj$SO@<5i4nVu z)5HRk$AK@H>^Yf`1Hko&;n)=$EC)U&8%&X}>WR*2P#>Aa7{*@Ua*i>VbhmAL`=49R zMzl#C9{6?Ytoy>@G4*^m@VRiHvJ*GOMieg2zp&tNU(l;@Ml$Zie(XT6g0j#JoXv>P zfIGhA-hA9-635o`C?n_lHe)WEbZ!_S`SMz`@t8%N$GN@ zbot=Maq0P!(o(0i1hMhc$}=aGE1k-fgZGXr*TGXfEzg{k=Q`!NgX_oT1@KIC^XOSP zeBZLqpacSZ0UB>WA8^U5r{ud0n^EdDMo&RZu7+gt{}zmXK$&3(Xx7Vz*Ql&kb#@Md z>^z7h2Xkt`n@VRgK>g^Y>L>EIw7O-*xOR88i$ERBK9VZ!JpEMb{Du%Qf5`#*#r}N6)}2;K{?BmW zmgM6`#04cX03As}wMzXALAiia{j{f~ef0^sMp6KPf#&n+`^qLJ?~&+h&9#-pdKZ%A z?t7FqC+Cz{FK2MR$}WK^q2LQ3x|*UWzo5xS<^|>2A4rNhWKA7SJ$LlVt$VrK+xmm? Ui>La`(Zbt*X=*|J*h;_oFBs*JZU6uP literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e37180b6b720f0cb07e3ddf90f165283459ce352 GIT binary patch literal 2269 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 B2$cW; literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..979a7f05fbc93ad10df8aa64e0c4a08af88bb55f GIT binary patch literal 4945 zcmcIn-ESP#6~8mHpR;Rkf@APUx_c7`+e@7>u?dAFq>XS|rLCL@TotxO!+7WJdcy3? zGBcZGEn5vJ4@Lsjkx*>}6;8!Ns z>WLenTmtG5mc;eYlZ2ig=;>|u^gvIlDrHlCa!zw#>zAtDf^98clPNsst-MxtE2ic# zmwF3~mL0py9M6EJU7#8bW>drRm{WEbl+?BuHDETEW>`fos9-xVyR7A3(uy!_xt?a4 z6I8daTBfb(6O?&*h0n~!{0G&dafMlGx!QHIen^`)T))>SfxSx1@-#G~A1{M?Aiw1L za%Y8~>eRXE{DgW1tfi}-R&@Q;u7>I|Z`J{f66XOZ6sH%fDJc91Y^mZ{`7ktEPYfy& z{C2*AVvQ_`OGIsrLF@Vaggt&{Use|w!g+( zJ%J2Dz^%gC88`-RGla^ivgT+d+BU{1dXAdlZio}ta{vec8HdgSJQRANz$+8fWtx*; z05pLC+oDih6Do*0&7+#bXxk;}e3fG{UvV5j0d=dc$4Uyl2mp1i8ZMilR}Itb5?3%R zeUHq%X3=>@=PQN@N?HNDTTp_zuFG^lszT>LKh`C!tsH&_)|yq6)B-asL%8d(dB>Qq zAV^Q4^y>X;S+>{F!L;+>6xF~Db{}cC8^FO@)NWE3^^m;qjKKw6>M(FZ7Y+rE8$a2l zb<Hg1@Lh^!UgRLqb9S8 z-U2-_L8m6r%G31f0<(}Ut{6JgJ4>4=K}Y_t0O8`{3r#b4cGphwcBu@C&l{%URk=ee z!5r25*)vu z+cwnyW@<~>K;aQUV-8|*`6R{kFSJ2jE&q&4Al}x zKTaRnN-OoWa@)Bp)Y4P0UHl~d*j;rqeSYQQz5ao<=WagtPX4`-ji23h-WO_Pr#924 zH~Y`5$oCEntb|^VH_{U*Y`8Ia6q>z_p=0n$H8KkJ9^Q_S6DP4Y(3t+#O6ZTV!#kh^ z$v62J>jc@KGyXrJ0_lpd49s{LNA^6g9M#3kICIaVOE<{=D`v=@=G;522mqW8bN7iH z5WmAq0+bOLN6YPbU?d77ZKm%G7sO%+B1>#v-Qu8|c)uRclB~Qq({{V>a<1Sc$%FF* zwQTD+vN_effad}hN8W=Vu#3iKodHm#>qK#P)9~Awg5n26z&J`?fRMW^c$V$m<6~q)L7(T@|vzY*uj6uom()QF+u4LGbZh^dd?f3NJr?rpPRIt?Zm#oah2v zKzc!jp`78I>z-BGv%e3EUCfsLLH-R;B;r`_N2BM~^*5!}nYDO*^xT&&D*tN#LqgzI z2;7ca`2yX4qmRS1_C~??ehSJi3(F!T48rU2CE;y=)spzO_)Dp|*}nE>#aUl?>enPI zIS+#nUwVmE{V?P*73Lz=z(s{d?eP1R`nNBw zxGQY+#OjY$FMOCx|9f1_X>ZwdEmbo9IXmSow3o2g=(X`hNXaI&b7-32C*&D#%($E_EdiV&7=J{({-h<2; z(p2hdC5R)<1g>+86Of&IO$@kHgWEzkP#{6X{}Nu+HMj`?hfuhlaw-9IbP_(`BTR@O zablix5^4}Wkf2-)HccBIL@QM+xAXbM^nF(B8h;rjASS?$GPh%6_Jh?~&~|cFAP$2rTW{MnQm8 zxp$`rYtIM|gyr@84uRM9_(Ng3acCodYjB4^b$conKDIHv;of@U3j)7kimE^evUJ-~g1i-`D(J`jeEd;9p_RibaAh-H<^D@Xzz@h2 z{=j}KN`{-~xjH}1J;&_F&IFb{>pTq-5P0qg6x)&@2!A5-U&!%Ia{O=Pk-w84|CyZr PSHu>CW1kZ&`ELIMHjmZo literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a6838fdbbe5674dc896af89728bd43a5abca102 GIT binary patch literal 6544 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/models/candidate.py b/lib/python3.12/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..f27f283 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,25 @@ +from dataclasses import dataclass + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link + + +@dataclass(frozen=True) +class InstallationCandidate: + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + name: str + version: Version + link: Link + + def __init__(self, name: str, version: str, link: Link) -> None: + object.__setattr__(self, "name", name) + object.__setattr__(self, "version", parse_version(version)) + object.__setattr__(self, "link", link) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..fc5ec8d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,224 @@ +""" PEP 610 """ + +import json +import re +import urllib.parse +from dataclasses import dataclass +from typing import Any, ClassVar, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +@dataclass +class VcsInfo: + name: ClassVar = "vcs_info" + + vcs: str + commit_id: str + requested_revision: Optional[str] = None + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + hashes: Optional[Dict[str, str]] = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> Optional[str]: + return self._hash + + @hash.setter + def hash(self, value: Optional[str]) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +@dataclass +class DirInfo: + name: ClassVar = "dir_info" + + editable: bool = False + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +@dataclass +class DirectUrl: + url: str + info: InfoType + subdirectory: Optional[str] = None + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..ccd1127 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/models/index.py b/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 0000000..b9c6330 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,56 @@ +from typing import Any, Dict, Sequence + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> Dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/lib/python3.12/site-packages/pip/_internal/models/link.py b/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..2f41f2f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,590 @@ +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + List, + Mapping, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.lru_cache(maxsize=None) + def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> Dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: Optional[Dict[str, str]] + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +@functools.total_ordering +class Link: + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "IndexContent"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + metadata_file_data: Optional[MetadataFile] = None, + cache_link_parsing: bool = True, + hashes: Optional[Mapping[str, str]] = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: Dict[str, Any], + page_url: str, + ) -> Optional["Link"]: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, + ) -> Optional["Link"]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash(self.url) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url == other.url + + def __lt__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url < other.url + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="25.0", + issue=11617, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Optional["Link"]: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> Optional[str]: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> Optional[str]: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..06a9a55 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,25 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + +from dataclasses import dataclass + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +@dataclass(frozen=True) +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + platlib: str + purelib: str + headers: str + scripts: str + data: str diff --git a/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..ee7bc86 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,127 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from dataclasses import dataclass +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class SearchScope: + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + find_links: List[str] + index_urls: List[str] + no_index: bool + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..e9b50aa --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,53 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +# TODO: This needs Python 3.10's improved slots support for dataclasses +# to be converted into a dataclass. +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..88925a9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,121 @@ +import sys +from typing import List, Optional, Set, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: Optional[List[Tag]] = None + self._valid_tags_set: Optional[Set[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> Set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..ea85600 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,118 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" + +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import ( + InvalidWheelFilename as PackagingInvalidWheelName, +) +from pip._vendor.packaging.utils import parse_wheel_filename + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.utils.deprecation import deprecated + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + _version = wheel_info.group("ver") + if "_" in _version: + try: + parse_wheel_filename(filename) + except PackagingInvalidWheelName as e: + deprecated( + reason=( + f"Wheel filename {filename!r} is not correctly normalised. " + "Future versions of pip will raise the following error:\n" + f"{e.args[0]}\n\n" + ), + replacement=( + "to rename the wheel to use a correctly normalised " + "name (this may require updating the version in " + "the project metadata)" + ), + gone_in="25.1", + issue=12938, + ) + + _version = _version.replace("_", "-") + + self.version = _version + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c88f5c2f44f663094e75afe8073cbf996ef606a GIT binary patch literal 246 zcmXw!F>V4e5Jhc31R>FIf~}BH#EyU#(a_VA#&UKi%Lrpz_N>t69FaH!XUPp{xc~}X zs(2;xoB8h-^Yy<+qoGI|e@&`Iy0;eoC7s&oMlZmX1)$+n#>}f zTsX`UXvQ+DnG7*u%!k{lyuK(^xzh3 HLNDPTG9X65 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8a388370034f69f4db69b0b0ffb342c8a069ce0 GIT binary patch literal 22091 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 T`Rn8}lBCThQ{ND5h~@kXRe8%4 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36e13312324607b9c6969b9070ac080dd6bd69c5 GIT binary patch literal 8471 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bf338126bec51fb07e108f0f77ec8d360e91d39 GIT binary patch literal 18866 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e15e0976c6e23ee8c7f052599bc95b4adf98f3c GIT binary patch literal 2941 zcmZuzO>7&-6`tk(^WT(3{aCUYn^MdsCY{s`jMQkFD6Zu;QH)qXl09_2;*O+cmRx3L zY5ibT7=eM(K!Vgk3aO_!K!K)k4?XtSrpH`F*rUs@wvmZ6WO8QA<}@xCV;Ucff+oVq z+frTD~X)VnmER!_Y$+l3>XqkFe%LeO;eW;$( zavX{w%++S2!wg4!_%;`6+Gq@2K&E;fnQ<)Eo*vpnQmq_G!|^sB%G&rwtd!V1v0k@H zvuayQT7f#kVe<*XQQX&;9J;!UbPkY=K>g z^YaVXU319Wb55gyt8CACLL34s@k>_oGNu%!K+6)tqF7&ch)%(Gi-J#8pLeLcxY5LZ zN`KWLbk(qJV=3^PxNL1=^QG4EGA7mGCm@vUEBikO;g=8{j36pVi9IPv*3aANY!c3YeW`h+oJpta9<7Vc%sHttV&S~+>sC3BB z!AHCqz%+np^Yu%_xoVlXU=*%A2Er=`Ff3fP3}!ln<4U{$%~`4eVC6veRjXm*b-hJw zU#1~wezFCCnTCs9tB!q%V7EmY3svDeXt02?-~NZt{hHfG?qKnT=%M!^kv%?28VJfRj)X0R9t9?}QCyclRerm$_G61PxNe37=AnD~mWTMf(A zbzg$dgsk($Cd3^33aFtZ(dsHBpD*iuLDBnQlq6rE*j^?n@J-UJ%RuKRLfl}xOCg{1 zs%=oJ>y#adfn2!u?HiRRz6>7Qo zRMV)wZLDBgXF%_}*BlGgfK~? zQMKmKyMXnU`U`c9TSM#oTWF0dNei1vD7h{a>Qk(MZYnNbcUf{SmUv%)s$oE?V8g_O z`Vu4$HtL&4=NA_*6)>yMg&A5{TeWOlSi!DqHCA8(%3a)|Rs-sDql$eVb`kdNtRPg0$bE`z zPCkaD{Wa#7cA*1`rcrisr}$g`Zl<`a6n8Vl?xE4`shd+f?yWaIHUIeXpNhNL7uw>z z^x+Te8}?p$rjwqzh3}-FZu7lZPR(`4W^Qfn=AUg}=#CxP-nzLJ(z%-*>5e`DgofFk zipIaUkHqnGd;Vb(rKWe@yqlcu9y#8A`Mp=VBV&6bvz?LITkF5`KJo61oY_sDd2}x` z^DiWW_mTYexew3nCXfB<+`VM(gV%1n*3F&<=iAAf$-V5!PWB`y4`m^h?!{3m_n%${ zc701(ocD5@&2e3?J7&vfa#Gjd zX&H8ZMb>rGsp>j83H}IUy)P^|jvbUi!k9?Tu*p=v2v@Of>w1YJj1rVpn;!>JA&llh z$1;kt3+vH!^dJ@!6*%@qZh?EiOJborG1UvkC!Yz&7taUdeKqxs22 zPfzqj7<&@RjrL?FDQK+NQ<)S;xqOdV^^z!_+0C5jsKtM$Kqp6|W0WSyS&)61r6n){ z?%m*eDu-##lHX7Dt3EuIfN{PQs=nlIG+_r}bv1y%ABRh$Jh(KfElqzpfB}Ltqz_r z0sOy5AqD|elyhO&e?;bC3yT(g9l9RRaomF##|irq;xb>LkuT8Uuh5fUqaS{W&U}f^ z{+-W$B|P`FFmqp>Y>(}!lO1((=j Optional[AuthInfo]: ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> Optional[str]: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode(), + env=env, + check=True, + ) + return None + + +@lru_cache(maxsize=None) +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: Optional[List[str]] = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider # type: ignore[assignment] + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: Optional[str], + username: Optional[str], + ) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + # Log the full exception (with stacktrace) at debug, so it'll only + # show up when running in verbose mode. + logger.debug("Keyring is skipped due to an exception", exc_info=True) + # Always log a shortened version of the exception. + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/lib/python3.12/site-packages/pip/_internal/network/cache.py b/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..4d0fb54 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,106 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from datetime import datetime +from typing import BinaryIO, Generator, Optional, Union + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write(self, path: str, data: bytes) -> None: + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(data) + + replace(f.name, path) + + def set( + self, key: str, value: bytes, expires: Union[int, datetime, None] = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> Optional[BinaryIO]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) diff --git a/lib/python3.12/site-packages/pip/_internal/network/download.py b/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..5c3bce3 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,187 @@ +"""Download files with progress indicators. +""" + +import email.message +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (512 * 1024): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..03f883c --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/lib/python3.12/site-packages/pip/_internal/network/session.py b/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..1765b4f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,522 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import functools +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Generator, + List, + Mapping, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +@functools.lru_cache(maxsize=1) +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode()) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> "PoolManager": + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/lib/python3.12/site-packages/pip/_internal/network/utils.py b/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..bba4c26 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,98 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + +DOWNLOAD_CHUNK_SIZE = 256 * 1024 + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = DOWNLOAD_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..22ec8d2 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,62 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dc5a67aa11b45233ec638490972fed66ab85896 GIT binary patch literal 189 zcmX@j%ge<81VU5P(n0iN5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!iqX%=&rQ`Y&dE$m z)lbhX(JwAYP0mcr$t*6>&&f>EFQ_cZ$j>v@Gc?jK&MZmQEl5nxPE1cN)-T8`(2vi| zD@iTNOU%*FFGwv)EXmBzE7p$(ie{F?$LkeT-r}&y%}*)KNwq6t1zN@k#Kj=SM`lJw J#v*1Q3jnSlF|7aq literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b43adc6ebbe384ba30cf7e4fbc9ad77c19a06374 GIT binary patch literal 7096 zcmZ`-YiwIbcAiUKzTYDCmMmJPV^Nk#*|8JJQS7xP+fn2w>B@OA$r7~gP^QdR=3d#c zm)dFzw^bG{R_Ug-({2$3MG*x~u||LS$D;5C{Slylctd5yy-*Mrn*wcrF_nu1+ZOFP zb9pJs(T>EqGiT16d7bl}GxN_LkCQ-ZdH1ooj&?$Rixnd|>V>Tl6Ct;VL=r?2BvV#M z2=Fy$O*wPIEFewHiaATd!poMdHD^oMc-fk@=Nt(~&Y5uLTnSgsop9$o2~WTBu$dID@2;ngfb=y1;Uc|zTU^=sy+sCi$|Ph^5B zsZ3VZY*+Nf_0sVr_rGRay&tmaE5Q~7*B z;YuI_)df`MhwLM=1v&ZMtMN;P9F5D_Oq#~$GD=)7(%B4btE|McnTzq_HRVzv|9I^1 zk+_^u=pjRE;>Aoc4*Lmb4aXTT6!G+7o8|cIB|3XKR=mc#aV*UG;U@Z#R5HyQ zJFk;?j>!43`3@i{rU~-KDd07i%=4m7Y0ei#2T^cDo`A|=17A*?yDNoSD zZIrjaC5th7iIhYcWK9VG{B$liO zP6FCm7KK-dWL>oW$a-@@|6UcYlDEvSlB+`0cKz}3LLQV#k;ADlo-l`nCgqmHaG(Wf ztZO3JXzVP*;{y|PW(#0$$wEGRO%vtInd0@x8O90>fCQ{AKldGg*)Jat@0Tx3M_mkD z9MO6}e;Ou8r5)BOYu<)MbKTZNoS+uqeVX-OSF0WrXnTH!&p>km(k)QEY|R$t<|xx_ zS5qtx(*kpG)s;3W1LoL^tN`GYlQlD#x+WqqVggl~D!4dSVfz?VV*brO;%P zoMf66at5AIi9HE?N8l%a0NE0G&=Ojjs`^4p&ulvPR-F5m#;g9|hJRS~58pfUsj2KA z{*OjbwFW_RDJxDkFr4L?x{k5sxxm(Op8V{6JUN*|T(yire6*EPWM=THQIT)-SSDh1bP647gOZIsl zkr`b2_s6}v)8{=q`LG6F+?){_(w!wI3zn?&zVC9vxc0Qk;1tNsHvkPB=nv)_2(aC2 z(FJp8;J`M0H$*78B;jMxz#G`BpOkFBX9gfOZEl*w`+!MS7E(|%cq&HinsW z3@h1W;pTrdaocv~HrEmF|3JE_WJbh`TCd+4M;{T+qycK`HWdcj3}@uKfKEI*2`iUUN?3sa0C0{AF~&eE52x}{Sobst zgBJ^hEKTKOobQ5Wp>HWHr4futAQWO08fA(Bk@+&c7WHTr03^f?m@dZ)7J@xu#~{Ol7>6nccdO|PHp3FZ!RKYoDi@eSB@m{tsGHjz8$n67Tt-Gn z)m*@v&O)q(6}JIDxD3r})Fd7*XzqF+2xN+~=5Ok#Q_K+a81n?_09iOO86B1mb$YG? zUVuCCX1rt11LHXM=mRTXB7i-)q&Ap4?LyXBg^iU{8#%2{`SRX z_vWGDJ1>^)9slC$c<+t1vGv}Osyp-`xOXEMTMx#T$2WtK)tL`p`QVib)Fx_H;t$<^ zO7%Tf?d)B#R)cM~j=yuf9E?_b!|x~FOKkKGtG&Z_58OL)x3|)Ja^>uAf}Pb+cq0^1 zLy=W!ZG82$_0Zv}zXJrd_pe6OwgVe&akVYJd=6zj{m#=H!KfOHt{u3ifYi@}6IFkB z!yi%o*!$ewnezV8&;7@1eIykBx}Uf^HY0;;W51kPkDOXQw{l)}@6}x0n**_O{Nz8) ztPe~A7`s1n@2`!L=vZxxxPvQGWmjKW?BhX==2QxXgP3hbMl0;18Gc&~vOg7Xk?%$` z94CcE(>5kzykOY%qFJ#(SDs4dZTe5dlF)>H!m^l#8{-Z8$0nmEw?FfBdKTO^KVtOT zV1~*iy6wKNh38nRcqx1p9RQlvwoQgpY4G7(Q|h5K3Yg1Wp?R>WMhGu+Yud4BbRZZ4 zZlS{cg>VZ3ptpr9!VLLHn65_{x^_CQUIG(C=PzTQ@RF{P_OWa#cTq~6xE|GY(+K4a zMVDh^JV238KtX5yL+CFfs(-sg?oQlys7ELH$wUQiW>JxQZLKpYXL1W!bntbdJd#Zo z(pn%{_xz1XaXW}w*b5+5_mo0XYvEg!yx0%`)^z~~$790X`kuas_TMvgmH@sYcEI~F z%=V#^v^`mA9r^L}($q@etIi{LkKg-YrE{t*wmr0xK!3Ua=-tZ||LLVkP<2OW)81Ki zw^t5KJ~W#g&YH#Iw$_NnV%7D~UPlUuvG9V&F$b?z@(!<#=dureTR#9@ogxBw_7cX+ zw=uTf)=&ixg{M1pojwM<5PLT?(r5>dxa|$i+j^-qeDZD{S7~_Grnop@$TXsbc~qrG zQmNt1cJqvqX^t3HV0@KEd~e7#V(CSQtmhk^aC;!Iwfd@=STg;k>6QRdH~%waf;ayw zkz9kVJWOQas!1TP!u|mD@AN4A@68a2o2NC)%g>xSbDrVK0QwOQw7}U+mQELxvxSAc zqzAJOh&!dEf=&tdS93tr2{&$xV=W7LxNd3YT&l=0I$(IAf#?=5&EQWo8(wO`BWli! z3^DF}0YZDw+t-lwbz~Kan)B)jc6Pnr{a*L#%azVU%g=5`3hE7e*sv3=GwA}gWlz5Yfj?t+VDkGUu5+M>%ODa zw)Q`_eG?$wXxTIHwHXHe(lY?X|B*3#|D)E^hlE?FPM+Rt`J~MSV(<5oy z2B3YH_|X`_&_zS{AWpW9fh@4bhQ(})hMQttcR?Go7>_|LCR~4dypSs{C=e^56R1Bq zG`|nkF~14#xBXfy>R=~f2-XIf)`=>YgKz{Mol-llcWe-u_=7+XmJVVzgxP7xqP8YD zb<_ufxX6x0e5=tssf(b~sabfY0ms0OVo!{@zH?P$FJTjA?_%?tka08(gnnjOn%uII z*1l!?X2+@f1C@@cWlz=Dv*CL}^*vGXjqJFMZT1YV9sR}FM`OPX-IF#>Tu@J3sGNAI zGWv3*=apsG%7kj~d|(g!)bqAyMf%*{UGsq8nxD8^%VJ1>(s&hy-l1@)DqP|2LZMmV zO2jxAP&olq?hL9NICj$&0wKH|j+H-d&NrYJ1k@97!!|C8O#y+po6;F0piBtdyFo=7 zN@&Oe#c4n&hpaOqxp_`k6gC4~03ZCY(a^TzUi}Cy3>U0>#DL*&lBsl>&O(UGCb983 z$R5EK_A)kL_8~T=A%pX>lFpuTPpr}rFN>|e?bx^MuDaUG-9xHth{un6ZkN>H&_-}{ zJva(Mq%XW0{IKJLj*4%v96R}$?_|}#cf-G5_3vNJuKOSVjlcD48wnkUOLJ!g@65er zu}427zN!(;mP|^8S$IOT;o||u+D-^75O(1SOb2H-&B3EwjKeF_vDT4Z$j>Tpe~@)> zwkp?((3hdjGrS}-#2AMA%+Sj9$2at|44oXqcOQo4t@XoWS}X}clvH3a1is6HpjdN6 z#UJgouH6|Cw7DzcoZbJ2US@&`Zg}5 z!C{!c{^avWccU?O5iV5>ZLjxM<#0Q-s6 zqiePgo-PN6Rqx>?7e37XXjNI8QV)!j+eg%v(Ip@Dn_BHFhYXhX+s@Ugaz|Wk8D8?$ ztX^U7+OfM`_b!wVpHdH=-XcJ#Mac8QjPSL2PzYB8-8KFlI(qk&d-6Sc|H8e?>al0l zp(##(VDWERfUlMi0)ll-EFU_l4t%dhpmIOCg`e7hN9d?}+sf?+RPR8|47CTLp4&6; zJXf$0zvLV0&l*B0t~%2TLF6a{vGU literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1fb49089ace205490e158e979ebe7022b74b742 GIT binary patch literal 10120 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f75c82d71404c46e0cd6afbc6576e12e291ce02 GIT binary patch literal 25764 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 E07_t|RsaA1 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..019b5b308cb14a06eaac109a4ca7b3253f6ea329 GIT binary patch literal 1849 zcmZ`)&2Jk;6rb4-ukCn~=0jSV5E2{ZK;IX0)~(xAdQmrP+wMS@5J78zcjOs zo5+C*acCt(g@gnL4wX2e_74DYYEG57q-s&36-X7R2X27`1%(T5)?SB3Wi0Q^`2Y)A9IVqswlYMtvP89dh`N}za-T@$-W8#suAcgU zgr;SNrdA^!p=N0Np62*9yQ(evRAYXFR*7cWETnd&!L6*A{hfoIDd1?h)UX|^WLB>b z&${6ISKcxmhfuH_i7iv!vQ2%@C00XU;+hjoJmb}YEC)vOUPs|&;p-nJ>JhCW@1G8GQWAl`DMRNBxY#e!qn z4vSKhgbnId#ZJEYq`;rcJByg-K7?m`@Cw`!ZwqZ{O>Buvops{D=QXK?P9uy$sA+px z((O)+HMxbCc>F`7B_|$yX9j^+=8y}Bt%EqJ46;)Em!N^V9+Jb}B*N2BF7+qYgSjPr z)QvZfj-xQO-$vpsEgYF0aa;!H7{)nLrU zb!1vtCkb`ItsBZp=unKkSNmMwBGj8q92S6&(iPjYq9ZlOuK+7o4A=C4P}b`4SxN$v zwy|_>$BV%V&~*tYRt$aDDFE&I0w5P`Fgo0tDP$3g{cqnAF%DpA#+jREZ=C%qcguOub8+Y2(P;KieYL?e8fNVM8tM$5F07v(H`!oL@g%nh?Lo zrM&z@|C{HeyJ{NbyXP{c5oJB4mIjseL7A^dL~vQp%cZf*x~727`h;A1St;~IieXrO z)iCG~gp2Z!!=kYa&C{olrw+r6I&@M-c}t3p#vVzQi`~{nC2k#g(n_vYNf7tw|8VHJ zCw-uYJFIv>%QjDsJs0Le9QK`4 zK`{50?YfwPWk+H;;m;Eq_#XD7k{A!a>$39aXkv?Vw|sWP!{&*W3ASK7HbY%lejEa zDUMpyuS;pZ`J}-=mp5hvp8E*Coxv+`L%J?@q-Cis&8F+jgU`!y8@+}E6hTcp!;!D2 zF_x9KFw5gVG1^Mz!FT2nc;%mP0kQosj+#e~%KtJnP}e8qs5gu7G?cSDGwZ{-Eq~ID zH-+}0DB&l!??<$MS&Q_{w=Lf2B5rG+ijKOheXK1A3+SSB0WApo&>_Tx1yMj3;64KS z{Oteer#kwQw&bRT#)g+su*Hbq0I}Y*eZo9uIGELeci1tAZ=5@E&NzJdV7X8*V4P3t z$c(6oGwOm{H3tpU+k~ck$F7BSc;ZH;;>51(($H zz#@Of#GeT)u2nF9cZ>t&`Q&4J&TIxAHknIiu-PDy$wFKwwhQ}Am(c=^z) zCL<9(kY1dbAqh>3_z|SocFiD6I|(zB>zG|QSw73*V!S8qIM~Xx-AvHEfQl2AeG8vU zXtNjX-oIKpdTaXb;Q32u?+?7NHZXR3VC>TSzvcTkbEyBoz2eagN$f9NR@YV3`^=g? zdRrg8Hvh9;UKb^OO1L*Nx;Aq9_Q>g5lXpfw`l7g{pk8yU4;2PB_n>0$)gxDqT%Ei! z`E~J{d#7i7RUZFmQ$xGVzmNc%e;F))zi@Z(gDYu%H?Ob z+3SGyo98NH(hovqSov}1o5$pvdJg29$MTgSZAH~91KP@f!q-C*xU38-mHqh@Lj#|c zF{N@)EA_>iWjR6Jvgj@d7Y{>b%ho)!*MLIOQtDYv=(UXUrWNl_JhI%EyUmZv+&c8Q z6<@65FzMotFzflpeW1&`to)F#9Rlxtno|Ugmy@YOcL{zZlFEIDHsEYThdF}WBs{&A zi;vS$5P4r@r{Duw6ofxTL6A38BorQ?;}6ipmM970-#H|l6n;gA*VQ3m;$Gj#y2R&~ V-{{Qmok`~VN^VmDJ$(^^{Ri;C2{Zrz literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0df9e2846e1e8b54f38da11f0430253874e00814 GIT binary patch literal 3003 zcmaJ@Uu+yl8K2qPyW73LKA-=^apH}WG&zOb)h(g1V$JC5MKCZ?{;ga z5qr9sZ@%xFZ~py$-^`!V=>&qW|3}YNzAqv4cisrTR8QFc9S9#G1C^114Z*@??AJnB zfI4DDs$yBh+$LJlYOEad<){^}N@b}km*r}robYuqD_KpIQ@$Lx($!2k?tD$_Tg2b z(BC+7p17K!xtdZTHldnpI<{gt6;oFh9jaKQqUoy&bLvzlieWOBnhSOA#EOYe`N;DH z?DfsoP0KiEzim>-t`ge?UCOBuTV*xVhOmW*mwU}-u4Y;O2T-RdMjf3n z)-{d<6MHqB*DIQ75d&f$sA^Y;%7|O9xsGEol~gLKX)ijeMk@>)vO0{UvM?m5(r=Jz z?W{?O?mBeUlZ{Y}Q3ynBy|zciv@Hw1eNWLu!6BSQ*RU>BkS=^< z2%$CH#LLk=u71P7fj`4n2b=f@!qpKGtqI^Su#6iIdKf|z{RI6~2)y6Jt{m8!q1K38 zIg1e8-B0{Nzn~jh_F)}1ePKDhx6NBk)D(>9K9FwoR(u&&h2g)3S5P6=D86FahN9U@ z5jOuM-+Tr3JKR;pw3WBQ)?3Af9Qrksd1qIz&6aBTAb zdr&^fLfjJ^=EW_5DMa-oVjFD5beAYU1TSI{+Y@V=yX1+>j%gPnG|BaN(UTVeS+-UM z^zllq#lMVl|?h8joGF%!N{I)m?Jz7mJfGl$hy~lQm7hqE!eh z)y!H6z~~ZcYgP$Z&?OZsEpU>Qsy)7`U1}9;t6oN3guM(wOh;e}gYakHg<>5&96R{4 z*MI!__0@Z0lUse~?~YA=_|0Em{B8L+<=e@>oSOS#t~EBf{#vW={NIuT_cPi`>D2@?*&H9Xb|}_I*i;*pg)3W|C;3Hf_789DF>cS={>Bn4hF5@&Z^Fzmx;p)A{j*2z`WBK6yO&yt5`a>vGt;gp{)qxIPcCST z7>Yp_HOQLar2`pFR)yT30FEe^{KUzCqa?UKzWGP~$|H(t0@x9#2WmE#;T(??lB z2{O2U>-4y!9A%9Z(CK85VcsYRo_Gbg;`LQ5X905js#?`-pq&AhR1m|*UdDFRIwMro z9edHNG!A@?lA1>O@ZkiH2MaAUM!I|smmW?CuC9o_Vt6Utslr%>Y7nM-@!(>EyQVi= zF!&IkFC@Ge+@KXgy{JJJ>J`e#Lpcg4hdkxjp*)jQj#bL@z0diAOnJhkqrBM9i!ojt z;Kd;*Jds~-^e7jjgkPbIN8u;oe{`5za=nY3sKGkv3D6&bKl?ot>u6^PMU&r~`_^1r znrTaeZ7I7G7o)MA6dE{m-M;PK%g=qBzj!x)aeeM#@;LVxJk%Z@2d7kQ{p_O@O62dS z_q9f+?xm-1RXT!{zKrkpjkgCz+9MO~LucA!hyNuKYqQ{cj>>K2-iJ%oP&O?^z@T2_I<)$h9&$VH9HZx zlf<(_(L3qv%csRV2PCdJEzjoTn>an2iEn12T+T5GRfX#U&I({bvk=)E2D}x+^j!?o9Oa3}8{KQwEwk7I0`pJR8`0OflPkoX>*7*UResy4 zDm})R6@h1+k3dgcfcKP-mtUf7FrhA{q?xK?)GhK=It@C0JF^d=fb+umGXZ09JBD!f zuSos}`tk$x;$uO?!ev^(XnEP88}+4CMwoaV|+HoA1b6N}x=xljKqg#pIndNOTG& F^*>_rA8P;r literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbc4332e01ba4a330a2ad2bd0999c75eb8fcf10b GIT binary patch literal 1669 zcmZux-ESL35Z}EIf7{Jxi<7Ec$p>{weS|0^RG|`qR#2g|3cSQpb#i;FQNk6ZO3(-1EE1_wd13Y(I|Z?)+nL#!otd5a z?f#TZ#t@9Yug8m13PQgNp)=x#%>Ku~+(srcv5j(VigOrb$(AZ|PR3$Qwv~#SQv+VH zLzQqYjFE&0D))389#Im#i`!BzW~wA^hKOp0fkxnu5}Cx)pk9fYvCoxUqK-51KZW^1 z2K$jK9=BX4Zv%gPzG~U#e7f-&Y|#Z{~U4FfB?7+@*D2<)q@7euxrYrA`4#(;Xq;Wcc?N;Rv@;Lt2wA zqt9>@@vcc(=>IcJsUhE$+KU)*wWBuW2Kok>%C~Z-B)60XE{8k%Bic|p7SjkLu!$b& zI$T3;NZ+fSIJZ<2i?1U?+*HT%|JqXS?`V%`L;j@e?*lY~CK1Cm38N**0i!Q7H{~T% z!y||XKoa{#5lus+u8VTA%XS$v)IdjBEulKDp|+{?DHL@+RmA5U%b=z9jy*e+s&Qx~tHJw?U zob%u|!R2DQXL-6|Ih;_qq`K=78WfJ{LDG5cFp&)MjEM(HwmB-q^#)>>s@od#TfRM(-SNzC7DZysB(>v6G(I>lxe|nQp0Q=-fV%hf?d8pUNnuAM~I^YI9~| zW^-<1ZcE)-eGos}RL(x_1zj_l{rez>5`%vs>ACn*_da|WIsePC{+0^M&)6Br_>0%) z74+l4TeI?ZPXyTQS#=(Vx8Do{e_wfVeq6pkhGEVm{jlgXAb|G4K0n0k@J1D>csKlE zs9@H(0Z*Dsp-_iFGD`5iF)Cgn|5RYnsd2W-Et_SJVA94-v`F~-Z8$}YpuL7cMR9$Z zaT=8RJG2inq9?>^WUk_xRhwL(FM%kYXLb#ymW(legi?=C^fxs81YLN7EY5dAwEZLHQK2DCbRG`p>^vPCOa1oR^)`|))hC-?J!l%~`;vmt} G5aA!P0<6UV literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02bd4a212eed2198475214ca495c217e21623625 GIT binary patch literal 2008 zcmZuyUu+ab7@ys}-MhWpJ7~EA{mX{7;9>^lr=E?m06@ zx#p@!jG>8!kdQ!POn5c;;G+-5NPYCB1Ppb-ghY+{cA-r$_~JLa-4-iz*_rvi`R4mG z-|zeG$8s2Hw7Q2<(W#F|u;1kRJ3SWPa< zHKnKobj*p@62*joM1;{)XQXs(#mO5&NEK6-j5SNavK5Cl0iTK`taZcjWYS8094n@q zLN4_e7eAI0{KWA(vpv^za-zSv(6Ak=V3yBd*LuzK&Kxow2NOTV_ix#h+HM7|^pb|_ zVp5v6S+zv#c0klHrDg^DG1shNKRyvE@jGjnnU=}Sl4TQIW*%w!GQ+jHuGtK>WWU+)|T|) zs>XNFAYuWE`1uebxmo3j$kS`LqMfC*P)oV7@+Ja01s=^RA1LenYJ!)XKP^n7bJ8g^ zEexVPhzippzazl!)Au4i%S772gKmf^BGJ^-Jczf@TKuO_bJapFG4ok~DBW|h{<=#U z!09A@zX3?7VVCI*4k(>fv3}z434L^Qw?4rEsMm>C1~}!DNgc+?047wgo2;rcPoJ)0 z?CAESP8($|Hra5TW^j|`_2Zz8OxqNX=pnqQehjSV15L+fx?jbV*{;bUudgEVfIduT zLhy5kuw^rI!om8aNA#Hv{h4|bJemUZ=9yP>ayfx;Y|I=zWV)`$R-9hFHB9vhTs9jN z2cd-_t<-~Vd6??_Qq?>go`ZN5%4=rZ5z}_C6>9sR8^bi0@)gIcRG=PZ3r{pEL;)xK z4%(Pld9PAfmwqNNS&AGYyc~QP6XFqHJ$$Z=gNpY>kNPqGsD5n9v)x>r@VX!gKJoYn z2O?ByQ0#s(c=l3I-2$dulqUzq2fM!w$kvteZaJs>^civ}P4 z6Q=X1okiNfLMpcq%fZ|hH_O@kiOeN!PFv{O{q^vj#Mo~gBa4}#>+fDavasvmf;PS+ ziJi%dN?SphuDj_Sx6(VVpZzJFZ;M*GZ?S*qZvWm}{d*U)-HSV4Y|Ch1-x87rIxi<5 z$tYtiZ%10@(*C*qm&WJDugTYDZl`uF#CH9?yai>qJw)+z-~El7uWFaIwkULsJ;-id z%yuoSa!2QqhPL)S>ID@G>HI%!4J02wO0SU1eMswih{PvcAN?kFC-KtH8#c9NU_YjB zL$IHW77n6sg@Pe{x9ODw;?2$k&^HgLg%NpP+EUml&-cXOaDIUE=Xc7SKO%9CAs5Et z^ZVkQe{kEOe(8rk0p?uBk8_X#{>UaU;47>N4ZcEngYkPIVfoTo_;c_Gq+_KhN*unF z@HQSoZ6FYf@|tfj+oAb2n1;AjE0`S(;hZQ1uqu@ZZ!f+?83}UwC0YU+S`gI`Tm6xwz%7+H*_oxi)rN9Xb!0-7Y-4 rm`t}NSRbSZ+cK<>?(V*JobM7y+t60|E{T-P#qvj|ms3EIL9p;IIZgzy literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc78d40349a0913aaa5dac8fcfb6f17c2cb2c0f9 GIT binary patch literal 3838 zcmb_fOKcm*8J^{Gm%GcSNKr2*?%H}-tZdS@{8SAWR&57uR2i+&L(~QY#a&V>FS*3b z(y|DuP}>|NG=OEGfCU5wWS~G**ashzV{$D}NR;h{hKPS6m1GGzXstU(vZfPXvQnK86W6AlP~#a z{3T&V;AlN>ilx9zfXRMSD#L1!sb#&`gL!KBS}hfz~9QQja|0JZ&bbiMn5p z^@FMf^q3~;v4W_{ANXgwG^O1Vgq9F|hiwI~XCb78p+}tAM8GZzU##7`t1ZQ$Uea5= zB3c4^B^J3<_g8c|(9`Q?jog;xdukp1o zLZI=tk=-6|USMOskv(Z@w%Dqkms(P%ymK8POvm+i#;tSn;8ll{=4-8s2z5^LF?$Yr zg7y)5S)#a30 zcdOnz!U=WSD(kfqhiiXXCAxa*)Lk9VS|Hh$O6IJE_iM33hDu7rboZ`EXV$UXRn+Yp zg@T^9jl24kepff$Kyy*9aQ(*QFWzw_y{wT1!=6j|u?&4N1zqQ+HJ#*LzpdZ1i60tN zNUsZ-Ijf{+h-nn`Owq72q@w4IoC#i)F^$`*KDI3% z+mQ$VSo~Azap`aJI5WJwEnNn~5HoDZD0cLDbYwd^vSIH=PdcH2b!|Izd}W&2#s@d1 zw+6?zV&}G{b1VM6V08K2m#`k>3gui$C$41crAk&auiL#452RAv=2*lzV3h0#0B$E!KSyv(tMyLb;`QX@@ft(@;1F^mO3cZ{0t+fnllP@ z1c($L2}}RCd2Pn#blQ1(dxz3|i_s6%*SR`yEM?l(UT>q6RJ;0f#xtrtr>m8mJxB3C zW#&GBL8j2tw{Q+Gs?4`kxClUjg%{Jcfhp!;%?7K`>_`DyOQ?CQ=WJb5%a&R&Or4~a z>8~hj)h@T2N)`qX&gIG~pp{vrm78G8E?ynY&si1$*h32@c4|V!z-0*2>q<$kNGuHF zGcU#wsB;4gIa~&Nmxm!-pG90h-InX0w~R6%x{vmzr+{f>Isj6>M2dv+9z~_9;v|Uf z5rBNw!%&uOy-DP~cWTbf+qUr3Srk=4i=*_Dns(Zm-4W##?t;~^ zG#_tCow9@BCB>#!%~D;d16J!|U4E)OX>!a`upZ3&G@1T7v)@L8sDr^FgwJxQF3nTl zJe0Kd4mosSf8T&mO#%jK@(_pKLx<;Flo!xF{ynt74WcuMa0@r z{TY_3Wg060ea(=eRvC~ex{rH4eY^?V<~t>=DAe^mMj&lEXi`BzCDlBA&J?Pq=`n$w zR&T*@c)=k0N!5F?5EgdRY@`&APrz~DQOMjVL_gaovmiwsu9jd+rP%gnV4M+DN12O4 z$V%1vuXnn1NM}MFCbc78TvS`e>VbC{Oq-xH^7#eL4K&|wuApOV;o4g_bHFZ|xAQkA zA12c&;aeFZ6~xr}G4%_NYXnW7trjs25w3jWUS4O&am9jBHpm=KQ$v+D252;gEi=kU zg*@sRrp+TXYo8HLQESBu-Sjc(hUn_E5CRFre0+*Fi{A5wt+QoI!Axi%p!e5G9)-mZ z@|Jh)_##;T06ww{88BBLil23)q|-a>^b9(EZ|}=OTwMN1BZ7KTKto!v!@JU@hF_8UUL=Q{*nso)gwuW0>H8jx(Gyv@x!;4j5)YLJ z%KG`8*s&GiMe?*0?{$&`PFK?DA9Ri!+YgF8%8CM$#RgtwkTSF_5B_(*8^!v+M!ekT zgcA3sSEtu6?uG_mgyQ$7R;RZ5FMiy;8@lQwdS4xZ4qNhIqZ>?Lze;-AYeLWdaqr{> z{*&mnOTJH~5fDGUbb4}J_-vE|`LnYemB)E1Ul1mL7)W*F7<6(27D+RDSE(l2i*Nx& zOlb~NE^`Oq-IZ>?yV7~nNH;x%} zfoRHmhDzBijg8r?=Y%}5u^0b_=o;zO{uwc{_wHZ1QnIwFsb9s{pb3Z?k^evj5ryOa zfg literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py b/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 0000000..0ed8dd2 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py @@ -0,0 +1,138 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Generator, Optional, Type, Union + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Generator[None, None, None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_build_tracker() -> Generator["BuildTracker", None, None]: + root = os.environ.get("PIP_BUILD_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="build-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_BUILD_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with BuildTracker(root) as tracker: + yield tracker + + +class TrackerId(str): + """Uniquely identifying string provided to the build tracker.""" + + +class BuildTracker: + """Ensure that an sdist cannot request itself as a setup requirement. + + When an sdist is prepared, it identifies its setup requirements in the + context of ``BuildTracker.track()``. If a requirement shows up recursively, this + raises an exception. + + This stops fork bombs embedded in malicious packages.""" + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Dict[TrackerId, InstallRequirement] = {} + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "BuildTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.cleanup() + + def _entry_path(self, key: TrackerId) -> str: + hashed = hashlib.sha224(key.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement, key: TrackerId) -> None: + """Add an InstallRequirement to build tracking.""" + + # Get the file to write information about this requirement. + entry_path = self._entry_path(key) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = f"{req.link} is already being built: {contents}" + raise LookupError(message) + + # If we're here, req should really not be building already. + assert key not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries[key] = req + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement, key: TrackerId) -> None: + """Remove an InstallRequirement from build tracking.""" + + # Delete the created file and the corresponding entry. + os.unlink(self._entry_path(key)) + del self._entries[key] + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for key, req in list(self._entries.items()): + self.remove(req, key) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement, key: str) -> Generator[None, None, None]: + """Ensure that `key` cannot install itself as a setup requirement. + + :raises LookupError: If `key` was already provided in a parent invocation of + the context introduced by this method.""" + tracker_id = TrackerId(key) + self.add(req, tracker_id) + yield + self.remove(req, tracker_id) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..c66ac35 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..27c69f0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..c01dd1c --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory: str) -> str: + """Find an .egg-info subdirectory in `directory`.""" + filenames = [f for f in os.listdir(directory) if f.endswith(".egg-info")] + + if not filenames: + raise InstallationError(f"No .egg-info directory found in {directory}") + + if len(filenames) > 1: + raise InstallationError( + f"More than one .egg-info directory found in {directory}" + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> str: + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + "Running setup.py (path:%s) egg_info for package %s", + setup_py_path, + details, + ) + + egg_info_dir = TempDirectory(kind="pip-egg-info", globally_managed=True).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..064811a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..719d69d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller, HookMissing + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..3ee2a70 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> str: + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f"Command arguments: {command_desc}\n" + + if not command_output: + text += "Command output: None" + elif logger.getEffectiveLevel() > logging.DEBUG: + text += "Command output: [use --verbose to show]" + else: + if not command_output.endswith("\n"): + command_output += "\n" + text += f"Command output:\n{command_output}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> Optional[str]: + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = f"Legacy build of wheel for {name!r} created no files.\n" + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + f"Legacy build of wheel for {name!r} created more than one file.\n" + f"Filenames (choosing first): {names}\n" + ) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> Optional[str]: + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f"Building wheel for {name} (setup.py)" + with open_spinner(spin_message) as spinner: + logger.debug("Destination directory: %s", tempd) + + try: + output = call_subprocess( + wheel_args, + command_desc="python setup.py bdist_wheel", + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error("Failed building wheel for %s", name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/lib/python3.12/site-packages/pip/_internal/operations/check.py b/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..4b6fbc4 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,181 @@ +"""Validation of dependencies of packages +""" + +import logging +from contextlib import suppress +from email.parser import Parser +from functools import reduce +from typing import ( + Callable, + Dict, + FrozenSet, + Generator, + Iterable, + List, + NamedTuple, + Optional, + Set, + Tuple, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.tags import Tag, parse_tag +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: Version + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, Version, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing dependencies of %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def check_unsupported( + packages: Iterable[BaseDistribution], + supported_tags: Iterable[Tag], +) -> Generator[BaseDistribution, None, None]: + for p in packages: + with suppress(FileNotFoundError): + wheel_file = p.read_text("WHEEL") + wheel_tags: FrozenSet[Tag] = reduce( + frozenset.union, + map(parse_tag, Parser().parsestr(wheel_file).get_all("Tag", [])), + frozenset(), + ) + if wheel_tags.isdisjoint(supported_tags): + yield p + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..bb1039f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,258 @@ +import collections +import logging +import os +from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + try: + dist_version = dist.version + except InvalidVersion: + # legacy version + return f"{dist.raw_name}==={dist.raw_version}" + else: + return f"{dist.raw_name}=={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17c24fcf92843a79b32a6ae51a20a4e4577f8b6e GIT binary patch literal 258 zcmXv}J5B>J5Vb=DQKU3Efh(j)up>x|Qc`jN8q2IFn-Pv}c_zi?97vpjvv7m7TmX@d z3a?0BGw*4n_xYU7rmAB8cHJ%O{Tjp>`b3VCO5T-M&#Kpp(f;N!6|+r#7m!WC-~_#q zWGJ$@5GZygyY|&}$j$U=p$}Kq`qWzcp^k&)uZKW5?q!qW zvbnnlCc)dY8)V90DGHY80;G(^38lzziUwQ1B-S>$KTIC}JFd!Q4IRetu=V>wYyC6Q JdR)d;{sEq@O7Z{z literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcbf782efd488bc41d026073b8d04669894e8016 GIT binary patch literal 1790 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 MyO)g+I|TWE0S-S+#{d8T literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py b/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..9aaa699 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" + +import logging +from typing import Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + *, + global_options: Sequence[str], + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, + name: str, + setup_py_path: str, + isolated: bool, + build_env: BuildEnvironment, + unpacked_source_directory: str, +) -> None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..aef42aa --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,741 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + NewType, + Optional, + Protocol, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import StreamWrapper, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points. + # Currently, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. As a workaround, we + # override the versioned entry points in the wheel and generate the + # correct ones. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + # optimization: the file is created by open(), + # skip the decompression when there is 0 bytes to decompress. + with open(self.dest_path, "wb") as dest: + if zipinfo.file_size > 0: + with self._zip_file.open(zipinfo) as f: + blocksize = min(zipinfo.file_size, 1024 * 1024) + shutil.copyfileobj(f, dest, blocksize) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make( + self, specification: str, options: Optional[Dict[str, Any]] = None + ) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( # noqa: C901, PLR0915 function is too long + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + f"Unexpected file in {wheel_path}: {record_path!r}. .data directory" + " contents should be named like: '/'." + ) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + f"Unknown scheme key used in {wheel_path}: {scheme_key} " + f"(for file {record_path!r}). .data directory contents " + f"should be in subdirectories named with a valid scheme " + f"key ({valid_scheme_keys})" + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + existing_parents = set() + for file in files: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(file.dest_path) + if parent_dir not in existing_parents: + ensure_dir(parent_dir) + existing_parents.add(parent_dir) + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with contextlib.redirect_stdout( + StreamWrapper.from_stream(sys.stdout) + ) as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..e6aa344 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,732 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import mimetypes +import os +import shutil +from dataclasses import dataclass +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + finder, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +@dataclass +class File: + path: str + content_type: Optional[str] = None + + def __post_init__(self) -> None: + if self.content_type is None: + self.content_type = mimetypes.guess_type(self.path)[0] + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Optional[Hashes], + warn_on_hash_mismatch: bool = True, +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: Optional[str] = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/lib/python3.12/site-packages/pip/_internal/pyproject.py b/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..2a9cad4 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,185 @@ +import importlib.util +import os +import sys +from collections import namedtuple +from typing import Any, List, Optional + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib + +from pip._vendor.packaging.requirements import InvalidRequirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) +from pip._internal.utils.packaging import get_requirement + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomllib.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file + # or if we cannot import setuptools or wheels. + + # We fallback to PEP 517 when without setuptools or without the wheel package, + # so setuptools can be installed as a default build backend. + # For more info see: + # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 + # https://github.com/pypa/pip/issues/8559 + elif use_pep517 is None: + use_pep517 = ( + has_pyproject + or not importlib.util.find_spec("setuptools") + or not importlib.util.find_spec("wheel") + ) + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + get_requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..422d851 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,90 @@ +import collections +import logging +from dataclasses import dataclass +from typing import Generator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class InstallationResult: + name: str + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Generator[Tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea60bde1084704e1c49d806d74071b40df71adde GIT binary patch literal 3437 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5229da8334e8db820eab42676bd5ec37c7ac03c7 GIT binary patch literal 22115 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 P;p_q7S34S>5rqE>6`A)E literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58f46a7c6063c4da029883fc302fa3e0f678bb48 GIT binary patch literal 38467 zcmd7533OZ6nI`zK5eq>AB)G4Sn@Dg0wNR@?%95zn61_-@Z6r1f5s(B5Aei?+Nkqs* zc6q8uCp8vRl@>Kgj;NZ!h3-;yyL+lmP0hfe zGp_cWIW^yZ--3ltb~4>(&OC`1_uc*8ckh4y_1?dzsBmz2s{e4y#ee;6j{EoYqCPgo zv+)BX$KB*YT*wgR{PM5CZ(#36zmff#{3iBm_M6$S#cyH1W&Se!8l%>j&2KYMUQ^T_ zbNC(1Z;qD7oPKAl!e0@q^jF4Qepk%xcgL#yRk3P+b&ux zp82iOhFGJ&k@;=WrdYGTnfdL}mRPI5mH8d;xB1(dzdXvvI{Y2X?~HcFy8K zuZZ@1bVs_3@Z zcK>$fua54Bjrd2H-xJ*#+vVTI{58?tu|57hO88!c?_>Vj=o7L1{!!+yi;l$(_zy6D zee}uLLI1(nA^#!v-Vi+;8~2Yhe`EAW?5O`J^EXA0#g6-rGk|nPB3Q*Cv?`PR~h>!|`Y|Jei2ZrzP`v zWHKSyP9(xY@O(5ZnNLMTygxldvB9WhI}`r;Y3X zaY3qmMhIVt#Aij8d^{qsVASWh7)}Jl$xCRs*Ni%XVt5?g79!_o*`U-@d?oD&n_*z**RAUj%vLe2^Ff-#@I zjNht@;c0w^L^u!&CxW41B8Wg#sRV{Ykpz9C!dQ1i?sY(oM2-qIj5P*Br%G z`aWB355f*LR6}b zhykSyth!4=h#Slg*(1z~#tvh}Kd0?DPzJ5V(LZiq{4zEi!#EFgqPW zp_rwK*ymC* zAk`L@(hBI^i|~%n)1f~6cH-BI->y)Eef^=hHp3PStQw(V%!0DgDicM!iL_#I-YeW-6|LF!@jeJjFtA;mVN+>PJu zG^0b$g!UAU0p^D-v=^hbBeX9(!sd%P^aN7xM6Uh#-G$##{O)FX$1pAj*w~rFduY~T zmwOVq_l6Fl)I<0?j6a%bw$M0o?Zb#G^GPZD2tuDw*OvSndX}w){RLn9sFv%P<~y$W zPM`(!g-%jS&;xhqDYRj9&g6Ygsy-nD%YuzC`9C>$JkJr#6tQE8ych>OzXUMBCoTmO zd@MM}pAYj2hzo~!>{(%fk53P>s7t{s6nP;o#MoZON(-Kk&n9>PbRoi$qTNLKSU?fzS-^UUi zop_7$TBXX1(fIjbG!SPPfhajI0sL!kF4TZ6ARvYl2^0qaj{xkXs5Bv!g|ERUN)@vr zfTK7&GZT%3LsH#LScpZiv8wwS+owdygf38iKw}2tC7YT;GDopPO4b-dJWvS=49tXQ zc5d4(*&(%&^CUS3;YejdI58_sPpZhg6@eD~0U&c52{VD^ zdBdyq2?bT-@Rm?eG>%h|HPLz!;VP(l%`k76=K@-)c_ZGaJoe0&;|=91ZzjA^ee9X9 z#9NvA7UJ+m?P1S6H^oR1^nVEMqQ0?K^{Q_yWuN*sUxqro+8Z}T@S)@p2Jls%D+$DF$S}(Zb&0cT%+&L$FaI0D zx>q3tNJ3iaT5YWFgKApVF6~>+abEMp(d4nAq3QS#;M$N3*Z9cA={V3@g4ukJhz(;h zh**ATNQSsWD#Yc3*b+pA@Cy0PdVP{3A~FaMs!gawt->L44wJ)x;yC#jJamZhSz$8F z&~Yo!ZbEA%V_cNXgtSXGG$F=(*5G-OdF+%##@J0jvIY9S!Vx%9MO=tnjDThgFksy< z83ch9QYa#&9u`v(ieH^(Bnj#ic)RC1}uWa3ZVCsm!(Sia|Vd+0dXtP+?L9)9bXI! zlJ#m(Ao4+~n@0P@Kn!0zAh(Ha{peFrn7kCZ5)Q}%=ygeEF&w>6@I~3jqz}MGiIp#R zY;s}ww+zc73WJMgd=jaUyLM%+1vsNFD8bgk@LedbBRmw=^egp+lR$S z0@D>81MMUZ&qQX1LAL>w!5kRIXwaWZ$oXdGBwGM)*!Kg;<`bK+CZ8HfA3?0Zc6y!5 zb#rdd;x~RUbD->~-2P9u|77>OyMJ=v z-2?BB{Cw^H_A)@;c+xV@uPa}P4@*iF8sTp2gKgM2MnG-B@?dsk|1H{NQ@H1DQkx@*_s_(LcE*X32&CVp}J_n-Q(!kukuz1@GSpWZ%hYW;rC;`n!-%9d9z z9=IiD>l$xPEl({T%htD{ekZDtt8Rp^V+&Q-`e+XuhL%U$cG7#>UvC||HU0h}@;84t zxaZcX_s)~QG24zoLIWQ)w4$gAw7qSB0-7Gl!?`|iU~S+aqAGJvZu>5ZYDX<{>EzqS zI@k%{LBkOP#W!QP$f zTFq6}7{2x{^zmur=^dnEy5QS7vS|Lm*0O$$Pd%^=qJq?PYu$t8o=>y*LsFnY_jMqw-Y&XD7W zBiU%jBSxb@IDxz|KSdEHP)?GavA1Zm^_qoC6l@TMxSCL;*+=kNh)|R@5I`P))TYgi z1W09Zzd%Cq6FAp70z!M<*t6~)ym$7;FTC}_ntRvcL0Xt|Z_H)gRX46YY}RCyl?%((cpi_f^cX_q(U+PU7`d(WKd+nes&o9R20?mM*Be0bURsJZ8c zE$ghfF|uO2kxW%}rk$Ovq&E+|abVrmxYB)l_}1_{J07}*vx8fI{PbH-FFPK!cH9o! z3S?S$rCWEcweGp$_|VlzO~1O5T#4T6NYxIe-Ges_S(kg!CR|3Zi=YOrV+J*7U?Ih! zRRdq?GXDABY6_0~K6rRPv|=_{CM3iDq@9nSC;sa` zKI!09(soobjDZJj4+JKoK~W3@XqzNfc_1LnpeSJ+&RYgH5k#s{`S3^u+=afp{$?si zK0*d@7o6+dqe|BeGXdRlNs>$ZF>$Y^C0$2o0X z0-8-}tmX zUzeA?eLqPBuFVKz$?ZA|U*;V_f`P{R_A~ri9P?>;{tiWnU2y*4Z@7QB&ZXQZe|q}< z_>J)!yH=`J_N|7}%>$_>-@~fmpPv3t4Bq@sO}!!6vi}=2FBh~~{EcsXgN@9>!opb6 zILMf>xJJ^hk!)4%&9>#XOjTdHsxMnzchkG za#s!DOqb-I+mv>WlhZQNe%oQ91PPEtF7S-7cxjG4nc=_8euh(wPx({!d zjCGZZM}g&6*JY}@(^cJ>s$J=-UH7kiP&JmV@4YvY85m0sjAaI%OAkD^HgGmofA%vI zSA8H=HTIdEt87_%`7@jR`nekP=F3Yjf6jp0z1~ALrk}Z54vtxVHee_JnB|bw{^uqu z{C{3!In-(`g5lZ{K8Y?oZsK2;xv#%5(r|_ozK!CPWh~iMMvbs(G5-OQC0q1HTotOD z(L%9P8(%Eql&dRc>w>E+>Wr%+?dnL`IyNtB`sfTm5qs`&y#t?%kY8hRH{{fiE(j1Y zM8rbT0Dm;pIB`fWnWCwFePN&;PE!IwbBo+*)|1!>9 zBlqZDP0B^2_U3MBRNxUEHtMWc;`NOZ!vhUF)8@4W*gbf$A&q zQd5bBS5$)cRnxE;$k2CSQ-#R&Vv1@lf~)wLEoELJSOO5EK%8`~n};AP7J; zAByt~6lj5jzMqfBqp}FK1lN?@s3uS-`b~D}e2CISP$pEt`KNBI?i=Honx1q`&zfsX z%C<#brj-d{R!k_IW5~627b!IE9=mHz>8ukK*&}uoV;j+OFL}T=>eVMIg+_$iN|NK1 zmE_nQj*DR8#NNil1 z+%ZoM(~cj!i(yx$YLLw$$eAGe5f}~tr3Dh}LqSUr`PiH?JBOH_0p`-sc_`3@w27ol zNNi%za>&p1g1LNLp7r3HA-6a*6rT=@d^mPK9D72 z4ncCJxy?(gPu;5{P{qK)ieL+lOhyt>jEJmQL3=95ay3+4tsyTE{DiXP@@qJf@bR(G zPBx66;sL$u~Ds^cMp)o4`ZuGrn(NQ=tNHFXC96uAEnI**zCQj`0=JB5i zZ#jcel6f*dGbeLczlQ}N3-Jj3l*}{-B|Eu{nI<_PPE-^+rLy4642j}^%|Z6cHba5n zg;Y*M$ABF85JwQAvLKY5s7#*O$wqz12LKI4Xij_sIf2czarMoay54kMZ>DZAT{pN^ z=UXiQu)Gm8_|3h`dzZ!;E%e6AtL6;9{Qf&9{!h>}nncDD-p#s` zc(}G@+qX|I8iK z5TX|gQrbr|MB(=k>b1&n=AXeY{0TWfp|mz6kas;d5D@627wE)5m7f+i)JiUj z1e<9y#v`-XYs1qb7=}u6RY;la)7kEHQ^G_B3@SJ>^QJN7>Q33Z;WFW1d%C3Fmf&9 zQ3{jufy`*^zt{cazPI{*JoMJkTEm`2+lS>%*``j&xVHW1>|OsI|9|_nOwZ1A&(2i$ zu2lW*#p9^KUH#_OrK@j#bLpEak%z9nb!YXPr6$V86@ef1zA%a>m{1zam#h#F$n z1u9fXXe5ui_667|Fuemacx4*g3t6UIa$5>rKtr9@hRO&Kk?O2&EUW*bCOcGHQV5%2 z>10jzp9z?+RbMIEs81gy2Ooh7*0*0uG@zc{ll2>r5IJFT zXsW8b+6uKAwmTF}*ap%>48*4cv53g{ZD=-2l^oE4{*Oz1ize{bQ6n@>WHF=0%3W{p z0xAO{zgL#-Kd{#DD(UdJB zdNfpvc(*0bZ$CM~i83l;(~`32Rgc@Guf(9oT?!fBF{z-LxKQGGrg5Anz6{_?8TC}B z1RE`efF{HM(Wh~U)cyi5(280y zCkvQ$&`QBooVK{95KB`@TFD5pZmX_Z5-VW{E&0jtR|lo|JGk?QmjDQQ|0+a(P&s`bdooU?vP8Lq@!m zQ;6XcdfhVIAZ#CKFPXa**s{t%gh_yG7z$=WBw5uh&`){FBhzf9QT4)C5hCnjMIo4i zpvf((1q(EBB%2Vt%D{=N$Tp5JmGhFO_zH&W63n4yNYzSJ0mg$&L}2t5MC2453iNx~&dg_2$s;U#=tX^*zUTfHvX*iT_I0OaYJwMy?^UDD~}M;T{F+S!q9Xn}f2+g_-Lv^i3?rcZ!Pc4ql* zLQz{OyN8!iUFfjg82_NgyIwo=uy*+V>CDJ;4@RC_ZyJCaZ1e8y?(xj-)9Kx(Q@bW| zoZ)FhTefW=(>9WB8%ee9%vp?$yEjbc=DHkbuC0Tp%sX_${DHeC=i+vrF{EmTbJZk0 zTXm5@F%rB3f5>P0f*}&((rdGB!jSicFp0&AFwy|7<}wM}lryG;a{jp_0<}NglNw zvbiy{W=L+)nPocZGSqZ}qnK%!4Ul3Frd@;g$5XC7DchdSpMf?QhWr07@I3Z2I8HKs zMbfNQLGx<`=4pBykSPriqG09G-?|X0aY)pZOxj&%AnuAzoE{(L8f2)@%F%c!BKe5=Q%{WSTpnDF+7- zTr`}O@?arY9?uS)SzVlj5L}Urf4*oyYwB(uTRwL4)bgp-noP%mbjN}Bo7ZYiFWMiu z8oV8OTmRxuc>W?;)& z3yN{)JR^FZwg4Sw^t@@_0%dCDo1!GGO~AV?!Goyu6pkKY$g1`seDuMXK(|1^c#yGe zUDgfk276pfr}KjA-~`aB`0ClL5laoELOQ2;yAe>;?3|Q6dPO zipD6L=#YPQZE`M>!O!ibC5N%4axQf)*iGi>!O0 z%>Ut?+x8T!|Fg8>LG{t;QR3!eSv`=x^Fh7@j)bAlK~%7+NKM7>+O<_%d8nFYQ`Z=+ zyCAK5U^&=SwRB0_GYZ=+`M0F8fJD8;RrNArKcXsYYdYL$IGARzxF)z2=6j1(w|n_Z zIM2$*pNSCp4f;G3M+b?RXHW>Ws4eS7D78%qK;wD`DFeU_B?rWb$mGAQ4x$Y?DSr9r zC?=+#gMp@&1WOdn*#MRf64Z6=%)Us5B(y-8=t&W5k+C&S;bO4m?N5$hv~S zOe{~(KD{&Dwew-ku98qPt9@9r`{U}aY<1Jh$jTPb&K<`MaH~!jz~lBn>ko`>Q17*S zawe`8Mo(PrPB>LOoQkH+z=6mq6aF@mXyb2(1?d9}5KJy2nDoI0k$OzILIWPCTX}@n zkcV)Pl1CE*X?t-#f$*e0P!UEDt^*o`zC1`k3Ox)!w+-_KU2O|T{9mNJ z(L4w8vE>nqtK>miVl0$A2-V>?qA!-WX;Z*c*cYVM*#N{Ugm=iP3tg39hZ%_*DY^>d zWPd&d;tBCBdGhg4FfL2}*%2nIl|dyC9x^P(l(D4m~H0A>Mm2; zil{fYGJ4vPeY$eM(nMYYfMf{)0LXOWVM?=^9iiB#J*eKkTDzLKJ9lSp^>V6x`=XW1 zy`UJxWa?Yeo-HZQ_LOrw+(!VS72mC3Ky>&)&9DYdKkgsTwsqc~zBQd~;WI76>6YPa zOBby22das2*!!uI8`%G4DS8iNo7!&sZuyWf)3!C;wl&+_o@w5jZr+=1Y`xujt2Nuu z{%LtxFB9H($^1&<>Je^6jMNXDU607`O*MNwFsEF-YO9~u9GVM{jwZL=q{Rwl2?V_vhMq=fw4_)3YSkRD@eIKUJgfruygbA{;g2qD1*1CCo zsNHOQzDS(_CodKD64>EwGo@Kge68$5R>rNtd0)CAq z(eEM^v-;1JcRncZT=xv!3uSyq(!L{Wo}($}QK+D1DmoribgYK%#{MWqnx=b}_oO_% zDQ7R-b&q%5-A*jGku*QD=H9vP?pW=<+jpn$?$Di~HTTvHi-}ApOcj;Tp>eflD-pd4 z5rv`83#X!g!(?(j&SX}bp*X4czX&cRE3G_M8TBY;BteamM{k7-TbU}rZ7Xk#1knh}<^>glSYpM7Zx`cm;{}r;z+6Ir^B!`xVR_*EP z{zWTODtlwkiutzfmMzoJ|Dd7&-c=|~U;62#%-Az&{2zXXRKF&cCbI6mpgFSc`d?ek znB7jU!b2KiS@-F6H>oY)42m`P5aN;Q*LF)qB?G~dgG?r-Nt!AY>B>1h zq}xcqiq6i83qb)#Q<5n%6V!l!CybEkp(qTvf=};|xj{UNC!og+J@~nzdK9yP{Fv+` z3kx20B*7?*6laL9U-f^Kf%Z{HA?u|wEj5)R9UqNkSd>|L?o?hPh$0` zXd+tjMcR|aDd%ZAld34NzBUq1A6Pn&D(__2)Sh(Po~*km+uW1ohjUi09nxlVI}oYg ze;SmkvrC?QmBojJ73sgAaCrjy;Cb8xRMZOrQwk=SCMLZ|BOxoi31t|G!X>PpV5SM! zl%^!TI;&bf?5s5Dcd7rfyq6h`cfratWQL<4}>P{_icDyflP)slpkgoX?e8-O&xQMXPG#F&3* zQS*Tx2NrvBm$vBDl|w66mVhc)OM(_9*hgS@)A}GS65m9!hnAm=t}wCU zgl70P)TRiY3iLM%HKf;_^*=DJjAvT5rdzf`F9ioO;b6KCoQKydfQ#LA-Elpv*b02h zgCk0Izh}OG1*q28w(Pc@KWTrrJ+<{9@UcUN?KzXVYI^~b3+E+l+q`-vfd`Qy%)KDrtrk4Kd(koG2 zYb0_L+n{~%n3btVe3WQuXoSaOYIm3RFb^Tfgmp?&%FCzIAM<&fIR%E5f+;YRuxuhZ zc35U2&(1*9Lx)Ds#G$2y(u6V83$s z44M1!0)a_v3uo{n*?~5mr=sT|qhgGi5Q2q2Cx`8(L<1!B5B`^WkOxcr?E^3Vw60OnbSIJT3b=1q}uT%MAMf; z6=OjO+M3Td4(nA@i-qpCW}Be5UXc=`K@S}=t!r8hEIbd<=FMOOnS=iwGC5R4Si3rd zq0NN~mHgzaK$tFJud;P9?PIia6%tbg7&?Seu^AFIg|Q@P!N%fOC=1Y9$a^9e=IDhM zC9P4oc}3M%UMZXbue?Ib_^dEn$Oe8cd;#J(h}q)meyJ6!l!*qU}OrkYQrI*MeRr9 zxXJ@I+-%nesv(QqSnu``vFpg|%?b}OTT1lpaZC!G+`k1e%0Z4yp%v%O;{%4l(!NA_ zYA|aAT;K%r6Bg~!h7pQvB>o4vCelJ`RmhctvNNz^>gT!4tO2{uEdGGNbGLBa_{77=FjnF%}C z(C8Nh4k1i?3a=sfO_^BKjJK7t#0o`s6lW{qI6@;-@0GG~l>k>jt7w*>Ars{faZTI; z;cgm@qBV&tzzMbC&d2Hvd?;_xi83)bmWd=g^^Z?BGr2hN5ul-u<4PDUA`cla+(faG zVHgJrI#{eou?3Q9oE1JJ{5O=y3d{z&@3_fFUY9tkshCW4;h4>Ea5|8T%*f^~qdN3y zfOx1XElu2y{JA$J*)z1*Xl?>y0Ppm`@`0?o?g!Pk>u=THZobu=c6Y;CQ9fMehyg}e zHxf54rP}tsx8=R2lxuv$Vyrjm1^*&JUIE83Wd_+kBoP% zcdU2I@08y=Lk2GtzW5Z|@CCBB1a-s6nL}tveq5M^8XE^i??=|L#YJ$OK*#n7BpP7x zrOG{0)utgxcK;>=^_Mgr7ua~@jAizQA9X>(Zf|%;WIz8@+@QA{odi>K&QpPA?aGPO z#F`7oKY!?ITS=@wzvcqruNV{2nT0E28mf6`=~!8tSEgrBr}hwy!El==v92D+=1?dL z1D$bzlaq03u`bt5mtBmtpo7EJ3w;KuwV`87;ND-r-p zUF*WX%nR*9mb}O#p8}i&oOT?tYVF145Fs0*o=hP-&T;+`-W}|HXZ{psy|a`<<$C3- zCvH9OGnNvh+l{}d1#2_ho)ZVGT3$}u(pMIT)3+&|DC^c!pzN=qg}_*F4tq)GoeFiF~

1oWX5Wz?bD)C}e#QP$G0plg4Z>z_QPgPAucS2N}6iaLy0$3yPSF zz`=nXvXjYPA!ekS_LV%xe&TG>{*8s9Z!Gw*U&|sbI|&eo@Zpm~GMWzNUth$_Zc7>D z`>uK;Gte3CJMV=7+UyK`LGO8-hsr}rZ-_{StCHcoWC-H+N{%}!^utY-kJFh5GG!nP zP>AOcGE>0p3{eZ9E_y^^5HWxIk9eSt>wvaQ{Hi}PvugyXMt(=7%{anwe{W#+ElC@V zUWmwscA5S0yZAOTX2PUp6ZHBtIlo8F&&cT~hoof%5;WZD$_ccj!8*AFt>~y^CUOGj z#n0iY77!~5$%+x8VUet8)lu>|{U@FYj2}6A>fqTUxLzJ2!+bm%{b8V00_>R*@R?blmZ+%IXr}Zi6EuWBiUF{$}}d`O2w#-VfY38e6HwL+1~z zRR5v#uOaVuR)1XEax<_T$T}OcPS?8AlX3ECCl8%%=vdb|79GEGa+MA1)ipPJmwPkS zo$2b%A8o(8`_AsW2ksoWKa$z;YCQdSAj)=nvwRn1U|l2w>#Do)6q?%BLju`*Uwv;!dT4B|^}vmz z*@0a*jy|mE%ht4IYI@T(z4yxQ8$YPok*nhPzKv?GqyNTn+`p3P+MDj$n{D8=V!QXD z*zUR;r%){4dHd?EtGDNG&EGqA|An>oG3250y3;k?t1sM}|Db07CoUBANiDZ+^fL>3 z`e{Geu7hU2aq>sbdtY1Q_kCb{;-?6`~;Kxt_rpwZ_-m-Jz^+t|yWl^(^qN+^QX_@7rQ&t- zR=QknO2c8*T-YKAv(v$Oagq~p75efiRo^@1Z!0rt^O$&@6J86BOTs25oTe@D6gkI{ zm93p*^C{V&MpX(>xp&0IOm^n&Y{2!r5{|}ayu<;_-)-zmeukYs7{XBjrB(){X)sO7 zv^W$J)hl#rfm+c7>I6PJ4$42>GBQPqGbtkal;SOm+B?>u-D(CTh7)AgT30w%r zMnaSt4#5BkVi{SBfAeK;YS(a8SSUOyo5yRyPjLOIHpYEss<(2BLh;F2($$e!w1l0} zJ!5DPyijC?irMGp?K^#2BR>P$@s^n`$qb6P8oXR#rm$^5pUA+1b@ z%3CY*eum?sy;Ca+ds#m^yKpl!ARb#DH!b_Bm=>^iFli4}nBi~oZ zc@hr#d5Qe2vux(GH9)%tYqh|-%{oE-6A84GqB=@rbWt58uGfUTbdncPotjOInyO~9 z-8#N>{LRx#r?XXUI9-VT>${m0Y&$A9f{pr$%*3)pKo z&Wr5GiY0k+1LSk{Kep8t_LsDi8G7SsTyG&+yzP$d`=_&Y?b(i<*`aMee)*4IzL5Y1 z_@LhVeoeNnDO1;%uIu}CmEG>ZSa#xGwhwG=jA`Yy9G#e$II5gLKnG!;z~_Pj($S+h zkq*yUnEj0jq%0sg0<_v^fz1XaXCUx(oajb4FWzwb6Baja0-~)#zUt9QKE@1ui+t_m z5ZWQobP%lM(5@}e-Y1CU5XCGk!J+FA>3H|V9Gl%hx@V_x&pm*ed!75lXtvn!`I_3Z?OoaKzHE;-+t`+?`li7$g5cpD+1*cMkDkmn z1BdK}bz-)6@K+ra`KSViu%;_;c??U6S=_pEZgoehZ-1(5f4X%vT{D)mvMA_s)aUHX z>)>4VHxf(JxpMaEGgTrG>P z1Yq`A&g zwc^>}@RQqWwm4S0fLmJ}Ij0@|$qf!axdyHb2R)fAtv4>Mh|95Gaqw=K)Ig9rWv+~+ zEp2Jb8SR#HhI?m!g>2_wzQvWb%RyMoRD{vexw8LP9DbDS@Ig{9NBLGpD9Wcr`IIQD zmWF$m?q7S~^zH)GrE?tKQ_r5;pkJlUR!i?{H|6ZrGWLE_-Dv4r zJ)7h3bN?$F^po3Ffl=7Adid7p1_y7h&1-RG8(VTF`tA40zXy-7-$!=mh6UjpUoq5J z92K71+a-Dq)HDs%l@OGlRP`NUphseDvZpR?eX z?F2b1`D|QMTaMz;Ure}i@(tnx-^W1V=RFJ*eQq0y+UTyboG_rkC!REXVrsB-!N?`Y zes{p)5ATocRVk3B_O1;J-f|;OOaJO*4o&I5FaNxMn7#etFtx8g*K*Kc*}vLwuj@{0 z4tHK!_TL}bV86MOMqK;}jZON`cN3%lJZNhBr0S@_vIX~P%9+v)!#N9upg&mc;!-SU zWv|eomtXDd6(o4$if6eZSI%CYxF0iD!Mv5U^jyq~W6&CMtbA;`j>=Cx6e@!>2F(r; zNIL;%67WuYXb-?f&uzR8hXk)oZC;Dcdqfl6Ejir^Y#lUa=_APJK;j~EJ^B%6w&Hxq zd4u4}>s1nshx?PP@7N0HJOgBb_6eD1w&UD1?QTUE(h~y`ddRSXWqdb80%0a>SH5Uo zOpYAUF+l#(Ty2DgDn*cXf@YN~UmOy|Q8rv*5^4k~Flem+&YB=w57Lq*WSY=h&<^s^ zSF+wTsUha^TJ>HA!N)(1OiWKXhC}Ib*cVhgP>_9SGcaB2>G0K(XPV74#;!>L()-se%xg#ZLpB78>!|o-Oga(pfk--@Nvu;cBQjG=rIr-nvjwem;}hF zSdk8KD^sonk-^NyNr_4MI)TI-h9rzqX9znbwkcF7E8W+RWy>q+Ld$IRu_bHP?tHW5 zjh1ZnaoOMWMpL#L_Hch~tz5TN=gj7+VL~^L8gTq2jOTt`?*v-b!Z|(HC)j$Ctjet$ z;L3!*j(h9m*CO31ZQYPITd~<0H19Z7QUNVQ%zH=?svt!$72J^seo8)-X!uSQ=?dfe z79)(0&K?D4*$UY+ab7We7tmkfA~~1Hp>ZowIWMQf>H~5!h093v9U7itHazRr%EhZI zWvk|g)*i@Df9dipn%2v!Z|tD356XLR8!`-^-8Fzg&MMabBDDmqqyKz!M@jgAis)G| z7IY3aE;v|7jX_sMm@Nng@-}869VSl#NS6Fe5q4Vggf!vNV~?RCWUl0STX`q-N7%&J zC!`8lTA_SkMnfgH4-K)w7dC39rVnA2zPBd-d48v-ffK=i!vOb{((J-wUNi z#@8B;q|9|6S{u?WKCIKM=UBG7KHIQ8Thj!?8XWZL)Q$r+RBZc{?j^eNqDC>LX7oJ892I)!QbhscO8saZc6iHJmIO!&A~Ddt`BamHlVFZ>1dp}4#` z0BN!-50EXmD0nDEJ*!c@=G`aH8ff_mB!d)cDM>?dlJK?3@CVzD2aS3qkAY9ESm3F&t-oPvjV&Z}P&VIhnoY4+|4(0Bm%`HVmGYiCkxlq2 zt$;0$tx(O&EL(*xs;K1KYsaI=L^>%sl#Vqfwhw;+O*>K6j4b&gY`XeXFiWgBLKUQ@ z;D1z-91f@%OAQEmiXWXVS;d_Y1e@^Uxi(8=$ zhF@~-UvibdN^&_tNBd+1ExHB2<%o=y*KX6+=;`V*S?PdSBeZ)Qa z5jXa~awq?aJN*&o`^;!D7&kaLzji{j`4PACBd-4=?#M^n^S?G45n9F^&T!E1SKO(O zxcwh-yFTKEJ~P@4#?Lr7;2I!R4QD_VNB@d4qJ+aAaUGBBO^fvzdsEupw6bT--hI97 zv$Ckuu;mku+}z8JjRsGucP~hDgXcXkAMlggQ)Z}I0aFq`tBKU$Si1KBd-;Wj{V;+b mak=U$!;Wl)CuhR%BS&Ql_iQ@A*TEamr!vQE)vzVPSln= ze5I{znG1{mz{+Hpvs$k(l`^VMB;rPxw*<^B;njq0Ky8fhf!mZr6%JQ zSnVCK?1F!349HDlRMbAT11RNGcKs8wgr5vbu@I{}OM?4k3F#tbUQm;8^1t60nolR`kgg?W>Cjxl7}7H|o&Z+s z#*mhn8Okgh^Xb&7$P2?mdcvTCnOOX-*c{b|GKtKPl1LeprDEC;?1O(rr$!{RY>5hV zB@9K$hF;%293UBSI@(}+y$8q|`Nl({7r9SIH-v{`=g#pc=Dm-`#y5n|#A78GLgH1p zpn{TR!+Qe?weYIkI>5J31rxd}X~B_3rvY+@857l#%CD2VE=NOFIaOF_shLnIf~1la zZg-ZWWm6>VnXEe~9^@4KOJ{*xCLA1gg}fOgWR+Xt7AnitW{kTLSmA!o-Q+lOWc%LbY+&MliR$-M^0KUz`Mdl7Jy|eZ*-2P=(P+R%ZB%$t{Y5IB2g_3 zYOIe%szXCCQ%4>7JNefd$w{x7-KXE1`Xv6_)TgN%Q&4%Li_m+0-(l{9mcv}#1<{JZ zbx3IhNG&ItbKx4Nqg~^65!>b`Ewars56rg&l-O;K;bC-SxLm%L7}a9Q88tSR?f=eO zRYo3y*`@tJ*2u%|!L9gj=C|j6nfm0JhuxzLo3}a3^%h;WIC;-~Y=*rIW2y{;^Q>~a zN(`)PB4N&*D$G0VFpnL;?Rd)t_}e#QHsEFDv+u{cV8r)e7!I#tSZMUVv=#i=wR!&5 z#SbsulI}}SO30V%J;%7PV0m=gUNKZR%X2lREmGYQ7Sf4Sm}h=yw0r8rs6|n1VaXnB z4maLN9|f{Tz6c%pTzYMDqR>5Pb`KW1N6hY#hux?1(rcdwM!#{p4*52uqDTV4cdz~I znu$lvheq@M(VST3Lmm1kX0~2Gg2H!8)3@m~T7tWLjV8NR`4zsIHiM+%z71)?_T2T2 z21013m8t}Tg+L4&($g%&UC$l7A0)69E%mnIe^w>d4ePR_NMs;23dD{ zSe767|L7Nc4iDN~u}{pb@Gh9O~> z<*kBYxor$A0k0eu*$F%eN(y@(h~=40vt-P$yozE^Q51BIh$56+8cneQd&ONN(6%G!X2M52{f8aeWzrS~9-+`N*?{}IAM!su2zi+(QLIQmy zA_ROzB6xkakXWsWax{qXMqMm~$H#x^$3VdUHTQe`C2}3&pk{`(nVRn^AO}9uHnCwB zv*orOwy`|1OopaZa4fckL-$)};X*N0RhmRd+2aku@|1BX1^Tl<*2qrqXd&49AlRD| zdvk!HC>6wGrg*F%_M2k=*5S{@7j1-^gMy5D8YsFAih$Q^cr-+A2i3AMwB79TB|_ubIhg=VV&0h?%^UFy>`r zp2{dPGKk_XuHt37e1WkvV-tIkoTJ9KBH7UY60U%6F|>&el8;(Ln|Q;h~Um8)h^ ziSssbpv%Idj`Ru4ws8W!&~`mdn6ve`#_d}Hc%9e6q-T2?B(8D5dDuorU%Eyf`GW<2 zzv=J4J91AboIGcqJXbjRih1&t{K-rC=P#T7%Q^A#UPP+Gm4Q|8xzh}h3Gyx%=jTAD z-voDMKZcq_)OtHuJY26K>0s&J=WiSpVE!sM1(dT(OC-!?|N6T99=C-G0g}_Rwb6+V z9Wg^rQL4&DTArbD#cxqH;`4!$2vPit2x8<6!xDvr}YsOeI5Nqb#qkep6wI0e5P=>PTcDu+WgxeSmnWR@lAF(aYR zCg7z%v&=9kuXl88H!{-|BMpyo`=iYsNB5L*7jeOHAZw(!pU8cMo{qmkPgq=Zx?{S8z%+4XXfaDb*mgw+^q5UZ% zGzq2cN)(F^Waf2<1O@$fK-S6EyvKcx+cJs-^G}SDofiXc_t<8zL?A1+x4M0sy(I!! zv5R+~&YikYB#{3e!XU_sq5y3#oQLZ|n*gB^v`HSf?>00+wl#rk`icRMd$im%nj09y zw$WmMc-o6R=YEyD-IsgrjQPx2u;@@LxvCvt@^Oq07V5}F#?A1##{??&h_A7^>?HAS z;dZM`GaguO2)CRBW`Ta5MWIVSl0!qh*$lv7bN( z+ERTONYTY{+#gB%pGfbY$&s(fnXgFnk+*9jRPc70-mc9b>UO zdSNk&P6Q}a2u5-U)^-ThIuTUM71X*F-8wbt+KJNUB)eKrfW~l5H#|*qPX7Q2rLvT^ z?(e&^GqV7eg5%_pxO3;e=03ms-S4&k)#_59D;@uyZls1?x<$*_WqiI4ILW> zYCCG#yQ9BupuVG?=X6}CEadwRFZa4*W6&Ae6wJb(E3`T24%ramgM6312pPI8!R(g| z9Sy;pkR_OlG;>;-j&h*HLsGg7K@Z9{h8lx;p@KCv8-n>S8NQPm`i`bxLC7B3l&TS} zVP7`{3sJ+CholuDZR?6OS146dd3Lcjq9w)1yG_Tnalw+8xM1mbFw^8ZwzIf0#FeXY z%`C10ab7iU$0+Zs{5vYr?&GEG&Om2R$loP|2mE4qSm+G-tdjoV;HYFd9O&;4T<8x; zhSuKBh-7UG4Tgk3BrHgl;}L{d(#c*iB3VukMS8=7fqqGUCKQp3XNQOSLq469e=^h^ z=p1cDp5aJuzj%C5jG$5}|H;8#Ie4m96nh7|p9pn^g&;~~b%!GU3%!H>AtBV&`@G~( z-iO7Ifaban1;h~5C-h!GmEl3ena>?>Z#{kP41y)0?rwj7@8CuMP$1GH_o_eK8DKee zk`=X`40m^j1j*Jr7z_pFz?G#EVkaU|1Lk^!G+Xth8hnLW6;UkSLjifrt>I z4&@yT_60go?rdmasI^xJbz(S1CFhD)w4+cM9z++r{loZ*;D4@Hhztk%LxayrX6jt9 zSCH&tr_ehT@zWBr@=9h;^^mc^>R;0W4xzM2Z*=K`T0M9<#$VxoHMoeVs{fMXPyHGXz zmdLWSM-7dk=R;8^`HcgC!QQTr7>U{&z zVBA*np`k>68Hn3zJ~Y&PY<4bW7fsrxHpR1Qla|`M>}6v-YeUkq;WLre$%_Xa2eWud z*EQJKnS!{8`8U0PVLt;@7noKPu9ZW`yh z_@Ln>hXQlQ_!xhN^BLPELqO;jCEdjl!Har3<;rEBcEthwEf2x_I-lA}YFpL1bUJRr z5aW8WW8UQdfN$l_mvS8KnV9Z5UgR%ZV!FQc{VCVZ#q>(Qc!cFWbh+HXjdHXv-sal@ zKJ+4>qdpJ}`i#OxloK|=lMG@gG$w+tHs`*1##e&;&&2rT; z<#|18A;0)F+kG>aSM!-@LE+ym-pT)Q;Z7c_-`X`i2*4KZ7bW9}5Ev2#nkT^w&!=Ne z6t*EO66|@_D>u@dYMihGk*pVO2+*Q5aVFQx{@?LWK9MvQF6oTMlGi(zI6U6WWsi4? zzPJ6R;bw65K*D$U6G~XtbEYDeb192+lqWRC^-<oBWH$bRMN+EG2JCcLApg~zwSa`eF`Ic*K`IuV%8BErgam*Am0qrpsb7SUpYRlAe zW6T^hMe&)n?f(sHGiR>t^1IkLJUdVT@$1p>iFyCj`CWLGKes4xfIawPBV=CT{j(JG08@yhD1YH!v8aK$vQvNRbXb9QiV`&?tZUNd>Zh3GD{b)QD>8 zecnjmA{~kWK|Ln@e$>fuG(Xi!jZal^yeri?Z?EVb3`cNG0^Qi`6#~5?DhUjFLxK<% zHnY}I|Gh(DU|T@j&@vpU1Mc`r7y#37CgC|cOd4hE@^^u-PWJui8)FdBNKxxnh zI>H*mLbrUlb@j^lm539IusGytNS#`tpmxBqR_eOjcp@kCZ6p+lRl9G`EqpX;u3l1{)CK+h`Ft|v7n4ApeJS$fnLli}UK;2IK ziT?#21Hwz?oZE9{Y+?-OuRS+zuZSDAOjjfgTM)dPl{24JpUA3DW^KIGwqVY>^ul6R z&1}tFR!iK{@;BLqL-qlADYxHxpx^-sf8>f=F+i)7> zbiOdyf~>2e(2%lelM>*A;C zsgD9F_lhAx#|v{R2<9VJB`(HA2+v^d9Tk%W5Z=UbujnHx=p5IN8@hBs-Ak4jPHv^9 z@1#z70_p;Pxg^H-WdN2FDuCy?%MAtqYTy+5=m&?x16chLZ-BuVFV1i;fCUiMNFcSt z2YLs4adYqv4i8)i350>NVPZ>uFw_|m#eguHUWj0r40aS40SMs5hHeUAr$u_22#B!a zN<<`#5CNvf$n$6l;KPM5cC=P}v$sDKcn)A=5EwVW4l6D8gavFD_N_*2HvPrW=!(gs zLEnzQGjyGjnd;Rh zMX8sr(-ZoOz%f!t);aa8&`JEpcAs9d;hHH#@GiQ>eTa%7$4>;c0$^#L5{mfL+e336vV1Fr;+$&%J2-l&w$f8IJ@&o z-9+7$O%t0g9bPQ0_{Nb-Cl=lLlf!RT&%0~K4U73jpQxj;Y{s}ObA|%jxcz~RbC)bQ z3fR!J-f>hexw!1QB{%0Nh#T?+f}$%HC?Qo0x|G6y+4i#iWydux#m@$g= zc?Ro&XKP|4E#$LCzoXDX0_>1VolwBX7Ti3!y!lSn1Z<$t^ zLeYqE=W#h-7xrWrvI!O9^{G%06{nmAnNr7YvqIZgGgJcD5}eQu&!-n2$3x;rB!dtR zM??bU3SmPyi=~O&gM~4fC!o3D=g{?0MJr z??3$+JJf%7*CYIjBZcOk4I2?LzOGks9st-e9>gF0gkeI5?owOfQr&g0=#9TR99s(tGcLU{e>>DP;>DZO8%$8K-9`S|sxrz11xW&`tOyKZmzOz5Jo zXKTAoUP^@C2tY}J<2)DWAI5d>5XH!d4$wQ{DM~Yp1o|(6S~e5}`B};i_I7oJu=P4a zemRPvL&6!#svigpNp`;<`~V`m`Tahpj3x0yl7;rTpE6j5&;U?;08q&aidavm^I|9{ zSx0*NgSepwMac?0-p{B7lAVI$@C7UdQ8Ft5BTHO8h;;4)MyA}O3c8h>0cZ%L$a@ig z;t@ca&o6QJ9o*KPN!QNzj5Awb*IhGTHP5@f3AcATJL#^Temvo>oi$!M7I*DjbmvYU zd(C<2IMA}$FTd}9&p)^0XtJO!vE%40|4rQu^L6tL=XK|FAX!*HlbtNw6yI?)QPB36 zXXf0Gqfl|#H#S^4zGUEy+lX9;$2U8d>9K6$vWtP>*|UE6Jy)Fm8sGuAoBHoRRqHF0XH=FOb9^54k6-f+iJ zzf^&|pHy)U*JW{X*L-eWBDZd)DCydsv^UR=ChU*K4Uc~IU_0k-`RuWA^puVx7L^t@CKp9o$?vb-+D6JuSB z0MX2_O0;}HQ6~)C<=64|uYn*NXpFCzJ9X?z15{{Ts&S@KFoTMnnp0e7aM8kb#!QGT zQRQR0E}e?dnn!T-1PG_nFxd$4l8L0UjSy3jLL)uBpv9)}*)SoML;b*4fzT3{Sf;O@ z1&-PUSR7&KYzh??l|qCBkA!gpCKNar>JQ=G3^FgH`{Dyc>0x|18^LHIwh+}46k4Fo zMBOC>I1(Oe=m&P&uaS1CZIqNM?ClAF3hS-gSSJ^iD+BQeSwNZeHc*Sj-fplXiDH8$ z5m~4=QU?Msh)W<#qBy>dQz-l#+NX6)1fdlb5TdU3jGZ)cHFD2-h#GVOtR*kq@`up$ z6tO690oAd_bcOrDo)%LW`93V!C=NxOcoDxJ z?+&JpT9cfKpxd1mxKi zWj24#?p<(rl-II3d)>_5o6U($2NoQ;S58cvNS(c|>#i9?van&!(YRo7Ua?MCCu?4H zE!ny3Qt)vLOTM}No5GEe>m&0OO^J%8*}P;)OR`{B+~B#Fl{eX)%qqXswrt^Yi^oli zHMMWGz0o#v^iNJF9A2EYk55^CT2wh{T*xiFw*Tt>>Dswm--4&~USTmi^&Qt8)8}SF z$-?GI<2_IQwYIBm*V?bPPw%+n@h!@E<_qf+KnwDcg-!96whs&2mP}k;`L$D5Pfc&Q zFF|mL zhtQG(tY1S1h#4VcP!}?StYN~tDec{icXQgi1@9J=v*KyR(}t%lWJhTSh{g6a;T`9w z-shAG&O`!YPbj#WNfSMHkZn5bb6RYv%d2zI2Hn!DhJ0lO^ z#i&>1A*8P61C8tg+`a-6A&5!%!LpZ)0NBx-A0gRw)0=wUj;3y_I?3i2vFk~`1X3%0 z+Fc^3zF;u-cctG{Ey^a3dLPo$MkU9O@IjGCIhQ!BfgLU5hRZGl8n=uaUbV9;DWe~D zrT{!^9vv~P>9-KL##z%)1ML<`w0N*!Y5rHa2q9t2^{F&}B?i(hggvivTCIDLf!Iaii z9MMMzUb6*2Cq+tDh!zE4elHjU3eiO2W_f$N*y^Ba6z1G!Wb=ml#gLbQ{ie?F5Q)w} zHiT8f&Nv(qxV8*Ya~kPxl47XQTwjD>lg}&^V<05+=`%-&1t`#UQh0^DD)OqyBQTBo zIYBxWAz9S5Lz9OV$*|HxwxCwd(q7gT{szX{}9YbkpxcIiu@W@z;8lM(pK2Il$9@}odo$Y{TRU5 zm;tL_e-Z3RA=`@0oJn{f#w7m641;^pXpHI#MvqeNi>WnZIt?8U>NFt+v;a~rnZHZB zXq|6nLN|fTDTp3jZ-lm(ah+OJI<9*c12`D= z5~YkGj|_Vo62i~*0`ml17z}v{aU!Huk(&c%#t=$%f2!~#h3yeaoCYpZ(5qdT#J~wx z;rVQ+cw)eiKZ+$Ialsv4^Y2figeGtZFRL;xF1`rtsec4b9wlgVcsOpwSOAS11r~y z(-Pm5U8a5X#Zbrr?izUSIe<7SFHNb9M55HQS3j7IJVc^d<2< zA3@5{3C-*DBhv+0B|8Xt8kwUn1N71e6c{fRN~Mc@p$&S-74Xql6(~UWL3R7m;m>eO zx@XGLzz{{kO>i(Y;#JTF`NBqf=@_yB5fw)VNa`8*2SlK-r5GX_crM%<1QG#4=%~U3 zN@awck$`hLb@QW&(xHH4>=n@KfvW@4 zt;u}fhxtdpSM`3~dv)(OzSnrmliYSR-gtD}{;@rOp`c{GU`wK4%d96^uyf+rU3%Y? zDA+X9nk?8le(bKram7AipSKhzEX7l;)AjL^O>>sbD4Dvu?7O~irf{xg8vugSb>-N^ zvB@vbIm#C;u1UjW&zz+KyLa5RmLEeHhKyw(KwRoRJXgC+geHZI2yzrQHjza#k!h4% zAkugY9J>P0*O*&*J%EJ2F1qD#cwm554y`X0MTDTWOi-W|!3G()C0jC$?U+S^`a&-} z$=nHflEL92Hs=ugWb;dNA<`kLOrr@GX?!GF{;+wJ(=7l&;&zm~#N90{y@9*$Jn*~1 z#*YfO0I)hdDH^b&9QVnht#|Vaam}zV6qn+Xkzt(a&cMd`0-Ex$amH9;Wdd7M#|Sja zH7>|^W3>Mz|6S7`a2VHO5WO;AT6=3~3`zx0+QBiXMO(9xAbZ+*u`!x=N>0PIZ3FZWn3&}TG3t3D1Zrg` zmD&JcO~RKHdo%#B&6x6F8$+oiM6u2z&v%BHYRw+Jw)oq5SgnF>$v-7T%yk0VXaM6)N6tH;Vmbhcb?AAHQ4(#`wGF$>H zs&8EU=EaHj@ne(0C7so|4P2{hj;oG%+4k8l-;B(;RbfUVXw}cGE^TK6Rkxs~QbOr|f%7{m6 z9twoha#hj1(2e;LcMs@f>$MYCPb6L5xW&s3w6}GF7m4k@ED2O1BBlEMAS;2E6dVSs z?w1^XKk4(NQp|pTFx=_)3x9w@0-bkh*utCiN()SQ7oKFnO$L;*$f)oh#r+%dI>{rU zFNPHe;}jzAKjBZL>R#gR>v&`BvdLuJvgCFc%VwZ8fX8g^GCh_`i;QK{hnF}!W)3gY zV`*ouv2dz-iNj;MdYK-}8;!=Y<*aOD{!%Sx%34B=l~Y0B+{Vgf=o)0vCo1J;(8sA! zs#5^RGWBK^B~ljx|1D^c1*ch*kKFi z1|3jEbmC8r&3eh$VVB=oO)lhe1U*4Fo=!YTi7_kW0_~E%&EZ=)Y4l6?sKJ*fxz`Xb zPaRxAxKw#3xJjni3kr8Y#S~=eaN>rrD<#yChCu@w03EYY7NhoJK-yPaIn<^8@7Y*s zsImgm)2WsjQ`KXYAv9DUb3mXuzd?D6*p*OPy(%Fwq8^Bu4!j86oS0KK8fvyFaSA2X zo|33ciA$Qns_4Q+S~B>DNSYj&Eu;=;sbD)WDqTttoKPIe+Aj?InaI9CXP=bMI2h0Y zODPu0Y0!3*p)TkhD{v~dm7+zfr%&z73t9%Z`QSop@Lm z@`~`VEtYOimhKog%vp+nKi6%Uuic%f-Ti~cWbN^B!yQYtyyUA<*NSOW>9=%KN{3j= za5HVejKaLYo-*8@zL<5XOoZ~p?MN5JiJ5XTE6{sZ7>3@0%wUuC0BI4E>H{N-gc#`+ z;04$yn0cVNsujo!yh*+YZT238>J%7?ILd_)C`zPJU(VtnBpE&?x+MGvA!uxkf|4#P zqbd_d0W?gw<;)SUQM0*kydw#I} zhkL%iCs}bc>1vBx+SnAWm>m`S-Ga^XPrKJE`0P42Vg&@E<%+{RXS&C$*yK7jsvB6T zFP*io;AHDkTAf;HC8SXauto`&SAl_&Bc0kHlp;rlTYO(8Ojo5*08=hOIgeJO5?Zg^ zI-{au%1V9dZI$JLgE|s?7wG#L+89w~ShaCbb`=jz#8D9Z+y4%$kP{w(2X1T?g=s;{ z5>+)6qJ_`61ClB9JOG_2{29gkfV?L1{uCa#1*B3FdOji$lujoA2>*i84bYD0X99S% zkLBZ?N=H3wb_f{j2We~k5Xk^)tJPX;HKO$~qd^b_J$G%I84ng;sQ_lLkm}6sEsrx)QUyD^15Lr_CN{0U6a4wH(3`Ivg|I zZJ*IzhNSAU7DY@9_JS7oh9W~?eYt)qonEjTdF$f|afa+cOy7s_1X0EXvt8xy&W zGtVb;ca2+=m9lHjUISv!ROH6!_0fc@ezA7<&H7~R;Yq_a>s9MieZq}(<-T%!;`n4w z!cj5rsD`xL^pQJ`jVssFm+v@g<)z^W3`fF#NNqqkWk51RI{HEw;vDHqL&NU7%vimI1^Y`4#*EOaNwLb!(Py4u zGCdH1B5mAWGS)!C2aPg*{Oq&fUjb=LEr0ojQ4b;oB;{?`xy(KLZ2A^K5ukX4{P`NA zEr$bxb&)h;X59v{uF=~bP7%FFAnz+{!4l7XSYeAdwo80NRJ#<(w3j{6GS*mnV-$B# z-Ze5js4pdFhC4}jPc~wq)&}Hqg9sUAb{@Ws@fH3Rd31P579lVqTlBC~2)kQ^ScpJ` zF)7y%@viU)bXEZXa24)^5{7V#ijI;;>~W@OCA>+Y1bGAnWoj%8gU~$#nqQ1k6IZg3 zn6oGw5mCM-8QG0QvT3RZGCfBRn73A?RhUOz(SkKVQvTq1f|36ZIl#Hc3GBJ@)mOfn zqT(#LkCQn8+g01VyBdJ-6Qkalg-p)eyP)PouSe%Awk0aI#ml$PZk;{*e#d(q^E*x? zcASVepNyBDid%{nEm=f;iF<0}^}FXRd+s?4UVY|cR|#RlEs2Vjo94NSM;8i9=L>y_ zLLX$6%0SS6zvR7=WZAw++r84NH(O@*B&&CRRN6Axy5K1yO2)Kd&a(mZ9ujDZS0B37 zddG7d^2BAk(6CbPjosIG&zEdUlx+H_q+#;#f~VlxV^<&h`biw!rHzp4$}YHOziN+{ z?v6ila?X9~(-JPL_{uXA&wS40$bMu#wC9LT{}Y?>NG@a|F(`^tA@)fO7tAiDsiVQL zg_=`C{|H#5?)y;50&9#Hi!@=B%urQ|Bkg{1iF5@v1rCfEbYO-BSL}2a zV@@ZEvKR|$&j8Uih!Eq2QkK)I!R#+?kyci_tp{yERa!RaATa=31f9`GTT|klvec){ z-C8ZX$)qx|rv`>d3tm_OU?A)-b_>Ta;({06N{R)|9GwYFc^T*!41A2HGdk1HWn?3# zNrK~yQlY0Zu5?Ce^2lj3q#``ZJOW+=;fHvJTrK=etf6#L`sE@6gsFn;pEiP{5Nuin zk5i&cvSN-=(0~*HA`Q|2gZddou(7E|Xe9<^AuQlp7=9aR~KZ z;y%tTTyW>#lj*-x`Z-7GVs^>bOBdND-tq1IAC+#KY^8n6_V69g21pl{ZT}S1;qq&x zS4%$^?WpG4O$SRM-D5ns!5np-W8%9ql-d*BB)^iFt{mm9AL#AwfgK2lQGtyG&^szi z;rjMOH>}MJ5l|6A7EE=US)M|++;b#r0nKl@G(pupQP-Db$nC9vx@pjNzzc0-epKQI zB~JJSng{?*c!gjg@At@K$3!EA=-MR1`h0{GqB{fhKc}P^d1LTaQQZZiqDO0fojHio zi2pINleC`MTKi3qLGgIA=N<8l0T#SzSf-f!IgqAW-0bN5p50HUEoK#a_3#%gv&ec zYWUFAK==%<{tNEi55Z?tLaae-{D|UHKW#A#ElZyZ^uw zGUiQkp<#jSO^`SzVYGW7P$qNjWa%+TnDvJ-#{vOIMd}pXf1NxTjA65i(Zsko8IVMo zyZ>z(T8})m+K6})7VjNP)mj23;S%y*x3eDenRW%?M49$G^nP@g>et=#e5O6GoteN^ z(u9uAa2iKJJ8vN%$!8KX5_hfhb!vGA*bp;lD*Tylr{77zF*0kpvUMn_-di(~9fPWP z(mMH6YfwEp==B&=dOg5_n7F1cW`ur@h3V&zPML3=ei|RvPfhS)bx&5lL$gaId7>_r z(U0|!atf|AW=1-RG_P_HOgl;fRY7i;NBB|TUh1v6uY6Tzy!KVDjnhQ7P(uaP)>oY& z7vER2HWoAx)3;Q*1BBdQreKm6_QdqRlMT}Zb!$s#Un5#ZAE*bbowBcC6v6sCyU2XO z`K_2CTju)K>F=i1wF7_E#caw>P{tRh!FB^TsT=%jw5efjnV_meH>nf;6ave9AJO4f zxu8XbLqb)S!%xynegExH=Db!q%@TW{f#N^u#*8s=Mrv z*D*#fjCAL3G)_)soW`;;kA5sm=?!Kx^L%Gvjo7s{@`d>vzh*vXdcMnF!OZc44=|d| ztH&D$rz3)!lsJ8FAj!;bHxBWINpUVcbF)K$Lj9wXMmDyKo!po{LlW3GSve5_Mq z->OgIHSMczbtc{D-+>Hy-NEdbi>wSNIe8k@HjL7vYjX?Lk;6)?Mp(yM1DyVK*2?8P zHfMz~v+%3P5w#|DIzT z^PW@3aox4LNo$o7TBkpm)|vXf;IFaHuqsm&AutjP($3h&l@@5vU;$~!YUe4&<_RrT z2|@IZsE5ocV>9L%v_;OXjb*U=X(e8JD&??-fsT#kWggje#wNpP#yqh+rN7D=!mM;C zUnaYj|D4~#3MmA1OpUPi#moJSc2X4iZRN|s;>fdVxFm8x38%$^(xRB04VHpVmk<0U zA2Z@n>QC+Xg3LXL6{LM1J3eMoHJyzkq>i>t`6fggO*}+;#~e>{llsfADx!xeLq9C{ zN*d23fB8>ks(X4pk!O?|yL5^w%jK^swfV~0qYdrpH?))#B1~|1Lbw8k8RZ+CYM(K> zHB)wIDsK>>j*_C8z^rwz5FRASAjHEAStJNk$C3@Cqlg@i?)`#laBGym3~m9*S3)Rx zFbMM+UQ|N&n8v8J5oW!a7IM@HwQE09yCyq$(R>m^6QOTSCc9-z$`pUp$4i!rp%96w zi;UGR(6$x!lee3^58y@Jp@2B5*s5$KUZJkBDQZ1}kCE7Hw)C`E;SB{1_XF_eFiwVR0Djh@SAs3T6aJazgd{Fj*6!Fl%$eC_XLH=SreMX~Q5{${jD+Jdkb?-cao$ytJ z|44UD_j^VoXq=a~J*0MKnGd`A(63Ry;S1`&K=yW8xXUg0vocGtFz@UF=ZMUME0)2J zN_H3uSKiLTzF#&o4~nHIjQWRQiYWpc#@#{~a_oeRO9omnpnDQd#LRh1_Vm2eT`-|! z6@`3ORmuiAF>PeZVsy_MN*uGEPmCCi2Aa7n?Dlga@X?f!Pz&d+nXlN9sMzsQMa!gp zA-8-!wz=M^= zQIRqFx+M$ggc3_opnEJM?MPMX9`X}U&<|qkD zOLi%RA5jLV-VWgR4j?c>dswpLHv&j+k4(f1#K;z06kWm=71hn!w$dCt$u&wj=+wbh zMO9bU+{>o&L}HN*co$0g&VG??0LjVPsm|~Ns-lq0EihrlAR7j40Sr;Hi*a_f-5|Mx zWCR0HnP!c^rc|0fLpTF4mw@T`EeTSQmt5LVQHMn-Yh{F#vlgaHHZ@L^v?IVjbg^4z zZ8Au%e1}>ht&9O|hvE7j$w3X2;R5963(~rpo*)ATlf3hV`_ye-WCGtZhkC6q0}QJQ z2cpFfhY@cPwX7YCBUu*)HkihpjLW$(QMeI7dtuz}Re7ujK$A@4uim$Co`T89YrEr) z(tFigXB(2$k3w{tWC)|LMAcG<)lv)YdRVO>F6}2)qcaQUqtxZ2JK5H zvuLs4ZcqQ-CuRdaWYa$Mi{i4W;5U5ZuEmm_vyu15-WyAn9En>BVdKe}J@43_aBP3T z8J%Zf6}4>oY~1a8pr^Nc?i{jjbuH^^*3?+i-SEIju}d~CuWH`2G2z)b6P#~6nrJ*4 zZ)m$U8sGGI((^>z{RGq`ts5TXbB_82S83c;zu>Nr2XOk-oO|0sdDVRRu0;8+Wci-) z(+jThxNGB2Yj;exFL&2O9Eb-eAEJ%6h`S%2n^=j;PLSGN;i&dDck z)KvIRb|dW5XP@R5d=2lGzg-^R^`)fmad5K1X0B?UuiT%g-2Z_wUb#P6**^Ig^c%{n zZv6K3-<~<0EZaL@)|M!1n=3nx;jPX2McMHw{^NqesmG`L5@lO3%6a(K# z;?i=}oQ89j299{$siw|=+ufkOHP6(}>Sr8to*gUW3^UF-&(1Y*cRV{Eb+UWm8y;8q~bNrv%&bjQ;D6YK613P z?`{0hxpA>@^UT?g3b#!fw3%zYLyLkd+79cwS>@o==j6xpYv;1-X11k1n=+H4d*A+^ z{ogw0w;WDvIh@>b1ah>Kj)jf8=Qn;SvGGd_9`CYVw<#y?uKU!;<;x$u~~U7Tl~&)*PI3ANp^(#p=RHTlwd1<=?V=V7M7h*0dPp|bk5$7ob*{?7voR_LdPcvP0iuKR~i zK<>@1nycOc3wLA;BKu>9o2)=&e=fEHPXFkD{mEUXKQGCCav%3Wh3hGo;jbJAolkl6 zAMQSAd8(3|(>24tv(NsNL;sPTC*Nays@(ihrR%Bf`j58p@O`?YM}>cj${^$OJv@Ye zM;>W32=9}}&Qnd@UJE)m&IaagGj0e+OLnt~y6eV`fA8TOxw1a_d`UwBM@T4H(meb4hb1i} zt45}@YG(9F&*t$XU?X2~On{YKn6MP$ryVR6YXu}|M%er|!(TDK6uZhX;a^%2tDG|0 zAi$|JoQYMLX|^DUkf}z%Dsp0FL=M2uC@?{S#hJ>dwi?Z(CJL50ueMr19w+t%LE=?T z*~CQrz}8h)=Nh6lNkTCPK*PPDTWcd+&_fScKL`;yVmS-@AS`Dl)WwX9bniZ4;#z4YWVu|7e1MBhdv?0^U zA-7edJE;b<$u@#WtDOBFO+0Js+dHP4$491WF2C^h4%ssHi&<_ys&m>T-u8F+$(>(C zjl+?yhF#GdCQ3rIVMZGxDy5_wxd43VZPX`=CYKQgQ$?@UNBz^`rRHz zKao{FaE-K!t=b%fp=**t1x#qj-gRYRXYWl)mTqI6j zJ^5NYz`1wBc_>{BzBRZUt%t^|#KGHdIced|Jg=|tPz{NnMpU)bGKc~io5{0PXV zMA4?1ws+g#Zok=*+w>vY>&?QgWtwj^sFNfbUZeq^$0;y83WuRZhn zGvh~?5hK!1#|1fFv3>T*IXCVId89T!6`Jn89-c4Tkto|S+np@if5&}b$;{eFiZ`469zbDnbG*=e?k{?=KA9G{CDG1Nce3y*Bq z|Jc0y$N}9?3UiKT>3_1_cx12nCkL!Y?Z!W|@#JS2j~19$>=X4Y+lZNXn8?$mN=mlUaVyG zj2ctw6{dC#M5&T@io6~(GqD*0cw{7u^dLxT?`X7Ak-r1ifr;QDpCZ~vtQHU$X%^1H zWFXt6Y=?grEfm-er}LC;X92(EL%;s_Dn-zKT!ARPi`dMVts;6xI2u#v2WD$`&D%>8 z_R_e$CMA0pFFO7~^Iz}&i`{dMCtZ_2W*nJ?ayDBd*Z z*vu9$MEh{F&#K1rbCK}L+cl+!tok2WjfZl~@~zIg`c}tiqwGRQ_?~=uW4Ai$)oKd` z?4m*5A?gtEl3wDLbb8~iY1k#eW5%;gk0qPa=$%3o9@B`zW4XM@Sh=**Z1hake1hAT zN5q4T4mNpBHTeeH62e-|WE8pr*`X6?emqSoSeZwm3X6>P%&5>({>m)4 z%m!dGJcoDBthR6n4wH&A5$vN^l|N{du7$|@6iX?CSl8ltrOxbvERL9 zKLjT$@r+X3?~yl79^LEZOKK;Dc9K^MPqOTlEoSJ z_0wl(nx|cf{4Me9EeQ*VTu8iYbdGmU?w&eBHt(kViQI;GRzt$rxNJls%mC}GOS*Et zAYRe5#Nj!6{ATB^<_|nK!-?kh2NVO!Kq}ADA>PdwOzxUGe0ARvhv4*?ncO$NyiCER z+6oZbrkE~zlZy*)Hn|U|ITid_?{0F%oocW8w w_<_e0yPsI5gikNuiw;yy?Ir_Whhc+Ue49-EB+5BV+yDF6Tf literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/req/constructors.py b/lib/python3.12/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 0000000..56a964f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,560 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import copy +import logging +import os +import re +from dataclasses import dataclass +from typing import Collection, Dict, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[{}]".format(",".join(sorted(new_extras)) if new_extras else "") + return get_requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + f"Could not detect requirement name for '{editable_req}', " + "please specify one with #egg=your_package_name" + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + get_requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +@dataclass(frozen=True) +class RequirementParts: + requirement: Optional[Requirement] + link: Optional[Link] + markers: Optional[Marker] + extras: Set[str] + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = get_requirement(name) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {name!r}: {exc}") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + return get_requirement(req_as_string) + except InvalidRequirement as exc: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..eb2a1f6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,574 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + NoReturn, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.utils.encoding import auto_decode + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: "PipSession", + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional["PipSession"] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional["PipSession"] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: "PipSession", + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse( + filename, constraint, [{os.path.abspath(filename): None}] + ) + + def _parse_and_recurse( + self, + filename: str, + constraint: bool, + parsed_files_stack: List[Dict[str, Optional[str]]], + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + # and then abspath so that we can identify recursive references + req_path = os.path.abspath( + os.path.join( + os.path.dirname(filename), + req_path, + ) + ) + parsed_files = parsed_files_stack[0] + if req_path in parsed_files: + initial_file = parsed_files[req_path] + tail = ( + f" and again in {initial_file}" + if initial_file is not None + else "" + ) + raise RequirementsFileParseError( + f"{req_path} recursively references itself in {filename}{tail}" + ) + # Keeping a track where was each file first included in + new_parsed_files = parsed_files.copy() + new_parsed_files[req_path] = filename + yield from self._parse_and_recurse( + req_path, nested_constraint, [new_parsed_files, *parsed_files_stack] + ) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: "PipSession") -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = urllib.parse.urlsplit(url).scheme + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + # Delay importing heavy network modules until absolutely necessary. + from pip._internal.network.utils import raise_for_status + + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..834bc51 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,934 @@ +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from optparse import Values +from pathlib import Path +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + *, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Optional[Link] = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: Optional[DirectUrl] = None + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[BuildBackendHookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # If config settings are provided, enforce PEP 517. + if self.config_settings: + if self.use_pep517 is False: + logger.warning( + "--no-use-pep517 ignored for %s " + "because --config-settings are specified.", + self, + ) + self.use_pep517 = True + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Optional[Path] = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__} object: " + f"{str(self)} editable={self.editable!r}>" + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.cached_property + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: Optional[str] + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = get_requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = get_requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + assert not self.config_settings + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + if self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + if self.editable and not self.is_wheel: + deprecated( + reason=( + f"Legacy editable install of {self} (setup.py develop) " + "is deprecated." + ), + replacement=( + "to add a pyproject.toml or enable --use-pep517, " + "and use setuptools >= 64. " + "If the resulting installation is not behaving as expected, " + "try using --config-settings editable_mode=compat. " + "Please consult the setuptools documentation for more information" + ), + gone_in="25.0", + issue=11457, + ) + if self.config_settings: + logger.warning( + "--config-settings ignored for legacy editable install of %s. " + "Consider upgrading to a version of setuptools " + "that supports PEP 660 (>= 64).", + self, + ) + install_editable_legacy( + global_options=global_options if global_options is not None else [], + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.req.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False + + +def check_legacy_setup_py_options( + options: Values, + reqs: List[InstallRequirement], +) -> None: + has_build_options = _has_option(options, reqs, "build_options") + has_global_options = _has_option(options, reqs, "global_options") + if has_build_options or has_global_options: + deprecated( + reason="--build-option and --global-option are deprecated.", + issue=11859, + replacement="to use --config-settings", + gone_in="25.0", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..ec7a6e0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,82 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> List[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] diff --git a/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..26df208 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple + +from pip._internal.exceptions import LegacyDistutilsInstall, UninstallMissingRecord +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]] +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises an error, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + raise UninstallMissingRecord(distribution=dist) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.raw_version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise LegacyDistutilsInstall(distribution=dist) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a905e93b4e1dd4497b90ebff47ccaa1e3f1dc82 GIT binary patch literal 189 zcmX@j%ge<81VU5P(n0iN5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!iqX%=&rQ`Y&dE$m z)lbhX(JwAYP0mcr$t*6>&&f>EFQ_cZ$j>v@Gc?jK&MZmQEl5nxPE1cN)-T8`(2vi| zD@iTNOU%(PN-fUMDJ{v&&(n_wie{F?$LkeT-r}&y%}*)KNwq6t1zN@k#Kj=SM`lJw J#v*1Q3jncnF}(l) literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ce8f5e5907d7c4e207aed683e41b2846f6eea4a GIT binary patch literal 1177 zcma)5OKTKC5bmDW&aQc2qR|ME)fjaVGrmq5L=+KGqUc2iVVLaHZU%dHX1jYM>q*3e zKS0QD2>ui=8@xz^D2NAd(G>(wR?Tii(Sr?B{ngh!)n8S0zn+||F&r~5kGF4FjC~|$ zcQ|7(e28F^B`o2BWjy4W6wAsLXMzpe_}5|~;xz%rxt%I){5yqC^G+-p+|1nUD2>bapxa9& zWYE#bPW|TI2i>GVyTcoU;R=FH1}x+W3$28sG=~HwC@rzUYk4Tj2`h;U9{S_emXmnM z`u$47HxpN51@}PZVgsb9$~@PRgsw7k&2?x#id3&Ca;YJS9$b}6ve97>pva@ z>v;x&5@`#9cB%taKr@X6mM{?MT2S=$dfqv|eD++RQVpkzxcMkZt_%~STxW79|9Of3%l#UT=m{_I8yJ2GxG zk^fTwIfeV=G@6Db_Y$UJDT-3B%Nd-^TpKj1E^k9ja-&=(AfGJ$q4D3F%82_Y?0z(> zjjHjZs1s)pMWz--S)TL+;fW~f_F^$wk@OTKT_@wL<++d*@@L5$M6)#tR*I8VV#$;p zx`N<2+p%o-*xUJq!QnI8^JjN#@^0NJ=MU8bLl^y>8j%N<#^mH+s=i%4@{N{CrDe#~ z#vbG8evx+Cl6pVVD#T+Nc;T1_h6ICgp94UG>86vW_M-2kz#>I zxh>GaRJ>6${FPD7F3Uya=tirHXm)JQ`FnP1o1OZ^R^G7-9~PG0y8erkgW09++VO#N bV$irWa4vnZt;5!U9r|9Y@?&2anlkoJujDSt literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..93980227c2acec68032a02c7415f90942710d19d GIT binary patch literal 196 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 None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + f"Package {dist.raw_name!r} requires a different Python: " + f"{version} not in {requires_python!r}" + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = ( + requirement_set.get_requirement(install_req.name) + ) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + f"Double requirement given: {install_req} " + f"(already in {existing_req}, name={install_req.name!r})" + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + assert req.satisfied_by is not None + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + + assert req.link is not None, "_find_requirement_link unexpectedly returned None" + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + assert req_to_install.name is not None + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..431f6e8d3ca7fb27129c1c6c2b831c83ed375acb GIT binary patch literal 200 zcmX@j%ge<81VU5P(n0iN5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!O4rZG&rQ`Y&dE$m z)lbhX(JwAYP0mcr$t*6>&&f>EFQ_cZ$j>v@Gc?jK&MZmQEl5nxPE1cN)-T8`(2vi| zD@iTNOU%(PN-fUMDJ{v&&x0__QbC&IfeJE9;^XxSDsOSv$R71ma>4 O<0CU8BV!RWkOcrp&o(Xq literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a2964c6d4d4abc11b06b9f755ce6b4448fbf8cc GIT binary patch literal 8141 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 aMBq041Ae=#F5uIrz70ap9Rh?q{(k`HzBJkZ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..949d570ee0665bc932a692ab189afa02a803d0fb GIT binary patch literal 29400 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

>gcmH#2r>QU>^pC-HfDbBo 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 OI1I&~a^$ie`F{c2GrVO0 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4934b2c496ae062284bb357a175dd988c479751a GIT binary patch literal 6785 zcmcIoTWlLwdOpMZRn*NEb%`~WmB@@0%9g#UlgL4BCmYMo%0c6{FuMzS#5s~iCOOQR zp=26VZKMGzXAP`_rnS<%2hRSIO=qUiU} za7fuw(mb>Tc;;OG^Pm5m^MC*4{B1lQVfb~v`_$~eB^moiYPi2(qq22OV(d0kS%#^S z>d8wP$^LpW9(=udZ^4)GNi^om`wM|gpb*Ri3!zM?5YB`PkxZlz%|r{aOw6Y7=i`O8 zOq*Q~&v^>AP4<2dw7hu@z5;e5#HI0o*7T8 z%5#T;&B-2y$a9^fJ4f8PHOH^tEHD{JjjlSi}B-I%2+;u#l#xdUe4dZPX@AI%% zn3{NtsqMUH%}WwO#{P;Y)uH?~ME*@v%WI~_4cXM?ymD2`SLB@FipgcAsLBhPp_y_H zRZT^oAbwuDo zo2h^#qH2aIwCOUfBNw=-Kybxb5SyIig3suJW0U0^m}5gihFJI%lwyw4FxtO71d#?i@Z7{FV68|lPA%GJC`AiK^xL%B8HA#kznb_FX%R>Qj!&Voxf4$ zkUtf);ukKy_Hy?0nU_zWo1A*Z@}4YKtk7wQu1x2-6`C~Z5_DmO&X?$nl)UAAotu{b zLb;UZ;1$cBQVjlE&VpzszSlU!$>M^N*VJE-rlUW6+Eok7uN7x>!wLv)mPIkwfC34} zLiiuRe`^@M=a>Yrn$7VwqQGxSs8tv# zOE>pceSaj~mLyh{<{L`waB|A3$AzQBZjSm`MLNJtpGz^!#4AgFGvK!8!)~qhRXvcv zKW`hLRxj1&V~@6}RrRkmxPKdoF2Wow`G41cv*LUgrA2nddyy?lf9YM6Qr@d;?j70M zdFj%333ScVHZENP0A>6x%mHLt<30&+WdrJBD-daENy%MSW;qRzwkdgFR;>Vch6!!p zYFcjbwE5Yn(uyj-0>lp}(CNc~8LsjH>QS&R@+TqS+dfS$@I z4UHfL3o@rbP)B{5n0!9+q!D>7&!KE2xLndo6XVCyM`UeAuIObOD+EUxgT5Os`!sai zYd~YYimD2_4J(k>XJ@&vf{ThMLK4fT3I2xVD=Gz^3Wx;Jv^AtNvbGJgf{nK2n<*D_ zRyfzxW{Df58?-xF{tta@4reiDQfw4Eq_&YDF9&Fg7N*Z3F-~r@FvtvMoxsxwMfkRjg>1t~5(F&lLM02w=gC_fh;a z`|3LTGR9J)YyRs~pZD&&5nm48>fVfY-YV9j!<(`0x~DUI@aM^a_XEq5^#Ru2yPl9Y z+moA}{coS&jP-5A_SIthRu(^tjXXTW`Ub!HGQ!#if61cZgZE>dKbpERRrh#0UXkhn z){)$7@3ozKkGf1{a?l*$oFRQRJ-(k@Py}s zepLP{d@An$o4|=vA^*o-KRP}R`O))n+>5#uZmMApkZ=A7Mz* zs?14CFcmN!sfO|JF8Qi3ACB>W>F_m8hrjBF>DW{CH~4vWH67lyhIxYNI7Fty2Bk+i zhwlFyT-vGt?UPIJMKH6r^>3i_ndY(B=xS<)?c}D;U$6mDniY!5)4)H#<)XRec?j@8 ztmEixHcB2I%aAJ?&#SNyGnz0=#|D7N8IJb|{=w+$oNMa`Vc;w(!Xrb`t= zAef{{zm39%4AeH-{pR`2)c8i~`C97v^@A_$4xgWQC;#BP%i+yv_j+^yaN2C^c{{Ng z+Pe|ztA+Yje(kf+frkm;=2x~rZ=RG+dZpdf_rJ0B*LpigVIiLF?H*CsDx2R92XLWZ z)qDB-IEuk06g=~OXJmW1``oprI`0C8)7!wX8^`TnxaecMuK=(~!tcsfk(!YC*Z)Vz zz%Mv305WWa+5sTf|7~}3PT=S$xq_(930R=Hu9LG_eVv*^#qvt-+v~Z_%m!%zp;ZCl ztR4L}TsFd3b57{x**P2BHaOup3ArsS8>579E+{6p*V@e5pFFe<{0n$+n-xMv4G|s0dSpEW#L5ggeu{P<7l)iPL_jEv(<6c+U*w_@3Z%TE z6AIbFwb+m54)FHw0I#z}V0RewS(`c$c!>S)SV$>cDsR3kbF*V5JYKX^Yd}5BEHsuJ?O)rM=t34!Aw^rk!rURk42RV zh3zMuJjZBc6Xb15LSN8SBus961hv&|m*x7gW;9BgiKLBOOxb8eo}hI=hAHp{c8Gat z1_;a+6r_FJIGDObSrqBD%h1+Ntmgs+gAPuJs3}{aoHsS#N;b6u2TqXkIf4vhsbAhmR@0~{1-a?UJ6o1FxWB4a1CF3{#d+R6_No0-kWC~GFARNGI+ zLB(TnHl&h~m0osGVufe9iMS96lkN1Zjz$=OzD8hfwIgoU3nf?!@XuF=mj|b`e| z|M0T!W@5ANfc+Udy6pQjG`P9{$g=OV(7r8DF-kp=uZVWkAMwPrP5Y22oYEqCsjG2SFOHZ<=WPYOBUxQjx;g0@Y_7g6gf0-Q90nh86oo{!ntG{~sU+T9R6i2CdE9@a!h$f@DZH`>T=@<=>PM z!!wHE#UZdwc`T2niZQBsEl>KeCFSg^HR#A?`MPth;fYyZAR55U7XfZ{9LcdaMRy?6YU@?-Jg{y!<-eQD#^+1jzQpNyP+S9i*!M-(hi8dmMVv;>*tQW|&a|%QcfTBGgdzxo?*2M^ z5KU}Ehdzl8t(t#!?SpHZT|M^`owtttu(BRX+8dopbz5Lb?;F`HtajFU7)3pn&AtIw z))>M0sd_G(6$E%ekLFhABpJ-pt~Z~ABNC*FqK!sdTZ|g@ZuGCX!z|Ey{o;l{S@S1XJ3jRvsC&Hr-j(5B zGJLkYEHM0#Ivi~x;Zp_clFyK}^Jt|CIDPvCVZon1h%q>HrkWQ3XNM&2yQwpvM>#(hCbJGnNk=sbG)rtxy- z+!}=xui8&wVv?5Vrs8|Vqr-g|ZeF-!UYeH0xgoN+&Ytb`IyB+v(~IJFFhFW-{0oY@ zSCXWMo{;3*>Sj{M=dA7T*zn)8^Be4Zjh+93J^KYa_66&I5bj&<*$DU5!hI{p?}dl2 z2OjL{TbcMUd3WgU+|MetXD8RkCu^y*>-}eId(N%1&VTT>Zzko{-dgfd&9|qXWWD>> z@eK?}2X9?jm&a>8N9zoYpM^f^tsOtNMfLiNUDEJoB3bv+cYkXA>51C@6L#x?KfbKt mez*J>s*gS)C2czTw&>7m(V_9>uS;W6@A}@6e`omGXYoIIFZk;K literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2fe2ba69da61517313f234c9be6692b8233d9d3 GIT binary patch literal 10515 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad29fbe10614b1193745acbd278468df349d05e9 GIT binary patch literal 5032 zcmd5ATWlN0@s4*#9z}|xDET2JM%IyIo3>2aj%!(p>&B7LRB+6ZPq)tBG zF?&bbWNE-3{*ZwJQGlX$(Ug@tLj(tX`ua(U<*5Lh4VyI&()- zl*FbDkODnOv$MOivoo`^Gqe0%dwUxPU*d-cbKi?{+@G*h|D+nSeg}|yoW^Oq!R7f0 zo<}@j1oFa!;NgNH=A{WKADjq!ebETz=|wkgyCV;)O1aCs2jON-!1Bl=Bepqd@+0&taa88 z19Fd}+yt+269Fxx33tQ^K@+K{NmSB!EszarK^O~`0!i78jO&H^er}Lar^w8)Oigc( zrw9-=UVqKw>@?<_fHx1IZl?;TG{$fz4fg%10HZaFaa@T@N@L~Of?goHO$^JrrkgpU zIwTK9(hCM9*D14g%e0A=CEqWonQLl}DyEvJw}@jAje=eBx=G26DLpe)r$%NOD_>9@ zeG+)w(48q_Ia8DowrMXrMc$tB2#bbB9Q7I{DzY(Xs{EsxM7Exw@1kX8}JfaQ5~h3>H+VHHZ`&~ zx-9u;Ed{&)*X7Rwt`W#FNxXCqcQYAFK zYbX7~+K^B6gKvvmlg;+*q_0SIEASY4!(-kJE6bx}U%xm+Ua}!2MVn)6`S`am{yD4! zp;6PbS;`>MkcPMQ6Rikw#loPGH6VTrm8CWUpUabSv=(e2bep8y^)^JGqFoEY)OH{? zC8G?D;EEW}Sr?)~!%K&*sGC{K4MP0LtBxDN9%AV1k){~#1`8^R!)=AV1;E$=Ahgl>P$}b=$eJr0^b`AKZ-qwEgc$Is4VRnS&omq zFFcKRE$u-8XN5Ib_VQ}iq2;bakGqn~(d6CXYA4r|+DLHWj`yN>qqCP+!fIdHIgHC7%x56RfC1To<|M6;+(An~KSLM4zR;PZsSMJOSJd#XFcrqoXP zrr%P&fjG=59i2#l4x>Qbd_M`aF(c{mA2`~oaw1VJ|dKhOFX zMy}J9_q9^4!RD*Dt^)uhL*J>Fx|1vN5%2U|Nr&3yW~Mn`VgB$GIS$BwR;0pj#(#)_ zpvrSQR8bhz6x!jJSdyIvrpbUGInDrXqWb`3uT@pR1Wq^eQsx1kj}4iG{DM z$b&Tvfu}>aWO2L(o`zQe`C=M29c%qj1U%{=WKg~ms6Su4j3A7aNy8pcC}M!CTce+N zvL(y={yhcQ49d1mH#h`)!GITe(SGa|05)m^!PK{6w0WEI{+2duCK*N!F9K+?;ORx_ ziF^(n27=Dgu2Tzi@tqZU*fZ&u>n)p(@5{8qOFRXey(H)pmY@3^&0a^Hws}Qz9=zg& zAGP{m-pfU;9pfZS|2K}Y?Xbc5`x-~7YW`twzK=k)e$u!EwL@%3vh@%XJC~OawN!W~ z;TxztCjX`b9bA0nQE)}R=&Rqz*!B^7EmWf{Ki^WP+Uz(k+vc`M=0{iL)Bd?(Zb^2q zG&BsuGdlsm4JnFdWfX-C;1DinLkPTdkMW;<4FUeX<7fZ#h+zr9Mi8L4`~0yKW2fo> znb1Z{`OG9(RRSuf@k#%gU!GJWv&-GO~Z09q6yP&Om{i@7MC+~X; zPR@A?P9l$Se*PLV8RtJ9^xLJk-a&TbJWgNYvEslMOAc%wox<5m-t53!4-O8@I~&;e zqNCJf$+#QIScU=bSp12@f8B<#0)|6kB9OR2rv%2%`NqLo#U%xJbt{nHHH)QcZ+Lid z0_xWWHVYw{I0?TT`S$ZH=^cU>n7!J`v)Wcmy7F1S8au}>00(>|+jvA(f#>%;jg**JmaANk%@#~ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a816e69fdb5791f5cac42c69abf53899119759b7 GIT binary patch literal 15348 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d45240bdf6b9a578d7ab13f64c253ae0bef0819 GIT binary patch literal 12306 zcma)CeQX@Zb)UWO?+@Pbn>?*Z9>tS*q$!HBzAQ@-^<~ktEXj6!v3)w-F3F?r%e#A` zDBrb=E7V6ruBbYW=(LSxG(i-|KpiwdoT5ODwEwjMc%qy;uVsWm9TfSeI9CenxIxkP zW_RySG*xtQH~V&W=FOX#H}ih)&Hk&?X(MnoeW!o=kr6`v9UrvIq7wJ+Foawu9O0NG zi70m_!q8`3L`U!Xh#u~`q#XLOZg*yN}H3-sg_6!r7g+UR9mEt($-{qsw2`tX0 z)fMTYv_09K3Pb{wb|g2Y*a%B$XL56@C(@JZjr7uISF$e^j07p|PWGp^M7E>`A_Mf< zlMJP{Mz#X&<(iV)QiGAfR5%i*&%WePYB(~?5Z)-bpilnfBdL+dc6i>-hxtK%bV}b2 zgBKam5neYtqYY^N&X3)KF~uvgQ%8;xuK6p2=mCyljZaMCr$j?2X6L znRFr^OC~Py(R3`uhjg;z8!?eT#b+~u#0#?j6fb6yIb?D?mCcA^;#`ssF|vi`U*H9x zo#P3Ck4rpvRET9~Aj9_D49_PI#o{wq)Oj)%KOdXsk0jC@E$=(Uznp_ADLyTo6!>gR zpxNz-v?#@r$*91;9OW-ce44|X5EFq(({bfxLsiIiH9SK9>e7SEAe-Fr^;#!|%!Py^ zhy7$CTYJ>Wes~<`&*i446Y1&N0AL~Q0a|oV^AZZE$^Sc41!&iLD3<0DTukC+dxKC= z!+azbmomaUkR}+kTvCeT#A#QDO5FQC5U;^f@K;ctPz75+B(+j$%3fKqne!8sMBp$gYhBvTCMx(v&gbMr3VO}TiW zhL`t%IyQk?c{v~NfoJvYl!5a@Zc~w5WFo%PB-A3fK*;^5=U=%p>EwJkF%?epJjZii zxur~4j7bS`YCepwWFrrAF36UwI>WMQiYkC?pF{14#!)?FPbzkvk2cJ_?97RL6#ha~ zOu%UR64U97z(+Yg3kt!f;|X4rJ!+;}kLTnTHAkHqF`Av1W-@8nJ(UsSJj|F{RQBYu z(?X2nqatXQ#81!5?(BRNltly;2SKJXLve>XCwQ~NA3IFv=Pl+skuaBDi;g^b!$`<2 z^_d}gTb|4s)W?R~1tRL6Ag?l#S zR;GG%Xk_~^s!TYm>^I_YHjy2MZoxhVJK!)#s_tY8d4b2uG#93SC_67~ho&!iVUg0^ zV@Mkklwaf^`Er5W?;=*$qPb*gyJP97xHsL{QSRMaf}eZuie>MLd+%qhfr_ua(%fC? z4p-WGD;--ZUE7fE-3`QjpRLVSG+c31TS(udMZ+BnTVWr;dv_%iE*jo&+=F(AY!xyY zy3dGm3oMiP`6x^i-IBQ|T|T005_l;mq~og9!D~1Z;e&4titzN+ewf5FaYn1euM&(^njqAq!(0I-6*Xq>o+IVSYC?*8_s^v4}$`2p1 zHV)RgXjI;z@hQ0T?ga~H%{!x;wYTYieh8;=twjAUSUB4Qb$^(5&mO72*C^=m2Dx;O z)^oTFWshm~>UYrroS&#aYt+{y;Gq75_O^Z(p4~WqcCubZql5zwDSJ{YQNIg4(kbm} z_8E<;-#L5Uxsle^XKsnP@@MNtQ3rW%Y%D{;llKVU%zI{^t+%03!UX4-eO`O2-+|M{ z>t=&F$pin{NWHE`U1UTZXr1#t*DckQ7rYHUe^Dz}zvsQ0meDn}!Rp96>m`lt5!5VNyYrDmjCY0qg z=_OJ?E73=UT?OkyB&n?)tu!H0uSRnKiM09N*w$!o3pM~;)>pxcEm;4=I>*eBi~8ru z9Melih{(*r3_K4z6hlBi{-C@GxhF$L0XH|<9?yVFA;bV5hz*FwMWH9cNL~b&Ms7NJ z{ABdh;nPn|JbU<5bo}r)o;jL0;M5a<^R`s%VpPcF(wul{kfMfle$uxZJb^*B<{`Wo zVg#JuIQkCSg+>Vt+C3ERVWt~~Q#D>%HN4}-aGLy>nFK$?fL@&J$O@TRaLE*(j**$T zh;6aLE=Xm|zGN(Qj*IQT)KkMcDhwLhm&|}WDDDSBDU*d7q8E|{^8U!rcK&4N2T%Xg zOFw_<_UH)#cW4*}{ds==$eByu4vK6-WMfHzk8$&C4Vtra32BCvW_VTv(O4B}voVq8 zfuQJ)aV$kOL+mpm&xXSkw1;b;os}{y&0=F|jWM_ynKYZ3qFj{9m%e)jS^=L{al}{v zq|`0Nx-6HOOD8iijs;qkjf%_8$I|DaeO0bK>?=5en}tFHqXA9mS5%_F#w7NYWFmdO z5VD=(VgKiNDN6F{D6*`tOs>Jx|fP-azs zm^KJbR^vQGQ{d^=JZ5le(YF?9Zd9p8rzGSP5Q+(VFu{#PwyN3!(*pjs65x<6;CL%R z9H7*INN+Nc0xxeSGZ&3#QV3+Rz=G69IvTtWSy4vH@O;B2Ha{N2if=HxdvfT=JaKoGw*VoHB6$u znn-i|^@(c}W&fU%f6oWISN(^J*1Nty#ovb6mA1|0ws5H}Tw(jl?5+~KtJ1x>+`YZj zy}i=eSMD4wb&lS*oBXz-rRpLM_6OU4wCCMDC42a8aQA9(@8Yq~T6^9s6p!8AcckL* z!|$F^{}>jw*{z!@+jp%vhAVx8<-Q%Iz8w`$d)d=p^7OBaK3mn3;MhH)3%aUA=X4d1 zES>qz3-?=yZ}ZBo$vaI?70vf;q=T(EnyyYRPL>^;OODN}j^0w}#20#9hYc!q*ow!Y zcmD3OZ%4_uW7W5_I9_r4iusDK>-zp{`)@p74(=@l_ulsH{j9yW+&)-pAAIkdAGPnS z1cK$jSSc{}exkf{qO@~jHSpxJzS6d-+%{Hf8@t;zR$+U85PkpopS|>xmsW%0<=}}@ z@Weg6t~+pFZ)orM!bmzEg~9N)S1lya^Ue!zzfkUeywv^pht}2ZCyJ95clU}rxHb@8 zGJNC-R=myEyRLPWz2V#5@Y=wjnz^a$-BR*yxw*T%ZC`2IzT4h?^>-a*Z~tv?|IMND z)`PdV9)wPYG+x>(sCJ;V?Lc|kvD@2@t@*mjzJZc&pzIsD?Hl>b-*NrKwG&mHu6+#Z zws*f{ecO89YHV)#+(DYV>+F8xX{%K&j(_a-EgRl(ea}_3=$glwFHFSOeyzXK-t$i2 z?Leg~Sndj!y26$A?n>vTa%Z^I8NS{5`1^sX70TTsMqd+9UjKbR@wQ%fU2`pqcRamo z4qw?3Dmg+o`+nsZt{&3i)E&_gPixt|rR3gHG*m2(tByrS+0tFIbeAprOP2i~NOvsb zpZHpfhoGh6p(_)W&`|NvM~?ogk@(v{d{1l9_2vBpu<83RVgxl)RJrVbwB&#EuE)R9 zeCWfcS3O6mz6DF3An0VXt9Tfu%h$I2^ok?!-&H%*`|68+n8{N6&aXt=U4GHjKe3zq z%l3o*Cm%EZ+ivTVd-T85jXpW1|K*qw>Bo$dW~-2clJQ0y0l@+#Z15+55*~&<7R*mT zL{f7xUuE*lMp#7DO#>Er2<%g#Ftk>?3cALan1p7AUK?|twQKL|cTFMAe3&w&eZ@Q+tVl|MszF;aCPs3YArRPY<7>hu$qr3z_1;W%6Ry5jUggmgR)~pJE z8TM5D8KU4rHk-D?A|6u0M1XKGUdEyU2FMFIt&s}=7qDhLz^e=ZH32Xc;2S04Dzce$ zjbB0-+YZ5*l-Psfp~zB z!sjq{%&+S}JSPa0BibwEtw6sx7+i_Rj!2no2COumV<>}$AWT7qwYF;E<9QaszuB2V zL}OSEO)fjfC#Gj4gqd3GP(iIpfG0H;fbY^7bySo%^dO*CKnv_S5am2Fi>2q;_qwz^p;jne%*lkgd%d0Az{XO5bm-7Z|G5ywsk`p&kG_0S%zAU?9X!B?M8z!wO|2 z#4{nCfMEr+{D@QekX-?ZPh+N$_DTVK4TB$5E6aL>3I=csMBy|o4^i2aC|jp;X*deW zBmt(vp^pS1T-lER2%$w3%S0)*6hdYN;NV6j{3#{{WaChfCoL(;OjMYIToE@fRo@l& z=IaoauB1zwY8ayds45tj7Wg@G`ynI%IReDvznWjnuei6YSjJaE|=_J6;+)ULKn)jZLnOom?GxdbR0P z(fnC!cLj|JTXL{vM}NuDzv>vci-2Nt$+P)R&(06ccRa_y65KZ%AV}=^+(v>UcibcI zPQ2Z^>|GxJOT&$c+wPGS%g7&A-6JB#V1E&Ed}FssI0R(Kk1>4oT_A>Uivnoma!I5e z(df&$SWHEZiVBj!}k>bs5GE3LsQ-q)GWnm=8pk3;Mi%fw^K@ zB(u22)?Io1EmaOE4RRI?5LNAhIFN3(X2k1N>ZPI7FqRUT^e(Ap&KHTsjWb??6N7>= zuLHhtN`U5ak-5MK%oR)CxM<6paHOudkO!0i*P?(D)=Ygvo3$7`wApMRSLSqN(aP22 zW*U0GXq){%zg7hScmP9yEce7?_)xSb7>PH<(v2 zKGddYwr45_2Si}pApU~3Br7B`0<{BRPuqG(VS|2Y3bHJ1By^!A5vC znaN~X5zHD?n&H!EmbK2pU?%w~3A&R^QdaN{0|OlWd*jg{=X>DzG zs12=6E;KX;Mjp^vBArv_j7nK=L4_?a50U~laGaBTdK#i@7<+<8DpN88`T$L5V;FYJ zP_>{+HYH?IEQXT?S$bHmO(hn@U>pdoqC=Q25#FkJgI1R2Kx5c}#1KEEBAn2=Igw@{ z6goWvb)m!3OjuPaJ|=*ct1p%D*Id*%03SbO` zD_8{+sSltL%F3bCDx;-J{~Rh59CO3?V}}*I1PxHNgJ~0# zSyP5N851x^nc@%vYKQ?%K|qG*G~Mbb_oMI_x=--w~Xj6E*juGmYIk9Y|S>oOZCdv_I8FW z>Nh-nu9bit9d~~Qc4|}oOd9rYhXJ`G3R!nGatBF_XemGv^M*DH9az;yg5z1UQ+Zv3 zB{JMn`=FIvH0KEp1O324!0I8BtcM__>;#n(qH$0u4m=c$o24=rcv%k`0O7CLMOhD% z7qSR%LLJ#i%gL?qnS&HPp9W=%;+Icp2_kVhfLVxhWdo|caE+FyDoc^Ch+qsb?gCy4 zs`@_UTt;4q|--erlIsXEw?_%;6 zCf~#4Iwr3|BHOsc6lgklS?G9B4}gw|N!f`N*TkfZylhew9pdPGY)W_snfwhVI7G_u zA%!5h!EHRieCOC-pT72F zl^}hC`-0v-r)hPN*xh%%{x_S8rcZor5bbd{6;$E4jBJ zzpkF*(WUX%pRAfmbLTx9Bv8QNy*jZtvF!iI5rBzm?yPPDaX#NcjJ9ImMdsYp>;{G*z)50X3D2VEU8%9U% z0WgYiQV;)o_~}q11kJ;eLWrp?ngV{;L_bx`>!x%7esr-AtS5-@v()>;LmN0@$7^ZSbx)Z~`Eh<9M{Y8L1kc9NY58y`Uf*zrWI02x< z$_DV~_zn~Ja+QdifdK9G6G!**nH!tmes0ws1SPgN!D4@Gxo^cDSTO|X42Sjz&tcWe zkjQ2{+yF}?Jc&;xX&&vcfb9r4aQS957D17A+j@2#Nb z5S)J|MFE$a+|pPAh5|pSf@2>6Km4IbO^UDd6qXHaTy_Y2rCc12rx2RUK3a&HIry4u zh<-juU01p1!8iDo;YC#_9*%SHt5fRj!r2Q-U1O1f58tT&FAk}PGSo9x#iI6Mz6JAGFaZIjavVaL{`HzWWNYn#tCAzU+_y>3e`cK3^ zLQ>T;4D$)`enLE-5Z5Qf`fGBmOpcYvvEP#2zb1!2CA&W*yM9ZyeoFRzN)CKV#woGm z*W?t?U+DCV?)MhL?D-Ee@G0r~jo$OA;n141dFlL(-8bVaEh8o8_Jt#0Hf^27*0Qyu zWbIhqwQB8KFx@w0b str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +@dataclass(frozen=True) +class Constraint: + specifier: SpecifierSet + hashes: Hashes + links: FrozenSet[Link] + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> Version: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..6617644 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,574 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + InvalidInstalledPackage, + MetadataInconsistent, + MetadataInvalid, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + ireq = install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + self._hash: Optional[int] = None + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self.__class__, self._link)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return ( + f"{self.name} {self.version} " + f"(from {self._link.file_path if self._link.is_file else self._link})" + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + # check dependencies are valid + # TODO performance: this means we iterate the dependencies at least twice, + # we may want to cache parsed Requires-Dist + try: + list(dist.iter_dependencies(list(dist.iter_provided_extras()))) + except InvalidRequirement as e: + raise MetadataInvalid(self._ireq, str(e)) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert ( + version == wheel_version + ), f"{version!r} != {wheel_version!r} for wheel {name}" + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, AlreadyInstalledCandidate): + return NotImplemented + return self.name == other.name and self.version == other.version + + def __hash__(self) -> int: + return hash((self.name, self.version)) + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + + try: + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + except InvalidRequirement as exc: + raise InvalidInstalledPackage(dist=self.dist, invalid_exc=exc) from None + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> Version: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> Version: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..dc6e2e1 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,823 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Protocol, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, Version +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InvalidInstalledPackage, + MetadataInconsistent, + MetadataInvalid, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate + ] = {} + self._supported_tags_cache = get_supported() + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[Candidate]: + base: Optional[BaseCandidate] = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[BaseCandidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (MetadataInconsistent, MetadataInvalid) as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + + try: + # Don't use the installed distribution if its version + # does not fit the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + except InvalidVersion as e: + raise InvalidInstalledPackage(dist=installed_dist, invalid_exc=e) + + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + is_satisfied_by: Callable[[Requirement, Candidate], bool], + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(is_satisfied_by(req, c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=self._supported_tags_cache, + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: Set[Version] = set() + yanked_versions_set: Set[Version] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip to attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..a1d57e0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,174 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +import logging +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from pip._internal.exceptions import MetadataInvalid + +from .base import Candidate + +logger = logging.getLogger(__name__) + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + try: + candidate = func() + except MetadataInvalid as e: + logger.warning( + "Ignoring version %s of %s since it has invalid metadata:\n" + "%s\n" + "Please use pip<24.1 if you need to use this version.", + version, + e.ireq.name, + e, + ) + # Mark version as found to avoid trying other candidates with the same + # version, since they most likely have invalid metadata as well. + versions_found.add(version) + else: + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..fb0dd85 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,258 @@ +import collections +import math +from functools import lru_cache +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. If the depth cannot + by determined (eg: due to no matching parents), it is considered + infinite. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if has_information: + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + else: + candidate, ireqs = None, () + + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + if has_information: + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = math.inf + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + is_satisfied_by=self.is_satisfied_by, + ) + + @lru_cache(maxsize=None) + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..0594569 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,81 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count not in self._messages_at_reject_count: + return + + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + # Inspired by Factory.get_installation_error + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + logger.debug("Reporter.ending_round(%r, %r)", index, state) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..b04f41b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,245 @@ +from typing import Any, Optional + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + def __hash__(self) -> int: + return hash(self.candidate) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, ExplicitRequirement): + return False + return self.candidate == other.candidate + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierWithoutExtrasRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._specifier_string = str(specifier) # for faster __eq__ + self._hash: Optional[int] = None + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self._specifier_string, self._candidate)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, RequiresPythonRequirement): + return False + return ( + self._specifier_string == other._specifier_string + and self._candidate == other._candidate + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, UnsatisfiableRequirement): + return NotImplemented + return self._name == other._name + + def __hash__(self) -> int: + return hash(self._name) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..c12beef --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,317 @@ +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + for req in reqs: + req.prepared = True + req.needs_more_preparation = False + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..f9a91af --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,244 @@ +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable, Dict, Optional + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: Dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> Optional[str]: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self._statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self._statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> Optional[str]: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: Version, + get_remote_version: Callable[[], Optional[str]], +) -> Optional[UpgradePrompt]: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10d4013bb377407df9ba54c471486f7a424138e5 GIT binary patch literal 184 zcmX@j%ge<81VU5P(n0iN5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!3fIrb&rQ`Y&dE$m z)lbhX(JwAYP0mcr$t*6>&&f>EFQ_cZ$j>v@Gc?jK&MZmQEl5nxPE1cN)-T8`(2vi| zD@iTNOU%(PEy>I&){h4YWR}Fo>lIYq;;_lhPbtkwwJTx;+QSIM#UREh($ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2025d88162381c8cfea1637c9465386a70024b6 GIT binary patch literal 4519 zcmcgvOKcm*8J;C6TUuIv)^_Z`$yhQXQDsQfEqaJsIkZSwjA>FJskpM`&@1kUTzR>> z*j-wt;3P(nLyZKm0|b>1J)}U3Hn5BKn5$1c^kP>nY%oAC?V-8JRt`Z?)cyY9LzEw> zd+AD?ot^pL&zV0C4yp{#?oVH<>>Fh4Z}ic5g6+xr6--u`&dxGj(F3M(R*~<(*?=DW zkev+*WwF15wDHzMAF^BR&$E4^ZxQsLe8kpUN^4E;>w)gqw}9?|z7?a|2t@j|FZvjp ztXpN@uq}_zyLP=&^|^gXxO~C2YkX02wXz-a#brOHs>Q1C1YhXFYp&py?Q^g0IJPHr z?%RA`@H$PG48Lkv{DNaRv65l=!nHK>LX5X)08_0B(;+@xa!<3r(8K=%Q5TjrZwh`% zSi0>RR)t$)Nw{j+b`0Thdjb3|R!Xk$?7CYP-UTU!UH5rayF}n1(Zc1MNo$tQ4c`NO z-+*YkaKJ%W>eyCz5QRtD0L8QBqyA8XP7kGWNW$85Sv|K}Dyb z0ul;(V87rmkz>gun&;VNLjygo+vR!G`@3NRJk!oui~j+;&w@m?lwZ$4Rer5{9_IHsIejk>tBnMH2MF!qVzO-L=57 z74NzYlSz(?qU;kD0$;FAxQ|pr{OE>EFF3P^Eo~m@C3R`J6$u1UrMaa8q!2Bywzs^h z2HBBVErWrtVX3s#QO6~PJs*xYV0*`QTj?xay5R&$;HeZZOcrLG|PfuskDXgWl z6PcN0I(w3z0A4m%EdiuolFMQPs(O4&=$4zyNg+0bVxM zqC%#Y2I_hQAY`x^DBY2TCsTHYE|}<>?}^B zIZ(1}Yu?nXi!SxNBlvj-FkEF1!rT889=qYKy!Xj_pOshlkKNrfb~iM(j!m{n`7KzG z%Fki4!h8ad&tjl6+juXc@jdzYTRSU$x9?tIx7yepW5HC4_5n8nk&#G5?w&jUe4uk93${HHlBnZ`-EV>_ewBtmYuK(^ALm&0tM)n&BR6BdGg3yRFD}$?xut&M=CJ z$1z-GUvsu?@Ac!?j^7WD-V2Z3-gEoh7o)3@iPdoOZYb#v0BBPPQrO54v@k&kcC*g! zhM?aKJf8wqKF>PlA!oy#{f&3$;MWbxHeCwJY-CGw3mP*FB6G;y4m_8bH2WwX9i+Bn z8orDpX% zp-UsM#4ZPC*^=_x;F1yvY45^ zR$k0-kYB3ew2X6cEEba+bO@zOfmTMP;EpSB2O)#exwUIFx>0DRhZ`3^axh5<##7NsX7^ShXYw{lU(TqT%e>=CG$)0qr5-iNZs)+wr@L5UdCjTf7>mksmx`+`uF3l@B3~YySM*`H$rQDY{#A! z^j`q2;_D;z;UL?!@0+jt*>?^`+q5dXNPUuF2`z5f&J{uk5|2?7dN5RSrH3D9W1> V;N>+rebm2A8D4+o6=jd){~s7c%gO)% literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5cc1650e96e2d9d24701d5f4171a7abc4087b35 GIT binary patch literal 1855 zcmZux&u<$=6rR~#d!4mYLn*YBN*RHKvQn}xR7!dPr2e8H6<2CRg?!m=JY#3m_1esg z(>lr_haTVpMXHn@a)=NIphD`A|A9+GL8(?q9N^MhDn~-%#CyA5Ck=g)-+P{U`)1xZ z?|Z*YPC5kS=)Jew|CogQg@1A>jGSQ$oDITBgK)}?h&Cu#Gcr16!|YfMixO@%3I@4M zc;OD=MM0M?WY;KDZFA2M4@rgTDV}h5t1J)TBZe{hy3w@=#op4pKsM~Ib zaoce&idGm4#hU3>x-KMZMuAeS)s;*y33dach4fa0TT=InTwdpv zXBRJ>|Maq#h9zc4wG%6lZIu*n-pZ^Lx-a8;)5xm;i|v5b4bOtwAO=|@%itXrJ^p5m zwv9F8Tl!NmBx~k(^eehRT$=FOljRIL~GYJM1NA>$yb^>rAj z8uozK8zlA!wbfUj!#QuC*YE~Ypw`Kg>hUl1*SEjCy=iZ~@~AqurGKr?eZR6@oqJT8 z8$t+i?WE-UanKRIpE$msH4pd|-~YTHM57(s_j$Jo%cjy&A{*q(pnf3oDEcpJA^2{&`rCo;>=I@``C1AExY92OI^E2PW#ViSapICUHEQ8ympmHgKgQpHZ0<}T( zcyIs7bk2FQjM0Z=jXW5A^I-JI_@Jxj0aE1YJ~d|8VqY^6tG)ydb^DS%2l9xy(3n}D z3GP}FpF1r-u}Armi80q)Dqn|vg~ziDsZ$t_>LhNUS|@*(tM?{1Z|zK--kv)B@Yv(2 zxyR-CM^=W-bF9SEQY^5A4`Q)AZeQ3KiN@$u^7`ok^j?IN#$HZ^(;O>GV7{5Fcdv;y zbS})8|Kozx%xMcCu$0X(ypRS9OWl5ilj;RC3#S;&sxBJ?Hto)&Uxl9VSQs;)f;Xmu z=YtF5&`(3;5x8jGEyy>(CP!30-!9;I&0eGuaDD|ROC1{v{utat&^MY|7N*=Smhn-#I|)}^Z1tgyET*MagDTN>uy;h`Lf#-^`Hlx zm5~KsAw4`PUP&i##+Ku_oOT04@6g3c?`3TKK)waL*gxtVs9lp%`phU$Yj}jv>YwD) sZi$p9*X_NcP3P}k-l%_5-y`7e9y93KyBBr|nERg$(d;=kolWojA3M{(V*mgE literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4479781fc3038082011735ab95d7520b70fb3379 GIT binary patch literal 2399 zcma)7L2MI86y05~z4mS#yP-fypc2;E-dE9Fcm7Nu2Igq~Z&lQ&w9QPaj>5A0pw7-MSUC!bPoW)y$!xwm_g@OP&=EN#uLFDP2 z=)^0Df&~3IN?Hk&oDnVQhFC~hJ!~Y2WHy?xQa9oS&Ue{j4ajgeapr~t$0?|L2BTs#A6m11y$^-*A1tN zh-zRYn_k5?0(%Eit!HxrFr&`$a!3Mk)i}4&EidStCfbQ`fBY>?}=!ruKj_w*26egmhnmo1dhzL3cU;6?y zce!A9t}Jvc_NhAX_*i(95yzfETG0+P;v>^G95{gH*wdOn5B}WY{KpqH0$_gR8|Ey9Q3D1v zokEUX!_lgN?GUXKG4Ib~nz5|O(pX2KS>kq-BiqWErgEk+vWB*l(G7954HH}_Vb7=l z5$680(oHf%UP0$g5UEp4=n9ZUA)tsdDMQU1lyd6e2*=fhM;+9$P!}dSE4CP`bC7rc z?@2kt6Rhj9vlx5L`t)JzyE_4H#qqI+0#1Szrlt$>H(K8G+!?#5zccqtdVeP~*eE`zZDvL`k|PZ5fu=IhxUyD#QruF;H^lJ>rrqlUJnRFrC9F#la9FX&Vi%4g4*>20`(FU=U$Mx)hORiHD^};J?>b*Tq|5@E5lqUx z-QJ$=mXMVw@(VBwlu6^5K38K?fIlTUOjW8*U`M3_L=InE5H%E-xg_p~Y5Xp2q6(vz zpT1jR8TK1hAuG8!@f|zBZ&9Zbs~_ZdNQNx2F}!N~c@DD&91uJROFx8<*w7pxJ^Rjf z_FOZ2u2EYbe0pgs`^84)+D7u)i}ca$^k6d$DY1U^>DjIH#L`$dS!&Ou_nv2ut<0@t zpw@c&Zjas?{Xw`d-;*~XU#>Sw&Ap<^@l(0pP||hFGj*LEf}KB11oQNL#Pm`P6}a*9 zdi0KCdOJkO#7KbIMIVaOp65hK&(fHl=pj@bHD#Abax{AMKgB~ZMpKkfVp=ht=U)m5 zUTkMMUjBuXf8~z<&Ru9Fc>a^s%PkI6<8qs-mq~@!8ZZQE?JQGI2HN!R&Hh_`DPCJOTO6o{^@E~>o literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e21be7d45e219c4397a26969b14893f28e9ebd2 GIT binary patch literal 2896 zcmaJ@O>7&-6`uVexm=PWP0Eoa!^PTiZL^U{)oL79b^|n4jH*>d*R-RU2(Vajm*i5b zU1DY!T7s0SL4Zm?0Le`Nsc4H9?Zt)zq{kkcQxCm}RsgzV7cknQfNxBc0!2=JvlJyp zHag(U+nITP^WMB~_}5rWMbMHTohj>Kg#O7V-4@;Z*sTc&Z6XsDkSUm=BNRlRN(ITM zazXZKpb!8mIl=i*AtazOGUeY31w}-bR84l39#Bht0D5^VM9hE{Es19EeYp@bLslQm z<0aWtV4ko7)l(h5-q8%ti3s5VORS#mUGIEX&pf|Y=yy|LWTs3N^hcmap~rk%U~v!x zN~+oSexT4_L1z39Lg6S_9(i6*HT(RUndqM7jzBa4y;#ybGItK4I|7aahg=HftZ<0^Nib?P76$&%%vq3En8Ht8MLC;ZIeX^H643aug#SS3(ZVUPvmCuEQl>y z$8NFLOBp5-^xZ2kY$6D!U?K-CqXlsoQAkLqokmy^&~4<(4RlAkjT(Y~F~oUkSrE{Y zkVk2G8gurW;8JuluV25NyZ**>K0lR~nXD7yu*l?m&BOE!j6KYb)$CeEf5&o74`=Gw z0dL1La5M+QrA28G^IPnH6RuU$zPgpIc=J}4ICja(mTj6PHLGYF4n!pj(%G6HyRpo- zFJy^Lt@AabIA@eCk_Agy-FB&kUBk(88zfuw<{?;_+5!tz45Cwq;65;ufKI*z!wPDP zfk5oBl6o3X{r5@ar7w^Wi2Y58wk4on{U?Y57oSE3w&elBi|Rc&gnk}QNxu+M5|eov zihGp+n+OG<`$7K5uRFTGcMxDxc(502JV!aN->N)4huTt4TB^ZAn=n1lSyi6jT?`@A zwX`hsSn^Th>-_SCmO(3M+4ze1+?8?meXJs~X_X-JByLA&7>iN=$7mS|8-8P#8(@GPRa9@R>o z<9H2?EX+H$J4eR-T`pOnv_{6W{Bl<6vl+N!a4Bnse*tTC$H{(o?3H1t;$off^49Sy zW23K*j*fNoUw4e6Wdbc9;TA;b)KRg!enFFJ!#%tVhc z*{fMDQ*!!^iQM$mZF~gs!~!Kk4a$Oq`hXTFIv%lboNonfzyNoS$v#JD?*wV7vn!TN zrj%^Q;&Oyn68MW_Krt^Se>edj2H~dv#TOk~+G1>F%Yi*FU_{N}Xw@&a5g=6m?x$Q#O(xMB7Oe?O(}# z8AFNWdSk7z{_fhlTjpo+;eQPbZZ_^Vw&;h;t$~-D123=spsjRxC6pT4y18|2`_xai zhi>d7^V`wOPuxR}iXl?nCXM?3RQ@@SzHjak!bnlDH&&EI!zSD!_kfnh6+ydl-1}X&3@Bhw5D=n1l3d(8)Lq zkj5Z7GSo^8Hxt9HM7o(s-#fdLxbVlfnu+hV;#ZsTtB<1bt#kJ-wk4F95O$H6P}@ih ztN0sS4?hG8b{-HGYLK#xtrAlVT&@|ISWIfzE|ZFm%|w@`#l=9Kmd;<|mlNAXnjT^y zT{pd=uCvtsfiqoK2|ml!ha9h5hMZvzbW9=(gazqBjj#CTK?Rg4s0hPLJ_WoMW{R%6 z#=HfKK`sp|@~r1M{!;}ipnfEH*ZeEZqI-WD;H86NgZ~_eh4v4bnzHw#Y6g z?QtZBT2iVhr8deBr4x?^PqhX|nu8;)!HZ4!$uB|K{8+dpd@cn7>Z2q5ZJ%nx9h$w+ zq1PsT`ZOF_y}CBA8vx!fhERNTB?97+zV(r{k(PS0sh<4ZH+R%?57n7_`A^=y|Ms75 dHP65P@cf&9#(!yi+StDF=BGdXS;&vW{{Z3atmFUy literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ae29cc649a067759189516bfe9b3648481833d1 GIT binary patch literal 6339 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 S*_qKgx8qP&E-n>b5*Act&kJ-!tY2 zC}aP~uCws|;;udYkDRvgfve!6^uOL3)Ub9=+t~-Gc55_R2jB^a;8x^n-#)@VKqKpE zPjSOJ@`UXW$QnCc*!5~}$o6OnYCom|~f;9g2rcVOi3YB{`D{=WH97mCAT= zw}1N%mQ2xGWs;7PA(hx{6vwPkR1`^$CyM0~FPQYpO0P6DVkYCNCPTWHsC&}f_Uyt(}i5a&%=1h(eiA9FIv=|iz%Lc8T=@XUn}es>^5^A3Q^vkron XkJA}2@cL>4Zyz=AZvCfCHaGqT?E9cX literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aebd9005e95c2d1919bfeb49bdffc49ee9c1e3fa GIT binary patch literal 4180 zcmai1UyKvS8J}IR*X#e>U+#c|;Xek>P6`2vAPoWnsKG=)6lx_}?Rm%c9_!uh%=(Ty zd=f-R1u0T4QdCZAEAh~WR8T38c|>YeMe2*MK)G&_N>w5?Zzjh>+oyiBYp)H7+Oa%4 zGyBc=&HTQ<`^R)TfuIe3wxfDAgU~SSeOlN{YZ~B{N=6loI|pY9{NcQX0l`DI=m&NRQn>xv$dH~U!+M59iR`arVKn5AfKw%- z58Q~BM)dXi;0>uXs*CU&`lYB3!@iM_ax@&R4M$@z8V>oS^zj>VY3-bt+b~~D9K&^6 zZST4h^ZJUNwg(oJKHU$(!V{>>`qZTYPtWDVs7wg2Kq^!AyZLxgf z8-DR(F6u>&S#zFp&f)8t>B$$#75B_JPr5kg5HI?k1-B{K@0TE}l78JdDenWw(Li{I;5c$8AIqC=QjxIUy%{Bkvl{iQZ}656)T4MLb1S zEv-&e)k~;qa9bFsRQ0C~%?#fB2CZ_&|0xw}cAXTMX;es|YPbdFkg}nf26GFhF;#Hp z+?s9e%fJ4E0yA7P>1gH4T9vSZV>kuXuv|jnzJ-Qsn5@u;P2QQKNf6+7Yhb{l(A_{Q zl0x~^U-w2-n;KOEIH;^<&vu~pVs*k8NbwW^npABH&{hl+v{EOY3`!!F?MZyallaV& zDRCRrD$BsR+Y}gZyIlPPbhlAcx<2N1-=XURZWmhAL`|V7HX}``8NJ)#AfP$;xgEPk zK;cT=&3DCMM0dKe?%Fh$_Da)*yB!$|a#Nn>XuQ&zs7t}+{r?l?#Nzxq06rfApYMa5 zhcf~=Y1N=p*UuP7<5~pX}ey^eS8lBPccbEIzb&`r*cX599k^$Y^l<@xYelfi11AKYB3m)=hau$$XNzm06s9q-=Vo zOe|IJT=`<`%LDiKe>MC_Df(9QlCN+B^A&y*2Dkg*obD(Lmcyp^DO4BlMYoMNHjQ6*ci6@)(e5^cDHngKi+3rh$Ad{*P4P1+;6;rEv zQEpkjyJ^g}yd))#sg?cs>BXwHMZhrWE`G=ybfI>*W;m+8b|9~CcZ9^#5UvPxJs=*s zq8nlnRvO|iRn`2&O&qD|Cu$zLE{{FPV{!HuI#)FT!oE|>{=6#9t2Cc~NlGf9tC z#AHDCl!cz5rr#;r30oWV4`E)VC4qmg$`h;V~5%^h7K1a zM4tjN0V>6L@#@0-ZmzDY3wYKrO{lONoh#rK&=-7f z0-Sw{5a94&`T4g_^lr+H6da~vH{i-(+cnp9*x>@NuWF5{JZJ~%Do68cC|@D0aCN~G za5)Tw5JPwx*$4mCccA+*5_r%=A8tVC0|=4}!U6=l>myC!`cPAx?%xO0yfwq>b!< z&QF9fO3xoL?XqUFH}m0Z3cDCT_CL|Tpb9|JTKVsr^UJA;n45sp^;-xz! zs0tOk%ls0FaoK=~-vU??JuK)^czY23>^^jG^}{GTx^%IX+5D$W@z>2E#>v6siEgG8r$?df(DL09XZxc#^QQpJF1a@~l0?QHuH$_{=~yH$JM(ZOmIbg_!0tbFa% z^9)k5PcmEYoO+Pi+fw#Ih48bp*Uv8Qe7Nn0_q9Jur#tDtSOhKb@2FyK%!{e2ZkJV+ zf(;_-<0-py4g?y?ZH02}QJ(54&-IiiS8u|vR%f8%v1vZ|b^!W(Cq@U_i~tSgiIsBr z=pnu@_I~g+(^m~;RaLVr+YLUw;Cm(lR_aCI6C|jOc+ul4;ngZhITCyVy-D8&67DK& z82WZZ5QJ|;c*gYT3ADW!=W-=>g%Ku#z5JJh*gx@yK!-wCaPqzVFs#+vnNNAUUy`9 z?WjKj?t|-=wthO%js0~<@%u^^eym6bNr|FJS%0xar6)HcW!VW3#EIiL1?;p^Q@d@z6gg15m3YeW zr+X)*lF7sf0#trUq_%)$1cenKKvGx_%2QtZSfDSwNCoMG3~}RIrMRxWl)8YnN^roT??qn z>QvJjpvT#~Lv?E18jss&lIs=M*|LkgE$h(F;gLYvdSGXja}qd72}RuN9W`Ra~-L_AJs$I5jG)ElIW7F?HQRqIWg@ zMya@ri9V7Y=@i0>^DUT5R+a<{H0xs$!nogAB!sIGDa(%>PE}6{r)u6UC*Q$XM zS-EC1qb4&h22FlBt15C<$EIJ=l%l3*i#cp^3RD#Ff&+v;w8_%4@#RW|f}%@`OlWqS zTt2JiO;5I5#zmRX4XEmve%U7Ah^O#@=0T~9DC}L^>NV5Crd#K9^{8$F_PmetiF}M!5U_tpjglePT1Uk^1tbeeb0P-_r;sKKtmwNA=J}BXqIW zHM%{uo%!m$FW#$-UDLWEv&M_FwW~j`32z^=E}#EF;Mjxw(e>M#vm3Kt zzPs<60z>Pon;&j`XzfWL6yh9B>Qs?6aAKx1O`sMni8wUI(ZtU}K zJn@F9inev<(K`>{*;e)j(?(y~;M3HHSdEJvK}?Y8*GfwyhiTYyCn2%}pf^Bj6X~73 zljUhAxbCL5=#ZHmm%X~f+64+p&&}MW4FSuFo}E*%=pwYdNH6?|ETQ^@K9ZGvB14`7 zUZZD@kRkXr`%b(yB(!APA!Aeq{x$l{_t8NhdLZ;|`S*m;gJ5(^-Vcr*yIH~0M6BCG zsNjsrsnA`_82yzL4RTHTAdj&s<+8av&ULUKWGQyj`O!_gi@@acAfGxRIjdU$l63lo zqiYAL%2wDmezA*oV|T=8=Q;zSZSCKHcU7+Hu6imi;;p#bmfTfuvA4o>>_U$?Jt~ZC zqw3W|_HKpKBORVy?6!G_R^XH!=5aep;9Uoe9T`Z0_Wm8}f1k5sb9Uz?6DQ6-^QL+S zS#6#3&y-P>2dRGhG>2Aw6(5OIeC<9v;Oy8O^i;OWpX(LPHfvP)9nOyA`JRdH8OV0} zpoB)n?4~e^H66EjR|_BRpl^EbPZzpL&WG<<{mzF|v0S`UjxSOhD7Of(XM zZ4EC+H8{`^P&m5AHKOs&nT?q>-;+SJ5gT5AcbnNB`%3&m+`drjd13A5v!({N$Mz%7 zpJB}cMbS0$6S3R$=qqJ-OG2yH9EMIj+3CcSg_4X_ZPJOn^{}l>q4;KfWSEIFm8|EX zU~0yn-M8BNBqXF}p}!efUogLB4%sy0Z}_{K79AMdzVq;BE&le5MZb4<9lJrs^6G#0djE_7 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01ae078a6bb8c2781b771f80b87f6b063056f716 GIT binary patch literal 3195 zcmbVO&2JmW6`x%$KShaFY<<{m>>sWcd_CQ$)%P% z#LUnv1v=0n2MGwE8W5@gZBg~+z(|nZ`akrN!ZskR1@zDsL2fJ*pg>Q3Z^)%Sq98#A z1jGmPQsLM+IHYHSeOt@wM0-haLa>&K90eE??+H=5jE_qo1i#ST*EcH zK2>?vmew^hdL5-XM9)Sp@?b3grzR++jjdhc3d}w850)I?ADU9KXe=;?Plm zGtJ?dC~of(UFuM$+4MW$7HvY+7?n6#ww9#wR142T9Z8$ZRa-F0TcXV5c?p9mOdpX} zT0t2{6|{jxuGm%DX0+@C0ap|PfFcjPvg3OzgE>pA>|l?lXbp@z)b%PACRm`T&#PX! zkkQ88Wz_K{2OVFg6)q@l4}7aPPcO7RRpTv111=h9TsuFHyOrSersCX}^rcs5x#k2_ z<_-_ob~?B+dO#lVNX7G^eW9jQQ(i3=t6;sgR4DUCvDs-l#eJJaPs$dP#TPHX^m4v` z?3J-!{rbmqC1-Bsg}GM>w=agq+)8@rYyh7rSQrDR<_$3dA(R+&`oDLJHQr!F>3bE1 z3l?RQl|49%R7Kxgf`#FP!F=KJl_G+8E&_J3={1YC7bqqG_eF@3FN+ae3(ZcLv!j*{ zk`zzDdia+Gs8-3Br$~BaBe9t4k8$kIzaPXLk-bfw_wT=xp zIxyAI(lxuW2ZL4aTHi1qy?&&0t!TH>_~4DMRW=QR{~N?2AN;~1z%}N|Pc>{7A_N}1 zLI@ZQ%ckIUR_-H8->J6aFT<6hKoq&oM4FyTown2&3K zgky&T7^XD|0SFr5=%KDK6*VO?3laep;~)uinXb-(Aa6niflrai=eBP>oG7d=?oLc^ z-P*jhmVWZ|#kHU9PMzLr-)nDm?{&AY-@p5C>h-m^cXQ(#?e+G?d+YCgSbLm1zcY1q zGxwh)nYq-9k;$1}hGb8OlVJFGczgn2*dkQ|U>LxHkOwdti+Htb)Dc8SiW-6?3XVZk zG8z=kmJ2Es>BO5~V`(^I-%{|xfq4_(e%{xNJZ`T;pdGjjeV8NQV_kCqcuQrY6V%5d zY5!Zt5FRPr7(g}xeEb{cV_1%qZangY27LTDz&lg0fX4hgI(2EzMeGd;ct~qhUjVOy zWXgU6oFy+&4iqigo`l@8$OASY@|&P!kTvG1EVIB79+y}38kh6H-imsVW9WVo)?EN& zB|4b4Dqi5?5TwAuFK=9X$G&m>=Cw<>v%Yee@b$zi`M$k?&-F9;x3hfM$o#-ahsp0| z<-qp#_Z%JUg3E*RnCl>~!NCUGjNT9Ve)fA465i}(>cHV==e0Qjxs!dP^$Wf2`<;S3Cg3x7EMI6M3AkyFFwqwMU#;s2U=c0hwqPE4#>eF~hM-m2cKZu$58?HBJq z{c!T-wYLsZVD)kC`JJhm&9R6A$0zqGFhAZudJZ=|0ach#ohD=ffh;GGD#9tq+l67? zE)1j6cO)J^oH;y1r}o1B)zJReE)SEo?fAZJLpo8S?|aSo=&+B7re&Q6!qjUG?zVjP zLy?CrWMbKXsuwd1;|WRYU*;d=+~?%A|C%ww>}5&(nH}pKJOM_`)nqT5H4-0|djvk) s?)~{cdwVGMW-`W!`?Ea)pHDCRb^b4NdnoqKJkwXhr?38!fT*|gf7OW?{r~^~ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ec00ff831c23a3ed5c2a0e77954d78e24a533af GIT binary patch literal 2137 zcma)7&1)M+6rcU{T9Pe0vMSq6oORqJmV>3(NXt&~Qix0o7PJQ+dPqqRIre|(MT!VAlRyuJLT&;V3Z;k6th`bvKIEaD_j_OS z-kW{1`mL|e2Phr-{zP_51mF)Qc%nBHb+H4YVc|aAx}an#|bDxwYOlpI$~CNS$13Vz#YH z%yz648i#oM79ww*k*daNLCGy z=p)c)?_c)?W2SRy9^5?(z#Sfdb#9$6fgJPtAC)+-VTb#6xCAiU&84mda-$&Eak)M(y30#~ zmyh}$dtKjku_SKrAAm2pl9&s2ck|HWeE>x^AP4mcd%V2vDZcJW9N>osy{x%|u7~2~ zdB8bC9Khj@_W>8ftJ{mY0iwNY-&|cm>3gcCE*CL!R0rF1meh=8Qx%;s6L&wCwuypnM{QFDqraoREvV$}`y+Y)yZ58qkk=rGbp@V89f>U(JA!>ps zqZJJ76(5ysnWYw%tyQ9US|S>{iP$xBsIS9{V+W%C^GSTgT19ck&@(8W)p6X(qqMFW z^eYfI^yPTI-E?ebHty&cP3P(HX<6jN^Ljp>(oKwPQ#0ZPtQ$_;%NENQiC-&VE7fk- z9;5l#*U|ZtE*s!)1&oeu_LYV5r@Q{(!^@kOtBGg+qr0KVk3#k84@%Wn3r#dbQ}xi) zqw|f>nWup>Es2J-6fhXx_HFs9XBz|KJI8ir8Ux46BHg3HRmRH~s$#=`_@_6UrB8@e41)YBPMY9zOXiF`<@abM+jCoU)d!8xFd*Y%o=&jMzFao_X9Gl`W1PBm zbMZXs-A6O$NT35#R~BBCt}S%j60;pcV)j)xDqUM>&!OaA8#*)CCc#unGffL?Shq|k zl_EW9Yc;PM$Yxj9eN{gL`zXUl+`=xdTCiZCOLm-!Y}TD$>CzH7j(Y+6p0i)?bKv_O zjJ0GS2fj{yk*Z{C;@Ga_Z%X016s|m|iK;6N*QMd=shW7=0O_?nTR~-<-w-!o`D`Uz y6)K~3|KYlPWDh7D-x>nJk@E7x+-9yel4$gw+3>gI0Zy)<7NBfL_=_>Ov;P2=@aHuE literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b73f5a58055ff8a11bd764bd027745524cc901a GIT binary patch literal 3982 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 D!a^{w literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..166455f10d074788c7b8b52a1693abf0992ce99a GIT binary patch literal 1153 zcmZ8f&5P4O6ragg+pJA@D=UhZxGQ1=6Wm<{@e7rT3$n^?)g_mhZKmyLnuM8DZSbQ9 z4~my6f_wC+c=68=^k7l2Bn<=qDqRIfX3hCoMNEF58umbw8ZTZwYlwuOo63H86OpuhYVpju`OB3}|7HlJz!f692g+U|(Dh%- zRx@lNi~6{ZtOkxP8lf6?eN1D^$17IUiJM_CYaW`hD7(Oekz2d&HW0NU99a$yVnhPh zx7soGsm0sjkAa#|CoN&>jQVtVfK0H8JJ?6}Gw6b^YPmP}$XuQ1tGhp`d;03059)OH z%pj+J)bxH%AC$Ha#>Ur~7AzR0H0L;8SaY0IVHI%DAbiN_PS%F`w+%CE!)#$%+n7b^ z%DGDA{J#+pnJ0-fCTYoW+#m?!?8Q>YAqoqT9EUsyjVq;`$fxQP_oP0lZ^ndx$!PN2pnd5`W>E}Uza_;rr{$%A%u|Ij~ WJtz+q8BVND4*@gJ_x|7}>-jhAZZiu2 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4385aaf6c02bfb2d8c3ff6c3e82065bfd1c9478 GIT binary patch literal 2408 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52677adef4ec164d83439d6067ea0f13b264d9fa GIT binary patch literal 13547 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e476bad350046ca194a0757053a3d5e991605d5 GIT binary patch literal 2097 zcma)6O>7fK6rR~1|K*2-qz(`gFC|5_1U5fHLI_2wfJ1*2(Gs=7Qe_73I9^!qZfC}I zi~_PsBpeA*RRtQUJ%EJNAbMyeBu>5c)=OwFutjRCwuj!V1|iC+Z)P1Qq&;-(eY0=g z+i%``^UeFduP=pQY`(T@CNL5DO)9HHSwLC20^&1dBOAM@AZN|RRjr^^^@5J2uDeFn zESS|;A*OW0jaL(e1V$R7G26V0BgjG$^n@Mj>M1);d+Y=}Nov9`MU!Q1D>%>K^;)!6 zj@hYsqtM&H*`7Zo;8a!%djrbK#gbq11ZAPgT}lI3P8=n!OU}47j88WL`YvHv941c? zMye+RS_<)Wh);w@oj4*K;KC1zqznK>o4TYC#uybf=9RQ4Y$anLb$C{65SP(q3QYj0@>t#z+=$e@khf}`$#YKk$j>Mz3Rd+;1Svjdv zi?Eqmm3o3JFetF&T8@yrLT$JuBLZ~cfUE0N!J?o@sY30X^YXjCD`o7rtS zp2eY(p3QSAhz{DuqhE&{YI4Os;E{DB*Os!jiS#h#wmAR9G)?q10i& zqD36!5Iie4KwQ@@!@Uw+``Ipul&=yC=x)ajbn8;X&vuLAbYbr)pe zP#s@6n8j0Boyq$dCXcUjiOF(gV{8B>HYjZ=E(jAv$ywGfS9_$8RpGLraE{Gp^Z9hX z;#X;&yH1(rXB?5|&@vq2I$Y#k=S)6mh>GtW$nD#o=Z>Iz0#Z6hW+=}GPLMA;vJ-j4 z&DY?<@VvUDxu6mDskdUCkszS<`8|>0i0i}UTf zb$js3^sRIo!Rx(!_YZw@NWFfCpURaL9i=kLt-S>ej4da&uK)}J8c4oG0jn@|b-+=C zYCB1j)2FQ{KvTuVWPxQ4d=ChSrM-QVId-k`#Rs={EQ(LOHUjmlE%$cZd;9B&JL6BK z+I|`J4mGFPHuxgj$3|cZ4Mi=vfg)cR6O91+PZW}*SU3hG$rV4Oo(+9EvKHyApdN<~ z&YA2Fs=6wH&@8(?5h}VnNbM9woj6kU?V3v`*$((XHVFPch_;R~{s|5Ij3(g!2RiVp z(bGD5>8&PyWc0O4m!_Jy9n0XMhpA0%UCujSRr4=qUu$*|FYa437A`LLkKarz4KBU5 TG<>Unxj*;7%s(-~S#AFhjXwx< literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9c7efc188c27a534af9b7d6031a2499d3d15751 GIT binary patch literal 4539 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 F_&+R56;=QM literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42c55f971fe40f1981bc39d5dd9a283a8b458be0 GIT binary patch literal 12013 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 K=Zs2zR{sZ)-N_FC literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..058ea686aab4dda0c298417cd25d69c1def32aa5 GIT binary patch literal 13487 zcmc&)Yit}tw7Wf3*!P8t*1}6o25@fw}C#5-A4K}b(`R+51WTA-Iif%w{_UoZDWuY8#WEw zyX`b>2s?(I-A5ZTl|qH!o^TYDZRy?uWnQ(6w+c1=I^OmI+g;1s1rG97fvW%- z{VeZ*(mLKLSkw}z^FgT#O6z$ywDr*TzJ4R`g|e+#T1AlFrqbed(7qV*+xZf~p6y=> z`5k;6Uk1I);a4H}cq_Ct^OY|cx*KxkSZ3s_ptV0&RxKEZ&gS1;OYvK>G^~6Lv~PsB z_vQN33N~&2bQBIoX&Tqn6QOD=5sMijln>pdQOZAgv$n1bd6Zmwd5m1tKT5`!+xD~E z((jL2KY#s1^}})~9FjwV#EC*UC<{Cn6#E847X+!r`WX)0<<~3bPFWCxy}M2HcW9(D(jSGSr!ykS!7z}4%A=wf75%K@Jlwsz=jge!N4w5+p6)uM zIM3eqP+{J2uDdYn?CyM^AP-cnLPQ!Bg&sa6PE_?y?B<4}{AgI`hJ)W$s~AN=9u*^f`Q;=;4;lQecSAH!~pmd%a8w~Xga-qnDXc$(U8w_3uMFu!I%1O{X1U-b| zk*F9HL*elj5$ELBDY~en7-)A`92Ut)IB)LjbAiF=un>^Kp?)DS5RwDZh|m`bhGEA7 z;ZSd2WLzGMM)tJq+8vNWvd}yd>^mPE5Tw9JXe7`RiohPjmIg+FBc#A+1gl{-EhFQK zBRlIJI;>a(!{KKy)j~8yKD9Y!TH~#=_xHo@JCXBs=oAwbd22jS-$5&;er@x)dg$FpqzRFRu{z z)Qn+C7DFQn+aHSXia{EIuk$rVEP;A;n?)}+_0Wo*un^>7kMP?NaWnQ{GZeQ|1Xh3M zVEo{$l(JQ=+I&fyFR?deYnW@ASm7 zxk4<)`5AD-rOkKzA!q=KjG2TzYbQ@|giPx4pI$7t2am(rPUbgs%lZMi4Wh2p5eAoHW`C>n!xiQE?p0g7B}(N`F_!SwBN} zz;6)Yg$R5y(c$4}q-R7F`a>7#{wYQ^qp+eN$r5rD4#}xI>KY76x9sOOsJ{n((qV|E zNXAG?DyB|-;x3tH*UB0ei&JGSar?A!mi^dO@^Mjl+EKae@TIGL@l$C>(d=Z(u@y=) zF5)T8xQX4Z?u#Y&28vM*iUWe&m*rp>q~NRkXUKp+q=gu5CJ;CKCi0>W_VoMr&Wl+6 zZF-w>#B+(5E~X#IaS!kf8`GU{ASi&DiIa4DRR+oN2MXk1uM`cB%7V%W(SA-{7Tou- z5V8PencT8bGJaNc!LaJCnt%c_kz!Z3T-{{ggYDR42Skbkn&3C8@{VG~tU8QX5A_>a zp(rHvsAK0liOtZk3mcz=Xo}o0lajLeV{^ymPtToBbf$`1rcSMSissAa%I0h5Y7?a? zPs7yxpE_JKKZ*Zj)lrvp)Flor-LdRDlybC9b);>c*(X3IEVDk!7=1uA7f^EIZ+$C7 z_@(B*&eyYzTx0@77O$IteSr1VcZL23@}G4=HGBxDAYKC?0}qwC>w19GdU&BfI2x9F zK!FQABjHi0N4O~TjmoIK#a+<&QTRz^5TW>TzjW%CrHeMyo)@_O5P%HWObOL>P*(Ya$`Ezd&>|{w zqmm#72E^#-NMI}~hIv(r^bNv0a*Y@LDoSaNj(`LKev0tXF^L-yL{3%493SnIXcvH4 zl&2H}?Ms(Ktbvy*l=`~?7QmXxVz3X8S`W^!M~;5?y6y!UPavIAh=6ab#9&f2^h(j* zRMEZ<+5M_$U_*f7Zjsoz#TB6|)zR?W7aT{oeF&7!JnkiW9A){88f5vj( zIQ zAw*UiLX5=BuwU6-(r7*pvm2`0&=j(~QEMT2zNJNOZA5!s+U94=kV|hClouFuuunN& z$&Z|0>q#5%Os+-D3`S&D{@Fu{Vn*H&&O;-sNFUMjYEKk z{aRHl|NgpJ=2DH^n5)U{2Ll{+sgWfX64QS--Em7j*#&ZO3^?^s!oc694$Tn$A#;Ki z-*i4>L^G7@Z#yTgrQaHS85qopxbEQy$Q+6us48hdm9A=$r!-mdlpl>fgdrfV5E#!u19vFxNq^NaGR+HXuROD>RDmS^JX0S=2Yf zAxQ$GoD!hq&~&ECO}rrRen7kz`-BlRQ9;v*!oX-aD5@H8SQzdVL=_AH<#A|t1B3fdPTdQ@sr$;0YoUk)^`s%LR+3v_J@tygqnF93D`V&QOf3>+By z_KGMhCLTNs&2iV%9ea8brw@x(ke9`A922%Jq$xJjJT@aSo z73ZDP`ZaG|qW;yUSDJp;lJf5QzuZks-`RDrx*6DxM~x- zUp@HB!9{tce($I5%7xv(a^hppOD-_vN-O5i&7E7|fBEFBE~7JgPBUv2TNZi~TYpot zxNohzX0`l|WceM7yB9C4l<)gePbwSG`YW41K6m`3``5~v7x|CM_N?ebxH7raLKUTmQC`I;J;m)k3j6_IOu>>WFF z*X}9ns4~1$YKHVXHC0gl&Os-{?^YQ)wp!lhOi=#r4*xN?;XSt=%HJ#U9^0nB#h64^ zM8&htvxK}zUSwXhy=X54JnBn~0Bl4feFzPc4Pj1q z$<0EWNmg5pNdv%`9MBv>fx035+?EG)+Gszw0|Xtq-He|23C^Sd@@+aNZ6?$$Wki4* zV|#4cB;Y+Zfr;8Yz)`j57W$mlFaNxSzIoCD0Mm%>3+Ve`%mQQOcH+{bEaB}1tKrL2 z(Nera&H*~!`Q2^%jnlSi`!tzm=vj(=(z-bWi!(9nAKZCPfmZ01*buaL28-I$2M`T+ zag5Xx8Qw(=aK_;Qc-W}r;{+({V}{p3PGF#?8vzYcQSkMh<7h4Y-ry^F@CEAlM}jXa zDlWiZRQvyU>_y2TfcyW)UH}?p^htoXYfyzuS?~ye^Zy=xP3T(&CMMVx8DsGP#0K#I zoa|ucBCQCD3L{Q59|=Zqt#|>D;&2FDu;5`s(27u&lgCF?7YxN}+oTD-c;Jo+!>HWf z+zQwZuuoqUo#Tp8g|O6HCn6^KhL%FvwH^c3`4#(ZZjMQv1xynii5p@ho-?5)@!%pS z`H*+jpnU_P6C@>zZVk~AH^xYh)_|T1@etoy0$)ka9Xpi$8ggAA0bkBe_;PZ3XDFvN z@~wDq7*v954vs_0@`m3~P6Omy-ufmH=6O6-3~67}EptK8x*@<^e3Pg<*}S#@DVQ_& z^UdR?Sk5J(NxA149-RBn=*JjsJU9&b4BzV~Z-@hNzGhVSLhBefDS$pkSap^Yr8a?&(R@y<`>dhAxT;DzQ$fIvI+b zKdmDB_PlLIPc;=iSX_!7&IphZ;pD78s#u{TLR#Qd#e6m>(uNd`izkt=F(e^fzeRi! zva09U5*0%O)Elbk!Tu6K4H3o02j!qfsroxzrqm`turA@Mps?bmAY@TCoa$xCOw^1< zveOeEVZ@d>;Dx=d;-x|-~g-ky?o;GiCIfVR|O{rI(Lche?2J znZ2aA5^?oQ_aw%b?)+d!YueW~+wszgjFXht%sK#B*6+Z4x@^m=kQUEk=_p3KFhbOz7(!AwavnT~z;x8GG64(WsXDM4xH_#_pD&oJit|2j zeujF%0#|vlq(|LcH1og`&2G8)0Fb@Ko}=uo2R2X{@C*)X!LjI}Q#OeQQ!tCjd9{$H zuuL4osnSVbfE2ato_dOM97gxvo3rdRJ`>~6?(eZ}5~SbFLenm7a=rM>bI+tqWveDG zY2p$kE2bTbt#7ow)|P5KxZ2pBY;3>!$V%hMw5ue}rY)YCns`mhQn70BB`v<+x2;%q zr(LC+)Eru|?Ao+XV&978jWTdWx~!6UU#t)7{tc+>2~ zMDdbo#o9V`B%^C*48>q(UODrpC*OQ><TAxaAkNzkYE{N9s>AU)^vLcg+`sv9vR5_PRvF;_;=vEBimPAIa#k z>}KX7lk4=gg#7jAon^A zQg*yj|9+Vc(-jP+EA^P(;yoVFi!T6C5jnH3Q1{_yM(xNIh(SN=HoFX3H*tHXQ)%!@ZH*VGbcK@j}00so;1n`F=&8tqgD=XW!FQ1QDhVWQvL(orhfCV4&Z2fNu(JRB5czZkTgzz1P|#th^COikr67L1s) z74!CCzwZBJ^mo2F`UbcCpH;WL-!u{E0NvILH;(9`>I3wq58! zkJ)C7&?}}wLQwkPI?cig@XwDAD=zJHw?`dMu^gp-d4QQBUh5H`hDfnx;Q%g*Vm={^ zt6=kaY;Xc23Ow+#fOr}sl+|!$Ob&sQ7-4|w?6nm*dvk(U1qTmfBNQnVl8Q2>&SCT@ zM3N1noa)b>uZn+z)fnBxCYRw0fGaCbQdBzMGS{-|^-UY$R?5s{@yDihAKScZ9$#X2 z%CkN3)1=1_epm3Dj>X4jV)59*@kDRR<%c^iE?=T`@$8CgH+Wt>I{{caib1ayZA~0| zwd<9xrPeEFuePSPo=ka9E!$7QeTJF4<9A>8=HT2?pbgZmo=@}o6|)l zvu(@vy4kihPsuF5(7xiSOFXjXE?sr|l5Tj5#Dx`i3;1ZgzUy}9%<=f~OZQ*5yJkA$ zowNN5{EEH)x~qgbg&$sV`PSTrukQWGef;wvLyGFZy1|j+Er4Ym6#!#BW%JHCXS(=k zy0|(GAp6AJ32H zuf}j}hXrrCz-_^Z+=DjwEr;7VpYILefFF5*2)&F9^?-^Ovv9{pQ8ZIWl=$nkd=RC-E0!QwMP#}QU3+K(!d3VS;-@s-E-1!lu zT|eLrbAD4f=M6;}k=H4h)81Zm6!;(Eo${J+oXB|3godF_bUY6p4_E_TUc=-Mjd?&T zzb3!Ut;F+;-_$kXqDOq{9f$xN^?<8qY!L1Wi}%7H6W+qwi_HVrpgZg7QE#29;v7V6 z16-Ghgrh+ojtl$6=rG9JCh!4K-fKqQLka9Z$o1v@M162qN4=DXngkBPChEW8MY^>C zdcpkOysTEtq7V$@jV^H<=Bt`|DD%V)h!iW_AAu>O?4_qy)YPM;Sv4ghujFk*Y6wx` zt(g1ZH&p^~;U{Oni+=}wBxE5Ftg0<#Q`Z9RIYC^2nmZ9y{2L_bB_6jICFZKD zHVH>fW{{Xu$FG}ZAn>*}8N4c@*?08n;MMMB?tzr^!DaJ<^!kjSf%Did zf3srh>47^@Jw0&T2qra}(s&dhQe}1kQxS})c}=&&2yB3@aP34EBZT%MddQS=aB;Nc zE;hHQN8ES{uAY)^xwV?!dv3wyM$VGd9i)4SCccOqu#uwL14(l9Z7;aouIRz(sn|O4j<>8@^9Ek%9UV|uyvnZV;Z8QaOD9g@ z3@D_y3sdM*P|*Z+A>i4qdWzePsW?OmIuJULbxBN z0u{yVyl$zSE?c!!CM}fzK=wGECFro^=9`jM>1nUO5BKA*S^zbc9F7%`$C? zvJ4E_hP2@ExwDZeT`0;Bcq{@fcr5Ysag|@kT;_4+NroxLCiuiQ_*{Yk@tHZS-_LY1 zX{RSc6W1YOz!F#ya5dD%YcnRAH4~>dW1&eaF`e8dKDS9jjbxU-eJa+QIP uSin{cv+HYVE3m*@wU#3R@|NGyZXk`fK$J#QzIwA;)h3 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4be3cd597f763609c67b504d8f5989028ff34045 GIT binary patch literal 2066 zcmah}O>7%Q6rSC+*Y@tlKTS(%6Uw4iX-wO!k_rkDDrys`QmO<9v?7WWZM~a#-Oa8$ zGfs(FOBUjgz@Y|Jsw=1pH>x7hV~@FWsmUQ>Q=}l^5OJ}TAfcXkv(7q+D#6H}_cJr! zynXL|^HWEMgkbEu)id*^h|urM2uEaF*?bq2+sHr$XQPRhw#k5N)e%<$q4Z+8f)7haPN45XuUo@o>2iDW|qP2I+J{My^wj#$PZC&-FaFUpQ49tRSIerYA*Gnd$zQVRS`m8wsOIf}J zB!EuXm#OO0aV_u8ni{dKX;YiAs78ur&eCm*Pz{i^;ylf}&gs7X0gYJHJXO?l*Yp{a zXho~2O<4{#v7_5siCQ+%7;ay2-j~^}Q`DUT2kwN667VNuFjdi(gp}mXGmB?d0Ayq{d@9cuIrEe$XC zjx0+Tt3#`DvU+h7AQ5II+|#WrT|u{g1s!x7d8n|vm)RK@1{d}fkuM^H_t4kCqPxO_ z)-w8(qwU@HYSGr|G;nTE-C*5>Sv&Zg zhMBR!j1ATnS>ERc%lx1=nw5QtP{!dK7R_T;AD9$oH!wGlZ~Jy)Guptbkv+;4KGcDeq^&j(&!&vY(|zb4Y_ znS=G7FJD{~|42T+ntXeSEX_PtMmGgMB>`kY0!U>a3t&a=X~;d_&OMBLS6P-{sSf|G zphWtY^m9*?R4wwwNImoU=&F*gWfm{gNL#%%w{q}A1AfYhV6oP}FjDVoD96@Qowakd z^9vs@MAqe0^&QL_Gb>^C^x&f~1zCnCtuJ^hgX;K6$P{yh&!w1i*$dk$lK>?MUaugB z_fde@%5eORS=T7p=2?6SklEux24QLn9LKGp#2V^YL!E2rz@MnADaN=|E!RXK>bXrO Un){D&>DqV`fvAsfF%e+@3&a%LRsaA1 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d2ea7d0ddb0898d81d0bff952e8c5d0661ab6e7 GIT binary patch literal 4455 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 J7D2)F`9A^KPqF|2 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7daae504b9efeae1ecc52d59a1b25698d6ccb3d GIT binary patch literal 5892 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py b/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 0000000..6ccf53b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py @@ -0,0 +1,109 @@ +"""Functions brought over from jaraco.text. + +These functions are not supposed to be used within `pip._internal`. These are +helper functions brought over from `jaraco.text` to enable vendoring newer +copies of `pkg_resources` without having to vendor `jaraco.text` and its entire +dependency cone; something that our vendoring setup is not currently capable of +handling. + +License reproduced from original source below: + +Copyright Jason R. Coombs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +import functools +import itertools + + +def _nonblank(str): + return str and not str.startswith("#") + + +@functools.singledispatch +def yield_lines(iterable): + r""" + Yield valid lines of a string or iterable. + + >>> list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..d8b54e4 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,79 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import importlib.resources +import logging +import os +import sys +from typing import IO + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# The importlib.resources.open_text function was deprecated in 3.11 with suggested +# replacement we use below. +if sys.version_info < (3, 11): + open_text_resource = importlib.resources.open_text +else: + + def open_text_resource( + package: str, resource: str, encoding: str = "utf-8", errors: str = "strict" + ) -> IO[str]: + return (importlib.resources.files(package) / resource).open( + "r", encoding=encoding, errors=errors + ) + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..2e7b745 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,188 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + ios_platforms, + mac_platforms, +) + +_apple_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _apple_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _ios_platforms(arch: str) -> List[str]: + match = _apple_arch_pat.match(arch) + if match: + name, major, minor, actual_multiarch = match.groups() + ios_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "ios", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "ioscustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("ios_") :]) + for arch in ios_platforms(ios_version, actual_multiarch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch.startswith("ios"): + arches = _ios_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..0911147 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,124 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + ( + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported." + ), + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + ( + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None + ), + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..66020d3 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += ( + f"{direct_url.info.vcs}+{direct_url.url}@{direct_url.info.commit_id}" + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..4a384a6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/lib/python3.12/site-packages/pip/_internal/utils/encoding.py b/lib/python3.12/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..008f06a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1501369 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..22e356c --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,149 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size +from pip._internal.utils.retry import retry + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +replace = retry(stop_after_delay=1, wait=0.25)(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..998868f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,101 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can't proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..535e94f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,147 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, NoReturn, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = [k.lower() for k in sorted(keys)] + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..41f6eb5 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,347 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + if getattr(record, "rich", False): + assert isinstance(record.args, tuple) + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..c0a3e4d --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,772 @@ +import errno +import getpass +import hashlib +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from dataclasses import dataclass +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.retry import retry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + +FILE_CHUNK_SIZE = 1024 * 1024 + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +@retry(stop_after_delay=3, wait=0.5) +def rmtree( + dir: str, ignore_errors: bool = False, onexc: Optional[OnExc] = None +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial(rmtree_errorhandler, onexc=onexc) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise # noqa: PLE0704 - Bare exception used to reraise existing exception + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = FILE_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +@dataclass(frozen=True) +class HiddenText: + secret: str + redacted: str + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) is not type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], iterable: Iterable[T] +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager, possibly " + "rendering your system unusable." + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv. " + "Use the --root-user-action option if you know what you are doing and " + "want to suppress this warning." + ) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..4b8fa0f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=2048) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/lib/python3.12/site-packages/pip/_internal/utils/retry.py b/lib/python3.12/site-packages/pip/_internal/utils/retry.py new file mode 100644 index 0000000..abfe072 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/retry.py @@ -0,0 +1,42 @@ +import functools +from time import perf_counter, sleep +from typing import Callable, TypeVar + +from pip._vendor.typing_extensions import ParamSpec + +T = TypeVar("T") +P = ParamSpec("P") + + +def retry( + wait: float, stop_after_delay: float +) -> Callable[[Callable[P, T]], Callable[P, T]]: + """Decorator to automatically retry a function on error. + + If the function raises, the function is recalled with the same arguments + until it returns or the time limit is reached. When the time limit is + surpassed, the last exception raised is reraised. + + :param wait: The time to wait after an error before retrying, in seconds. + :param stop_after_delay: The time limit after which retries will cease, + in seconds. + """ + + def wrapper(func: Callable[P, T]) -> Callable[P, T]: + + @functools.wraps(func) + def retry_wrapped(*args: P.args, **kwargs: P.kwargs) -> T: + # The performance counter is monotonic on all platforms we care + # about and has much better resolution than time.monotonic(). + start_time = perf_counter() + while True: + try: + return func(*args, **kwargs) + except Exception: + if perf_counter() - start_time > stop_after_delay: + raise + sleep(wait) + + return retry_wrapped + + return wrapper diff --git a/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py b/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..96d1b24 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..cb2e23f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,245 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Literal, Mapping, Optional, Union + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..06668e8 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with @retry; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..875e30e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,337 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import sys +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def _get_default_mode_plus_executable() -> int: + return 0o777 & ~current_umask() | 0o111 + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, _get_default_mode_plus_executable()) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied on top of the + default. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + + # PEP 706 added `tarfile.data_filter`, and made some other changes to + # Python's tarfile module (see below). The features were backported to + # security releases. + try: + data_filter = tarfile.data_filter + except AttributeError: + _untar_without_filter(filename, location, tar, leading) + else: + default_mode_plus_executable = _get_default_mode_plus_executable() + + if leading: + # Strip the leading directory from all files in the archive, + # including hardlink targets (which are relative to the + # unpack location). + for member in tar.getmembers(): + name_lead, name_rest = split_leading_dir(member.name) + member.name = name_rest + if member.islnk(): + lnk_lead, lnk_rest = split_leading_dir(member.linkname) + if lnk_lead == name_lead: + member.linkname = lnk_rest + + def pip_filter(member: tarfile.TarInfo, path: str) -> tarfile.TarInfo: + orig_mode = member.mode + try: + try: + member = data_filter(member, location) + except tarfile.LinkOutsideDestinationError: + if sys.version_info[:3] in { + (3, 8, 17), + (3, 9, 17), + (3, 10, 12), + (3, 11, 4), + }: + # The tarfile filter in specific Python versions + # raises LinkOutsideDestinationError on valid input + # (https://github.com/python/cpython/issues/107845) + # Ignore the error there, but do use the + # more lax `tar_filter` + member = tarfile.tar_filter(member, location) + else: + raise + except tarfile.TarError as exc: + message = "Invalid member in the tar file {}: {}" + # Filter error messages mention the member name. + # No need to add it here. + raise InstallationError( + message.format( + filename, + exc, + ) + ) + if member.isfile() and orig_mode & 0o111: + member.mode = default_mode_plus_executable + else: + # See PEP 706 note above. + # The PEP changed this from `int` to `Optional[int]`, + # where None means "use the default". Mypy doesn't + # know this yet. + member.mode = None # type: ignore [assignment] + return member + + tar.extractall(location, filter=pip_filter) + + finally: + tar.close() + + +def _untar_without_filter( + filename: str, + location: str, + tar: tarfile.TarFile, + leading: bool, +) -> None: + """Fallback for Python without tarfile.data_filter""" + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..9f34f88 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,55 @@ +import os +import string +import urllib.parse +import urllib.request + +from .compat import WINDOWS + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..882e36f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..f85aee8 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fab040c2dccf08682f7495b457805c83a88f3a3a GIT binary patch literal 523 zcmZXP%}N6?6or$ScKRblRD^;Rih|IE6V$DU8(nrG>S8uSIuqMqG8vOhp+1M;Gx#jN zLArG1PADk2@=mED%!Pc1drrvBeeHDG2x{}`V0`T%^j0>%1^u!X=OE80MJX02!b|m5 z>aVo6R8Q1p5CyUkHDoht%2w2p?Wm2>3=jPG^0DEd?zXO&RF(~uy;Mb(UTCfKKl7Ff zzA^)D;zA48mGqv))5OG@JrrCs$uhf4d@u)VuAB2bjCp36&Zr2%3`g{lQtf<5+;%k{ zbL)1hwq!afG^fJ#s-Y=HQ>G19nd?{6Rg|dAY9+J}+v-}0dWoP!1Mq?tK=ge>CQ345 z1ixbhenU*o5*W;lC4!GgKC=^*orFin#Bj?FbDG@KF*5`vlfP97tV&{NxsBs6pSk9# pRB0jDncjdY7>?NmeE1mSMH}J%9QEdCZ;tlAya0Qj2%y*D#t)Cmp%MT9 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0b5ce2338d2ca25c7999ca221fc3155821cc179 GIT binary patch literal 5044 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 H_0@j?SpBX+ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7368beed57900f78c9a8d1d44048e4fae31f6e3a GIT binary patch literal 19009 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..110148384d37228ac6ffed7afb75e2c96f4bacf4 GIT binary patch literal 7597 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 nu(uRg!pCv+$JX List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + elif verbosity == 1: + flags = [] + else: + flags = [f"-{'v'*verbosity}"] + cmd_args = make_command( + "checkout", "--lightweight", *flags, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..0425deb --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,527 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from dataclasses import replace +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options = replace(rev_options, branch_name=(rev if is_branch else None)) + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..c183d41 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..f359266 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + else: + flags = [] + cmd_args = make_command( + "checkout", + *flags, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..a413316 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,688 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from dataclasses import dataclass, field +from typing import ( + Any, + Dict, + Iterable, + Iterator, + List, + Literal, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = urllib.parse.urlsplit(name).scheme + if not scheme: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +@dataclass(frozen=True) +class RevOptions: + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + + vc_class: Type["VersionControl"] + rev: Optional[str] = None + extra_args: CommandArgs = field(default_factory=list) + branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args or []) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except NotADirectoryError: + raise BadCommand(f"Cannot find command {cls.name!r} - invalid PATH") + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..93f8e1f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/lib/python3.12/site-packages/pip/_vendor/__init__.py b/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..561089c --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,116 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("distlib") + vendored("distro") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("pyproject_hooks") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + if sys.version_info < (3, 11): + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2813cffa9a6ada20ae64d2690fe8e60792477271 GIT binary patch literal 4542 zcmbVOU2GKB6~41`_t(4F_y=QbVEn_+LfFNC`EeZDx^^Hc0ku-wVA8C{JJ-8o&+bg_ z+zspik}FlJks?8)NPt=?iBzeMj8q=`*yg1VeTnNqkO?nUo_I4qm8v}T+}YW+eG{*v zjncg}auy?gGt=gdD-sRV+j{p0-ObuK3oD4vCd@98hY)F5l4{!eIF;1Gze7_g61@|m zkq{#CY<&Vr5cV2I4x)aHoK~1iVAQ-2&bz;2r_*5^%48`vkmOzOSJWW`-mC1cT z%9=?P-BxB`s3E;vP&8tJg_QF;u@!Sh0kXnO#i9f_Oeqthaav8CsIe8Ztk`CWup&2+ zYmCscYGe|LH+2KN=w(~iNZ_oovRyPQhNestC2#r!N;E|;l`2e~Hi)8@H6@^!Wupqb zM8(on1|-OjBm4SyC#N%_vbznZz?5uC(N}s?)YE%VJZ5cZA zqBdbFW7KPT%Rlo;N==%^UZO_ij=fYZ(TV1-(Wo?V(b=A;qmNoS0tW{-2vwS==d@O70j2yAl{G3`Kb{6hLHn>+=*nU}Oxm?Do zda?SVv>Vpo9oD`LuX*&ObNA!Uq2Ix`aeDKpyMySpZ7kTT2BA?QS2xGebtMS-7io)oO<4l;;GdR zkiNBfn%vtvuAncJ`1ot`7l$QyJK;l_t3|_0=GA^l=W`*YAJd>88GM*5c4#t>8%>o#0 zuhpu8JWKK{S2WEzFj4Y;h1kq?I_gq}T+0)S@zUUIZz$_0jzo{vc z%bSJ)%lcl2Hs?Wf$~BsE@Q1K0(=?p^rc6flY3Iz%c|Q z2Q?^PgzT~zuNKba|1~YcE0;k^&@NS;GtRyyZs5#HY8lE0ZI%gvgJwa5D`G*`6KBun zt5uk8IO*p0%(^UYawoW}OnqAiws6_lTa$zf95PyU2Dfm>Ppa9``>vQ?B4(v&-uXPZ z|6YO@9|Kwv6f#Wpe9=krHxC8qiPPqzqFyK(@Pn_Lz;2j@0R*r00r0YlF)`{;L8oX#(#Z&a`HlM;;mo!z01S1re5}vK|O~aH)DQ|UV>XhcW~#i zv0Ae|OHTvj-Q6xi(_fV(NqQcNNccb7kaXZ1)bcgj_BBeZCQzzDHxt416R{)NS! zhv!!M##Y+j_?!HX*xzHz?dRuz`up?0J%8)x^FMnYLE+TGdoJ$#3MUsXySRJ(_>PNr zaD2tZJurTmQe52c3xh5m;+C9?ck{9CVamljeZn3W@8yPuV!*|NzNO*gpo`PKX2iuO zec`x^Px!(q7oYZpqb?ryg)=T5^@ULvzwQeSa@NI1ea*0ok8Kpry7))Frm@6?izh*| zill9OUm+>1{G0!;6D}U{d5!fNzK*y!IMCtZBX*EF_r%*DqyasodK@49#w zSQdWe;!ZvW0sAtw*Tu>@#lmk~+{>{T*}8+qS?qT4o+r`7<7oGCwENzHe?|MhinZP8 Yc4Pdg8tYwtgu7R-OOPD&6lC2009e7oLI3~& literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdcbc5c2e89eeaf0baa42fd40b2c67a164295bb4 GIT binary patch literal 139444 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..b34b0fc --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.14.0" + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.controller import CacheController +from pip._vendor.cachecontrol.wrapper import CacheControl + +__all__ = [ + "__author__", + "__email__", + "__version__", + "CacheControlAdapter", + "CacheController", + "CacheControl", +] + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9cb1acabf59390ee9dbbdfcc8ee7bb8fb01f4fd GIT binary patch literal 895 zcmaJ<&1=*^6rb6zY?6K}MJSel&~*<@TJ_>mwNeCy+N%(RVVapur=4WNBx~6{?VsR5 z@G9a#>7U}orASMlAczNV)!sb$vfZV7(K)>Nz3<<9GoPoYEd*!b%}V&8gwXdw8K24s zTzmxZ7BS=_hJDOReu6U*bl9t{x$F1bwVwsSCeE)-GJ4Et0$jj6J870f)6}G?S<5X# zXa`7WLUNN39#J6y+JwB~I)#>m=rT0X#bfCzh@IwKZV z((dG>F1;i*td-yTXV_>lz;)R0KLrmpO%ezzC>4CDEO;AIg`tSU+zffP4Vde^PDrs@ z@LH6yr!;0zKDT!|QjU~Q=mM&sKQFyK6>%?>qRqWfWL}!^Ku{^t%#&i*OS-VB_^!Kt z$4f=VSK+Y^Xvk9!=J7^jdy`{(gos#Vgt$pJuWv+(btHeN7ol149n%*e&dV6%Usf4c z&g*Dqsc)T5E%(jSnZ>^S18tt6M`!5%?}}lU`o_fq!n5DdeBU@h^8+;h`t~teIzcM~ awDP6VdUtrzXbl>z7fK6rSB3+Z(U#IDZgI0tTlLAFxG1Euw8&8beYD1{J7UtI}%g9sI-kr?YD+ zTZv>ODyTRVq)Oq?1DsF=2YP9*JyoiD!A+3URU);b9D0isdg-ZeW_M#lLr3w>n>RCW z-@fmC@8y?pIEY{je!VaMvmc=+Y~c;j5rmEJL0CjO(gg#Rg{&YjSv16~2(x5JWt_!a zhYerZpY?OuX9UV}R_3zb=qm@aK`sXjr5wtJxGWptawHoO5b@Ix*y;mY{n>uL7lgfN zHVSf7SFYmhfIgsyU>?*5^)SpsppU>jOh)wnOOpsuSwv*`zU#e!8e&6C4E@E{3Bgvh zN~LOPRvqxpK7RIIZaH3mFJoxXH2XYnmK<2S1Lyra%&Wn$K}907HI?^T1)oa-T7(a zQqik4m1C&n98^+juB<0(4Lc0})oZHj8y$w%ZG)egghval;^4J2SI&Grvv~T}>1Dik zH8RqP#M_bhQsmXv4D5FBNE?sb%sC{-s|%3P=z)0O zMGfNJ#bqn}-1`f{yij6+eqrbmAmVWnz2ppj?hGnzg{z=$zI|RehZ4Tb`GjOEJeDf4 zw7h8tff5XhCZO0?Aax3;6m!i$!Ln*cQ>muR1QVo0fCj)%%JPgdvv%MdF->5Z?JHO7 z70V8~@UVo4I`8Oe5~3Z@95&h5go`Hoz*vk9F;hyOSSr(kIT{1a82ro+;Q=s4_N>YS zH2IB)BVhVDxEXXD?oUAIh1&yp0ccX%gdPsL1Hcy_NIh_&(kA%c z8H7A500Pd~Qk@#j(enioyYRtW%&NvL+K2&XVmxZVAY33uEg@0nl^p_dshV5F>|l+R zF}7ya%FkESVVV<5nZ=TA)BSK8$|W)nzyksq-nkSWZ=G0SnZLb_x8L?XnwWZow=d&& zR+NE`GS*hcmXuwO@UH)f&lHe)>-hYa7(BtZhz3M*Gcmz6cX&l;L9{kW;l)j0G}t1= z7o>Tq6!t81=XtRd>8?Bpv{6s)&OO*kC6){h)hDD( zGce8SnZBnP&QvW2c0G1=t0o2@@Y2U0Xd@#-8kAxuPWPa zyxmH#1M8w+9r^Oe&Gh2zty#`IV4`pE>X~&J^@Tg~cv~J{mymA+j`~JAINrwbJL!9K zcjq2X{4n|5apDn8@^GQ{q zc=#!ldRnn@rdlBhksbo~no+NBC*4xyZcvsfiEVaJRWH`z8c|iss7qN+*fIpep$(^( z-)hvLvr(3(wgNpT>Gm9_%Efv#NgjQ-s3qNU#>=9;>!ru|9bPu=_{$GDoefGS@4Wm2 zsKQ)kO^xS+lNk&j7MKeB-=V7CBF?!+ucMTn0L$CiKMc44&r+9k9FA2LhLVZGXW0Xt7!tV7X!lCQUU!@(tVfl*_ KfGmE6zwuwa8b)vc literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af6a5018bfc0e0a71625f701a846335e028b564a GIT binary patch literal 6457 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 WPmN~Hi01!zM@*XLuPF>k!~Q=Az=;9? literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2956b3cc3588e3b27b57b3e618d3b0555f9349f GIT binary patch literal 4340 zcmc&%O>7&-6`uX!KPk$REbGUS*OFtKwk+0-8`P*BLy)D|am@sg(85fE^^!XjS6c3} zvrEeqWW*?pLP}G}0s>IUB|?D$aos~sJ@pcxr}kpiDx@qN)J1y9O^sZ%$f@tml9VOT zD9}q+(EPsn=FR)wyf^$)A`vCzfuoTLMO5to+AT-E=AQLbnrD!%P5Rtr2^x!?BhaQSPdNx)S zQ{k_%lM=j`W?8nYxrS{y8R&Opv=Y^)XsK*7ja4TMlcppuF?Hjuadqs<_}I0pnb$pO z)T(;nG0il!9Lx(|{L0kSTW?dR3@9}3@8g$}UkN)IXw(QLSwSao3?VB;$nKvW(Zzdk zC_So6PzUswE<+vE<9Yz+j-(Ud}2v2!yt?<#XeBVSbJ43KguRp>3ss&3J+rWHmtT`?@z zRx}Qks}u^94J#TT%oVAnxJAuX3b3nUI7;5M9SZV*h*nL`?$MMleqI`A~5H#0iMh-9>P@5`cX5Tho15gJr6gUQDW)=118u+KFFP|!M zg*3-eDh{kK(Nc~w$Janpbh`qS`4CRt2Jn-rno>+SFXELMEf}{I2hQzqZNNEjTP>eA zbkG^jQ&pUzrrUF1i(NgNn^Q&CTn&xlxPXpE1UtA5fASTsSgv8Bxj+ml(r#%6ccl?U z8FduXwx;>!n#0e#ceSJF1_SnNR>k$Y;mn@NX=wkGj$NXzQG!z&?g@bAAYcFx1(EzL z)z93#>6Xd`=jKhtwv-3XK_E z(8b?Mjrg!Y)aJ~B0KIzLAY?&=UK6oOQgUWqV!6{(5CMWZHK|KeGQ(}WUbV%|R8??v zuc!4?q3jK`o@rbnh(oeN&4MR_Y`8J%ph9rjzg5#kpg--HMuDcM4L9wSY2MIG!*SE5 zkxQ51YTMQ;BWJ&xb_|!E0V~aF)6_|qjdEJOMJ?TCX>Mt}pUgJXNJKq)jFchZsj6Wa zuBy%-ZgIGg#_Unh$5EiTOP&Qu_sLHKpXnP1f3PTj5Z&tPhAOhvH@GPOGPwgXB;T|y zbearZfKH7pkeMbEDC>W^@UT95M|7KP05?K|!AX)5Gpr57Q=-?ds?!t#d_AD3su!yF zQxby&L_FDokk1Z4vtditiQ}>6N;vY7)<>>Gsp?5wJ_yBKvfV-2IyMu7>xscfLl++> zURxBOB)jjk)pL)N%A>Ht4uV+z`I9xz{VSNML0W*5Lu>yx^SrI<0vsI;%+2PtjW*0X&X~=-pq~&@ zA~!I52?QO~T~U0?wt=rWYN4$9a`S_&jr+XJImEzc0oYfRBL}uR57o}EoUdJ2xv+Nb zQRj(A@e}|4d-A1kh!8pOMZA4mg8JL-U;rfhk9>0eqw|~nr`P*WFHUTA_AXv;if(~u zn6w|78zSQIUKuMn>DD&l3WaduR)RG!H002Qs<4!odEI zeF$W>AZ{kGUy_iA^&wrD1%G0aF5VHW{0r9O?)yFnWX($;5I548c4Lj!41atzdVc)^ z{KQ@lJlUnDiJ_FvdQm^K-7@H$CzncE*$ZOSvurOmIyN>wIjO!q zK6=>;a7V5CvloOESTWr_E*E{m!I|?UI}i;$$^8l=t{JfTuH78YiBpwUw+a%^rWk&c6H_Is{YB$M>CrP z>Ggs12t`a38l*W={}C=D1h?4jM1=>X|yfAkzGHxx6DTh^!wNYzC#K5SeM= zw+rH~7r?5f-|ntzaLn3aKDImFXf@^qNYaz!fsjcBd3^F@e98K}2j&>$J#VmemVG|h zuoU1vsHX=>E4iMGuev?yfenMqd`~O7aZ3$mopC6D?C!prv0~J$6>Dwsad&D_{vww2 z8G2*sjm`Ms_4wh{sg3v`c*SOHU_Cal5mO*AEni!@_QCb1$LPCebCZ~U{!h%Mq|DcNOn$c#(FTiA)zJ!6ZF0%ZfD9YK0;ytYT!JQn zhY(LO4D-eOKr423p-f!$BPg02ZFZkp?>_bEE04R=i}F^i?f%jCzrQN4g+4~Ux_TC` zJq^cq@6T%2MtI=AkOn8fkj27SbU@)Ng})o$c_&weUpVg$D;e9O?hz?=<%2-}{Vvu(59VXxxsX`GeWcc7Y&!tb{_s4pJi`_-pC38sC> z^SCIA?>l@6!3!y>swG>mnAnc1>QCVnU!Mu7s&401m3856eOTr+>F{WOx;2|$0REgCqw)6*U}xO1#G(Ese! zNTBOkcP!AwuL8$Q#Zl2h1*`>%GNhj!gTf2r4<-!b{#!igR?G0)j$y*(=3^Lwyjan7 z%OiQyfS+|fJzUdED1|RH|EUtb;9KG~b{WPnS2_69gZG6X{4-31p|42nOLF3`B)v}3 Vf0Nq3lu!OEXb3{rHv~(L^dII;^CAEM literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..461190181dd19488d85cc759a8142467bc4af142 GIT binary patch literal 6687 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 KuQ+(Ib^H%F5&Pf( literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45712b67969859384a524abc41856dba6dc036d3 GIT binary patch literal 5254 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 None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..fbb4ecc --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[assignment] + response._fp, # type: ignore[arg-type] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[union-attr] + + response._update_chunk_length = types.MethodType( # type: ignore[method-assign] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..3293b00 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..24ff469 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be427030a59752e4fcabd61eff904e3558f4b72b GIT binary patch literal 428 zcmaixy-EZz6or%dadmJT#a9qVae~^)7Asgrdw`4)-KE`7X)RaF_vK8~58af&jb*^Ig%hneF)I0Z>4p04*$G8}@5w-C!Cw|2?}J0VrW+|~tCL=(%#lJ-B#Ids`Mquk67<*|-^ zP$xlBFK79R+f`f@_?C54>Y@sFRkE{MiiI)7#53@G<2UX0{!8gVUB&{+4KOA`U_1pg zZ^37U8rd>r1fMWebBl~(6(@oliv+(ys<(~oj*5drWVmJfid5I6W(IjOTF#69&bu%M uVaz*jF)mc^R*zdrZv-3ZbkpXxKpTYPg8{G|b_@pn7d3)Ia literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23e85f9d2afa4d719b2ad9b04f55137bd07bdc2f GIT binary patch literal 7756 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 SdFNx*5E5T*e?p++ivJ6F2RA1G literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..e6e3a57 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,182 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import hashlib +import os +from textwrap import dedent +from typing import IO, TYPE_CHECKING, Union +from pathlib import Path + +from pip._vendor.cachecontrol.cache import BaseCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.controller import CacheController + +if TYPE_CHECKING: + from datetime import datetime + + from filelock import BaseFileLock + + +def _secure_open_write(filename: str, fmode: int) -> IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str | Path, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install cachecontrol[filecache] + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..f4f68c4 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..d7dd86e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,499 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + # We do not support caching of partial content: so if the request contains a + # Range header then we don't want to load anything from the cache. + if "Range" in request.headers: + return None + + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..2514390 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..f6e5634 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[index,misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..a49487a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,146 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[assignment] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Previous versions of this library supported other serialization + # formats, but these have all been removed. + if not data.startswith(f"cc={self.serde_version},".encode()): + return None + + data = data[5:] + return self._loads_v4(request, data, body_file) + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..f618bc3 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..f61d77f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2024.08.30" diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3354906d1d536ec684d78acd544803248d6ae540 GIT binary patch literal 311 zcmYjMJxj$f6iw3B_iT9%f(S0^B6P5+eGU%dPjD4F7;2N(2Gb@a(MO&1A2WF9DZhI7xo=YDXXCzBX>tUv5E=RSTclRuzevDoqA5l}#(039r0he`wi zMKowo8PKo{hbUe7guX3BZd}XWvfdgO&0D6K4t!mQo^IkIFAlT(D4XV|Y2?CM{5W+XG`<`sv S&tKy0+tKUV)?K1kz4rs;J5xFU literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f45ba6987ea50f0ebac235aac08d5dcec258ec49 GIT binary patch literal 638 zcmZutO=}b}7*6JU2DdF;3X7*j@MFc@pk7;{;JJ8H_A-ok(S2k|EK=0%h3O!s0Sd7nJb`|%{78jS#`wR&_T`K#g&eW{mSf%6ju z-U19TOhI2qBZZmKH!`ztLSO&_hF)E?h?5HTZDJ1_3%*9!#1^(cIurAPfk5Rg*Xkl( z_VI`}v=)4g*phPKt8LVo6L_IPFou<8{!i<;zjWeO$B%oXBQL%U<}LF@d2D`tA8G&L6H%}Q@Tx1LIvU_iD{Hl zE>KFJqH-(-MSj0`_a5R@kZu{p&!U8Iq|Bkp9IDKrFw7#FhheWAOK&|Z@F*n@*s7YN zKaf9B$8Qrt_zf)o1nA6fzi!R^_SA15``31zQ{c=%a|)V=58vH+|MD|vo`CgJw=r{D nQ@3^OUfs3MO!w8s-o{tUe{<{L_7`jIyF%9wZticf71jJ7UP_%; literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73053eec044e2a9089bf4d8396ad3876b8969af7 GIT binary patch literal 3204 zcmbVOO>7&-6`uVgmlVmBNQ$DZ)FNa%Hf@WH9ksEM)`epvG7wb~EX9b4B#Z6tN?Mxa zGPC2za+E-aps-I?k)YNgD16Apa1K89*kghAK$;0?Y+S%V0|dS?pn(8B<-O%DMJei` zeZ;)?I6E^t^S$rA*?-34Q38_u;^mb;jS%u5{1eEK?{wed2)RoPQX&Rt@D;Aad6qBn zM#d076H9{0mE~aCjy0rf?-4=|!01p#s)kCTYPb~Uh{0?(PiEU!wN&bFM}Uj z=l{!kk^Xv7ST9~mRF#tQi}i*E){FJl^Y%Mj8usi+X#{M%lB}jmDUO&abEJHHXV-y; zdpiJsN~16$Y9#!BnFxsxW6V&@QDfN57$fj32@TH@HBz5RCB;8WdSD-;y?x}fH_fPS zQf4h%h5CB*)4oKbORJWXtJ=o(ikYJ(yH0CPj;)$GtL8ARQqh=Y*K!qG?>Y8zPS3q>R0L#DK6H zt5^;zR;)i3>+5XQuDx0~eWvJG%$%xg`ZaCEbc%JWUQ|CaYlcmWK1@a3rY2zJD&9MK zhgNlVgCcXWIcZRvMRbcaLvs2dA{x^Q9X62*Pd1SnT7 z+g7cvu~mv^cLj%0Hv%ySvQbraLmI=-xH2_YAi^f~B0~`qF9I}zv!u0ElbRGWY809? z3u==*A11MEV`$=ehKx^sb+mE(cdg0u?a7(uX<11rI@r40R*a)C?7{VtcWX zgT$pd7+8SjU_k;-E9u7QiI#G*txPwS>4)#NlsDSSY*U$STzS8t%(j#d8uAA|&ndF& z8Nv=c7rl5*z@J^1h|u9-@>g(nQT&Y^ier_0z{3C#jc0vwGo0;78AG~9_91Pb?&a8? z!SI(Mw>$~(+)Y}FM9<4K1;&+EOs4iJNRdG_gK7*_78RC)J-~Ww^VC^*=$r>NK)Ea# zKioKc_HUS%`%qnm)`fuYIG;H{|(Vm^oK^rv_KS%^}+4p@y?-mRi%d| z0;)lCj)8&z$4Dai#nI1?-MjQ{eClEPacb=Dxj&!#{Pmv%k|?y}Q;*_PFB~kue;Iy7 zcqp9<@1G*KV8mdGl>K8tcVG5{gCW441jPPipc?PH%0B6|fn~~n<054AoL6J=lFQo; zorLAxuwl`fRyFbd#mfvzv51vA&$-;PgVoLl32Uy0Zv`9&u?2F)5_e{9&v-@jQY&`! z7Wcg}a%b)K+MSKt8`~GQH(JW6hJ5OmRrP-*JbfA8zWXxpnC__$@gasSs9{J<_`tX+ zU1!TvXWbCoHI~luV{TYg4O@pZ3eLLIOMA?CH};W99mogOsx8}Y%Bt3F%HSiT5F~=L zbCY@Zmse1F6~qH3hi^wf=@C?3cAf^$mDqaSbleaaDCHC@vK#$__kp$qPu%cA@3X~~ zF9$id`+?=#Ic~+>gA(iQO3ChQ1^5uE=pGJ2DZ&Z6VbZQd?_} zghM}wXPzcAn{NYuH)lKInDo-tt6c)7bB2>tZcBeo&~`#36lqJNO=)yH^GKTbLHzyT zv}|u0n9ejOE%?(GxUNj3#CPKGzr~lHCQ@5(w$n$N=_B{_Mmpb2oY2b5?I(mD$@z0CzFwM2gh`xBpUAyp_dV) PDcm}kPIPb&UeJFA$A*3( literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem b/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 0000000..3c165a1 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4929 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 1977337328857672817 +# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 +# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe +# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 +MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc +tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd +IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j +b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC +AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw +ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m +iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF +Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ +hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P +Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE +EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV +1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t +CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR +5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw +f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 +ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK +GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV +-----END CERTIFICATE----- + +# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus ECC Root CA" +# Serial: 630369271402956006249506845124680065938238527194 +# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 +# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 +# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 +-----BEGIN CERTIFICATE----- +MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw +RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY +BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz +MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u +LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 +v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd +e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw +V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA +AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG +GJTO +-----END CERTIFICATE----- + +# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus Root CA" +# Serial: 387574501246983434957692974888460947164905180485 +# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc +# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 +# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 +-----BEGIN CERTIFICATE----- +MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL +BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x +FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx +MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s +THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc +IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU +AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ +GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 +8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH +flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt +J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim +0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN +pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ +UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW +OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB +AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet +8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd +nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j +bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM +Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv +TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS +S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr +I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 +b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB +UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P +Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven +sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X2 O=Internet Security Research Group +# Subject: CN=ISRG Root X2 O=Internet Security Research Group +# Label: "ISRG Root X2" +# Serial: 87493402998870891108772069816698636114 +# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 +# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af +# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 +-----BEGIN CERTIFICATE----- +MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw +CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg +R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 +MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT +ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw +EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW ++1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 +ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI +zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW +tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 +/q4AaOeMSQ+2b1tbFfLn +-----END CERTIFICATE----- + +# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Label: "HiPKI Root CA - G1" +# Serial: 60966262342023497858655262305426234976 +# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 +# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 +# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc +-----BEGIN CERTIFICATE----- +MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa +Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 +YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw +qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv +Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 +lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz +Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ +KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK +FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj +HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr +y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ +/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM +a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 +fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG +SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi +7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc +SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza +ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc +XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg +iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho +L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF +Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr +kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ +vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU +YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 159662223612894884239637590694 +# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc +# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 +# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 +-----BEGIN CERTIFICATE----- +MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD +VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw +MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g +UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT +BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx +uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV +HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ ++wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 +bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 159662320309726417404178440727 +# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 +# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a +# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo +27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w +Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw +TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl +qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH +szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 +Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk +MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p +aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN +VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb +C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe +QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy +h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 +7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J +ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef +MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ +Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT +6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ +0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm +2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb +bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 159662449406622349769042896298 +# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc +# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 +# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt +nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY +6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu +MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k +RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg +f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV ++3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo +dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa +G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq +gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H +vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 +0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC +B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u +NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg +yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev +HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 +xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR +TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg +JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV +7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl +6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 159662495401136852707857743206 +# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 +# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 +# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G +jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 +4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 +VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm +ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 159662532700760215368942768210 +# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 +# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 +# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi +QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR +HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D +9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 +p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD +-----END CERTIFICATE----- + +# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj +# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj +# Label: "Telia Root CA v2" +# Serial: 7288924052977061235122729490515358 +# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 +# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd +# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx +CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE +AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 +NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ +MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq +AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 +vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 +lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD +n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT +7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o +6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC +TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 +WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R +DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI +pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj +YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy +rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ +8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi +0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM +A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS +SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K +TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF +6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er +3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt +Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT +VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW +ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA +rBPuUBQemMc= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 1 2020" +# Serial: 165870826978392376648679885835942448534 +# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed +# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 +# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 +NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS +zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 +QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ +VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW +wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV +dWNbFJWcHwHP2NVypw87 +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 1 2020" +# Serial: 126288379621884218666039612629459926992 +# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e +# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 +# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 +NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC +/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD +wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 +OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA +y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb +gfM0agPnIjhQW+0ZT0MW +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS ECC P384 Root G5" +# Serial: 13129116028163249804115411775095713523 +# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed +# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee +# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 +-----BEGIN CERTIFICATE----- +MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp +Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 +MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ +bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS +7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp +0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS +B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 +BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ +LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 +DXZDjC5Ty3zfDBeWUA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS RSA4096 Root G5" +# Serial: 11930366277458970227240571539258396554 +# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 +# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 +# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN +MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT +HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN +NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs +IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ +ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 +2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp +wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM +pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD +nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po +sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx +Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd +Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX +KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe +XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL +tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv +TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN +AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw +GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H +PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF +O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ +REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik +AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv +/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ +p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw +MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF +qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK +ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root R1 O=Certainly +# Subject: CN=Certainly Root R1 O=Certainly +# Label: "Certainly Root R1" +# Serial: 188833316161142517227353805653483829216 +# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 +# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af +# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw +PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy +dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 +YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 +1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT +vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed +aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 +1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 +r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 +cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ +wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ +6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA +2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH +Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR +eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u +d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr +PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d +8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi +1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd +rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di +taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 +lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj +yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn +Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy +yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n +wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 +OV+KmalBWQewLK8= +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root E1 O=Certainly +# Subject: CN=Certainly Root E1 O=Certainly +# Label: "Certainly Root E1" +# Serial: 8168531406727139161245376702891150584 +# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 +# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b +# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 +-----BEGIN CERTIFICATE----- +MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw +CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu +bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ +BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s +eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK ++IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 +QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 +hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm +ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG +BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication RootCA3" +# Serial: 16247922307909811815 +# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 +# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a +# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV +BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw +JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 +MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg +Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r +CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA +lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG +TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 +9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 +8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 +g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we +GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst ++3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M +0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ +T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw +HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS +YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA +FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd +9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI +UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ +OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke +gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf +iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV +nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD +2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// +1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad +TdJ0MN1kURXbg4NR16/9M51NZg== +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication ECC RootCA1" +# Serial: 15446673492073852651 +# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 +# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 +# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 +-----BEGIN CERTIFICATE----- +MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT +AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD +VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx +NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT +HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 +IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl +dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK +ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu +9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O +be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA1" +# Serial: 113562791157148395269083148143378328608 +# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 +# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a +# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU +MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI +T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz +MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF +SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh +bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z +xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ +spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 +58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR +at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll +5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq +nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK +V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ +pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO +z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn +jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ +WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF +7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 +YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli +awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u ++2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 +X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN +SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo +P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI ++pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz +znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 +eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 +YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy +r/6zcCwupvI= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA2" +# Serial: 58605626836079930195615843123109055211 +# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c +# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 +# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 +-----BEGIN CERTIFICATE----- +MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw +CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ +VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy +MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ +TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS +b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B +IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ ++kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK +sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA +94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B +43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root E46" +# Serial: 88989738453351742415770396670917916916 +# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 +# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a +# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 +-----BEGIN CERTIFICATE----- +MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw +CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T +ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN +MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG +A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT +ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC +WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ +6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B +Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa +qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q +4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root R46" +# Serial: 156256931880233212765902055439220583700 +# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 +# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 +# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 +-----BEGIN CERTIFICATE----- +MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD +Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw +HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY +MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp +YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa +ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz +SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf +iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X +ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 +IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS +VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE +SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu ++Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt +8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L +HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt +zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P +AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c +mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ +YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 +gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA +Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB +JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX +DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui +TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 +dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 +LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp +0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY +QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS RSA Root CA 2022" +# Serial: 148535279242832292258835760425842727825 +# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da +# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca +# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed +-----BEGIN CERTIFICATE----- +MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO +MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD +DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX +DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw +b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP +L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY +t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins +S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 +PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO +L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 +R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w +dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS ++YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS +d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG +AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f +gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z +NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt +hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM +QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf +R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ +DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW +P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy +lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq +bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w +AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q +r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji +Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU +98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS ECC Root CA 2022" +# Serial: 26605119622390491762507526719404364228 +# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 +# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 +# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 +-----BEGIN CERTIFICATE----- +MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT +U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 +MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh +dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm +acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN +SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME +GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW +uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp +15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN +b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA ECC TLS 2021" +# Serial: 81873346711060652204712539181482831616 +# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 +# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd +# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 +-----BEGIN CERTIFICATE----- +MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w +LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w +CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 +MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF +Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X +tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 +AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 +KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD +aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu +CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo +9H1/IISpQuQo +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA RSA TLS 2021" +# Serial: 111436099570196163832749341232207667876 +# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 +# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 +# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f +-----BEGIN CERTIFICATE----- +MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM +MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx +MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 +MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD +QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z +4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv +Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ +kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs +GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln +nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh +3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD +0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy +geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 +ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB +c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI +pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS +4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs +o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ +qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw +xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM +rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 +AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR +0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY +o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 +dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE +oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G3" +# Serial: 576386314500428537169965010905813481816650257167 +# MD5 Fingerprint: 30:42:1b:b7:bb:81:75:35:e4:16:4f:53:d2:94:de:04 +# SHA1 Fingerprint: 63:cf:b6:c1:27:2b:56:e4:88:8e:1c:23:9a:b6:2e:81:47:24:c3:c7 +# SHA256 Fingerprint: e0:d3:22:6a:eb:11:63:c2:e4:8f:f9:be:3b:50:b4:c6:43:1b:e7:bb:1e:ac:c5:c3:6b:5d:5e:c5:09:03:9a:08 +-----BEGIN CERTIFICATE----- +MIIFpTCCA42gAwIBAgIUZPYOZXdhaqs7tOqFhLuxibhxkw8wDQYJKoZIhvcNAQEM +BQAwWjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dp +ZXMsIEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHMzAe +Fw0yMTA1MjAwMjEwMTlaFw00NjA1MTkwMjEwMTlaMFoxCzAJBgNVBAYTAkNOMSUw +IwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtU +cnVzdEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDAMYJhkuSUGwoqZdC+BqmHO1ES6nBBruL7dOoKjbmzTNyPtxNS +T1QY4SxzlZHFZjtqz6xjbYdT8PfxObegQ2OwxANdV6nnRM7EoYNl9lA+sX4WuDqK +AtCWHwDNBSHvBm3dIZwZQ0WhxeiAysKtQGIXBsaqvPPW5vxQfmZCHzyLpnl5hkA1 +nyDvP+uLRx+PjsXUjrYsyUQE49RDdT/VP68czH5GX6zfZBCK70bwkPAPLfSIC7Ep +qq+FqklYqL9joDiR5rPmd2jE+SoZhLsO4fWvieylL1AgdB4SQXMeJNnKziyhWTXA +yB1GJ2Faj/lN03J5Zh6fFZAhLf3ti1ZwA0pJPn9pMRJpxx5cynoTi+jm9WAPzJMs +hH/x/Gr8m0ed262IPfN2dTPXS6TIi/n1Q1hPy8gDVI+lhXgEGvNz8teHHUGf59gX +zhqcD0r83ERoVGjiQTz+LISGNzzNPy+i2+f3VANfWdP3kXjHi3dqFuVJhZBFcnAv +kV34PmVACxmZySYgWmjBNb9Pp1Hx2BErW+Canig7CjoKH8GB5S7wprlppYiU5msT +f9FkPz2ccEblooV7WIQn3MSAPmeamseaMQ4w7OYXQJXZRe0Blqq/DPNL0WP3E1jA +uPP6Z92bfW1K/zJMtSU7/xxnD4UiWQWRkUF3gdCFTIcQcf+eQxuulXUtgQIDAQAB +o2MwYTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEDk5PIj7zjKsK5Xf/Ih +MBY027ySMB0GA1UdDgQWBBRA5OTyI+84yrCuV3/yITAWNNu8kjAOBgNVHQ8BAf8E +BAMCAQYwDQYJKoZIhvcNAQEMBQADggIBACY7UeFNOPMyGLS0XuFlXsSUT9SnYaP4 +wM8zAQLpw6o1D/GUE3d3NZ4tVlFEbuHGLige/9rsR82XRBf34EzC4Xx8MnpmyFq2 +XFNFV1pF1AWZLy4jVe5jaN/TG3inEpQGAHUNcoTpLrxaatXeL1nHo+zSh2bbt1S1 +JKv0Q3jbSwTEb93mPmY+KfJLaHEih6D4sTNjduMNhXJEIlU/HHzp/LgV6FL6qj6j +ITk1dImmasI5+njPtqzn59ZW/yOSLlALqbUHM/Q4X6RJpstlcHboCoWASzY9M/eV +VHUl2qzEc4Jl6VL1XP04lQJqaTDFHApXB64ipCz5xUG3uOyfT0gA+QEEVcys+TIx +xHWVBqB/0Y0n3bOppHKH/lmLmnp0Ft0WpWIp6zqW3IunaFnT63eROfjXy9mPX1on +AX1daBli2MjN9LdyR75bl87yraKZk62Uy5P2EgmVtqvXO9A/EcswFi55gORngS1d +7XB4tmBZrOFdRWOPyN9yaFvqHbgB8X7754qz41SgOAngPN5C8sLtLpvzHzW2Ntjj +gKGLzZlkD8Kqq7HK9W+eQ42EVJmzbsASZthwEPEGNTNDqJwuuhQxzhB/HIbjj9LV ++Hfsm6vxL2PZQl/gZ4FkkfGXL/xuJvYz+NO1+MRiqzFRJQJ6+N1rZdVtTTDIZbpo +FGWsJwt0ivKH +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G4" +# Serial: 451799571007117016466790293371524403291602933463 +# MD5 Fingerprint: 54:dd:b2:d7:5f:d8:3e:ed:7c:e0:0b:2e:cc:ed:eb:eb +# SHA1 Fingerprint: 57:73:a5:61:5d:80:b2:e6:ac:38:82:fc:68:07:31:ac:9f:b5:92:5a +# SHA256 Fingerprint: be:4b:56:cb:50:56:c0:13:6a:52:6d:f4:44:50:8d:aa:36:a0:b5:4f:42:e4:ac:38:f7:2a:f4:70:e4:79:65:4c +-----BEGIN CERTIFICATE----- +MIICVTCCAdygAwIBAgIUTyNkuI6XY57GU4HBdk7LKnQV1tcwCgYIKoZIzj0EAwMw +WjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dpZXMs +IEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHNDAeFw0y +MTA1MjAwMjEwMjJaFw00NjA1MTkwMjEwMjJaMFoxCzAJBgNVBAYTAkNOMSUwIwYD +VQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtUcnVz +dEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATx +s8045CVD5d4ZCbuBeaIVXxVjAd7Cq92zphtnS4CDr5nLrBfbK5bKfFJV4hrhPVbw +LxYI+hW8m7tH5j/uqOFMjPXTNvk4XatwmkcN4oFBButJ+bAp3TPsUKV/eSm4IJij +YzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUpbtKl86zK3+kMd6Xg1mD +pm9xy94wHQYDVR0OBBYEFKW7SpfOsyt/pDHel4NZg6ZvccveMA4GA1UdDwEB/wQE +AwIBBjAKBggqhkjOPQQDAwNnADBkAjBe8usGzEkxn0AAbbd+NvBNEU/zy4k6LHiR +UKNbwMp1JvK/kF0LgoxgKJ/GcJpo5PECMFxYDlZ2z1jD1xCMuo6u47xkdUfFVZDj +/bpV6wfEU6s3qe4hsiFbYI89MvHVI5TWWA== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Label: "CommScope Public Trust ECC Root-01" +# Serial: 385011430473757362783587124273108818652468453534 +# MD5 Fingerprint: 3a:40:a7:fc:03:8c:9c:38:79:2f:3a:a2:6c:b6:0a:16 +# SHA1 Fingerprint: 07:86:c0:d8:dd:8e:c0:80:98:06:98:d0:58:7a:ef:de:a6:cc:a2:5d +# SHA256 Fingerprint: 11:43:7c:da:7b:b4:5e:41:36:5f:45:b3:9a:38:98:6b:0d:e0:0d:ef:34:8e:0c:7b:b0:87:36:33:80:0b:c3:8b +-----BEGIN CERTIFICATE----- +MIICHTCCAaOgAwIBAgIUQ3CCd89NXTTxyq4yLzf39H91oJ4wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMTAeFw0yMTA0MjgxNzM1NDNa +Fw00NjA0MjgxNzM1NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDEw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAARLNumuV16ocNfQj3Rid8NeeqrltqLxeP0C +flfdkXmcbLlSiFS8LwS+uM32ENEp7LXQoMPwiXAZu1FlxUOcw5tjnSCDPgYLpkJE +hRGnSjot6dZoL0hOUysHP029uax3OVejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSOB2LAUN3GGQYARnQE9/OufXVNMDAKBggq +hkjOPQQDAwNoADBlAjEAnDPfQeMjqEI2Jpc1XHvr20v4qotzVRVcrHgpD7oh2MSg +2NED3W3ROT3Ek2DS43KyAjB8xX6I01D1HiXo+k515liWpDVfG2XqYZpwI7UNo5uS +Um9poIyNStDuiw7LR47QjRE= +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Label: "CommScope Public Trust ECC Root-02" +# Serial: 234015080301808452132356021271193974922492992893 +# MD5 Fingerprint: 59:b0:44:d5:65:4d:b8:5c:55:19:92:02:b6:d1:94:b2 +# SHA1 Fingerprint: 3c:3f:ef:57:0f:fe:65:93:86:9e:a0:fe:b0:f6:ed:8e:d1:13:c7:e5 +# SHA256 Fingerprint: 2f:fb:7f:81:3b:bb:b3:c8:9a:b4:e8:16:2d:0f:16:d7:15:09:a8:30:cc:9d:73:c2:62:e5:14:08:75:d1:ad:4a +-----BEGIN CERTIFICATE----- +MIICHDCCAaOgAwIBAgIUKP2ZYEFHpgE6yhR7H+/5aAiDXX0wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMjAeFw0yMTA0MjgxNzQ0NTRa +Fw00NjA0MjgxNzQ0NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDIw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAR4MIHoYx7l63FRD/cHB8o5mXxO1Q/MMDAL +j2aTPs+9xYa9+bG3tD60B8jzljHz7aRP+KNOjSkVWLjVb3/ubCK1sK9IRQq9qEmU +v4RDsNuESgMjGWdqb8FuvAY5N9GIIvejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTmGHX/72DehKT1RsfeSlXjMjZ59TAKBggq +hkjOPQQDAwNnADBkAjAmc0l6tqvmSfR9Uj/UQQSugEODZXW5hYA4O9Zv5JOGq4/n +ich/m35rChJVYaoR4HkCMHfoMXGsPHED1oQmHhS48zs73u1Z/GtMMH9ZzkXpc2AV +mkzw5l4lIhVtwodZ0LKOag== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Label: "CommScope Public Trust RSA Root-01" +# Serial: 354030733275608256394402989253558293562031411421 +# MD5 Fingerprint: 0e:b4:15:bc:87:63:5d:5d:02:73:d4:26:38:68:73:d8 +# SHA1 Fingerprint: 6d:0a:5f:f7:b4:23:06:b4:85:b3:b7:97:64:fc:ac:75:f5:33:f2:93 +# SHA256 Fingerprint: 02:bd:f9:6e:2a:45:dd:9b:f1:8f:c7:e1:db:df:21:a0:37:9b:a3:c9:c2:61:03:44:cf:d8:d6:06:fe:c1:ed:81 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUPgNJgXUWdDGOTKvVxZAplsU5EN0wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMTAeFw0yMTA0MjgxNjQ1 +NTRaFw00NjA0MjgxNjQ1NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwSGWjDR1C45FtnYSk +YZYSwu3D2iM0GXb26v1VWvZVAVMP8syMl0+5UMuzAURWlv2bKOx7dAvnQmtVzslh +suitQDy6uUEKBU8bJoWPQ7VAtYXR1HHcg0Hz9kXHgKKEUJdGzqAMxGBWBB0HW0al +DrJLpA6lfO741GIDuZNqihS4cPgugkY4Iw50x2tBt9Apo52AsH53k2NC+zSDO3Oj +WiE260f6GBfZumbCk6SP/F2krfxQapWsvCQz0b2If4b19bJzKo98rwjyGpg/qYFl +P8GMicWWMJoKz/TUyDTtnS+8jTiGU+6Xn6myY5QXjQ/cZip8UlF1y5mO6D1cv547 +KI2DAg+pn3LiLCuz3GaXAEDQpFSOm117RTYm1nJD68/A6g3czhLmfTifBSeolz7p +UcZsBSjBAg/pGG3svZwG1KdJ9FQFa2ww8esD1eo9anbCyxooSU1/ZOD6K9pzg4H/ +kQO9lLvkuI6cMmPNn7togbGEW682v3fuHX/3SZtS7NJ3Wn2RnU3COS3kuoL4b/JO +Hg9O5j9ZpSPcPYeoKFgo0fEbNttPxP/hjFtyjMcmAyejOQoBqsCyMWCDIqFPEgkB +Ea801M/XrmLTBQe0MXXgDW1XT2mH+VepuhX2yFJtocucH+X8eKg1mp9BFM6ltM6U +CBwJrVbl2rZJmkrqYxhTnCwuwwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUN12mmnQywsL5x6YVEFm45P3luG0wDQYJ +KoZIhvcNAQELBQADggIBAK+nz97/4L1CjU3lIpbfaOp9TSp90K09FlxD533Ahuh6 +NWPxzIHIxgvoLlI1pKZJkGNRrDSsBTtXAOnTYtPZKdVUvhwQkZyybf5Z/Xn36lbQ +nmhUQo8mUuJM3y+Xpi/SB5io82BdS5pYV4jvguX6r2yBS5KPQJqTRlnLX3gWsWc+ +QgvfKNmwrZggvkN80V4aCRckjXtdlemrwWCrWxhkgPut4AZ9HcpZuPN4KWfGVh2v +trV0KnahP/t1MJ+UXjulYPPLXAziDslg+MkfFoom3ecnf+slpoq9uC02EJqxWE2a +aE9gVOX2RhOOiKy8IUISrcZKiX2bwdgt6ZYD9KJ0DLwAHb/WNyVntHKLr4W96ioD +j8z7PEQkguIBpQtZtjSNMgsSDesnwv1B10A8ckYpwIzqug/xBpMu95yo9GA+o/E4 +Xo4TwbM6l4c/ksp4qRyv0LAbJh6+cOx69TOY6lz/KwsETkPdY34Op054A5U+1C0w +lREQKC6/oAI+/15Z0wUOlV9TRe9rh9VIzRamloPh37MG88EU26fsHItdkJANclHn +YfkUyq+Dj7+vsQpZXdxc1+SWrVtgHdqul7I52Qb1dgAT+GhMIbA1xNxVssnBQVoc +icCMb3SgazNNtQEo/a2tiRc7ppqEvOuM6sRxJKi6KfkIsidWNTJf6jn7MZrVGczw +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Label: "CommScope Public Trust RSA Root-02" +# Serial: 480062499834624527752716769107743131258796508494 +# MD5 Fingerprint: e1:29:f9:62:7b:76:e2:96:6d:f3:d4:d7:0f:ae:1f:aa +# SHA1 Fingerprint: ea:b0:e2:52:1b:89:93:4c:11:68:f2:d8:9a:ac:22:4c:a3:8a:57:ae +# SHA256 Fingerprint: ff:e9:43:d7:93:42:4b:4f:7c:44:0c:1c:3d:64:8d:53:63:f3:4b:82:dc:87:aa:7a:9f:11:8f:c5:de:e1:01:f1 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUVBa/O345lXGN0aoApYYNK496BU4wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMjAeFw0yMTA0MjgxNzE2 +NDNaFw00NjA0MjgxNzE2NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDh+g77aAASyE3VrCLE +NQE7xVTlWXZjpX/rwcRqmL0yjReA61260WI9JSMZNRTpf4mnG2I81lDnNJUDMrG0 +kyI9p+Kx7eZ7Ti6Hmw0zdQreqjXnfuU2mKKuJZ6VszKWpCtYHu8//mI0SFHRtI1C +rWDaSWqVcN3SAOLMV2MCe5bdSZdbkk6V0/nLKR8YSvgBKtJjCW4k6YnS5cciTNxz +hkcAqg2Ijq6FfUrpuzNPDlJwnZXjfG2WWy09X6GDRl224yW4fKcZgBzqZUPckXk2 +LHR88mcGyYnJ27/aaL8j7dxrrSiDeS/sOKUNNwFnJ5rpM9kzXzehxfCrPfp4sOcs +n/Y+n2Dg70jpkEUeBVF4GiwSLFworA2iI540jwXmojPOEXcT1A6kHkIfhs1w/tku +FT0du7jyU1fbzMZ0KZwYszZ1OC4PVKH4kh+Jlk+71O6d6Ts2QrUKOyrUZHk2EOH5 +kQMreyBUzQ0ZGshBMjTRsJnhkB4BQDa1t/qp5Xd1pCKBXbCL5CcSD1SIxtuFdOa3 +wNemKfrb3vOTlycEVS8KbzfFPROvCgCpLIscgSjX74Yxqa7ybrjKaixUR9gqiC6v +wQcQeKwRoi9C8DfF8rhW3Q5iLc4tVn5V8qdE9isy9COoR+jUKgF4z2rDN6ieZdIs +5fq6M8EGRPbmz6UNp2YINIos8wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUR9DnsSL/nSz12Vdgs7GxcJXvYXowDQYJ +KoZIhvcNAQELBQADggIBAIZpsU0v6Z9PIpNojuQhmaPORVMbc0RTAIFhzTHjCLqB +KCh6krm2qMhDnscTJk3C2OVVnJJdUNjCK9v+5qiXz1I6JMNlZFxHMaNlNRPDk7n3 ++VGXu6TwYofF1gbTl4MgqX67tiHCpQ2EAOHyJxCDut0DgdXdaMNmEMjRdrSzbyme +APnCKfWxkxlSaRosTKCL4BWaMS/TiJVZbuXEs1DIFAhKm4sTg7GkcrI7djNB3Nyq +pgdvHSQSn8h2vS/ZjvQs7rfSOBAkNlEv41xdgSGn2rtO/+YHqP65DSdsu3BaVXoT +6fEqSWnHX4dXTEN5bTpl6TBcQe7rd6VzEojov32u5cSoHw2OHG1QAk8mGEPej1WF +sQs3BWDJVTkSBKEqz3EWnzZRSb9wO55nnPt7eck5HHisd5FUmrh1CoFSl+NmYWvt +PjgelmFV4ZFUjO2MJB+ByRCac5krFk5yAD9UG/iNuovnFNa2RU9g7Jauwy8CTl2d +lklyALKrdVwPaFsdZcJfMw8eD/A7hvWwTruc9+olBdytoptLFwG+Qt81IR2tq670 +v64fG9PiO/yzcnMcmyiQiRM9HcEARwmWmjgb3bHPDcK0RPOWlc4yOo80nOAXx17O +rg3bhzjlP1v9mxnhMUF6cKojawHhRUzNlM47ni3niAIi9G7oyOzWPPO5std3eqx7 +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS ECC Root 2020" +# Serial: 72082518505882327255703894282316633856 +# MD5 Fingerprint: c1:ab:fe:6a:10:2c:03:8d:bc:1c:22:32:c0:85:a7:fd +# SHA1 Fingerprint: c0:f8:96:c5:a9:3b:01:06:21:07:da:18:42:48:bc:e9:9d:88:d5:ec +# SHA256 Fingerprint: 57:8a:f4:de:d0:85:3f:4e:59:98:db:4a:ea:f9:cb:ea:8d:94:5f:60:b6:20:a3:8d:1a:3c:13:b2:bc:7b:a8:e1 +-----BEGIN CERTIFICATE----- +MIICQjCCAcmgAwIBAgIQNjqWjMlcsljN0AFdxeVXADAKBggqhkjOPQQDAzBjMQsw +CQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0eSBH +bWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBFQ0MgUm9vdCAyMDIw +MB4XDTIwMDgyNTA3NDgyMFoXDTQ1MDgyNTIzNTk1OVowYzELMAkGA1UEBhMCREUx +JzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkGA1UE +AwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgRUNDIFJvb3QgMjAyMDB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABM6//leov9Wq9xCazbzREaK9Z0LMkOsVGJDZos0MKiXrPk/O +tdKPD/M12kOLAoC+b1EkHQ9rK8qfwm9QMuU3ILYg/4gND21Ju9sGpIeQkpT0CdDP +f8iAC8GXs7s1J8nCG6NCMEAwHQYDVR0OBBYEFONyzG6VmUex5rNhTNHLq+O6zd6f +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2cA +MGQCMHVSi7ekEE+uShCLsoRbQuHmKjYC2qBuGT8lv9pZMo7k+5Dck2TOrbRBR2Di +z6fLHgIwN0GMZt9Ba9aDAEH9L1r3ULRn0SyocddDypwnJJGDSA3PzfdUga/sf+Rn +27iQ7t0l +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS RSA Root 2023" +# Serial: 44676229530606711399881795178081572759 +# MD5 Fingerprint: bf:5b:eb:54:40:cd:48:71:c4:20:8d:7d:de:0a:42:f2 +# SHA1 Fingerprint: 54:d3:ac:b3:bd:57:56:f6:85:9d:ce:e5:c3:21:e2:d4:ad:83:d0:93 +# SHA256 Fingerprint: ef:c6:5c:ad:bb:59:ad:b6:ef:e8:4d:a2:23:11:b3:56:24:b7:1b:3b:1e:a0:da:8b:66:55:17:4e:c8:97:86:46 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIQIZxULej27HF3+k7ow3BXlzANBgkqhkiG9w0BAQwFADBj +MQswCQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0 +eSBHbWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBSU0EgUm9vdCAy +MDIzMB4XDTIzMDMyODEyMTY0NVoXDTQ4MDMyNzIzNTk1OVowYzELMAkGA1UEBhMC +REUxJzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkG +A1UEAwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgUlNBIFJvb3QgMjAyMzCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAO01oYGA88tKaVvC+1GDrib94W7zgRJ9 +cUD/h3VCKSHtgVIs3xLBGYSJwb3FKNXVS2xE1kzbB5ZKVXrKNoIENqil/Cf2SfHV +cp6R+SPWcHu79ZvB7JPPGeplfohwoHP89v+1VmLhc2o0mD6CuKyVU/QBoCcHcqMA +U6DksquDOFczJZSfvkgdmOGjup5czQRxUX11eKvzWarE4GC+j4NSuHUaQTXtvPM6 +Y+mpFEXX5lLRbtLevOP1Czvm4MS9Q2QTps70mDdsipWol8hHD/BeEIvnHRz+sTug +BTNoBUGCwQMrAcjnj02r6LX2zWtEtefdi+zqJbQAIldNsLGyMcEWzv/9FIS3R/qy +8XDe24tsNlikfLMR0cN3f1+2JeANxdKz+bi4d9s3cXFH42AYTyS2dTd4uaNir73J +co4vzLuu2+QVUhkHM/tqty1LkCiCc/4YizWN26cEar7qwU02OxY2kTLvtkCJkUPg +8qKrBC7m8kwOFjQgrIfBLX7JZkcXFBGk8/ehJImr2BrIoVyxo/eMbcgByU/J7MT8 +rFEz0ciD0cmfHdRHNCk+y7AO+oMLKFjlKdw/fKifybYKu6boRhYPluV75Gp6SG12 +mAWl3G0eQh5C2hrgUve1g8Aae3g1LDj1H/1Joy7SWWO/gLCMk3PLNaaZlSJhZQNg ++y+TS/qanIA7AgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtqeX +gj10hZv3PJ+TmpV5dVKMbUcwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS2 +p5eCPXSFm/c8n5OalXl1UoxtRzANBgkqhkiG9w0BAQwFAAOCAgEAqMxhpr51nhVQ +pGv7qHBFfLp+sVr8WyP6Cnf4mHGCDG3gXkaqk/QeoMPhk9tLrbKmXauw1GLLXrtm +9S3ul0A8Yute1hTWjOKWi0FpkzXmuZlrYrShF2Y0pmtjxrlO8iLpWA1WQdH6DErw +M807u20hOq6OcrXDSvvpfeWxm4bu4uB9tPcy/SKE8YXJN3nptT+/XOR0so8RYgDd +GGah2XsjX/GO1WfoVNpbOms2b/mBsTNHM3dA+VKq3dSDz4V4mZqTuXNnQkYRIer+ +CqkbGmVps4+uFrb2S1ayLfmlyOw7YqPta9BO1UAJpB+Y1zqlklkg5LB9zVtzaL1t +xKITDmcZuI1CfmwMmm6gJC3VRRvcxAIU/oVbZZfKTpBQCHpCNfnqwmbU+AGuHrS+ +w6jv/naaoqYfRvaE7fzbzsQCzndILIyy7MMAo+wsVRjBfhnu4S/yrYObnqsZ38aK +L4x35bcF7DvB7L6Gs4a8wPfc5+pbrrLMtTWGS9DiP7bY+A4A7l3j941Y/8+LN+lj +X273CXE2whJdV/LItM3z7gLfEdxquVeEHVlNjM7IDiPCtyaaEBRx/pOyiriA8A4Q +ntOoUAw3gi/q4Iqd4Sw5/7W0cwDk90imc6y/st53BIe0o82bNSQ3+pCTE4FCxpgm +dTdmQRCsu/WU48IxK63nI1bMNSWSs1A= +-----END CERTIFICATE----- + +# Issuer: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Subject: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Label: "FIRMAPROFESIONAL CA ROOT-A WEB" +# Serial: 65916896770016886708751106294915943533 +# MD5 Fingerprint: 82:b2:ad:45:00:82:b0:66:63:f8:5f:c3:67:4e:ce:a3 +# SHA1 Fingerprint: a8:31:11:74:a6:14:15:0d:ca:77:dd:0e:e4:0c:5d:58:fc:a0:72:a5 +# SHA256 Fingerprint: be:f2:56:da:f2:6e:9c:69:bd:ec:16:02:35:97:98:f3:ca:f7:18:21:a0:3e:01:82:57:c5:3c:65:61:7f:3d:4a +-----BEGIN CERTIFICATE----- +MIICejCCAgCgAwIBAgIQMZch7a+JQn81QYehZ1ZMbTAKBggqhkjOPQQDAzBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwHhcNMjIwNDA2MDkwMTM2WhcNNDcwMzMxMDkwMTM2WjBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARHU+osEaR3xyrq89Zf +e9MEkVz6iMYiuYMQYneEMy3pA4jU4DP37XcsSmDq5G+tbbT4TIqk5B/K6k84Si6C +cyvHZpsKjECcfIr28jlgst7L7Ljkb+qbXbdTkBgyVcUgt5SjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAUk+FDY1w8ndYn81LsF7Kpryz3dvgwHQYDVR0O +BBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB/wQEAwIBBjAKBggqhkjO +PQQDAwNoADBlAjAdfKR7w4l1M+E7qUW/Runpod3JIha3RxEL2Jq68cgLcFBTApFw +hVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dG +XSaQpYXFuXqUPoeovQA= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA CYBER Root CA" +# Serial: 85076849864375384482682434040119489222 +# MD5 Fingerprint: 0b:33:a0:97:52:95:d4:a9:fd:bb:db:6e:a3:55:5b:51 +# SHA1 Fingerprint: f6:b1:1c:1a:83:38:e9:7b:db:b3:a8:c8:33:24:e0:2d:9c:7f:26:66 +# SHA256 Fingerprint: 3f:63:bb:28:14:be:17:4e:c8:b6:43:9c:f0:8d:6d:56:f0:b7:c4:05:88:3a:56:48:a3:34:42:4d:6b:3e:c5:58 +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIQQAE0jMIAAAAAAAAAATzyxjANBgkqhkiG9w0BAQwFADBQ +MQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290 +IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3QgQ0EwHhcNMjIxMTIyMDY1NDI5 +WhcNNDcxMTIyMTU1OTU5WjBQMQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FO +LUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDG+Moe2Qkgfh1sTs6P +40czRJzHyWmqOlt47nDSkvgEs1JSHWdyKKHfi12VCv7qze33Kc7wb3+szT3vsxxF +avcokPFhV8UMxKNQXd7UtcsZyoC5dc4pztKFIuwCY8xEMCDa6pFbVuYdHNWdZsc/ +34bKS1PE2Y2yHer43CdTo0fhYcx9tbD47nORxc5zb87uEB8aBs/pJ2DFTxnk684i +JkXXYJndzk834H/nY62wuFm40AZoNWDTNq5xQwTxaWV4fPMf88oon1oglWa0zbfu +j3ikRRjpJi+NmykosaS3Om251Bw4ckVYsV7r8Cibt4LK/c/WMw+f+5eesRycnupf +Xtuq3VTpMCEobY5583WSjCb+3MX2w7DfRFlDo7YDKPYIMKoNM+HvnKkHIuNZW0CP +2oi3aQiotyMuRAlZN1vH4xfyIutuOVLF3lSnmMlLIJXcRolftBL5hSmO68gnFSDA +S9TMfAxsNAwmmyYxpjyn9tnQS6Jk/zuZQXLB4HCX8SS7K8R0IrGsayIyJNN4KsDA +oS/xUgXJP+92ZuJF2A09rZXIx4kmyA+upwMu+8Ff+iDhcK2wZSA3M2Cw1a/XDBzC +kHDXShi8fgGwsOsVHkQGzaRP6AzRwyAQ4VRlnrZR0Bp2a0JaWHY06rc3Ga4udfmW +5cFZ95RXKSWNOkyrTZpB0F8mAwIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBSdhWEUfMFib5do5E83QOGt4A1WNzAd +BgNVHQ4EFgQUnYVhFHzBYm+XaORPN0DhreANVjcwDQYJKoZIhvcNAQEMBQADggIB +AGSPesRiDrWIzLjHhg6hShbNcAu3p4ULs3a2D6f/CIsLJc+o1IN1KriWiLb73y0t +tGlTITVX1olNc79pj3CjYcya2x6a4CD4bLubIp1dhDGaLIrdaqHXKGnK/nZVekZn +68xDiBaiA9a5F/gZbG0jAn/xX9AKKSM70aoK7akXJlQKTcKlTfjF/biBzysseKNn +TKkHmvPfXvt89YnNdJdhEGoHK4Fa0o635yDRIG4kqIQnoVesqlVYL9zZyvpoBJ7t +RCT5dEA7IzOrg1oYJkK2bVS1FmAwbLGg+LhBoF1JSdJlBTrq/p1hvIbZv97Tujqx +f36SNI7JAG7cmL3c7IAFrQI932XtCwP39xaEBDG6k5TY8hL4iuO/Qq+n1M0RFxbI +Qh0UqEL20kCGoE8jypZFVmAGzbdVAaYBlGX+bgUJurSkquLvWL69J1bY73NxW0Qz +8ppy6rBePm6pUlvscG21h483XjyMnM7k8M4MZ0HMzvaAq07MTFb1wWFZk7Q+ptq4 +NxKfKjLji7gh7MMrZQzvIt6IKTtM1/r+t+FHvpw+PoP7UV31aPcuIYXcv/Fa4nzX +xeSDwWrruoBa3lwtcHb4yOWHh8qgnaHlIhInD0Q9HWzq1MKLL295q39QpsQZp6F6 +t5b5wR9iWqJDB0BeJsas7a5wFsWqynKKTbDPAYsDP27X +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA12" +# Serial: 587887345431707215246142177076162061960426065942 +# MD5 Fingerprint: c6:89:ca:64:42:9b:62:08:49:0b:1e:7f:e9:07:3d:e8 +# SHA1 Fingerprint: 7a:22:1e:3d:de:1b:06:ac:9e:c8:47:70:16:8e:3c:e5:f7:6b:06:f4 +# SHA256 Fingerprint: 3f:03:4b:b5:70:4d:44:b2:d0:85:45:a0:20:57:de:93:eb:f3:90:5f:ce:72:1a:cb:c7:30:c0:6d:da:ee:90:4e +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUZvnHwa/swlG07VOX5uaCwysckBYwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExMjAeFw0yMDA0MDgw +NTM2NDZaFw00MDA0MDgwNTM2NDZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6OcE3emhF +KxS06+QT61d1I02PJC0W6K6OyX2kVzsqdiUzg2zqMoqUm048luT9Ub+ZyZN+v/mt +p7JIKwccJ/VMvHASd6SFVLX9kHrko+RRWAPNEHl57muTH2SOa2SroxPjcf59q5zd +J1M3s6oYwlkm7Fsf0uZlfO+TvdhYXAvA42VvPMfKWeP+bl+sg779XSVOKik71gur +FzJ4pOE+lEa+Ym6b3kaosRbnhW70CEBFEaCeVESE99g2zvVQR9wsMJvuwPWW0v4J +hscGWa5Pro4RmHvzC1KqYiaqId+OJTN5lxZJjfU+1UefNzFJM3IFTQy2VYzxV4+K +h9GtxRESOaCtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBRXNPN0zwRL1SXm8UC2LEzZLemgrTANBgkqhkiG9w0BAQsF +AAOCAQEAPrvbFxbS8hQBICw4g0utvsqFepq2m2um4fylOqyttCg6r9cBg0krY6Ld +mmQOmFxv3Y67ilQiLUoT865AQ9tPkbeGGuwAtEGBpE/6aouIs3YIcipJQMPTw4WJ +mBClnW8Zt7vPemVV2zfrPIpyMpcemik+rY3moxtt9XUa5rBouVui7mlHJzWhhpmA +8zNL4WukJsPvdFlseqJkth5Ew1DgDzk9qTPxpfPSvWKErI4cqc1avTc7bgoitPQV +55FYxTpE05Uo2cBl6XLK0A+9H7MV2anjpEcJnuDLN/v9vZfVvhgaaaI5gdka9at/ +yOPiZwud9AzqVN/Ssq+xIvEg37xEHA== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA14" +# Serial: 575790784512929437950770173562378038616896959179 +# MD5 Fingerprint: 71:0d:72:fa:92:19:65:5e:89:04:ac:16:33:f0:bc:d5 +# SHA1 Fingerprint: dd:50:c0:f7:79:b3:64:2e:74:a2:b8:9d:9f:d3:40:dd:bb:f0:f2:4f +# SHA256 Fingerprint: 4b:00:9c:10:34:49:4f:9a:b5:6b:ba:3b:a1:d6:27:31:fc:4d:20:d8:95:5a:dc:ec:10:a9:25:60:72:61:e3:38 +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIUZNtaDCBO6Ncpd8hQJ6JaJ90t8sswDQYJKoZIhvcNAQEM +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNDAeFw0yMDA0MDgw +NzA2MTlaFw00NTA0MDgwNzA2MTlaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDF0nqh1oq/ +FjHQmNE6lPxauG4iwWL3pwon71D2LrGeaBLwbCRjOfHw3xDG3rdSINVSW0KZnvOg +vlIfX8xnbacuUKLBl422+JX1sLrcneC+y9/3OPJH9aaakpUqYllQC6KxNedlsmGy +6pJxaeQp8E+BgQQ8sqVb1MWoWWd7VRxJq3qdwudzTe/NCcLEVxLbAQ4jeQkHO6Lo +/IrPj8BGJJw4J+CDnRugv3gVEOuGTgpa/d/aLIJ+7sr2KeH6caH3iGicnPCNvg9J +kdjqOvn90Ghx2+m1K06Ckm9mH+Dw3EzsytHqunQG+bOEkJTRX45zGRBdAuVwpcAQ +0BB8b8VYSbSwbprafZX1zNoCr7gsfXmPvkPx+SgojQlD+Ajda8iLLCSxjVIHvXib +y8posqTdDEx5YMaZ0ZPxMBoH064iwurO8YQJzOAUbn8/ftKChazcqRZOhaBgy/ac +18izju3Gm5h1DVXoX+WViwKkrkMpKBGk5hIwAUt1ax5mnXkvpXYvHUC0bcl9eQjs +0Wq2XSqypWa9a4X0dFbD9ed1Uigspf9mR6XU/v6eVL9lfgHWMI+lNpyiUBzuOIAB +SMbHdPTGrMNASRZhdCyvjG817XsYAFs2PJxQDcqSMxDxJklt33UkN4Ii1+iW/RVL +ApY+B3KVfqs9TC7XyvDf4Fg/LS8EmjijAQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUBpOjCl4oaTeqYR3r6/wtbyPk +86AwDQYJKoZIhvcNAQEMBQADggIBAJaAcgkGfpzMkwQWu6A6jZJOtxEaCnFxEM0E +rX+lRVAQZk5KQaID2RFPeje5S+LGjzJmdSX7684/AykmjbgWHfYfM25I5uj4V7Ib +ed87hwriZLoAymzvftAj63iP/2SbNDefNWWipAA9EiOWWF3KY4fGoweITedpdopT +zfFP7ELyk+OZpDc8h7hi2/DsHzc/N19DzFGdtfCXwreFamgLRB7lUe6TzktuhsHS +DCRZNhqfLJGP4xjblJUK7ZGqDpncllPjYYPGFrojutzdfhrGe0K22VoF3Jpf1d+4 +2kd92jjbrDnVHmtsKheMYc2xbXIBw8MgAGJoFjHVdqqGuw6qnsb58Nn4DSEC5MUo +FlkRudlpcyqSeLiSV5sI8jrlL5WwWLdrIBRtFO8KvH7YVdiI2i/6GaX7i+B/OfVy +K4XELKzvGUWSTLNhB9xNH27SgRNcmvMSZ4PPmz+Ln52kuaiWA3rF7iDeM9ovnhp6 +dB7h7sxaOgTdsxoEqBRjrLdHEoOabPXm6RUVkRqEGQ6UROcSjiVbgGcZ3GOTEAtl +Lor6CZpO2oYofaphNdgOpygau1LgePhsumywbrmHXumZNTfxPWQrqaA0k89jL9WB +365jJ6UeTo3cKXhZ+PmhIIynJkBugnLNeLLIjzwec+fBH7/PzqUqm9tEZDKgu39c +JRNItX+S +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA15" +# Serial: 126083514594751269499665114766174399806381178503 +# MD5 Fingerprint: 13:30:fc:c4:62:a6:a9:de:b5:c1:68:af:b5:d2:31:47 +# SHA1 Fingerprint: cb:ba:83:c8:c1:5a:5d:f1:f9:73:6f:ca:d7:ef:28:13:06:4a:07:7d +# SHA256 Fingerprint: e7:78:f0:f0:95:fe:84:37:29:cd:1a:00:82:17:9e:53:14:a9:c2:91:44:28:05:e1:fb:1d:8f:b6:b8:88:6c:3a +-----BEGIN CERTIFICATE----- +MIICIzCCAamgAwIBAgIUFhXHw9hJp75pDIqI7fBw+d23PocwCgYIKoZIzj0EAwMw +UTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBM +dGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNTAeFw0yMDA0MDgwODMy +NTZaFw00NTA0MDgwODMyNTZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJl +cnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBSb290 +IENBMTUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQLUHSNZDKZmbPSYAi4Io5GdCx4 +wCtELW1fHcmuS1Iggz24FG1Th2CeX2yF2wYUleDHKP+dX+Sq8bOLbe1PL0vJSpSR +ZHX+AezB2Ot6lHhWGENfa4HL9rzatAy2KZMIaY+jQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTrQciu/NWeUUj1vYv0hyCTQSvT +9DAKBggqhkjOPQQDAwNoADBlAjEA2S6Jfl5OpBEHvVnCB96rMjhTKkZEBhd6zlHp +4P9mLQlO4E/0BdGF9jVg3PVys0Z9AjBEmEYagoUeYWmJSwdLZrWeqrqgHkHZAXQ6 +bkU6iYAZezKYVWOr62Nuk22rGwlgMU4= +-----END CERTIFICATE----- diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/core.py b/lib/python3.12/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 0000000..70e0c3b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,114 @@ +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import sys +import atexit + +def exit_cacert_ctx() -> None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed b/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py b/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..bf0d6c6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.9' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c218f0c9e4ecc57d92083ae2cf5336f75aaa3bb GIT binary patch literal 1262 zcmaJ=%}X0W6o0eXY_f?TiB@Z^UqvZ|Vz#Z97D_=-T0wFx=CY)_W3sx*#@V%+(1V8@ zJhY%#NdE=#uMm3cNlH-`3Wc6}3r0%u)b}=t(Na2x-@JMAK7Q}bo6o(yF~BwO;eLKY z0{B6P&QjV!^AienFu`OtWWkiOOoA6+hH7BSTsjK1?6M)1Y{E7a<*dv=0uF0^onYOa zM~_(BL*?q)Q1_-Ip{IP*K6GpuRM<4|@C=9%ijDad%pbuVJsrR9e#J>%fp?2rupL@~ zEtZP@B$G@v{4hP2erj~>0os(HNzv*^JQJ@3AFB3Y_b|;L#Bi%(-UXI6*(0aaWpb;LT)U2`6iL5 zLj?|5Mnq9QlziFc_NuQ4ZaBhp$!ls#(4hHBAz)G+xW+2o(hcK%lWN$3vz|my!~YWs z8m=Iv=tt>B9+?*{ubQ}?g*11_V~~JaWON=KWgIDhpq>E~XxiU`PWoU~AV`Molx@dY zPce}|y-WV>!eWNtIgc;nZFTs1+OB?#TqrLVI5M`o@O~*^kx40n$`KXe zgn+u*dQ<9Q@Du^u!jqdssKL3+)a1E>&_oz-S<{=P;(o+-@_DP2_v1PalW=i>aZ=T* zX>N@X8T;|2V%ZViq7aVoBkig2)jao>F$Na_QD32eT==n^X|`?t;^;@8wZ6o2aS!8C zpWFgMBg7bM_5thv-Z!)pzfc%c_bL~FTO-=b#=ptajR}a|-MxLPj-IHaAD?_tXLgh` zP);Fv0?GXc2eV&c>UU!jqJ!rUXX6*L8Xn)v*PVUm7ogY(qw+H7%7HR3!Lc+tKN&in HV2FPJsC5cc literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cb732bcb07266ba0cfee58416e720566b0525e6 GIT binary patch literal 45519 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%0Du7$KLHL5gsMinOIME*kadrsDm;-<+ev;}z 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00a4c9f6a0d2b021169edbff10d0ece8984a7957 GIT binary patch literal 65574 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 z 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Ⓢ43V+oVBS=YULVrQ* znVExbSzaZ4os@;k>&RMliD-P@b{$}2NZDza)B=L44N(~eGKHXBDC*c#HD0%&b;~7? zf&4A!flbH{;Cu+gi3Vcc2ECOHSCSnWKw{8ew*qX6#}l)HV*?=LB^twd8_tqZSU@_) z@r-|rGr(&g?iF00xFPNp>LkT`m$50N8qkJmlr168S7q*)v?q<$0WIA>crIQQOT!?K zbPKQ~ek8dY=UtH=_o%yWM~!KzM!li06%*<>%SfW)RKTo6vh8OlE0Gl^6?nPCw!nQU zX9eED$5@Cn$=M!JQDS$#$k3y1d?c2LwI_2stnvQgzF@HZ8`N#S5mU|N2tz%bhLMI# zbZcnO;?XM5Z6)Km=!yYw+w2Lf?{FCz6CgcHqCYV=4`ly^f5Z!8qHfoj`XYg-lt>5} z5slGT7Zn3kFjl95_89x~A?A-1id%Szj40PTGJ5tJ zSg>tI&m?f+dsL^H3UUD!a!l2AIxj)LQTrKVHV0eAl)WW^H6J8ye#eu}YX2=)FmQUs zJ}67m-w=U+8#_$N@9@SADSJhvYt>ekvXw`Uq@C`_(Jce#E=Dp<6O2*2V26r_mQ2-a z?xNSrUn`Gxtok2ZXih=1c^p!1-Kxa0v@Yrv&wm(Nvh}b?#)_n^Vorx-owoWFTT{~3 zv{1KraG_$^*0F(<;uT<++{If3Vn4*6Q3kAe-O8T!B>p_@i)U62olN4-b24%I>6Oz1 zN&I;RqNclrWzk31H3oZQ+81D}XJN|M5HkYH(NjjA@6pb+;xfcKB6HUZNoPg6zImbg zyG{v?2F|l@lhfH7KSO#>AbTY$ zdj7tD$@L^*iA~H*{NXp}nrFTRfjfKMwCcZVTsPx{|JwF({sRccq>HQhz8=AtMYX>T z66O5Je?Rb>8|hex?%wZ#k0O5k|QB03!m)ZP%j zi5uDV)J!f)Mc%iSvYf2zhaAr{D~KvQp=bpmSzS1RbxB2$E73|=N3?1(Y;Ij9SzB!_ z7c;S7mBHFZ@-0>$lAMunS+zZx>S7)6VGYn>)i|N9WX>h&rqvzHq&A#+a`MJpDgsfqeV+16QEsjfynB$+P$bH~Z5A!4%60(dLjF-CcJ?Wn zq_u^~eHsiOXy}NM7wHqx6J`m|Xs?c5WrPvHz<*1>GD`LV_A*-BeMT1=9T;We9$8%a z`-5OZByuHMDGOOr14&!Tta?G=AJD)C5v+Gm9YURhGudJ-Nuzhwu?vyYfrfPBfgexY zon>8YI?TkXd8mz^GFKK>f4f!lD>i>`Fy@M0DI0DotF-;!LWr-S* zu3yxb2_NHG>`(z{F%n3|R6$t+x*SKG?!72WqSYV^vLswan;AZ&G}#MR@LRZsX1esq z#EG5@d6O}dd>}Il%p^zE?3p+p9gDeN3C*7QTo^%1tUqX)@(9v1xHwV9|2wMmAbn+S z66QS8Byv@sP^Dq2MB1o~ncPL0H)uvjyFpsUg2(7Ze8 z*%vk6^_0UzjIhB|Gsb8~+UbgGZ%oed^PacuMAA$%rnvhx>kjH>=8AT0nu)p3WHXvP}U^C!2(^QtQG`uywYB5(8fw9D%oR{~%Vd(1lUt8N^Bm9+*^|;<70^ z$ptQrLy_CZav?J9E%}(jNm-l`2vQtJqDEmNTyk<4e%2R8hv9C(+R7dfhq*yuV~mss z3YI-dL#hbBLD?iT@)^VB=aKL+D6pe{jiY(d{(y-gR-LWLDYUSMM$=K$!)P*bNWXJw z>QcNkQGF=oI2`F-HM^7MvRD_2$k)=2g2>li>Q1}8_&A1-JMNZ*zlFZ6T1(=Zl(j6O zD`Tq@)JW}gWe+iT|BR)#cW4}8FoV6l0zG`;Kd4~AjeWHD?g_&H%#3J%?V<0^OjURzb6M~&i0+i6jVG-BNNk1~N z%T0Tvt`rKXAO%Rq*xL)kYj1DHj49ZIs{*hO(J4_z^Wu6k?nj?Ee!SyE=V_LI=|soz zBVx9Y-=k{Zpeqj09+5Eijs()5h`9NrFA;{QI8OyriZLFC_z*V31$r@g%Cn5=kt@K~ z8y-9?+{ID+iPl0e@jSm__w%GLdvv)`pZ_g&7x{>*nd*Imwn^53}nf9CwZ;@W=2 z4W+oD-)MM#*Kar!8&qr>G*(T-h!J2Zi(khVG6+3vD@U5oEN;Hc5gIs}G-x`-p~u8ugi m4UcR1%Gl60N1t22t83=nn-};J-nn_u$2+&$&Agut!2bqwjq^JI literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a62d68d6ca8fe9eeaab54b4845fd8568c3d0d29 GIT binary patch literal 24309 zcmeHvdvF}bdFRYNXR*6jyk7*!0YMU2k^n@CFOi~RK1E6*MU#{z!LotH&Hz{ty9>`O z2x7B{X_xA5;bTnDtL{q!%_9^ErSO?&vAc4Kg`2z zT-^UTF0OMDC-Ea(kACKRc=p@T<6viJkCUBUJuY^3_qctO(=pTAp)oGC#cCY?ghN z>)+w^Up)%6>Y`Yo7B%iX4%CNu}dw#nG6W8j1BEyA+j2Q?XC~X231iC0XhczEEzmy}8#u$l|go) zx#(w9|42P`7(ecR2N%~lnWJ&S81Wb%2gasOa=ps;xFz?iT#rZcAoWUKq=FT!gq#)lT_;uGcO|>3#8s8lAXVX9Emb2& zjZ}lQ7P)G1uWrH_Zqx#2BGC(xLHT4tk}svBWg?FALorp1j-cB_MIKdTRZgT-F(QuY zS;ZLT6{E@cXe1TuACblJSZYW-GjZnRb}=<1<0>_jOt7Mi(nVH$7rUi)p-(!k~Yv<^(by_uK_NcoJHK-#5COQRIC#IN&`6D_q`$A00tez0Fw+t@F`e3q)Vu4>Gy;X3om zK1;55j4#^FO$w6xDEFmp_zItoOEsFghMUYQ`<(Gfo?-b0jWeTJHzl%Hj)WpA(YYi`B`(si-K zMYK$!Ig(UksiZQoU)-#o*7$K`bqurbTQBzWKEXB^Uq9`;# z;gA+QdhGb27oI!cd-C+rV=rk=e2-Q|%&#|^Obo;Z#}rJpWI`bdQ;1}=icy2D^$rF4khEV<|0O?Ig+a8mE?ieydDqt^p;2 z&sJlJ3mUI#4kfDk@v_;WI6pYwP3`GcM`8nV_h2m5%?5^sIMog24vtF9uH*BsbvA z%{T>@gO%Ujczx@&t-0u8aN~@0-^0~yp62g4yp@g1jcrSfUGt4yxA( z`#*8=O;1iAzFXgz`~0`Y^KF}QuGfV-4K4TFT*HQYKD_;@mn(0Z3vT@NCpEbBF~?Un z-l=K0=fwHJr?vXC2kK+^>L1s5j$7Ilj zqGyegy%1snvqbw`P=Y0{CWNpr{S%9eo(1PJpum}vVkAmDrg(J4h$^aMqoYYBB}-!e zglN%8mySP1lcQrJk(6vxR9_z$vXY3z<-We{Vqc%h0QFyBmLu`LK8Ohk&%i(FIt5hM zKZZiY0VNry7FkU!qP5k;6zCmEg8S;!1lVZQtO;hVnw!-Fnben&fF1*!ul-JW zQ*PHnxtMk48`j4tF=kV1AcTwoNkh^GADq34C$5)K)>I^SZ zAw(#USKu|lC1L%%uzpbxe=4-!5o)KU4}^8AM~9{(8=WSM3L72VSb2OcP#T+F_NQzt z>M)tg*LfQuo8vmk+ejB>G1axW7V~WjH9LTv@h`&<2a9vkFO)&EXvL8MIv!qekA9YJ z{W}Kh1EQ}qUxIA1*{FrhCwR!IQHxNH5byyVL{<}15s%Snu3wfDM0nd7pHU(@FtrMk zP1RJ4G1O`EmDA}~lZUWZO*W#_b3dcza9IJXps`R0^6Qw7VX#0%0!uP*pUzBZ$dwi( zVV5r49HViK?^OWQIhFbZJjGxthwv-CzKE%;BIiDO?JGza-32PH9-KNj=ND&=e(%&9 zr{*?2!GMo}cb0?A3&HhS$FkUAa1C+iywH;6vwNm@Oh}qH#lyluIyHPfC zeD>(~PrZHW_O2fseDC0*aB^APb?fYcxG(GaKxomanWVCLQ0o~r?>DL07)>(+olTnL zfkcKW_ll$FxkcZ0CiD3ubU5g7jwkU56lQ5Rc1{RMi-zpG=KF)3DHbP*ZvA!+^D1Kr zbuz8|W7P#z=8Aj;9cR(#S$PnUOjg7QletVlLbVX_UsvJB0N;r-$|AIbi!llE85}Yq zMN*N~ikJChzj#R8&uj+!`%W3T`z(b`l;i>6a}>|FH;RWgs zaSTrYRr=#Gm2@~myIj?9MK?LwGhXvBU2NikcRvB$WCAJ_m68g36q<^fz|==T9L>?LX3uN9q847pc(2E z63q6RLMf9MDwc%Cd7*JpSeFmfTz!7(`Go*xcD{ZCrgwNMkguv+s@gnXwRtA;y}>sI z-;CX=TBzEU^)hveUd**G3L77tJyg9E66ZtWO#MPAJST*8E(wz)L@AuDx(QTN#u6}7vKc@?kY*C_3vexL9gI{XM52Z^k701K#4 zWUI6|54~jl(pz9+0+ZVyi-myoatIHP4k-~xZxbNs)wJ8D1GALk^QaQL2=OakkS9co z+ZkP8GX|q(WMbN&St&do#8&`DfEmd6D~=DvqC;fmNJU_%W{itovbw&wa{OX-#u5Z` z&<{~&;a$UCy>=m{O}t%&x?-Ap3vC~;Zksg$_C*Tx+#(!ge78jou+KywW57PuF@sXr z(5`L?4S>$8O#o<%qOLP!ckZ)$^MSv!6Gr^hnA$lYY5dLyLT6_p*_ldBJb;~?OvC6< zC}`f!&i+U$I+PA|!USxNFni~*w5uzkM$^I0P6JgKAuot-dHM@BkH z;Yy=?U3@$Uz+j)e07*t>dW{#uer6PzVqzwF z=whLQ?2qhSV}7PvisZw}$KOH;>W`2>P&9KDHCHc9UCOo0I%j+4%J;z{*`Sphuf`_w?yx_lDHdQwL z{LIU@%JVf%xo2h_vnODduG#Ym$NTpFLMSJ(GyUb6bKiUEjhAMlZ+>Y}csw7fnm(Kz z&l1p6PbL0!IPo%$uT?)hUj}|!QUwRONf-XyDT76G z+;AZ{HCmYA2lyDo*IWEIc?ca#d4wWZLOenF^OQ20WLyKzcP*D4T#Vj_gT+VI<3>HD z3@h%Udf?`Jcs=N?-6*NT91i39s^GbI*m7Q) zPm9a|!Xuu0O1eB<8T1Oor6=;Y7;1~jogGVn4Voenyc$1-5H~=oF*9m!hgTeWA>eTg zI&ESC*qfj#Da*FYaWw>o2SOJlX3^lS!1y+wG^7qIt(QvMPmatYCni}g$ruW83#>l@ zK}G--Eipt8F0Jn{nM=W$HPMjPki@1CFZ#TK_Lwf1Lt<)dl);9C3h6-g8U9wA>$i*Y zC3FYDW*EwJDUuvm-54E(GeB?UYdrKcM@%Srvd(t~8O!_ij$#G#XMz-8$-w+7i;>eJUhuQ7U z79#g^01{&4pMkl>Mm~FBPWTH9ZVgOsSvMc1X#9gPd8A)Wj=+5h8DnT#2CHS7*7%SN zPZrrnsGWe+_*E*Bg{dtCuwQurbj$)z(p%_FOS}z4fO{p~9}iXuYb!A-fMwVm2`(wG zA^}on{EJ1Qz+*UFqGTaveeKy-_SWbblda8V7_b5eJ9_zZz`B|W?#D7(z?{rIp5Mb8_jne zSn4`F-*xzhdl$N%MV|Gi_<5lz>i~;8e%BwIuKdPc_%-fv{HD%)_l}R8{HC4vIllUF z+zCE@H&mYu>FlHs%UK4JO<)yku@f7$q%f29qZEEDX>7D`lv-}P+sH|=f>rRP43Kus zrCo03bA*LCz?7WI9pJZd~xNIEC0p_Yb=ZWJFto} zlj*%MN&zMi=!#4ZF&M85>lrb0J+5t4l%whL`Nwp&nazTh0o;!!moV#5o)TukLSdyV z8f%t79A5r^(=bRMPhsP_K1WxkLd3eRUnUjF`fxqC391{0*`fuLCd{)H3uTFB-L?p& zQyPnst&PGJsQB%o+%;%xX=VZD8447Y1#=*Td0$^Y{pba5kP#hazhwZa(Fw!fs(*>; ze8nj00o{gyljzf=S)7YPw9I<#Gh8gjD~en>DT;3slECX(D)tjf1dHamk@1~oo#^5%4bQX8jN+jmg zvCf9oKpzerZ5LY&3ZDEOmGWI+DB$g`!T^EgQ03L}sqw47H}!kDp~X-;@bk>?+dm{Rg7g0d zV&&%9%KWMA%2RHpfch0`P@n-vt_M6=|x@S8UnjT*a>{=aGQM*vJ7hx4E<0L)}xtq(qJ zMzwR5n;)p8Tm5)b<J_P>Al^{ht`v-=^yF z2(ah3T5MfV)RYC&oR4_FM5KisgH@zdIWx{xN>#|J)VeUCA^;{|${dcnmjBjziR?$N zl%*Eg0RCZS?n#g2lHgSzaFFsa;23mHVu4u3mGLmpF94vHFoMIIELgpRH9EtVa%8v0 zhRd)p36Y(J7N!?;NGc_xV{vd*=8rVZ!vBO2>8kcUEdEPpW+gByN}&aQHV$B(Yy+}B z%&EIJYAftFBkn~VB1A)|gkY0hECIMR3o3FU_x0&rKa`47NW1CcF6x8=C}*1K&!f7} z4iHomASm#C0~RQ07_qS~u!|a6j2IMzMl*?DMxCyYh(bXvn%4lC3b`*~Xg`Egf!KD( z0ACedYLoq3`8Fj?e$(s9A5juOf`v|U3gL8Egv5j_ldpztisUO~us+iu+Uk+G^&mR4|D^}nHL$kC=!a&&TPGWX(Q zXfuni-FJKMeB0rLsv~oOBZW@a_L(Oaf{(!wTOfS<7elSO@I5=n5)@_TYfmvCP_gg8LRtNA|hWG!9?|)<{5kl|Q3?%}a zMktZ1q{$uc6@?O&&gCWp|6rjtf?CIpQo+5FNAi}kuE9Zo0j0xaw-5;~#!xeb4E5o` zHZ1I8f-v-2R(%W6GMH9E!-iH(e1*UtR7DneLgnG!n#{$*fue0TF5n+}oDM=HGU7jXl<;!}l|auTlCzl}eNni4qwJ#lYwdPzLGV5E3Y1O#30b zs1l>Z3T9!hN;8nLYBddN!6Ndot^F%Q8>=WtMX%U$P!=z0TAkq_aY||+IOY1kUmS}O ze)7zmxbxPjx$47K@wiR|0hV+Vpys_MS0j^M-_ja2kI(}qcn2p zeno37wF|kdAQ2-APBvR%{z7A&x#Ymw^74Y(oEi5DwCa{zv@#nE$Q{{J$bh~;k!2Ka zYmFiU5dX|?{=eoo$`}k{`Wkq9+{eLi*j!{w;N=k*&5mRJ8iG7ciI9Fwf3622iem}e zq|+})BZ#IGVP+}34_pUoeDmCveYZRFTe@JD2tAf{7C0CeTCncP@F(WsPyE8Xe;osIr{>N8m7QIv zIyV=mTiN1_*)c?OA*6UdEZS zK#jdhVZhRx6;H;=;u<`Y&IIDOCp``>W$D@}g468CSWAUXz4wtV0thSQOmNSItkN8k z+XPE+^wH8{vQDiy?42#_wR`4QP6}B2A(V13TJ6KW6_aI>7j8mfGJwAzqO5%vDb~Vv zIQpbAQk|_*{fJL5!#Z|XCYULMtIy!-Jgqb-8A_HZv)(Pwlw+;Q(M*8@5pE=7RMN0N zOa>6dN2~Kz9Cj`MN4HXmIPnq=%A#CB$Q4uBZw>&HkZpLd-t?nIpk- zUqxSCK$wzJ`_(|ke*x23sYtb%Wk>^2cYw1aG{5N5JdN{%PU4QAtZV*yTr_8zgh>FJ~rr?oDo zXM+~Nzzm>^Ui}qv+UzA~az%5$Fh9(y&7_=pe6j3C+-LFIxe6YR>7Mb9rf@21~kQ`TG{2&uPi3bEo zTDGME+l`b=;0wlB2&4HSEbNbUfUeh|MCvv3F}{83K_>uaxBT0u;U9YB4T!d zf)6*`U8S~+VTzRQsw}9Y0}-CEh_U5J1?@G5h|adCycmn1dfoQ&^s)1Bm9ed;Rxg~A z&>K|W3Ja7S)l<*{)-H?^Ynt`7g$-cWw2r(W(8u^tz2hGdKiWZl4q4f*_f~kVI#}%I zc6b6Q^hke&sE5WRGBTJ%(Blv`P<}IVFm1Adq zsqsa$+kyhhO zwkc4@AWUtv^iJF?(Ly+KF5`;gebscW*)S|lWwg(_Ano68Q-9jCofVO;HX5sgJej%j z!qv9grv@3kIEC>ew-8PBz^k z)>LHCD|!}(cvt@m5}?NIT%aoZ6joJaPZ(?L<{G;`2z37<)R^1y)~SzH#4T;E7KJuDr_hd7ZoG;i~JG zs@mqO+TMD4_Q;#hEmZBu9=YeJ3pVGQT5fjS=y+}Gv=^HWP5biojnl4teFKtp&C^1@ zx@~5BzPf99-TK`49PED^_ARV?V*2Qv>Xth->vNZ88*d$5ta&0|*OYJGaP!2C6EiO_ zGepk8SzSB`H-s2oW@gqbf*W_zkmTKGQYuguU z!`b8cP;IX6{m_Qxx-Ht?gMW4j$$J;?xg8x(^Y=MN{Rti~R-T~PR$vaQ|h8ldiY9 zkMHsp?L_CqTl9B-5y^F0EJFLf;dc+MR6%6hsY zvp?f;=0bZX8lwruCTl9z^0FNxi&xq+ewc17;u?jE_Wz8S#!Dy}OrwIUse{GcA6oK@ z@B2k#d42BaQuB`a<{gWHo$OKb`~K#FN1gM{v~YL1vL$zEuCfC$`JvjYzdQB2xyKhm z8|H)!x)rOC!st5~ZB_s=Gum8ZKNYOd<*_s1mpRUicDHR!SPg4Yl&w|Tx}=JwOb9~s zWIQP00L8eMrYVH2x@cuA*2FX0RVkyo9ZHII!6nV^c8&qd0MBz*4!XE2eJ<<^fHv&H zSKzBD(jLL2CF$F0i#sDg2k~TlNWFjPeq@`KHMNhikZ$-9 z$OpzC86i#`P+@aJw#o-{(Zsb_R|yocdj9I~>r>b$%b3B0&aBltVh4Lj{*2!UZx-$Z zr~4;Z>&$wnp^vPF-e474-&_m?=y@*#RbhRBlg)G3W=@@*>97gfj>fQC2sS5#GPIun zSG<#ykOOQNg@YS6s~hzQd)hoJz2!H1DIMH+fVpv~jR!Ys{6bNbik~If~RbBsiRHo<0zP!m4A=ol-rcNM+vk1{|mYz|0>WGP~Lx} zpM>r7oyy8}$o4MXc!M&zsU@oNK3(${u+0hiU9q6{qUMBIm4z~CZgx|1^(UnX%@Iv0 ze}UX=^St72XXuOhY}4zCxM%TBDF2!G=LRI;pA8(=B)KVo=-{=3S>eOR4O1txhq4!! zt6OpdZ>8RSVJ5ygs>i zu>OW8H~v}(@FrhVd;P?<6S)@`YBt~VyVtk>igQjjlG;RIa#*R0(%+|lzov*-d4Yeq#sU9T-u`eUu2lw~s zt6$~Z(0tvN+1mNKu3OHz+Fgsn?z^Enwuwl@E5^YM2i`k#*c{UcbD)^{uuU z>CNzK2`tyDF3WlW5-aMbQ`awDyEIcXGrkb&o)fxPivi2~`sWw`ter(4>PLpR!)HvR zisAxupqNhb_XC0QZ4J+L`1ws^Ip(jByEq!Y$Kqa~)v zh==>44bRqkY8rCFp3}^MPo69s!soE_qc;_c%g~K9Cm;t?IUv^=rTdXZp+F#W6H_^& zM2Ae#?xwgsM9o2@V}I48qWP53XfMJNFHNkF?>|Ek>FOd1RasHLBFg+Co?hmb{k7Bb z>#r>Ox8`ftg4p`LSX#|0rA&!g})xC^c8^OZoTu)n}5)O-_V!XhL@%4f$`0xu3V2s& z4TW-;l0%f7qoj`#GR!dxy&fR>CjI}`$_q&~?>`BEq$ zz@>g2$*bH)4yRkd26q*Q_{%5myVkiIKi={{Hzt-CS2J&1)n{3=($sXqy57$bFq$9eo0wL?C46Z@T5NcPbv3t zkLDZO+6`=q=kJ$ueCR{2{6o(7As76RtNf4)fjas2pSr|f2^_!SQwPr<_>@EPKe#P- zeNEZ=C12CLuPL{0!MEwM=Wa#&{E^0(`%~HzB_Cpk%$D6eU?QWn1(kv>h5^gA^!&WE!9-!eFe) zcD6h+KPDRN}p&#@@ANlRc4VW+!s&Oq68L8A6~!7~$?}W->D;cX!XFCEtwK zIrq-}{^}>erj*Q{JLk5TDz?*$JTA* zjGSrE9&&U$(29{W4`zp)-OiA!+ZD>`&I#pq=Z4(f?vSV36Uyt(3*~p`hYGq2LWSK$ zq2li1P)T=5sIRSfOLlxZ>A#b-gRM}n0@-haiLe<^Xp_=X*c5NN34b^qm zh3dQOLk-;xAz!yIw4r-LsIj{-)YRP+YVK}k%?7rqJf@&7m#b zTl6}EE?^osBMp)A8`%1eUbyPshB6rgL&`nrjI+sQwy#^pj=H>5L-~EjAe?vaT(_n} zZhaS*-MyP@Ad?`;Ml-7g|}9x-H)>teQ0rms{hBw_0_sSW{r-w z;@i`V&+4{*K{utp^wOB_yzvXVF}<(pSJY6aPoK&-I35XvkDdG#eR^EG+JoW9VDR+e z^SyzQNN{+_mz~NO&kUtbi*`>41$WEER zG#VHU(9durfcis$aIb#^rB06q2f3c%k-$)ZPq~kFbv^lXfD7`0-pEn^5I2a-%t+vT zq$e_t(iu+&&`vm#%A|sad48BrS)Y0O1UvH?Q+Db!A3Qxu9Tr|ex_T1*N@a%pX9GPP z3i%8v>l1;9pYuojDUWn^Z0MYSFvtnbSyRqlfA5(9*E7PSe|%&-We*I6NBKZcc+ej{ zlgbW{3kyO5rMHPDRf<5N~e3&|G zI~Cw@{vuG|Y$4lW3ra3Zk=F)OHxX!N?XogIPXe(p>l zFqm=#!#%yjA$)=0>A^rW_lpfLjy3xBG`!$%?%UYBPI9;@cM*jOLw*L`K3pTU$rQM}jTGd_Ozs z6@dnungnoZfj+o|*Ai>vgAe)ws9bU3tozqTkB$;&?g`8Rdt({=q>nO$ce8cxk}H-m^o)V?*B4 z<6i%eH#o!v&bP2iJMs1WAune1PH)$lfERPmJKX1u;8b0TXKnBF9`FvLX(~aF5!zh) zFrn$c7hcf1|2h_9Bp3<|k494F-ofE;05jXsez@bnGbg%wj&-&lex9#D;go|K?-}v; zp7r+!!k8pRT4|Qv!5}7Dn1HO;`}uRNXNE(8*6?7kFVNZ_jI@SF0=+@Zt#G6j%Nt)V za%OmFOUtIst>IuK&@46AIuaad#q1p7hWS?NGZh{j##9*Q!!0A@sbZRucrCV^q|sy3 zHO#l-+4cAfw5%jDSCoOi87pG`XD^UuSXXy~%DP4_+L0i&@O7xEz@6WxOAb$%j6X|v#<t1qT z_GiR0V&-$Yu>O)YW{zbPq3DD~uN%^vbTP{X{kSe7ucVkon&%VNm~}vUS9*eYaE7xD zIvu|^BCi>&pA6})@+++qv?#VRVTsVFvLj~3iW2jAcg#FslkO2*8{&^o^uUy~A7}WekP;(HwhlIAs|Mj8Xf>vw?95;YGr1A`S>-#S5n>l^Q=3UM!ojJ8s)*LTuPL#FY z$WP>LpX^w6=1+|+csDLOHzi#KORl=Ot8Okl-*MNqP+P>_pT5@iRJ2%~^ zxoN!l^exY=@a-cBXV-$Y>j8QPQox$B_ONB#)04{T=?M*Uqk{pQ+k1MxH0mE@h^r@+ z(bK~X_xAL#mronuO=;I#(ykx7uHz5mS;FXTqBBb9`-KUxy{7xbU@%+n=jNE7(XZ6$ zws+_kOouOYBANQ))ghrS)mQ}wOvs?)!5orwH~@0q2vXhzGTz*s5ioIU@OL=kAL#MA-#d~!0wn}tLKz=cnHYu$z#f(bpmc$ zdKgK}KZb$l3D&cfo3e=Xdq&6~0gcM@gg#Q{rx?v|VSpF(2~W6!RTYU71^@`$1o6Fk zdZI3INwi2geW(!Lfdo*~r7I|!G+nYK^GoUHQ;V*k`t5y*>b6AwR>}a#ETlX3<@}P% zXQ$78BQ$CHx{U#gRg|ebk@qvq+^?I!^c%o4(vJa}?rDcK{lcd~r)t-dC$dtN)4wAw zjtPS{c8(dO68iPpr6El_q~5Gs=V5Q4zjQjLCz^Sk_mG#D@=&mnM!oI}x=XV%HEoD) zm#3RVQ4fuKg-`AsI}_|Z<2~a)7w``EvU$uY^QpsU;h#n0DRUq+0_MsHw4Snn;lT7x znGdtP%!ogH7MNxTG%%Y!DGMJ6j}Ass`aqc84l7TXMT|ib9vjV-<`EGJLf$yahW`Kw zW|CEx>zTA9bMr4ZPB$*)R>yOz7jtV@3?@fW(o=Z(`1JA1C#O%&9Zq;QOzD%Z{L7AM z$Bci`G+J$c;V$;)4P`3HF0;% zeVyJ>^s%dO#faa}!#U{5ziv9H*Zojmbg<0$!%{ucRnwGUFN3!=I3WgVK!&f#5D#Sn z5Dbj&l|RKH5T-m}U)q-l`NxH?aXJtf0=Vn%52!u}!Tp!f@^w8M>M%V}99?@aH7Jf{ z)FX|rI`Mq-a&M|lub+7I*%lsEqAs5L7UD9fQ-FDHoWG#wYi|$%W)^?i4f_;u+oUGUB zQ#w9?+r+?$y!zT+_0XIYK)2E>RpvAr2-}gMS5Eiqv5T<sxY021n!27T5i;_vQCPwh0F9m?DU$+YbqwWX|3LBV0oLpA1 zE(*~53gPEH7(sb@b^x{dz5PM3mtIj|(&WX!Ad?IBlCZ(gk9$La1%#LU=lsDzKLi;v z3MMSt4y+}yopQs$ApzBcB$D$4OnYW{bdd9&2A>`p8DydupituKMo%-gkGMFw%CSCg zFIZcY=;Mb&=+z+6YJmnHXaOdGYVr~T(ITQd?^qD*J=(_5QP=!(Ls9{vB?y?z>#bMKRk+f-hFx=)QtuYh^y?i`LBQ(o{eu{_cY zFfqx7dIH$lyc0iwvZ~d&vor-w#+@bH=N`Q!5F zNC*RiNAIy#G9rphFj63a!xDX_j0r!2=kZ^no&oOQ=kk~P=U>3I9>ZSs)T9N(VX=v`hh#QQKzW>ZU=&2Vyv)O1KNfQ@ zu~6PY|9F5W$~H1QqRb+Y7KBK65>WEJNJLtL4^ze$k*p>)Y&3PGRU=~-RVJb3Fi{*p zh1oj0>-Ak1cP-e;lX*o;d3Eu;y17UquW7PFBo#nIWamzGU4CKug}B3uLUcCgK{*u3 zV$=kP2}jP7y)14oTeMfCx0CeNO|}zRGGjsk$kQerYvD9WPG}B1*akqXhSTbqsEB0; zOemXn#0&$X_(px>9YT#bCXAeZ!W1(O$U-F{pHfaHZzs&!B{2J#_D-ooXL8#RHSrY+ zXBcrx6vV(NOBj=kwCGW^=Bv@{wfk+n=G9pZ|c<7o|x1xyGxhc zwQ+atoc~(i)xLzg8N#r>eXqw5DhMFO~Qm@vll{1-9*#FZcwq+iwQGObfWy*3~s zJ=>1&0X7k>8e@jD;I#Roh>Ul%;5_6f5U@%*PC$F(DcvJ#p#Ah3KBNB?HH~&in75!o zn1*9)m`z;F@c?G}X%H+BkV7~DfE$Fa3n~+u%4&owFBLxz=zC5q!3Y*iP>Ggf%8^y| zybaV+;Jlycm?pUuQMBbf7jE%FnB`NEYh5ZSi46Cd&dS^8KQ}zehrN=c5DUnkV% zu9iq=5reaj&?HYsA|OO1k0`lQJ`nih67)k7MOdZQpz9X3zKq1CeoF9;Rfy)xkZzU6 z_#O%}Q2@Z5Rp%<7IWuohIJYiXx2}acgxlBvtY9dhP}09f7}qdiQV+#DA_RI7-+012 zVVTI7uuf!7WW}WaiA$c`RchJC?yaVi}x;C}1vwDZrpe;|!don5owW zNWPMGa8~Kb{LeCV5w~b+7028v3CXcnPge?#42-z8k*72B}TuSE~ES?~t?VJA5b7EVVH}y1TSPnG5IjSUb7e z&xRToB+!I=o&LJzzUeRJ(X5PYk{%P2@7Z*0rs@W^NcWUqsE1{cHsOhR9{G;BtKP9C z=6Mm2Vj^!Mf1)5};4|5bGsN}$URuD6B9zrXkn%cx? z#q7K_=0JX4%pL`Vpt~{CDSTNy`?_NgEl294w}R-nNUu{t5}$NO`Q=>d_kftWO%^lf z`*YQ_$*BMYB|x%-&Aku|5QityA&d-x7)hjdSqXv2mf(E@kszp;B_KgBB%;u*!IFho z%yE$JK+@q}9@a^c_-Dv_wCjlz-VvBtsL2jUiGWmspaSqbMQnxs2=*VS&+s=C$YF04 zp@ym^ZH{U5`H$Xk{a5>xFfT_J0;B4J3NFpix3sj6B(A70H}8QhFf-n zi|`MI_qM3({-1bKxB$ro-LkuKt~TLrc(?QB)u`ckx^C)Tp7! zo6@)Zih#7w%y|7&hWK%KlEU)D?|hyu7|1k>ccR5X!A1;o zK8xkz^Ffpey%;Mk&car)Ju2Zd36h4l=%MnH`F}-^&#VPQ6@+5iflCm8=aO&vcr+erpWoA!JS^8nfG7{!rrBcgD#gYI9Zgv2O< z+VCrM_GKg~3$vyQGvh#hJY}NqnbL<+CjVgnaLOXQcgi}<2m2W}Yi2{8$_Nhi4vxZL zLw}A9SIP)>mj8WfR(T&L$Ri{xt@89=fgLS<*u0I_{5G@u@9>cDmoSYk=_5wlLGs7k9)sy;6PuX+uz)I@x)~Nblts@S~{7kOS%gt zt)R%K+Gld7kIot2IEkDY<4o?&d<*q)1fX7U$p-W5Zx7&ZE~uG% zX1@Kslh;o!7VKX36kk3uePW?<*UhfGo`d%asuv0xlT~%I8GlvPGC%rW^m_E>?nKqm znT(GM%J0?qu04MB@nn6|wTY_}$%f|lvae?^S2xd}yK(O3`P=ymPd&TveD^}j3yJC% zlP#Oy3tkT{Jpau@VWT|3Tykgg4&Te_MT5ovn+PD3(ynd;CW4wIh z4Nszc+k$-?MrC`lpk%3F%VNQnDI+iS~tcEoA3eq=SDxSXuKY~ zdE$1>V(ZC!4Nb|$&B>;=<@!xGw%y!zYy0hI7oO=}c=3x1n|l)VFMpD0t}CDE_{6UB z)+TrDpR+8~KNk0H|JYNsQmrd&`=kaoKGR&%*E-oTwF?42$T;kEjQ{zc_jl-a1oWT% z(p^f5Lwq(cP}$Sj3l;c2KX)A@E#e{l=V2nYepq?1^q5=s(Vm)P*{&Z|X5#!O*=9=J z700$3f6}H$x&}`eQS$+*Xk5H%OUveLlB%0|uzG6$qN2mpw`L~Avi#Y}X+ z&oBWr&n(sq;bK-6r1OLcf;1Bm0}%6>sYTehfkc3?!K~CGVKOY;NTh6z-j}iP5mEg^ zuuf9DsIV$bG07@}>4S)qs}i6?xJre3<+cEo8PXL^GXbST-g*KmA}p;}2@eD%1kn(i zn@Ps`D(D{A3_wOhva6k@OCX=O>;GCD_+G%X35qDO>8OuK|4L8Hk^6FC=Cj!jgWh+1Zo6PBSG#ZHMC zC+f7M+wU4B&UXElz$IwNyg|d`t>`$9>95!~!Ti&}34ODI(${lrX~e9%Q8H#3Ak}Z$ zA(dycz$frD4UT!8npTPCk6C)KEQJHlWSp}mw`Ec|V~Gow+8B_zW2q(dSmvrp%Y^r| zN%sf<#7y*7;~73{^b>h;J~Kk{LaaBzl0&tAy^J*P3l8}QrJGFZrq=rS1e#iruc=@J ztvkPDRMjhyizK8YGZclyKQlbYg+V|PTwr2Cxo`cDybsBAzalO|!^CQ^2f$`r5E!yc zVkXp5Pi37e#0U&3AjTC4N}d)n6U&7=efE@bWOyWH4T+uzJV_jcvVTfv?@`&TFeI3; zhy`WMzb<41B3z))Pi8PisGL(qKgXpqh{lF-wl7nlzZk*wC)A2e6s1hm)082^v6dNu zt6|WZ^7M?dZzMS3yJ4AW8&+zjzSHZl-JQu^VmQ-}T447TwA%2pB7>mnvH0 z6|FZ+i3*aBk-^tgUlMw=tryQu8k3dvla|SG7;nr}$F1c_n}d-(?Q?mv$M4wclcnA( zCudL2AAIkL>rdR=k|^CbdGOK`Fs_~2cCmBG4zyc4*Z*$#ozaAS>ymv(+`i*x^`d<* zhzPPLOBR=-@v*Nu*8(uoZW!_RU#A+0{~K)Tf**J1~OWpgfqr05m|tySfFdE&m`c;RLol7!K5if69MByMuf-$ zb||73&csw8v#`vw0<38WyCxu919h?wbOuD59Bk=%*wVuy&oWRZwWs_lBFC_Ps5WK@ z=RzQospJlnD`lm#a1N~PE2S&tSE;4fT{>XWsroMiLI@<=vFZvU^-?{E-OK~vveS=u zW$;Ya{jd;u_;<+!uqAF42gcjVWid+41|(u*XHXdNe-JZiiOXO_pqU>t_Q+oi;w)J> zCOm~w&KA^3Pu05rsx8tgl}<+(Xk8X_1|i5@=LvS@2@?*ehe>>qc8IiSHbj^Xkrs8t zvgxg3_Eb!rHr^NxRgrZ-7OHBszlq& zd2Y8Xlydkh@Hu4M(E$%2X2+s78djqQ5f2GAL1fMy5KN%t7F54gOB<(Iqo(ZI_uLkKnq$pq=SVWlisDv2_Vhd&)w9MG0CDRJQZu4*!tA|$PJxd38Qr%jEr$hdrk+>5fK{4lDKi}1K;oFr^$vzp z`m;>7mC|!id~yQ0L$tH}4TTdy5(F(O+4x1XB{E02?k2+KKOq5OQ_T3LWqaAo*@S(= zq&{i0PwrUGty-wwe`{B~x-*e`a>0IbIj3Z%{mSv#E~rUn{>_enbC##~(Wq zm3tSgdx@x+8e6tzziz*1U&yPUFZf=~jj``GFKs>=-+Xk@dJH_+lDj(YuAVz^t>Y@Z ze;OyP%eL&v^IzLDv+0hl^qwbw@^I2!yyR|(yBj9kf00)PLuI#T0g?=NW71Q)VzA~E zB}=NV?3vv&pR-uf2r3uLymj)kl^k7u`KN_C zmwRgK*P=5Aps+10pBbI6dvC+_4U2_ar_3KaJ+cnB<%W6DwJlj(F=v?dO=TpDD(C9s zMH}F}WXnl9U9X@2>iML%@|yLkb;|NhN3y!{+U~2nZ&+>`64kqws`tgK_ub0)Pwt=P zC8|$Ob}ZVxNmuUVfn-k6<J?bGmb(dhe}_+c}G#<0((! ziWxUPXJ)@2>K{9jWB757_sCZBkK6P};r5&%64pL_hp$AK`$uS&9;M_MO~o9M99K+e zQaPu=vhd?7tD2NMaGuF1IaQ`0a=kz;Jx9sQl=M>4Psv$IhLEJJ5E3(oV_}LjyR^dy|C@{)xc zDJ`y9FcpA)&&|K^_`UMh8yn)~yBAC)4@^1cn)`KjbN>BOv$^vaeBg#hqNWnT=8kk zHgmqvTk0bXh;4cVw%WaOQr8D@)oWIA?t*(2+`EukCc$raXOM6yl}$Dr zPd|A`T+z{K29=pTFk9RJ^{~Qdg;AxAofDQL(FSu5vGGB*2 z^7TkMMOhetI@RI-if+)#5zO2eLre;8p2*hgCPnR#vIvh(W%dXds;4JRs1gHyL0A#g zO0;10^pL%dW(njsp~Ppf%gEMcW?veb;o{b&xOLn7xjWWv$wJ}_9m^1bRnLbP^S3<0 z(THG&`eQz8U9m0uvO%o9xZ`Mmjrm+58+c2;5Z0c*;v8tZh6>oF z8$f<%5#)EV43$g`j-`wp$>@=v1$IIYcSNA0y~MC4zVIxm20unnbJtatUXSpEUskxTQIx^ zLG~9jgLONhegatbN3=U(gT#}uv;);r`^s<3q}Z6q>qDHE0|YkG4mHajqn7RLJ7qDZ zvC~BHPM_}1*p4&6OZgDs zCXpi1k~FBI7SH|>!ICGDz-6eobUrr@V$MP;IOYl08h1m4cY{l~cY&hKDFWRm-6F~r zI=IS&yA3iy&D`aJin++OSFXMSz24+e2=(UjXHQHXg(R<{dhXcltCL3;?WH)sa(?#w zd}g9zvykDfAzF04_{P%-?{>;6TT^D)T`^}(xP6oDDW@CMcP@FF9dS?XT<;yvhWnYi zvdWc8U2gHp24*VB;O}*-7D*~llLYXY3q#5wV!hq~LL~G6WBfgCG2F0U_=SenjP0`XCo-g#~6<1f*-2ZT8o^+6tHhZ5QC z3)c3BP#ix89iXN-R6=)6+6p#!GUcFrCnkay=kkP+IdnrPpMGfS_7rLWqJ6DkDH3MV zvVoQEO_&uw7A@Zugi8^>8$|YQsb9dJgaXnIE&7C%1u|7)lPVyOY5#!f3C6Pn;^`9U zT>0f>dI4p#rTlfuT31mj3SFSxvO+^-C{#nFT7HK7WC+F~>h6&}cNk@np=CWw_#BiO z6N-c8__|1QNTPA;0Pz)R$AB*_1DA?N5mRb3YLrlVZyg|vnRdjCtS<(kF9WSmT)*`?Ph&=BV!I!Md@RC+o_@vn6{W_O(hnk-AZ*Ub7_ ze<}ZWn4zQy$XDK5I*ZvAsufSOEAvw|Gwkx3aA0OQR5QatcIa&6ZRq*$r+t6N|0mzy z@lX8zS^sR``VUOHOTRSf0Nr440|iK%G}=&r9EK&mZeW{~qx=r+P|l^Z$S&zDmMwh) z=@*I=8hCaLKrNSka8TSxbD082ARJcqm$Ruy!r7Q!R;oA!8a$d&8*Uv44-W~nI3rFO zDf<@M=KmWd|D6&>5;Gw;Ekr@NZk6cmXda^-`U1@O5>Dg+j@es!SsW<=^%4x^Pa#Q} zD2PeQ#3TL_Y!4A=1r~-T>Ou-8mwqn%yHV(jB#%?$M2!oy`uFKfCeu@95HF#yAS8d5 zdSDzGjqrpDnGime2^pdodr_2yvk_p#JiRUTH9W$9LKTvf{FoAjn5Ut_Lty3*P8o+o z2&ys6lomb64-nGcnU7pKX(^)fZ372>B z062s>&$W`PC5t)D5DB|IQ_oJ5RU-_RwoMO0hkpc4Ml-?L3Y$|{5#-0X zE-t^)FxxP()PVbD{%aesgGj(re zf)Bv+woadgB--U!a#h7$RZ?uNMOS08reUe3End@hqbpIfbIL^COf#qAu1W+BnL0O} zz2x%6UB3A$5~Y8y_q&0FYxk0Cf84eImV424IO%I%^6iNGcHFE<`1XO37)Q;y>N~DF zvYe`dhj4Yx+~Zf9m#VhLtG52U>apo;#PQ05?0@F;m4VrTJMIRE`MG)F!rodequFS8Wym<1hV{`sDPb}Jf zu=rfEm&Wa-3uSFL{7d%j3-;~IyzDnC8L0Akn2_o9V=a#t>wa3CdAz~+)9RhatBpUa zHshSXkDL6bH0Oz$5?P>MQzj)pqRCA46&A=~-f-V)G9T9e+P+odfv9LN{^UcVCm&Ry zfz@(pgbUL&$KVXeCwP-~AXlcYlv`2Ak#I+rsjR*uLDOz{cdYX?vlNw=-r zvRS)jxxPK%;4H7nUR>STWC4~kJqiDbXj>Km8^-JjLSXni0*pZSJQY7G&&wF`R`wL^o~p z?aMj?L4I0O&^o3yg`Cw*Aw%6%Rs$N->{HvCK5b3!(>7I~(4lDMZt~kkgQ~8*P+#@Z zz6QKZ)n3GF?KLXjpK)(={os#~qz8YA8JM{b&2@Hw8x?sR(4CsbMVcIrru?XNmz-`Sr3q$;XktOe zcqpY<-}aJAF>$9VMS=;P>VzpRLy*731(VaI%sn*N&`2X{Q16+PnYl;62ZJaWp)4aM z{w*#go?P&hWn6pILDN`f#LF?ZVG{5|J)EV3Q@ZI=X0p0&!CFTuf*I3WRsv{`UwmA$ z=f4u14JPajf=z#E*_9)+N9GQ^`S@h}*Pnn9nO)%5qa`nV(cc_JsNR~o#-`StyY}qc z-%?%M^WuxK=9gB5i6St>rUI#`MYmAB!VXKMJQK>x(*SkELrdwPJxQcb57PPyNNY?0 zt!bkQ^Z>?~GZKq&ULURmD+Swd@v4|zF>yKWx!DzCNpWRoS1cwfuFUMpO7+0Zngn6B zT#B)Jaw&n)vqa=6iTBU|wn_|BFx3j1DhuT&EU2debO&SxTpBxQ;Se2C-5$)7Wos&> z6l{pheX=ny?8dIbZj6L(?0`Vp@tTgye%C44(&1Z?ZM-Y`*YaW!Y}A?h3^N~A=0ZSW zS|@|SA!c?C;K`OsWEf%==qiPkq-EpkKaI%3)K-x9Rsn*+>kQ#jDQI?}iRtsW0Ay_; z#N>kyx?nmBYZw+6Hv-}qwk(Q4k7TwXtjyJgS;TMFVBaVtZ|D+(?y~repunoRY{h`k zC_m^%vRYv#%|7PX41a|Q-7mL;1pHG++`bhwXU9zYT-|)_4bQT>Z06kDxpzlzbiMP+&5m1#Z?`R! zKbdepwP1fr(2;LNZKC|ixgY6fmTqBb8%wvcbQ}LQ>gOd^nsC>up(Z&O8)^c21U3|q zf$6WtHMmcQvaqF3LDDk}rm-_>uC1-ze4c4SCO0ML|m_n<#? zn)C0CmTC==bax+(60M{Qy7{p`bKiXG2hY9#+^whnwEIsh?zA2i}}}N zQ6wgg#YRH!AbX{of+AVZe8dt&~a`V2C2dxYu z4RudO^iQvf&>G6bi4l zQ&Z8q_No=9F24=o$Z`v3ELS^kwlC%!!0X6yk2+yG)eBill_)F7I zOdpga>`z=ceBYF5u3yR5<&;brh$mhs*>Q9858B=bYrOx$v3q9ECkAL}9vF3&Ja#5P z2kKidx+Nbb@$A7ePSP!C*5MowHk~YLIMZ831We9hb~fhMGP@CR0Twn^E(56;G8sIA zO-q)^Wg?#x9BGHlBV@BM%T5+%*~P*vBccG>&1FHA5hY=rcAXOZL9k^Cxtz!Bee$u^ zb5nVzmK`+JQ`-FbV(vAVF+G z{pmHJw_Njs0cQ$W;wf5WG>I&?lM%W3ET(6CvYP8FHbXPO(8z$XV$N;V$7Wb|~_BE&Y+I2K8E~ zA(O|dyM$ud!OZIkiLnD7bUH;xq(qh&@QMXgKdRPb`8G=|*k*Fbw(_U#VEOttD8+TH^j3!X_Z%MH8*iFyzJvxdy*aX4cNOPZ4b2 z$i^D3tzxit>S6l9K#FL8%Am;0k{x;jtkA`$NbYR`PBbB;R>WQnjfQ#%R)8WAdWMYC zpu52?2-z}-qB!7Vene3aU=`q$5{@FhTXemqYnwK%8OcYP`zaMVM2)yd(1vQwoH7$RkU8c5W;*EPjWnQ=rRFPtvKSNMu616{r;@bl&!^Q0Cxvsc%OWeBWM&BLl9!Y9T zf`nv2IeriXpls5#Xf0gMEBwYY$jDkQD!)=PTkHtA4o3i`U%?LOgL1mmrg5M z1>Yg97WoYRk|`Dy_tgg4jS)ex+rP zr}*iDHGkHmqb*{he=dWOE)l7-V0Xm+Vl^|PUc{mpqL{@}C=|l&LeOBi!jPDX@z5wQ zH+7oX4^zw-!5amJ#a)nLu{e6fA5)OXAdJd_Fj&F5q~I8cK@5KeMo1v6T#G6kFq`v? zLl2y0oPSsa4}g>{Fz!O{x+rSDwMQgPQfA&i)E^M0?{0jcltp+y1ojsek%jXILZtFy z;YFAihZOEi9~Af}nh^jAY^JAN$Gutdbtsr{-pI{4x>eaMQu+0RAi~3 zK3-7&bNEgiSauaHxx8_gci!}#?YeEz)dqe9PMHTT9ZlLDuOGR15@a@j zhESf5V}49UKsh2+Ln0;!4=Z506GG8L1n9O?Vx;7442c*|T9^zpO43|#^iYfPM5tb8 zBB%>Z&@4EJHZTjaS*VY1mf;)Yn|6|CZaLI&Gm*RY8i+=7EAEk}uyEh;ddJ0%uOAh% z3yT#)C-qk&FvGxC6>`<)LfYSGs}5j;$Sb_4a6qP{5}qpn4D~fY7>tZ$(rG;-Bh-`$ zDCsFM!gv%Y(~?I%s*X$=DbJAzFFniwA|5G!K$b;HIS}_izALe6447(|t7w@Fr5Vp? z)zUC2R{DkUsZe?$ovH7?jNQHHpQ?9|ma<(e9$Hf}FsRmT0s}CH=p|pk_ogp?O4+oKuYmyNj;cdy@8i(N%+cQ?`F7(PbB}lnNT)6|*iUPpEy@RrC2j z6e;(FI5%$`*xGI~{?K~BcBs|xp*t5BAGYSgm*^wC5$7M7%w%GaY+j_RO#r%ATwm^)H1&128Y>xH#L)^ADUo7PB9S)!G+4myX=zH<>DsLQu z91MDF$H{v5LQ7PttbH)Z`e?fhZ`+3Eba!>D~Ax0mm`XwzT9xxSJhXx2DMle5=!a)4CY?$r zL>w#0sWc+7fG&`Gpf>&i2_fl^Bvw?8w1P)LgoT=_4#0kxBx6t;2@hhMZZcv7y&9^A z7_2vfZRJ4nGEX`oz%t51(uKu>K-0q{AeXzsYN|+-XffWoHxO3Bjx$f{=Dh^AGx_}( zNS@pg1UE?ryA{B^mu}p~v|=Dwq;mx>?@y2$rYS5_x;aGXuX<9new~$+Uhv=0B6<~# zVG((-AHb5W{En@Bu5GD$Z@hZ%&G2INAs9$qY`;f-zin}M+l^B?*wJ#+I94==O*an2Wzr%uJG)g;C9Wjn^A*Ah`1Ge*m#mde7;ev`t1PZU11Fu09Xb z-2R}d?4Zr~L!0?vUdAek6-oNoqWv7hqLvye3zDhdnBoo5QSlFcNK_;3z@jjvW#LkL zu||bE@HwZDOSe>gk|nERt!CI$YmjQ3i8D(;L$KE-A1y8QvP2vq>_~$= zQU=aCVU6TV&mACzM%uw;0)Qf-7J`b1z!kvB3Y3*4`pIJEd)q}-Fzsz1sFkr74m8e8 zP{y1A`~oWDiBckI4dZ>8Kdcg>3H)Is*gHDtU!!pLhUI;En7SAdSHX|06}xo+0a|Gz zTY5ywDuF%7VNDd-oqq){mooN6MpF8nEGhz1`=v5ToIgk+p{{7P@F;9ziH)e`a0^1D zx!SN-fEW%z4@_&7Cxr?BpDFn-l=q=bM9xMYgw&0nDm8LarSm?;T`&Kx?M zvNBAMpc#BMHLzNtoYMC&(1W)iu@%j28g=0i7;Hz6y5G_Dm@0Ll_X*tGM_UjqW$ApI zZg}3wj$3QRD3t!WoVf#1U`WqWQER-Y^+t^ldmvtP^mg0Q@!mN87xgaMxMW`O#SV~? zOAhZHhZjo1it80OJwGUWziiQWM7Wt#w3Jg5 T~y7to5mlkujh;>{Gg&X6JjpCJi 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�+yx#0(=^R* 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 P_2GKmzjve^ZZ`aXnBmBB literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e8149a1274049f5b62ece9c046284beddb84dbf GIT binary patch literal 17305 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19099a7d04833f8956738bf50064f61deb4ff90e GIT binary patch literal 19746 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 XwVJv(-Ct`s3iXz*blqR4aR~oED})UB literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7840ba1756c91375c847b9e0e714bc7e3105732d GIT binary patch literal 30337 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 YtqljFCF^Gm!SX0qxU5t26$}adKR&CNA^-pY literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b426dec6fd9603407fc912570a8dfcaa9a0f2462 GIT binary patch literal 52538 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py b/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 0000000..ca561dd --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1137 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import shutil +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + # Leaving this around for now, in case it needs resurrecting in some way + # _userprog = None + # def splituser(host): + # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/database.py b/lib/python3.12/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 0000000..c0f896a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1329 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, read_exports, write_exports, CSVReader, + CSVWriter) + +__all__ = [ + 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', 'EggInfoDistribution', 'DistributionPath' +] + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + try: + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [METADATA_FILENAME, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join(entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, metadata=metadata, env=self) + elif self._include_egg and entry.endswith(('.egg-info', '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + except Exception as e: + msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' + logger.warning(msg, r.path, e) + import warnings + warnings.warn(msg % (r.path, e), stacklevel=2) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + reqts = getattr(md, req_attr) + logger.debug('%s: got requirements %r from metadata: %r', self.name, req_attr, reqts) + return set(md.get_requirements(reqts, extras=self.extras, env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and self.version == other.version and self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % (METADATA_FILENAME, path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % (self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + # base_location = os.path.dirname(self.path) + # base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + # if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix and path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append((path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException('dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + # sectioned files have bare newlines (separating sections) + if not line: # pragma: no cover + continue + if line.startswith('['): # pragma: no cover + logger.warning('Unexpected line: quitting requirement scan: %r', line) + break + r = parse_requirement(line) + if not r: # pragma: no cover + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: # pragma: no cover + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO(zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode('utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % (self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + # otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + # self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if label is not None: + f.write('"%s" -> "%s" [label="%s"]\n' % (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires | dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + in finding the dependencies. + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = set() # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + seen = set(t[0] for t in todo) # already added to todo + + while todo: + d = todo.pop()[0] + req.add(d) + pred_list = graph.adjacency_list[d] + for pred in pred_list: + d = pred[0] + if d not in req and d not in seen: + seen.add(d) + todo.append(pred) + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/index.py b/lib/python3.12/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 0000000..56cd286 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,508 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: # pragma: no cover + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): # pragma: no cover + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): # pragma: no cover + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): # pragma: no cover + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py b/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 0000000..222c1bf --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1295 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, parse_requirement, + parse_name_and_version, ServerProxy, normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf', ) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl', ) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, params, query, '')), + 'python-version': ', '.join(['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, params, query, '')), + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + # urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) + + +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile( + """ +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.daemon = True + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + # logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', pathname2url(os.path.abspath(fn)), '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', pathname2url(os.path.abspath(fn)), '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], + info['version'], + summary=data.get('summary', 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': { + dist.version: set([dist.source_url]) + }, + 'digests': { + dist.version: set([None]) + } + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 440. +default_locator = AggregatingLocator( + # JSONLocator(), # don't use as PEP 426 is withdrawn + SimpleScrapingLocator('https://pypi.org/simple/', timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + # import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py b/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 0000000..420dcf1 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,384 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + + +class Manifest(object): + """ + A list of files built by exploring the filesystem and filtered by applying various + patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=True) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=False) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, prefix=thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + if ((_is_version_marker(elhs) or _is_version_marker(erhs)) and + op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): + lhs = LV(lhs) + rhs = LV(rhs) + elif _is_version_marker(elhs) and op in ('in', 'not in'): + lhs = LV(lhs) + rhs = _get_versions(rhs) + result = self.operations[op](lhs, rhs) + return result + + +_DIGITS = re.compile(r'\d+\.\d+') + + +def default_context(): + + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + ppv = platform.python_version() + m = _DIGITS.match(ppv) + pv = m.group(0) + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': ppv, + 'python_version': pv, + 'sys_platform': sys.platform, + } + return result + + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py b/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 0000000..ce9a34b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1031 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and 2.2). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', 'Summary', 'Description', 'Keywords', 'Home-page', + 'Author', 'Author-email', 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', 'Obsoletes-Dist', 'Requires-External', + 'Maintainer', 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', 'Obsoleted-By', 'Setup-Requires-Dist', + 'Extension', 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +# Ditto for Obsoletes - see issue #140. +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', 'Requires', 'Provides', 'Obsoletes') + +_566_MARKERS = ('Description-Content-Type', ) + +_643_MARKERS = ('Dynamic', 'License-File') + +_643_FIELDS = _566_FIELDS + _643_MARKERS + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) +_ALL_FIELDS.update(_643_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + # avoid adding field names if already there + return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) + elif version == '2.0': + raise ValueError('Metadata 2.0 is withdrawn and not supported') + # return _426_FIELDS + elif version == '2.2': + return _643_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + + def _has_marker(keys, markers): + return any(marker in keys for marker in markers) + + keys = [key for key, value in fields.items() if value not in ([], 'UNKNOWN', None)] + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.1', '2.2'] # 2.0 removed + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _643_FIELDS and '2.2' in possible_versions: + possible_versions.remove('2.2') + logger.debug('Removed 2.2 due to %s', key) + # if key not in _426_FIELDS and '2.0' in possible_versions: + # possible_versions.remove('2.0') + # logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + # is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + is_2_2 = '2.2' in possible_versions and _has_marker(keys, _643_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_2) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.1/2.2 fields') + + # we have the choice, 1.0, or 1.2, 2.1 or 2.2 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.1 adds more features + # - 2.2 is the latest + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_2: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + # if is_2_2: + # return '2.2' + + return '2.2' + + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = {name.lower().replace("-", "_"): name for name in _ALL_FIELDS} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python', ) +_VERSION_FIELDS = ('Version', ) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', 'Requires', 'Provides', 'Obsoletes-Dist', 'Provides-Dist', + 'Requires-Dist', 'Requires-External', 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension', 'License-File') +_LISTTUPLEFIELDS = ('Project-URL', ) + +_ELEMENTSFIELD = ('Keywords', ) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + + def get_fullname(self, filesafe=False): + """ + Return the distribution name with version. + + If filesafe is true, return a filename-escaped form. + """ + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning("'%s': '%s' is not valid (field '%s')", project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, scheme.is_valid_constraint_list), (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.1 + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + FIELDNAME_MATCHER = re.compile('^[A-Z]([0-9A-Z-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy', ), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy', )), + 'version': (VERSION_MATCHER, ('legacy', )), + 'summary': (SUMMARY_MATCHER, ('legacy', )), + 'dynamic': (FIELDNAME_MATCHER, ('legacy', )), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + # import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + # author = {} + # maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = {'requires': requirements} + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, self.metadata_version, name, version) diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py b/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 0000000..fef52aa --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py b/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 0000000..b1fc705 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,447 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys +import time +from zipfile import ZipInfo + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, get_executable, get_platform, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + +# Pre-fetch the contents of all executable wrapper stubs. +# This is to address https://github.com/pypa/pip/issues/12666. +# When updating pip, we rename the old pip in place before installing the +# new version. If we try to fetch a wrapper *after* that rename, the finder +# machinery will be confused as the package is no longer available at the +# location where it was imported from. So we load everything into memory in +# advance. + +if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + DISTLIB_PACKAGE = __name__.rsplit('.', 1)[0] + + WRAPPERS = { + r.name: r.bytes + for r in finder(DISTLIB_PACKAGE).iterator("") + if r.name.endswith(".exe") + } + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, source_dir, target_dir, add_launchers=True, dry_run=False, fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' and os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or (os.name == 'java' and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + elif getattr(sys, "cross_compiling", False): + # In a cross-compiling environment, the shebang will likely be a + # script; this *must* be invoked with the "safe" version of the + # shebang, or else using os.exec() to run the entry script will + # fail, raising "OSError 8 [Errno 8] Exec format error". + simple_shebang = False + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) and (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''\n" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join(sysconfig.get_path('scripts'), 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + if os.name == 'nt': + # for Python builds from source on Windows, no Python executables with + # a version suffix are created, so we use python.exe + executable = os.path.join(sysconfig.get_config_var('BINDIR'), + 'python%s' % (sysconfig.get_config_var('EXE'))) + else: + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp and + '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable from utf-8' % shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict( + module=entry.prefix, import_name=entry.suffix.split('.')[0], func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') + if source_date_epoch: + date_time = time.gmtime(int(source_date_epoch))[:6] + zinfo = ZipInfo(filename='__main__.py', date_time=date_time) + zf.writestr(zinfo, script_bytes) + else: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith('.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % (name, self.variant_separator, self.version_info[0], self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' + name = '%s%s%s.exe' % (kind, bits, platform_suffix) + if name not in WRAPPERS: + msg = ('Unable to find resource %s in package %s' % + (name, DISTLIB_PACKAGE)) + raise ValueError(msg) + return WRAPPERS[name] + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe b/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..52154f0be32cc2bdbf98af131d477900667d0abd GIT binary patch literal 97792 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

XMwe#*Lv$g8jIpIBEV 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 w+IyK^N3WCD*(>mhAj=irKyR>D9b+D<@QBhV6U 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

qx{CqlSNQ_YhQ()VtG-D; zr5lI9)R#U1p!6O{09=;=fRE;++ahgMU9m>r>GhJCqCPjcolnm7?b6 zXmJ0clci_tKcy+ro71-_A?V?|#o#w>x8Ao;$1+|wXC@5Pr!PC;%EMH2p`OBN6Kum~ z)Qs9A|CsUJJ=T7p(@S@Y4vExZ$ItG_-;5xVIoaAFh9`D;5Uh2$-cYvx4qpaBKT5%b z&zcMb&SFkqKzo9TEDAtK77KTZ{SC>)>W7?Z=_FN{$*9)yTaE4@&qNlFu zSym~1B|O$c{Ybv3KGjUo7AuGjuA9uD$qbszpverT?(&HZ7Z1sx*jk0It(&i9w~sFC zIa-n3H{j?{)&~e9^-HlYei0)#)>b)kMf%T-2;a2$q#>XRoX%6C$>}{&qsDSskBk%= zU0WeMNzAwSpa%VynEl0hY3>ud<9wD{wRxagl&DYj0?D|Ki7^c-pnUzSTFQxDb-l%}jh)*u17BGYo^NPbe1iFcvngVGh~ZQlV9# z;gR^Qv6{u+2v+u4T2p}BXz=5(Htq9>`C=^CseR`|Ad8tOw%BVJv*r5=&7Hm28#33& z;NSE0QcKSvJ65tV%%6ENcaL7WA^j^=jr@q&77bc;^CO@oz%YUz-j8u@O~m{()VD7K z!(A6PKackHgiAlo6v%7v!-zKHQ<@iwzEAYvH-IXV?JjEWKo+}imJpod*fVgF+yhrG zwbJ)9AgRy|-Agj6B4CN6cUGuLAq0^jYOhC^R~QjRe7;O2W%j1uQd=mFhN3}){|3Ug z#!r-4RIBk~iWt`v2lUc6z&}QezWwPbPMR?)0?z5!tU*MI>Qc$^@m3x6KuD98pS18(yVQ4{b z7l-d=>uM3s9d-FeWex7Y&7erGN(5|JBBrF6iHi>kM0sXiLHseXpjWfMnQL?`#a5Nz z&>{cLwd8q~jEwvyob0vQ;D&@K%aLYbgnTVRQuVy-!zr?|Q(Kv*XU#!Qe! z*le@?r7wtyjsbhLm1Jlu+q9LNCW-W-oOiM(iZJ50{tFLXcD&Qs@>vQQw;96!qnw+1 zvZ!SgGJ=fVr_9o`S(|$5&m}(LXSj1%Wxx|gDa*QZ;Ey4*-~80vX&kWGYj<9w+>;C0 zX<{Yu^6jDKA3>?ssxVZJA7`PSiuka+`^0mjD`ST3|M_ZJ0>5M9r50u|kd1g?9sE1r zjOmiBO9LM=LzaaG+REe&*z}hEX+uzH3(sKnFq8LD|gZ2UDEz}HJ zT&u?BxzN${9BUp60R5UeDh(@$Odfms-6VbuE z-}*d^#@sZpr)&{apB@9r^J4H?;&cR(sv(X)h+0h5;)zFb4p_GW2>n6hGC=`^fB}cN zwfGp33++Y9cU7BR7>`(!iLut%;|7UvH3iwAzb{jQ;Qp>q>BUhKYjtPhybS)FZMBig zaq;4a*oeZxR)k{2bsQkMwGrC-2)oyK_M&4(BqC1QGNmWh%lV>u30034#wE69#MdxR z+JP%ZlLb*NENUbk|1Z?fvZ4`Fs*GX9)(x29vg<0t1hKBtH!*M4qbTFXgIg020N(tCWpYuxe6 zM1+CJ2gT!75s!PrUT=NeFFI$YpuVCYk!!Ehk&A=wx_xYtreni!bE=g-t@2eD1DHn^ij3B-~FIB+IG|vGTu9FrkU4Meb3%Gq292E z-j)uGBG*dBT(02y#3ZE-Z`Iu!27u^LK(y8E>ziKe3a}ohv!=}*jNY0}9d?(d9bign z9>M;_qk5+od*dUdFssV!kGstWOOSu}ot5Ldir!VvdDz1`O8Zjbi&-hh6XywDX=fe4 z!(gykd)!WV^?(7^Z~YF-Wp=_Yg|7=E9B)~ONh@Rr$Okfq)8C6f%dv|><)TS_!TN#> zUTf@Ja(A%kETCO;5_2$4HtWJ;t{|tw&Rx@ zQ)eh}&l&>mDPI7tsIo^_Du9nL)Iv9_8;CDC2660*AXb=Fyo5NNqwG^>I;E_mXsFIm zGi>EcE({i}oebz_>owcZ+g|2fH`f^N0D3>5ZwK_ew%)K0$cORj%S^Cdrv)%%{bR5t zD=M3rpiCC{;QAgSOE`|$nw>FoPqgi@2M5>J=}9mIc4nFvy|0vgV`+JzD{)ckn&H+x zEUXpI_jvY=a^I?_@W$BwJ)okm`;_gI4%*@J!j=M=vMZoG1WawFS@=F>$N6mkT#7kF z2CG)#e)xDqlF(%uL$@L-Z+1rfPRSRIm}Y!FwtxwOd58ZKgDAQ~@nAd+6!D@RHc`Cy zrfw~S#B({!<{H9YXO;qJ^KZ=a zS6RO{&)54hG4ma!F;DSM>x!6rx7pFQ+Y@&04vUi}Ga6kHk?lnp_@mTMp9XIX2jABk zWm~d4(!$YK&EY+D)duT{FUjZ~Gjn{AUh^uw#;6rd=5-mK$-D)kW?`4Utj$48+oJL7 ztGrYxTVFN2z?fIavS^*7TFC5Z`@ka#o?e3_(3WNF!ql;Sw62G-=OAp~410oGhL48L z52SDl_;y(bPyn$C%Br6yG=s9V6zK{bY#=V@csg+6a#VciEZL2Bqi2a)m8$Lzqn?TW za{wK`%kl*oAHq(t_2{TU7C9C@kOh8ZSuWTcxIQ9Wix5Z`0+#@E{jCuB-TdMOh+-pp#!6NvRx=@7qP`JBFQ*}6s_@1293}n znw#t>4KJ#f?OMY+UZTOS`)65Kq7=qbSLVQ^?n7BJ8C$qyNzB|L6F)^h7K#&2$x&Ys zfua9sVxi@umQitr*7z6=S-E^Ai_`V;-U~aStx2>+BVjX;ZIA8fU)mGX7}Csw+m1@B z<3-11Hvd5jw4J!f`Xg`QWFT`+W9tKFQ}6;QHqrVa$&MP98DV`}eXwj@)+vM^W%rj^ zLyWab#mV{yl?*r_7*27dLF+#N19}|L^Swi2T__(gL&ZvQK!keQz#uYuutz$}eBIdn zN%`I+WsLru#Bl3=fH04s`ogAexKISwn~Nh2yB;VA8G8_bK;}<>y3{L zX{+`W)a7?fFA>A0R60PoLD=k2+U+Y?Euksg#_Lj%|83(G8gX=>V?sp8>=qN(f#W2J zo3UqPC5aw{1%duNtltI3p`5tKIFy@s!&;F+uD~a6V!PRDeGFo7e;(8L}2`hL#NlA|vk{aIIIx%Gy82RrT`M@p@6*#lD(nxh?97m$N`Fid=r z8F-bO$crVp1L|*?vuQb-_!sS`YH=w$4nEF(E%`!L6;Stz@?8wSvDfj6pKSSxju{Pq zi!7G8Ur(MY))=>*Jk4x}^Elq{9iooE3L3?s23*%jsLN@<7$d-86*G<+w%JwgMmmiR;bFn>)52F;!z38@+*nNnj^SFz+-4un5uVsUEwWi|psl$%;eX+>84 z{6e)qYxj+mjGLiK*%9;WM1FrMuX$>TRyqnvjr5o^2xL{*>n7mta z@ruK0?Tv{v4J3TE5$b*f`&XvR%o;?ij$^jFfUy-?R{F?jYdxj1M0qnEjOfT**&8Z0 z;+I;*=gXvTBA)gK(1t9HH;J173D-el(2R#>GBD(sVljvpSQou3%eaP+v}0pgvk{;W|btHcZS6pI=nW=>&zNZrPvqj2PDQa*tF zi>D*wsvr==+`EDk-x!aWdy51>;yXrvh@~dKPm*X8XcEW=`?b}v3a{~YPW%%3{xTz3 zA*sFL3dE!lBy|Xz>CcR`B$C}}pV=Yf8Okydr&w)d2mn7BEMT3FeS47EgMAo0(x>8u za=7RzP%CzkGUCwxgaGnf^-Yp6^`7Ts%c-1L!;@f-U6~8@8qW{-(A^!&D&+WH;=`5^ zOj2#7UYvNVe3#MOKvN^{A71%HKQG$j?a3!g{>GbieX*K~GmNPbOkz0+k98E`x&=F( z%lZ*gq2oXs|0a>=pN|?SIzC(UB`FGHaams*Ec(eC6nz$PX@%7^S&?`_3sx|f^`*C= zIlumAMv(M;pINo$+@Rk7c~sz-oh>WAFl!iPt&qc23tGUJ%ld40ma4380t_oPpGEX0 ziPq2IM7`mX1v%PEjMgC~1BbQ9M$R~hRdcJ=v`eN&Hh);SRJ%{AJ<6ZVc(dPlUSR^q zGdZ`DxY=6F-xZ=EJXs>tO=$m9JXCBBBsInQp#Y9HlNMP*bYJL=>1vX)siMCy9?n}a zVJw#?K$Qp$bCd@TYmeA)=UAy*@Co{IYT!aN)!M|Pl@!I%6=NHhytF!OLfyzprG+QctpM$N>)gJ zNzYO;J3L<@aX4nL4o{3XxRX@q{76cKMc(zS%f2tP{nP#^4$J2$rxv>P6{J{+Sv-Su zFz`br+4dLlVNCroh2RfPxpOFI`!6D6m2{<;!KqSb*;;`e#Y>&ByV)B}-cuY+E(*wb zyP^Jys%rBAZ?$=$8A88!prX38uiAV&W`2mt?de*raW9QTYrd&RlQTDPOs@-fZSWG! zSSH)KyH!uk?I<*-_s4=g+M`cX)SP};-i;@DHy+G$X$?P+w_r|uob0(Qyr}s~)ZJls ziTxx=-ox=_54ma<-Mc%1+%@Nv#3fU-Ad&{yvIh;y2oTG7>aSSGtmggg`9o zx7rK^%J(8jSC@7?9f$|Zw^xq6A4ldjUNgklTI=%793J-<+L*)Je8I7ciZkzF8h5vv zu?`<1_AqlnM`6YtMh*vWgbW8SSu|U>iMHF5r@P-Wr{lTlsjGCbw&+6izqltHERA0% zFTr~b$EOf3j-U=LE3 z=)XN)X7ty|Nu0&(QGTpm*$w-TA1Z8$eg1_UaY_`0%%hqJj zgcoZK?WCfYH0)fZ28+v|4M-quGd9B~}BX zoHkN!Uob6vk0ljq27@q;m#mlAs#rCR--ks~Y}nAkgnLib8W%e`5{s@H@W)jH9@W4m z>+5VJh;TBS1%Po<=4zyY+f@;7w#bZQMSK()l_{mj4XTI;y&~w8s3KZpfz#PYiusNM zC0tpqHGXsiAX)FY_co)puu@^ifqEv|diAT$ICfIR_ITJnS*r7siQ;5rLO7Z5#*zs- zTE_z?3tYjm5G)Xd(}@Br8+48;yOKlS*)ywU<-1ZdbF801jaY)j+z_1lU5r6m3SLX_ zbRTT@8xjL$T-M`?bFMM3r?;xuNX+i5Dt6T~x3ScWBSyb(u`hLv&sqTPL3x8P22O}v zEEUbspRxnK^QK5v6DN^^)bg3MAui=EvSz%+Ht0cA%PhtA@&JQunL~Z+mjP*H0|!Qd z;lq<@Dp`mbp)-zl(N>l6+f)gL#bk${ zWHa%{7r!rd0(=qSRFyYa5HGb`qwX%F|Gc_SQ=z>^|ER^on$dV%?aSK246|9(ZQ}sS z>y@qT`V%2D+?J<&h*PW!pdQg z+Q=U)LoCI1GKjwU1Zc^R=fzU9d=P37kU~j#jpIYa1bM>0A@R}6KI(>Is>@re3H=eH zT1@s3>+&Dd}CierTvK#5cNm`NV>fVpy-I3hP1G!w2axRfwmMP|jpiW}Dw*A+kJ5 zadpQ}!K0ERP8qh`zF(1VZm}{ugzpIbv}3D%G4V2$Oe&#jDKZ|xHlG+~`#Yq(DzlYC z7!Ft`SoQT94$XP4l*;Z-XnX^<-+)vbT+0rQMDG@TV|9+eXiPmNmlqsxe=fw9dG$mq zTreO{Z`=-WC>w4Zndj|&7lFW7ikuYBBfRW^mMK)XPMb&@*exJK&8mg@IO;Tbnd4Y_ zYbhnVoKrP%UUo^o^^{tYV}<#B@CtJ7ImhbuW{RT8xkp@?Vb*4{s9oe^RQN}!lrg?& zQsh9d8fR7?#Dy{SG62@yyI@Lh5u|T@4r>KUZ%Q9!RnsgOLWdi0tAeYKektf+-Q1if zV`}OGa^WO-_O^`6+98G%Svum|#I;%oA!-xdKPgSLHKVbd&SA*?G+6 zp?E9jeqy!iRX zhr{p~ZH!-Ry?sa~LAZu>|2r_vDwe~x1N3JWZRC-Dj2x0)bdoxFWH<^k`B~@tukyXX zdRg%=Ec+k~%`aUCi4YtM{&{SS)p-8Y;&N4fH7|a$$ZIM*Z#RP28abR}9rwA&BgHs* z8B5)cNPKQdM%HJA)7ynSl-GnkWgheU3t_kxCs%WDJhr9}(;a7769u7EwcA?o5?Tyq zA1}&;kI7tN9P-9T8HYy1alz-s^W_Z8l+3v?b2VG5OP%b{jo-_=i;{_x!{)QH<#c>o z{t6Z{o-nL=o@7>ZfID?yL&@$+e7E*H5=7x`u0;)z=pZO>$2B~C)_N0 zl0uo6tbdY$nZE?c@`3Dr%-t_|NejM}C^CO6eVJP^Zf88^CLY1J;v)s*;ef0)7DGa@ zq=Gm2mex3&&u~&fnLZ+t0OW~ELpTDob=(FGaZT)poKAcW#1`&kwhJkM-wnA<7`Ts> zCJI74UvV~Nk8qec%-NoN$8t7F*){>t0>WpN(U*Dvdn2b}6M8l?hQbhXHaX9YnW zi`|fv9y^ zC%jPc2>fe5V`_?Sc!$3Pcib;{au}ITM8&ENtN^R6cpx!eZWfhN6lnxHRb@AU%rS%v z^)OSm{{~4jIA57`bEsuB+(C>*w*SkjtTN|jZ9mQ&S>L2qwnKQ5&uZzC@2t%azN0k| z-OS)HI6F*D4vs`Cgd=&Zf2hJUb?58%&et60>j~#;zVo%*`BL#%9&4%dwZzH$hWaw= zL7S6si<9t_B&0lt{=p--f$ng!*e}Q&A&ET>Qkf-FW=Xc}GO0SD#~z*-OP#ylCKcVk zOezku3aPk)O7jSwa^~a)r~1Gw#!JQYG1VtMO1FztLb%={WoBh z&OF2~G>c|XLe23vs6Y#+ifv|-RVZS$zmBx*96O6B-`WIGV%r=Lha4DGq;%@4Vr!Xd zdjrke{#SlN<)o)}oXDu28|8tW$HUb-87%0NBu>$3<;4A3UE`wU8grj@%_fEYqSL5v z`%kCMm_$Mr<*V;e(udg{4X)K5g}Qm~kCq;erS9{>Q@z@w-yuzm;E!XABCb3dT(@ZU zDhXB8gKKncT9@wb(t}-fqohm}*vogx4lrH}pL*(sfF9gY7nQv8WL#k9GJ*rJKuo|} zfW7pyCrC|t8j3|;=F)&Y>YIEyb-csLyiH}kDJ@#x;|7f5g=9E5rY3Q2%PBM2(`7#v zPpgi@ytS{}-XL7au{~yOzp074R?%;2>dQR7_-xYPF7L!?ILj$D@xPsVfByekul!AR zErcXcID+`F|Bz9;5zYvh-kQi9lPQGZ4EcvMw?!u3N@k2a4^VW2X`ADfU42NJIxt(RVwBxM!CgSeQjYZxV^5x40+va zV$7Qs;&`mlHYF0=RQHbbz^S=o00=HQb%P4B{dW>u+-ZFsqGlG)s4nG*WtXHh2~#3T zGpkD4tke3sjNLietwP;%f?GTBYe#?SLU$RdLhXG<|CqXc(%%yz7n|W$?*Okwt~t&| zg86Y4j1|s3W+#twg7X?msz@;pSWnS+d9Sk+wT6#jeyOY7*45X^k|iW5kxiIN0z_G4 zOx@Vc&Z0HUC1aU=nEB8eWLXlua{4}W{O3ozMbh#7<2Tab7CFTG!25JTM5NY;ib>vi z=SV?ymbo^0@#N2Bb-ZHx3mzwx@a+%i=Nwv?MhnjMJ{2?odi=*6Kg#}N&BwP*7}gf+ zuV1D!!Ak#S_s@`oUywi(ePAur0ziNli#*TFL`&D{+xodj2$!$*1Pk(u+Vx4hRR1&8 zm0N0y_1-Ks{t$8T*_4-@6d0$!Lb_@81w_f+Vm)&;^4{<0^F(l4UZvR+6Ms82(HYkF zB}oPJ*#5~s5;XP;b)Z4OM6WS-s54m0M}(TZwUy=ZQT7^j_M$y^*}?tbx9&YLR#a6r z{iCFuDYhQ07F5XIkUiEc*ZYY1%=S+KMOAr>ci@*Zq)iz+05 za^U=_(6hp*bq?5rM&e_g&r=jK6BCW8Pwx8C-0>6K!CRJ(&;}-N#RJu4 z7-e(_WBr>9HtEUvoCgCw+xGvMl*@)K8V|3{?3Zy6>=9}~Q&8vE7Lu#B1gF^{@=;Wr zx(8*CoXA#^JxvhoSfp7MJwvpmTXgNO2b>l-!>xt;WjnBUFD|CP2kDOkHh5jRC*p?+ zqQrT|)bEk(;@~U0qX$Pgw7N;m6VG(GMO@1KQ9gz_AII^e?EZ3`zN)9bN@Q$$wVbPD zzvHeh1e;UF3FW}~AM%A#Gl#)~+QZ3P3S-Gz@@hZ(6CC$jvW82KEYCZw$t}iM^w-by zRB9rPsKW}&^D3Ki3u7yoGtUtRg*k1Sf@^Hxw>xrre$YG2dGG}Yg z-k1~Co^1^W*DM|rD(woHt+3O)g%W!COu#y)n9ew?wmiR~HSv;pWudw?MW%Wo7Kt+R z$~;12#fG7$8W%z+%7QMojWB_)e}FHkgNYO~Zzv?Kg0SX=$ZuuJb}p1puzq`aCrJV8 zQK8v8OR8K$i#IN07{}KLsaVKtrD`e><+3nF|CH2AS%E(nNOTnUSn2vuuRA9`yneWE zdAMLtW+b1vabNxLKxlc`yQgWHAS;uXHQGs`Z~mnHrd!c4)E(P`EcT`=|v;Q^uVm{F^6j3@o{PSbVB9VDh zGXvJSs-lwG2gFOqe_w?Z&O~yi!ukhgjLGly0Fk(ECwF*u@D7UMA5AMbYNn3FT&KXv zo^8xTj6+8fCv|xKJXrDuN@iX*4joQ#`yF)D;aQQ*Gpq74&kdfd0bb)N(WQiLHP?ln z7qBZUoExx0?#)s6N4n8kW*qR;rI*>(5!qXb6k(s0`!uwMK8kav2>021&sl%i+aN;G zi%I-eHgTOwyn2EJ{0nEXI!8m^59cLsEeu!QSrX8`Eo!(p5YMcbTXJUnyoxzF@hRG~ z7230UPVm5Df9Y1*yksH()fePN-7iN=Hzz&^u-uB`#7lbW%2Qj8(m=h}8+ET$dFIu5 z%hJDPn-!Nv9u~JWH;3SI$RlK9d~+TwBy)1}N%AOc&O=Mjc$!D?mAtYroUHX`+{s(L zdg@^xoUUaUEyL#0Z}F_0Xn)Lr8=H|t#T@dA0(;27dQKLcUVkrtCO+8>;kUh$_fHyj zU6Tr*gMDN}sG>N2VZ~Q-;^%75j?$hDQX%)V4T+5vn_`)HAY^Q@tqFv5pj=o!h)p+tA*+rpYBgVBb9Zoho+HY& z1Rz6eH*k@B9dEi(`A9(Aem6(gU#X&5`0*p$rX8-qUSzM;HV2zk1&6v)321|T@NQsB8 zQ6;2N>wzKZ_o{beVB|BTvuQL{A%HDQ3v;!iPI;ZA7wToUO1D}UJ883|7@uc4pVEvq z-g%eFVLyIC#5XKKegYw9e z&#RtgOzPfEB}b`)g0r3LeP=bxSwW5lY7Kvs7P-^bI$3aI-m=?xaI`CNmbP*>^4trY zhaM;QJFE%RKLkEmZ`D0n>4XaoG7Ghp)jlP>bLYXL$x6btzTTnKi(y>U=gUl$5>TiR zg!XKnH*>Bzlep|iAk-o=tS$(Q$$35{6<>#)1a3{mcpiWMwNsg}`HX9pxNsc3DH{`f z?3{vgwW^Z4Y=2`Tg7+MHN_~9;I_|0Lh{Rf8vtt=0l(XU<5r~tX&7bj52NBFI$)aD& zSFmdlXIIv6iPu$qc5TNr+f@)w*137Rz*Vq*+J*8pBivLs9rl}&3dWi_9FFgEni1#5 zIMF_Oay zCAR;j2AMpL`_y~_ds<3W<-OC*b)5ck4%h6Rqr1<=dX!h9bK*a=JR+p$Yl>j;JFIGJ z4PRr`*pWiJBWkaU8f(45LrWVX=KE2TO>XL03cky@#gR*&F5?=qN8XX~V!?p}C$qC)u3^n{z@sozq>Aeuc|idjyWX6Ty;fg#$SVZ@m`<8m zbp1Y&@}Hq9w~=6{K!_J*2Sw)|6dmVS!JrLuKwcVppDprIz?{16T^iU+^mEAA%u;>P z`p0v!WV?lwr{GX35m)i`^kPo^Jw?N*pIagT2Hy&qnUFT)qfqdp1lHw2M=+Z?SUBcv zaBQgmTmML161bk0&L!^8B))cw6(aCA3&J^-o(t&q{xd|V-vVO8sb4w(OdLyk$UFoP zheN@`2`c|vAO_>VPsD+&T*AK<4084X047w+#3~$IAhFj#@rOMM3T(C1zb(>r41Hp;sAw52H zmtKS6#4`$VbAoGT;kNEkLEAp-hq&j3`iI#a2$Utpq0vh(r0~1wk5UTpo*s!yNxR)3BCW7HJm))NEo?_hA^KVH6@DS0^P$4S=JbCc``cSb<+RhU9Wx0tf z`a&ECWVidWSy}o3$DtoS&-$$h-R5;ZIasm5D!3k3Xh%Xbrx!Q0KA;)9kMO$$nS5hr zaX=1NnKOM7M`NnXFS$pA{b;DaZeZV50qjUzY=7yCSZmhZEJK#L2W>19kn^Ec06}QQ zCTlX?({CO9iqGKKW_=9j$IifsB*tO+G_fLf>gpV;860r_AVf^GGYkL8uBxT#=`vQc z2jqU|6Mmq=xNNs8KL09n^zPnigecuguV<~2?cDU-E%|2QZZ$>aA@O9NWPKT6L&1*t zBzryP&XUY2az1SgMX=6Te?Idy0RxWsS^d^`cMYfz)}%E`1J2w( zc;Ji0;vD2^p|?k3!MD``v{$tmZE~{fgwtT0`x-pxRn9@L)8+7%S62tU1`lw#-D1uq zWSn^PksRQf)-?A_`~Pr$>wn>M7>-Xky@k`5xPs$OZ($69m8ak1p>&B(^+Nb$D=%_- ztJ-RMO$=M=^w#MRmvee+{?OA~^9E0EHL-Qb0jdSoSE!{R!JVqzM7h<&TbPquXLC+t%KCg&YNGWT zse=c%wy2LW0>K^Vge;ouGC#(locp`WB)mz^?kfNkDC!iy^-ExYzU17NvnC@lexh1C zIRMcg>UHJC%x!V*j;-=m*UZZ6>yEj%ac5L)(za+#J1Yf=k(<$UukN1d?G3rLcp>Hv zH`nFpPsH3CV&xn0J~_+#cYlUxfnf?k!@xntHY*8fHN$3Lg5v!fO4DiuM{5v4y3K>; zJ_1G`hKF}7ggRFbf0;r-0p27a6I{-x3|rw zHApP4OpWpOQJk2`nZ@vF@;GQ`Y{-RE|3PlHNnBvP^xrc7t(aZA<0Gwg&euG?5+e{> z{(g%HT?rQQChJ<>VaQ5aYDm#M!EfvaTvveig9Ev4b9#xrfeY~(_dYx>Y_6mF`)slt zO1aVK3;;p;3T9ibo}XkKJsLk1v55G1Yy^i1PvizLNAB!I?krrB$!87Sxsh>(yn*=G z^6ln}n6PuL^vyyl{kGQdiO?;Z44#0prku=}e<~_sX38jPuCwk@T?db7jq50>Jxehm z2MBM$fQ3Z#$YV1;WWMp?8U5b6>$GRLM_Y2T|F{rn8_895r|Nw>jkojT!(ydvdeVod zm-}9##_lVkZRuf&O6Mb=4|jZ2ZEfv}6{3i8BbwY>wjb^kFK8MiHhQcbz3tj*RW2#S ze^KtAn&5IR!mBV!PhN{1?ph!9s(5zu|8DB@u=u}+|N9f&nIC22E4B7fy4Fq&{y0^5 z>6R~5iKitWJ@ThN(bZF5SmH`w&t#mq-U4!I36a@;D^4I?HrQ-91eqpO*2Njlrwy$^ z2;k`|trZ*gQuRlcr~nDuj$s? z4tcCx)j_u$-IDWKG53TwGx=C<$73H1EuZc!dGxYJ6CQ2VeZ@t~9#Mxy6Q|IdH|_^2 z?s1aKDAWy4TDUDKaBB87UhP@s>Pl*v(IR&kyM0EhZ}^O2<8H4U0CVIT_UZ~@b3#zU zh3Er{6#>{@){d*d5_j8Mb@jh2}Ja%CBt$2s;>7BDYe4+Pg{O1cO zy9}qB{mA`et#(?bgC|u7vSFleBb!6!5>0AMzTm%8CJ~fo@q9yA;EUbss=u|uqxCn zAsW5mGU&bGXS^2IAM^ajI@A7)Yj$Zm*$Azf`FV)g$wrKafeCOQp_4>Wn*9$Ek3Ds#53D zfoX}Qs$a)Ni1dD;$f!8R@4jC+tJcs2j`f<^uX8%1X({g%3U+DV`6jQJq;ncrG46Nh zv|nad23@Z;Tudg=5IXu;F0E{j7lrCCFA#OO%$t|-)Zba=Jru23iy|&RKH^@lCnJ_R zXvC>E!Y7IZJt*{-jn^7Jl=n;5#*37r7ezk3nH1zUOSd<~g4Uw3(NrWyE}9u8_r+%( zCX6#JtCf){kYr?dF6YS5a0Zb>BiS(;3AKB0&a!indaJE`==J#RjO%QEyJhI0^!WJt zhvpQ-PYX9q8fbZWWKL7~!r_@y0{jT=xh-upDh8+1~ z2R+$3qf3_dIn?GSa?%M}wOhFX+pE`b9I88W%TU<#c#y7|pljn`?$S}q-2*t0)bNFs z#zA-DUs5lXmP)%bCxf59*RmL@*=|h~nKtrn%)ED2sPxTk7Ow7UbG?Xw{B(?X{p1#P zDDucRg&*t|@!9ql*HLMM^%p|%1l)~GY_J`ZBWBZkm)Z7JSwwQEz9Zs(H@UP-Pye1W zjoVkr;*1w@xBQrYOOW#vLEd$YATc8H8zTMC~?4qjH4N^%gqw!`;3sWj~3z#b~zA!j`*AB& zFxvVJt<%X;)rstnnHv!^wyZ?^S5!bP`~-DZb1tAvqo>ziDGSn@eC6SqOE<2SPw6U zSF5u~|02j3lS9OA;DZyr=NLSkFmdhx++=!`M;x07BK&c3 z7BMG6J_Ayg*j}NYu=!4wdWx;hgrXV&?p5cR6|BC;m^gL6C^+?QI$Ly)ZoU;WKZ&*- zk(-|uk~DbpQ{KlAOtB)E2vgenKMpZ`+^a6j5?Ubkkc?d{LTF)(b@^Z~)^$$D4l$e$ zo|v9ftf^UW{KpFZ@oz(@K?p&am*pJ3qmN^WszL`wQ#HQj!)F$F4kGJYQZXWbC$14D$S$yusJDeTIQ!5iH#RVjU@`)oKczSL_q^oB@C&W z6-w8y*e_ZW=~wtMeJA`z@Em;7S1>hBzGZ{c#@aT`Vx1LV8NN$WvD@91`9}ZK~R<5fJmA2P%r>h@L`5+Rnq-oE_yt|FJwG2Pgv=LQ< zb8xMgP*73Xw_l+UF>-}Dp|*6MSWM=Jj00XYX=%{x#K598T!mC_^Q8Nc@`=hk&Apy85L*eH#QF z>RT&6z?*PKM(n|ps7K9H*$CKX!u^ANM;i8M4c9Rm`ey!hEj+R1Ice>)MqB&tIEsfW z#%K*bUbJUNB3!SqPG`B(3qTW(xjtlf@HZT^m+nY^$T}I?DP*8V8Bzw3TBvrO8i^V; zJ;yI<3YXjoWv&P}U0-rntfpQBDfOQc0`(}<*JRiGc9-XqGB0wH&sa?uDP_eYPU#pwTr*07d@7B&o(`fHv>|HAm~M*kwM;ZIT%okC@apx3g*`Dpx{ z##5oca!Fj{E@$L|)q7S+=S-vc_6zN;Sp0kh(6E@WesiyKJ8{~~Zu(CMFmet>=;tG? z8JZ@fTfV{G!qqO?j-e^2Qy|-rW38|mtko;>^>F|j6 zk@w8Y2WQ;sjAb#ZHPnL=jIdRa)J-(GhufORRuG?PkmG;J|nU*yX&#%^AxUxSp0bawyuhNE9 z*YKVfF|X`DRf8-oU{?162qgowXyRN?(J_?7gU=tpiVAYCnP*It<31Je3+=X^`dTV%Dg03 zUeD4~jnak?2{U51Gb7=~_o07SIE@SsSCkT?DE!>!pj}6}sWkmLR*l3cZir1Mt_UgE z(*MC62Kz%Vh;FJ~(=V-sg7(8_E$g^N0Ib<+RdZ+(p8YqLzSc0G;`k!XzOcAf52(QSVgEg{P#uzDQPYxo73NUQBn-91$)!y6&P)vercO&puhITz`M z%)`q*V3u5Q+(9ajm&j+J-jgrVl!ax$%>m0|SYvB@(9=%M54e zF_kRSsYKBwktBf8)Q<6A4=hG zUc#>mwFuE>YtN^EILFxG?1yjX>~Tm=Pe)cbj7KgycNh_l7DR(*qH2V(8mqDO;mPW9 z54q`jo;sFbz1xf6;65T8s`rsqA`&jioTnZbdSn~TAT4A8Ro&x#-sD8BTr6N`tXSQ4z@;Es<0xv#G>=H<^M(TLRe8j0z_28v zFfC_iU=67#WCsc2i zEt}rhu9wTFFl6WRLHQI;?0gD$Y8LLB()Tziw~>+x1)L8;B&8q%h0dF7l*&D`M9mq4 z-vWaRljBl)2slf>2s;O~Bj+TLgcP$>16FKF*01a$hpAv5WyjW)fjL$9g5WW=RPT}! z>29(^=0WLAPjBMGY46;S!yJdShdjr+PqGjNgZQyn9&^&7KEjOWaCLxcH%z;dUN6Py zD8$uammB?);$Lc!HN}KYY7yy!m(hy6gKf?v-AJR}%(c>V=1TtNWU2)J`LJhWb8eyOuoVypO6wXq#Ro!CaQ)-OjJ@~qx{4!GFp5XQd@pvYPe#y zk}#{E$_9CHtB#ox@m8XIE59#`^~sVl#2&6>5HWaA!6ew%di=~ zn>FLdvepO<2;t13g&BJ3A;OqX!xVJfFBHiyah~w=K4JwSJWzhhhkyZO;rM!WZGLNM zTV_U>A6zgyR^_mbLp@VOM+jJ7pP_6%XIYQq({LpAstQyJtwFpY;v22X%IoRrBw%S$ z*>YD2=beW9j?p~PM4)fy1oy1l#J9?MBhK_~3s)9xYDEHE;^3onuqUha*I9g^r)7V+ zXb>N*+9Si`Z0cCH^3}S#Wz| zzmB_#b7}Sl@p%b8P~|wor~IsPiDwl|ZQ^{)o7rE1OAshSLY}B{*T!6^zz5h$RpvTP33P?J<)rb&LGE80!@5hsDD9Gpdn!sZ4$q1_|Rz z`Cf9WI%3IHM=qU{{Is+j>%5`9u#TJ$KNO z42$D^6XoPTg5;z)2S7GiPY4g=I-%6UocQ^A&BqEC66|!FR8HngEiQs(-+o25jBS5W z0hiZG0svnVeehwqb#n* z|Jhtf2!Tz2NDz<(K~V(4MGXR)B?)dY(Qp&0P!e(>(U8PsSHOY>6Ix)UMXN1V+EQy< zYHf>mP^&?Zi=u#{;yqfePYh~o6{1r1|2;Fa$#QG$`@a44^Z&f>lgyqo_n9+i?lWgH zBIdxf7_%sH+1u~9^JgBt-1u|ZY!7zb@JAZlxhBMQ;LV3fuq}VqbRz3D1@sXG#Jw+6HWngy6gwS zDw2OW{X?OqOQp$>l?uJCVAnVhR>_>)Kais{@w`tS%t>ldZQ1O^8)JQF;Kmhq=d7$BhAgn}s|>s`mth68onWc|@o(pK&=huGMCp;$VEXN(<-EQZxL zQ}?McTax5Z>A|p`mpx*z=RqKm5bAD_&N7$ly^NCG4cTbeS&j{K&0U!j&o!+hdW#<; zS3sY8mE)(r;O{m_$SWTdP`@}P-o5+~*kfs88mwP0p#EtND&$7B`IddvhKH*Ka4P2E@q|6 z#;%SqyIIVpE*txU2(#~s*~QDo-WFlDO3cn(HumADjyMR1HLYc1AHs|_TN2^UdU~Z! zZSaSZW<9||oZCvBla>S_6c+|D@vYQ!Y2FWCn;LQgo9VSMY34kmLt`gw=R{B-*7@`W z;oN>J=$cp?IdCmt`5QiW)`7Zlo`s$3c!PX2M-sea;1h1S*A`#b^M2urpA~$8;2=tLg>LD!0 zw>ME|be9y)j&|u7K8$RjzJ58}K;8d4Nq?iikt}@-F6qyg#-xd=SQpVe!AWq-^G>69 zHO*6PNAvV+kM18Y3pY>EP(uYCCD64J0pa!hKK|+luRsgCosHbaZ!-pyPz~`jBAO?C z=Eig$9nF(-+Fhn)I(jcH(=)4eaG!yzW<@o;Ss5iKkwSH$^3JKT?q7MmBG zky*ND>T$dSY%>}T`TH<)`F%#+QIEe9znufWkU%_vRr9(>>tRTo%G1D|)qw`x*93~z%Ky^ILJu%Y< z1UX_l2$#&5k6o6vT~fQC2jPECIr$N#NCkxTC%pnSVEroA{W&(j@li&m_RVp6kL|H{ zZ^Ay5QpQmL*sl2*z{&}KrOl&y2xVDXW5Hgo7W(wOja>$oV#D*hKgqPdNIDo6$Mx6W zH}13A*}kG&#uSLYsh#3m-SacwxP3JYF`jkCz9=l$CRHarcQx-Dw1=y^GCOOWPpDZs zqbny|NK(8Md1KbferJQXL{nvj3RE|lL~Eu$^|&O1dk$CXVTp;>-SAuTOCd81@c89z z0+B~}X5dgec2GL>bT)Pcrup{q{y90$LT(?=v|?mlxeldVOtAFI7LoE zL(tyE8^dBfE~{uCmqp{1u@~#rFF2!DF}V(YuKVtn*jkqtC$XR>e+HeYEL)hV6PA@9R=US6pSzRs!F zR7|o~&v&g{dLU!P(pkKa*qYt&ygz>B(l+m-NiA_%D@)q4R>9kO2b?P>3Sr&L&tXYX zuiPzf4I~}jt}^1N0%Nle_@lEE{vLe6$d3@lZ}gtIi;Lm3BmS#7YU4$vJMrugtxRW+ z$9emY9b0}iOq`^*SvP1W?wRD(0U{@PS;5wp-Wi9s$NS@nQW53HUfDR!Xkk^aHJDd` z_{c`@pIB=^W@wUsnEae6KfUG0UH@f9pdou)Yw%U~?N7HPdxQJ9F&=!mC5}C>mZ;#X z!R?y~Q>~n_?aVDCnI_mj$;*>XV<*UhssG#win*x&j0uXlr~kYODi$zgg6ah5##F6e z^B_trJNQ9M5APG$sg^F@CvZxI$_~D}xejb)-fr*mR{v?MVjsJQ13!BQW|wWKTkT!O zEfK89S%&{K_hZecGtvGess7m*l7hM9%Kg}15^FnoyI6NL+qmn~l7OEie;jyU96F6Z zfv(ZAEjhrshkYAE;~T)tJL^srD9=vH7@x(TjI3bxHf~kr@6i2SFq=u#l0j+k&Jb3y z9M;IBIx>oWlU;n444d>p#pOYAvKiIL8+>PO8Mh^nsZYsdG_?B15=J;sGI6N?NduG& zg;Ks35omy;9$nb1+)8mW$%{BU$$g#evR`@>xmEcrZR~Vfm~lA2<|mlmEOI{ehU`_? zQQFvxuq@{`5)8-d?CS75Y5btQ8x>%8Nh33T$-?a65AEZ1>j zK;wPE8BM`1&L%k3#MHe#CVM=Eo!;z(Hc7R-gOask30HWEXl_oDr}R4SsvU!TE3)^x zm&*_~yMg7QU%_hLhA;eqV3%wzFY(~s74K4z**m3Fdpj@O#~dPET>JA#$S>KwYnFqf z!7l8o>^EsBUAc6>lfyg)g7hk_U%LPFKoSSCcH(}-c-egj`L_|ebTiIhn^+XU;6dY6 zCt)B-cuZ>aW|aY5{)%w8>;q@=w0)P)TB5qNQs_^^?wJ#0l;l5$sR&>ox+q;8G5`b6 z#V9>ZiBW-mSu3(R!fXDH>M`L8}6gNc@f&16Hn7%Vj}NpJ@`Qf7#1F$-G&d z36!nB6tuFnHwm~SduQk`v{nc-ez~0I1h^f)Nwb6%w0`lu6mOT<$Uyt zrklG#WbVQ#+~0>s3YRV2`RU_NsX$jGrXH1S>pS_JTG=__D2;jGbjskIgHcf;R|p)U0|#ZVaP;%0fV9b!nTy?>Id1-s-FZNo2{XR$l8hi-HJ=FvRE zx9>XNmpgw=N8ac|xGH-*nV+q#=xmla2Nos70i_c0<&q!aoH{j8Y{OKpJIJxoh9^3rvkmkp|{0@@sZD=Kh zAf`so%OxirZBctOM5A=Lzcg;F-FhUuUY6%mj^tT-oF7VQy$qi_o#nq}&7!DJ4##Tb z^aRyf&fiLoCe{_F#vi31=dozhT*GW$=j>Viir1I1@`@KZd%?FdCV}@phkdCh*t)hc z&!&C#I3FH`Up?p`AsXnLmL4wl*^rRrPL}6*A=( zXa3iacE57gIi?$Cu@|>>uebWWwm$=p3~^c za6Q0RdT+HmQXJ9oiD* zcb5h+sCS~QREk4eV*Fi=QH+*T5hKUtw=~BFrWhoeF);RWVB8*=XJfM|PO{C3wXOQR zJaOm<7DOZls2eT45XEvSQ zN6yuITQO`4>?gAR&DT*RajJw=4+Aw-@4l{+;i!JV3wkin~8b?8Y3L&ausu_*(6 zZZOfrm+Riz88s!IM-vi~B(hYrIZ0xcDrO!r8$z-&#Jow&9Wgfv;{YzEtzz01xHo5+ zBQdaIEWlkai8LqqH^a&&=ASzSYjUEwm~dYJk?3P~3bW-;xB6fU6r zjsmK0rfZjihH$PxdjZ9n0%Ee*9>q5-pR9y7p#(P@o27tKDT^d2APCpfMC0YyMsna~ zT|Bj>csj~kmrrXbw9u3fWg*4VUQDKZwnUUqu8mLV+a~md;JFEqetLowLXIP5O=5OH z%=VHlT|!cPQz*z>lQL64@farmqw;x-^3iLJOw)Tir?cN;4-5T~xt33+kFx5h+nlat zOevYqVu0+{yL?)9tA6gLxn{|+RkDNMr6oH2n(w!a#uYVg%_;;=H#WTJpSvLr`fmyy z)!&Ud$kfu`GK5`Fm@MeV=SDy4JN#nK=zTe7zT~G)pEtkl*Q%F@73S%5P$TX(|`X@WR4coi0UU|XII zB5SHQh=s_myii=PP8p(I(9OhNPN1Qb3~?y-y^MWpf#}8l0&VXJ+aDHWb;`ze`!lq? z3fsR5!es?KrbudOX$RuG+&Jew;Vc`^AH~DUSm!qkmf`K#cLeDM@(KvT=wAiM{CFO- zRzEKRk+i-#j;?~HxS~A!cn4)9b;~x`Bc|=l(n{(s|V7Z*_?~j9Y>!1hs@vQ^uJm(g~ zO|WZctV1c^u{KF;^>Cz|gR$C)obHs38lUV${?RWyzAZm|tZ~lORz|(-n(Ni@6W+^e zTi?-@-|{`_$_ao)e-=iPksl_V9dhSBW5F-bNgl~+dH$Qcq;|RFa+D2%{FXJ6iakHKS!xd8MECa`Z1vQC8FgdV`Y)pcrv+nM z8SS+U2*x_Vm0jNxT@UBS__IyWc_cpE0%hnM#QFrKRL|8FETgTQg9`Xq<&gS%(Q+jejL5fXGgnV+$~lY>v9_q1D=u4|J1oh^g}NA}7E(dHZX|9j zWc#Jj$JJEl-0d*s&?XTcm?2A?_w9(=y<3we@dj+nf?&c9_10VDw|+;GxZ%8y+?&t~ zxALenduQxxO7c>+X6R*}hFp@B6%42Wvf<2+$14xRux+|SkDDtd5?WEKG*5Dtkwp_y zm%Y4=C%y8jWmhN>({Z1!?t${DwFA&>BwOegr-38nKs{27~fS-6$)DJx=XM|3#IUM=Dbr$P^86+?r%Z(U(T1>C8b21tsG86o?n@kX~i)mdr&|g8{&}M)k#Q7OhrnfjQNkLV;NG%(vGWR zuPh@ex{j$}plmctWX*YUru{3H_E~Os1*>BYZ+AT^{9q=o~jC{jnpUo3T`$<~o) zN#c$3+Y6ry{7nmIQ7_o`xAkJ=saT}T)^-+2lVZQWojpFjzMVbX5$vItk&2TTs zW_=!1dEP0YG5qG`UeI3d8D6SQy7ql9PK63&k}3Q{fW{)_0L3iO;#>hb%`p{6m!@yI#zU{1XAHgiC^tn9pO5bh-y z1l}>o5a%(2q&fF%q>J-gW02vjH;B*qu|e{k?;B*6v)mvB&Ju%^Ikg5!cdju=wNq%2 zMb0dZ1nbD1lWXu5f@c_9a_x*UxX{HJV(|5X_cgeX%}Fx2R1YV{;4+hT+L)5~tg!xr z2Hz>>O$Og9_n*@Kt;Ev!M4c;pFJqB+Re67J*M^nx%2A8|YPMyJ%1os;} zRq!%{djy|taG6~@`3Bcg&9V%hF6QY5&k+1PgUeAi$7Aq(!Fw9KTJU&-FB1HSZjXX> zg0~uch2ZZSe2w4-48B(I-3BicywTtr1b@ij8wKBB@J)iRGkBxmYYe_q@CJkL6?~Dw z*9%@@@B@Mu7`#dF=>~TM_ZhrZ@bLz36Fkk}tWa`R&*1Tbry4v-@I-^B3a$+95&ZKi z%>zROcML9)mz_5ao-X)agJ%f7&EP)4HyJ!%@cRrtOYrpuFA)58gO>@u!r&q%*I8ol zMS@owyiV|9gRc;LmciEuo@?;6f@c_fz2IXEzCrLI2Hz-nUxRNFJV|gpB4wYCQDSLF zUGMB0*L4Cb{>YU3NVim%#bYwsm>e)BoDAuDjxpJ8OlDy+*O)wHOc21(b%rsyTTFCp zvW(TBD4~w{a#C^l{wf{eV&m0=$?L{szA+hs$zEeJ!Il4(rRF?qt6j5H=0 zm^@%i`Wq7;CL4@NS7TC!$s@+(>jhHqmsMkOpD}4RCW|n++nBtnO>_f<;T^{CX=5lY z5r!*_;qQ&1G)WkK#~7{^LrZrvb{Fb*l`*;;qzUxRTH$gYXVooyEAEQ#M2^gN@2&8HaD|b=;3(1df93fnds0Y}cWt%`QD14rkkQA5z3YTUjqy~n|0-Q{6o|ko; z@Osi+VgG$}-m(5fmi)M711Z{7FcBFSJALk54CGDh#}?1-j{HfY1FTR|NF9YBdF^kC zi;PfWGiADUIb}9ETxRbcS5W&R3hEi1wt6SNqrk35sz+;xVzb4yr6o~F6Q=q%FRK;e zjoir4D87Bn%HTmx*uvtxLC8^s8o0mZ8sXMB=liTBx6Jm{f7P@wliB!ahVar$Fpt+q znDh=mqgC$RkHJu%0ti%%jlB?e=2+10f2{9T4E5E2-E{q*7_d2aVdC6)t4s_N2}x$~ zjEH1xW93>ng;+8*VEuozUi0sao;Pt`c6?!rKO2kIHDVzL2Od8@Pa>I)T*=(sh|RyW z$#?i~IpZ1;o9~KU< zTOIFXV#_Sy*t8qkdfJztyfb~P?;EuD1GWIt`p}}E&H)0M5AyEN^$<)}q?UV5mz{rh z%DId@UgFxD$qjN?>D!)5jUbHI6h&q(9_b8`}qVyRf-nM4HSj*V>iT6;J z8!0$lxwr6~mV$FxPYQsuSf`n3=d*N5MDp-@kx&-Xg!4F&67it)Rb><_b2qMb&F1B^ zM&Xgwu|Zsp{Z>y&341SY_w8Fbr#Z?5wiI8Cx;3HgcY>pxS!nRe7Cor5sb;9_=axHiKfQ!I>`5bPxyL-ZoI+;P9iS#KH~#o$1$tE zc4rL^k+Hnfl4>2?Dh}8%O4q+>ibbi}tXJBLBu1|3=oe+zB~~cIVy4XJLMeYG$6NxH znfm1t1pe~PK{hg%_j55x+$qP8m~WE-A!2rLTPWosOGKI8bH!!o-=kq1k%&IaeM>B6 z>>%aB6%@XC^{qY3FMq~6TBNJ1=8j_mHhBxBygkws&~{QvII~>tTOI%najOEk(l@|4 zF3mYnfirk1mUGXXb54*;KwLz)eVZI7lKEGzyp0BkaDI_ot;uj+@6XQ3IGhLO^HPFr zln$_>LV~-w@m7qJN86ncr9`Z=BC9)Gl-OQ-R`W;fd2+yPb;>#9C$xjiyysn!<<5mI z-}COsipz%vin^KG{H5ls2S%Vh(0mY$Hf;fc!Yw~Fvi3CN!^uZ6mSwsRG{-$h7@7zB zG0j>%t*hMN%JQv#*h7sQy$d0AHaTZ|SH%p<32hsn5a_bvG;?Q?rl0>6owz>9EI8DI zJ)IYP1DKKeRxcO-T z5=Ciap#$;_ZS@tgs_h%M-F-_U=_g%}$w>*5IQPwyaNqnl=pj|!y<8?lI#V(d)(%gV ztxcna;ZFONzNx1KtO%h(9~XE`jPkfbK$ z(ej=uhv$-!<8wGpa+r*T&R4a#(C?p09c7WIqo76{o1;XyO^dLXElp8&?~qNn4UoKs z$EZ7MwAAM6q0~iy)Z-b@nCF;8tjV225qcmOJa>l6#8mDS^26OZ$T@tc6N6C*Rg@ioLF{(jCca)bkLQl&70T> z52f6ygKOC(eCMML_UI&J>$Ub!%5%d^$vnvV6Wr+={YJ|@^b2iB)oWga|1cll^%KcN z%og1y|3ytc=2m6U6Zjkvqmb3$)&&nkQgB6poiwm(|h@$~yjsvn9NBgI3UA za@b6|&G35LTy7NUb9Ain9WRSPj_4Xm9;r@-3ExT8QFbOuy+vZk>h4DQ~MBhE&A z-Y#82M2*a2WonI>8tD>4MXrQiTwy2ZqjRO80|-*810#E^$HF`*&c|$zAY5cSzzW~c z!bhHzHM6a(^#8uy!kNgF&E^eeCvUU=v5bkqp~>-!5P~1I0$S{@G2T@XA}6{LE#j$&InZ4s zPH<-h9)J1%OPtSX+_+7;?;D7l&|});v3JHzHuJr6=DcFNdsSO3Y&1jN9%X zf)G0YnYl%cI9!9n9JURapZT_Y$tj-3S$WY7yF~aHw=RND<75F&yoWN~fJ7$?GrrcVw*^=nei= zZb-63JDt0>B!RoO+_h(!l~$Uy;7#7gm5`k`i-f$4PFFmRjR+ZU8b51ccSe`nCb}QF zC0=nH?gZf&jR?n>xMONvfy}_Lf``ryiq)d**5sZdoEc}}_ zf7`-!7B-LsIX*W?l0pjV+lt*ksD&Hc4V9#pYkuyAbhKJ3hU{fnZu)4c82vOd z&F|L|F<#NSt9TbiBx1;^zWO#KV%#T9=ukG1a)NO=^*fMd!46|ssKr?bvf%vI2VH8r z-$~Cn9ZyQcSu`JF*d(-^-h2>@L-yn017VAY-l5-k88h$UXS5KDSp0w7B`4UQ?u(;^ zPy;y@$j00ekBcM-;BM$lurOvg0v}QrzF4G#YkrRij|-{8r~hnjwqC(X|BOZ%5BTz! zye;ab3!hB%COmolPqnzct1fLr=M&wEY#h&NY)&VQm@N`BZyilp{qq@Ofy8jRGkga0 z#X1Yht7Z{HQQwBx2_t-X{*5ozx0M^YcUs)UMjX|*RhdUdMASr)7Bvw^X6xGm_HpL6 zMegNW324*VxNgZ0?bKV*vN#b%vy3E(=Y0FVZ1I@scfW%RH33=@LOZk4ljUB;7F_*x z=yUXszGjhb5*9Y`u@N=_#}yla6Nn{TJUeCzQ-S<65ir3_X-dl#VfhjtFV4vB(t<#| z;3ZNBPHloE7$X^m0Nz8-aQUQk<%NioxG+q?=4vTW2xP=bP_e=?B%DB;@JC`Tq9io? zv<%lpE1~oxEF(YS(zcdf6cr#zn;|~}9QhHKA{-buk)k6$Ms$RuMMr#)SaYoCh%Vmx z4-R|BAy@v2uUS(lHnJl`bi*lRNAw@f(YF(1M?{51N9-pM%6z$mAfxl4av2Lc`m&d| zxEp$53L9~aE6uGXi*QMY`HF9QbXxP*6k#CATX$rBAXB(Rn24J}CTSAXvd}Lvy78KD_E7tq^0ne?C$piV%>K<$jc_ zQFq8T2z1+Eo*4@5k=c$jmbng@q^gYw&e%ZbA)CzWa~Zhvte#H5YV8jyc%1cwFOEZj z`&x#0gNL%%&CX~U*q&OGP_yCdacYcfA>;Bxiv~!7{e3z@=0*g${qj&dp$SGa3x`B^ zI`3Yoqmpim98v6aQdu&cF#Q%iYM(SVC07lUPHp-548G}b{0Y3y7e}iDmALA!JNUdc zcH2=FxK_)^LI&oSPZ1)o)8}&;n9B$xa$pX>Tjn3mZ-vMTJ+d&cMmOy(E9)+* z;QVOlY0)M&FO&|i{`sV4#)^V?noB@diS&t&-QzC^^sKwVg>(s-lxd@8=^@9D*5(M7 zu;yR5n}>^eG5wi9n%gr3(#W1BkXBU&V&fON8#)O@L4;6?{6&KWBp{OMEmVbgCOS>5siooDUI>cw#iww^(+lRhIDbxnX%XUnFbj4 zzXq=@T$yIugL8l>?pp}sBm(|qu9|MvZJC_tyW!ttPI-{?I`tm*5rI~|-)*FlIpy`^ zCVY<_wA#vJF|flUebIiO*>1?o_pVcVfr_^O$)|o$tJgpwKhM5ts*>xsrSjB(7&^;F`nMBZD?{O{>cQ93v zk?5U^Aj=Y_8?Z>lnqR)HtP`0eVuat0DARZ)r zpNGEd1@9(VXm-AzNW1oiwDN2`Fh~`LV_Ai~@nSg4y zc+l`tj2n+?iR+8#nc_-UrupjQ5PhL0#RccV zvdI&}lHUNcLspk1T3!&Nvu_ebMcMgiR46*Cx%5 zDx`pEJ?y#Ia5!9wy63+bQae8!_cl~oPLW8oMVeypU3u1nQ_!3o-RTsplN2A2b#u)C z1)Oi>E+7jFdz>unC~XgH(^p8sVN4mKz0C1JdkFJMW{)ksh91y2&Q|-5x_w*p!FdWa zi{;ysUQ-vzDQ0gll|C;ia(|G^>Z3mnew7>iEclk}!KOHcEF9YY^Uzhyl)s`dbAto8 z4sWjhKQ;jad0HwdN0`*1^>#NrD~`rB8R?d#W6Pp^!Sj1wBMZ=o)W3a)Z`}Fa&;_bS z(?fp3Iexjn-*Oe>*?21a*lvL@LXGY6Xc9T0pf^HW37Y4OeVv^-xnh*f6ui;j$2as- z8E?J}=Za_trX#fHoMUbbIJ`x+as;E#MZT5i-%*Y|t0ZJd6Cj-v*6Lp`o^;@B}|?uK9B0yGhn zU2xJY)DiJKfgL1enZz>msBcRs`tUp1qd#U)xPpO-${o8vxf^a44@HM*7{5?X_se8} z9`cvwj;;7Y`TNnfe?d?#1PaM{g_T)fuoSgjTLv6o(W~Lh=^-Q$>~+`6=!6C|i3q)$ z;?X$XA3_{*@tu|$QgV2HdrF!iHj;pfzfgHAhqtir$`YQ;UJ=L`b@-jtmqv}-;l9OB z#b@cRBbMB8jqZ9GuNuB#%e+YlE6nJ_6iJA=D+ld_d^_U_mZDxxj9Fu8;r#(2-u8z> zp(pj=Vs&CC zc;n&>Yn3d?IUeSzVuEqgp&(=!F}G%EWR=6Y@`KdtscQjCvEePUt+}~d^9>F zvKuaS1wV6^e{Pxy83*NK7A3FTI8~U+pxe*6nYWPoAf3VYw-8GxWm|W6<|!EnuAT|U z?PP~4loH3RS6)kmz9XF{*}pL7H=GASgV>z3-Sbdgw=>v1VVUKY0XbdtbDGW!e8u=cY!>{*g9IP4@0u)Gu6llEkSt7fNZmE~^Ea!r3w={P;2U<83!cu)O_7Ant z#}yv4>nCOL#1yOR>>?>JCJ2en0QeV^$;Ko^tTG;L8Eke#&3-2X*o^QYgk(yRI`W$P z(JWSU>h+aWQwOQ@jB)8f&4{l+KfB1Odl~Kp%y3UedQk(A%G11xG>R^|zH`Wmz`H)h zQRF0ibno_QuSdr{U=FnnbYKzM{nKBA0PxSil=WTxg1;Aa{XlKA-c;& z4Mg7~;6%$Z`4JbV2i zVv8n0+_q+XCrcuc6^LLm_2a;FH%&bPXHx50`60viZwjBs}mT>+0(pJ zrddIzu zro*#x9U=!eRl^{kwh+B{y$>cof2rhNyRpX8yk$LEky?=cURWqc~h6=4Vm zHMKL7s34w}zFORh%n9Motl%>kvV7`1*(A}+V`Wd`n&S|3ueRZi*sHbWVc&&F({*c? zKiBE`2ReJxWBZscwmN^DC98Xg`tP5HEob~0pZXz&syouR=u>feq0X6Tn&d9;;UmhZey#a}~OJY4H( zx2gYA9kEi4&Cv06&O;vK2I7eC0%x7|ofhePa{_*yUmfqsgC}FPD#D5hkzCu+d;Zvy zY~@@NVXv(uzRfIFD(4DobxedLCCy1bSw`gSYj9sM-ud1ikIRCjhNk(`E2QfmNwmjg zP;Bd$7ASxG=v{h0_XOL`y1Q&F?+Es|oIq*Ld_>r{XVQ6r3J?x3BJ(76^sZ&;EMYXd zZ{HH+@Az^tkzRJPK+WUlX(zRkR?|s2nU$|7kE}9(OZki5rR@2vlad{oIGw48^3g#( zTh`&EJy*g^zoHQgXRN*8>X#zcVKhBWb^X#Yh-2{;C0OAOJi{}W%{(jIfx{V%Mz}+Q zGusAqOfd)ZGMvna7|7NC#J5I{6Y~Ac!i^R_Y2g72|6*aAg-K@`e?u(HvhYd^D=fU( z!k=0AkcHbVe8s|#Ed0vCgh3|!z80Qm;dl!tTR6|c8!Rk1$N0;)@B#}5S(s$u(ILj& zCl)qYm^Ij#&$6)0LcfJ|7Ou5$qlHgf__l>dEKHJJcfLUuUToo13+GvQy@jhRe89qO z7QSfVM;3l%Vf@)9{L?J-SeRzvBnzin_-zaQ7T#>(8VlE1_-hLvuyC7&uUPoDg`ZgX zm4%6xj%QhzVd0e)R#^C53x8zceHL!FaKD8$w!AbE`59vA+SkHP7KZJ2TRzxi;RXwT zWZ|0@eq>?T->KmEb493kb2t_xHs6#=P&)liMHfUi6*2elky>bhCM= zx*jf7Cu2{(%&MB~MdkkdnyR9bT1MRqRIMsfRjNjn@Hbo)s|x<4lXU5HHd$DNE1att zYPy=FhN*N3j4!MosV-2tB51&VGt}iOM`fxjRF*caQ2|w{{HmN7OOyvy!=J?K(LTB= z>E{%o=i+A?f01s&wp=G7)XUYSr?6!fgzr4%)vit!!c@|krbhE8VGbi4FRAjAo&~BJ z=s{KS8z8rm&O9AsE|^fMSeupVlrPY3%g9kJSRudSV}Y6n{T5?VOc*uTR;u~vDsdsX zzg~yX5ti7OYnwv+m8%=9yDH2Rphh@+aaW9ek+v_fae9a?pu-n?5Ajy%SS3Bx{7Hz$ zM>#f?l&=TMNG?sP7hqbe_2Tkc(q_``Ctk_Da78U4R%ka>suVK`Pk1DpvqBwnm`=kq zorIRb45l#?#7NSn1RHaU%aFF;iJY#-4d}ir1 z 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 bB!6W7g#4-b3-g!cLzth+PZapSNrC?c%T_@< literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py b/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 0000000..62ab10f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1100 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, cached_property, get_cache_base, + read_exports, tempdir, get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if IMP_PREFIX == 'cp': + vi = sys.version_info[:2] + if vi < (3, 8): + wpm = sysconfig.get_config_var('WITH_PYMALLOC') + if wpm is None: + wpm = True + if wpm: + parts.append('m') + if vi < (3, 3): + us = sysconfig.get_config_var('Py_UNICODE_SIZE') + if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): + parts.append('u') + return ''.join(parts) + + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile(r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + +if sys.version_info[0] < 3: + import imp +else: + imp = None + import importlib.machinery + import importlib.util + + +def _get_suffixes(): + if imp: + return [s[0] for s in imp.get_suffixes()] + else: + return importlib.machinery.EXTENSION_SUFFIXES + + +def _load_dynamic(name, path): + # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly + if imp: + return imp.load_dynamic(name, path) + else: + spec = importlib.util.spec_from_file_location(name, path) + module = importlib.util.module_from_spec(spec) + sys.modules[name] = module + spec.loader.exec_module(module) + return module + + +class Mounter(object): + + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = _load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + self.get_wheel_metadata(zf) + # wv = wheel_metadata['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, archive_record_path): + records = list(records) # make a copy, as mutated + records.append((archive_record_path, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + # hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + ap = to_posix(os.path.join(info_dir, 'RECORD')) + self.write_record(records, p, ap) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 3.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile(outfile, hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True} + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(self.filename, use_abspath=False) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp(file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + # data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message_from_file(wf) + # wv = message['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], '.'.join(str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug('Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', prefix='wheel-update-', dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + class _Version: + def __init__(self, major, minor): + self.major = major + self.major_minor = (major, minor) + self.string = ''.join((str(major), str(minor))) + + def __str__(self): + return self.string + + + versions = [ + _Version(sys.version_info.major, minor_version) + for minor_version in range(sys.version_info.minor, -1, -1) + ] + abis = [] + for suffix in _get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for i, version_object in enumerate(versions): + version = str(version_object) + add_abis = [] + + if i == 0: + add_abis = abis + + if IMP_PREFIX == 'cp' and version_object.major_minor >= (3, 2): + limited_api_abi = 'abi' + str(version_object.major) + if limited_api_abi not in add_abis: + add_abis.append(limited_api_abi) + + for abi in add_abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, version)), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, version)), abi, 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, version)), abi, 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, version)), abi, 'manylinux2014_%s' % arch)) + result.append((''.join( + (IMP_PREFIX, version)), abi, 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version_object in enumerate(versions): + version = str(version_object) + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version_object in enumerate(versions): + version = str(version_object) + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py b/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 0000000..7686fe8 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py b/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 0000000..0c01d5b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0aea9b8aa5b9bd060c8fafc2bd76bfbd5792964 GIT binary patch literal 953 zcmcJNzi-n(6vxkwo8NAJHc2}mCZr6l#Se8tNT4u83a!*2hPRxY`kEf~v#qm(nhpL3 zBz89b7G{=Pnb;~aRAS996 z+t9`ibg&Cu+<_hJK@a=T#{mp1HfMqT*@9hRGA|25=Z9s=4+pw?bbRva`D6?)M|?D% zzCJnT~-0(lyTC36&a?b6uY;WEk*hfit0W z`7{nh?gQJA@vgPZ$t(33~=d!#!QR`M-ayULwc;+k!4} z?uQ}gU)ai2W53>b=P?Q|4dt2e<}&lrM4U=LG+W?>a^@w=>^zPhA3S{Ir7{!yiGO`At0%0n_o1flnb6-}4*?ti literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f1a4c7babc5562445c21e550978de3e06e1621b GIT binary patch literal 285 zcmX@j%ge<81VU5P(j9>GV-N=hn4pZ$T0q8hh7^Vr#vF!R#wbQchE%2$rfdxch9V9o zhE&GYP=$;PmCTjQnk+9FfdZP0w^(u$GxKh7#K(i^_;^1}=38tjnZ+eV`9;h?6(E_s z#N5>Q_>~NwK}P%v)6dAyP1P^X$xKVtPtPpTFD^(;&P>b!>e0{1Owuo?EXl~vGuAUS z(l5>|N!2Y#OwLYBPc7Cj$Sly0FH6l!$uH7}*q{%yRj;7(7Kcr4eoARhs$CJtw;d<_JNs!MXHDcC=CG2P)gna literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3317c4998f2e04574dff55162058d4e8e724727 GIT binary patch literal 53785 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/distro.py b/lib/python3.12/site-packages/pip/_vendor/distro/distro.py new file mode 100644 index 0000000..78ccdfa --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distro/distro.py @@ -0,0 +1,1403 @@ +#!/usr/bin/env python +# Copyright 2015-2021 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 removed it altogether. Its +predecessor function :py:func:`platform.dist` was already deprecated since +Python 2.6 and removed in Python 3.8. Still, there are many cases in which +access to OS distribution information is needed. See `Python issue 1322 +`_ for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.9.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "altlinux-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", + "board-release", + "ec2_version", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + "altlinux" ALT Linux + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return InfoDict( + id=self.id(), + version=self.version(pretty, best), + version_parts=VersionDict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/lib/python3.12/site-packages/pip/_vendor/distro/py.typed b/lib/python3.12/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py b/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 0000000..a40eeaf --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,44 @@ +from .package_data import __version__ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain + +__all__ = [ + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b223af442e76a631640761511e151ccbf001c4d GIT binary patch literal 874 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 Ca1%8E literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da907b4c728e4d834d22e7087d81013ee852c328 GIT binary patch literal 880 zcmb7Cy=xRf6rZ{MxG&?^MNE+BHU?H>HYNltR5;Y)z-(cXCXMXvyt^#!?kuwtVZ}nk z&gKdsDQ$xY{vS3ccEf>%Rl0+-vhvMdE?DZod++z=H#_gW-|W}9xdy>?`NML*O$qs_ zli4y)!K91ekTAk%Og>lW6wwk@m=RYJW6wy;JrfxdEM|e-GnxI)+^b@4f(^A^WfAW{ z#zLlwOr6!hU>2)m-oU(3)ZOL@c0gRJ=&ci7+N~&~ofgX4O(UKvD-OC4D_ej(5NW8- z&X$2d+hhUVA(3a?Yx3z7ZEd8xOfVd6PIMUCdTaM+^P@YwcKh3vm6H6@IwO5L PF!Y{JkIY|XENA!w!NkYh literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ec8874bab862e0a27009472d2c36b7aca83da25 GIT binary patch literal 15784 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9add446d4687a8b0f15dbb91d6988218d8c17c73 GIT binary patch literal 99469 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e13b197ca3b027b5bbac680004a30a2a18076229 GIT binary patch literal 209 zcmX@j%ge<81VU5P(nW#vV-N=h7@>^M96-i&h7^V&&f>EFQ_cZ$j>v@ zGc?jK&MZmQEl5nxPE1cN)-T8`&<7fqmy%zkpP7=Es1KEiPf09E)GMgG#bJ}1pHiBW dYFEStvn% literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f1b454fc32ce4d52147f1901d47bc144636294a GIT binary patch literal 158841 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 Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return '', 0 + + return decode(data), len(data) + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b'', 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = b'' + if labels: + if not labels[-1]: + trailing_dot = b'.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = b'.' + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_bytes = b'.'.join(result) + trailing_dot + size += len(trailing_dot) + return result_bytes, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + if not isinstance(data, str): + data = str(data, 'ascii') + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = '.'.join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def search_function(name: str) -> Optional[codecs.CodecInfo]: + if name != 'idna2008': + return None + return codecs.CodecInfo( + name=name, + encode=Codec().encode, + decode=Codec().decode, + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) + +codecs.register(search_function) diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/compat.py b/lib/python3.12/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 0000000..786e6bd --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,13 @@ +from .core import * +from .codec import * +from typing import Any, Union + +def ToASCII(label: str) -> bytes: + return encode(label) + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + +def nameprep(s: Any) -> None: + raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') + diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/core.py b/lib/python3.12/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 0000000..0dae61a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,395 @@ +from . import idnadata +import bisect +import unicodedata +import re +from typing import Union, Optional +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b'xn--' +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class IDNAError(UnicodeError): + """ Base exception for all IDNA-encoding related problems """ + pass + + +class IDNABidiError(IDNAError): + """ Exception when bidirectional requirements are not satisfied """ + pass + + +class InvalidCodepoint(IDNAError): + """ Exception when a disallowed or unallocated codepoint is used """ + pass + + +class InvalidCodepointContext(IDNAError): + """ Exception when the codepoint is not valid in the context it is used """ + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError('Unknown character in unicodedata') + return v + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + +def _punycode(s: str) -> bytes: + return s.encode('punycode') + +def _unot(s: int) -> str: + return 'U+{:04X}'.format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == '': + # String likely comes from a newer version of Unicode + raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) + if direction in ['R', 'AL', 'AN']: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ['R', 'AL']: + rtl = True + elif direction == 'L': + rtl = False + else: + raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) + + valid_ending = False + number_type = None # type: Optional[str] + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) + # Bidi rule 3 + if direction in ['R', 'AL', 'EN', 'AN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + # Bidi rule 4 + if direction in ['AN', 'EN']: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError('Can not mix numeral types in a right-to-left label') + else: + # Bidi rule 5 + if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) + # Bidi rule 6 + if direction in ['L', 'EN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + + if not valid_ending: + raise IDNABidiError('Label ends with illegal codepoint directionality') + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == 'M': + raise IDNAError('Label begins with an illegal combining character') + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == '--': + raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') + if label[0] == '-' or label[-1] == '-': + raise IDNAError('Label must not start or end with a hyphen') + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize('NFC', label) != label: + raise IDNAError('Label must be in Normalization Form C') + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200c: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos-1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('L'), ord('D')]: + ok = True + break + else: + break + + if not ok: + return False + + ok = False + for i in range(pos+1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('R'), ord('D')]: + ok = True + break + else: + break + return ok + + if cp_value == 0x200d: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00b7: + if 0 < pos < len(label)-1: + if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label)-1 and len(label) > 1: + return _is_script(label[pos + 1], 'Greek') + return False + + elif cp_value == 0x05f3 or cp_value == 0x05f4: + if pos > 0: + return _is_script(label[pos - 1], 'Hebrew') + return False + + elif cp_value == 0x30fb: + for cp in label: + if cp == '\u30fb': + continue + if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6f0 <= ord(cp) <= 0x06f9: + return False + return True + + elif 0x6f0 <= cp_value <= 0x6f9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode('utf-8') + if len(label) == 0: + raise IDNAError('Empty Label') + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for (pos, cp) in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): + if not valid_contextj(label, pos): + raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): + if not valid_contexto(label, pos): + raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) + else: + raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode('ascii') + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + return label_bytes + except UnicodeEncodeError: + pass + + check_label(label) + label_bytes = _alabel_prefix + _punycode(label) + + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode('ascii') + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix):] + if not label_bytes: + raise IDNAError('Malformed A-label, no Punycode eligible content found') + if label_bytes.decode('ascii')[-1] == '-': + raise IDNAError('A-label must not end with a hyphen') + else: + check_label(label_bytes) + return label_bytes.decode('ascii') + + try: + label = label_bytes.decode('punycode') + except UnicodeError: + raise IDNAError('Invalid A-label') + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + output = '' + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else + bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] + status = uts46row[1] + replacement = None # type: Optional[str] + if len(uts46row) == 3: + replacement = uts46row[2] + if (status == 'V' or + (status == 'D' and not transitional) or + (status == '3' and not std3_rules and replacement is None)): + output += char + elif replacement is not None and (status == 'M' or + (status == '3' and not std3_rules) or + (status == 'D' and transitional)): + output += replacement + elif status != 'I': + raise IndexError() + except IndexError: + raise InvalidCodepoint( + 'Codepoint {} not allowed at position {} in {}'.format( + _unot(code_point), pos + 1, repr(domain))) + + return unicodedata.normalize('NFC', output) + + +def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: + if not isinstance(s, str): + try: + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('should pass a unicode string to the function rather than a byte string.') + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split('.') + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if labels[-1] == '': + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append(b'') + s = b'.'.join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError('Domain too long') + return s + + +def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: + try: + if not isinstance(s, str): + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('Invalid ASCII in A-label') + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split('.') + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append('') + return '.'.join(result) diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py b/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 0000000..c61dcf9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,4245 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.1.0' +scripts = { + 'Greek': ( + 0x37000000374, + 0x37500000378, + 0x37a0000037e, + 0x37f00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038b, + 0x38c0000038d, + 0x38e000003a2, + 0x3a3000003e2, + 0x3f000000400, + 0x1d2600001d2b, + 0x1d5d00001d62, + 0x1d6600001d6b, + 0x1dbf00001dc0, + 0x1f0000001f16, + 0x1f1800001f1e, + 0x1f2000001f46, + 0x1f4800001f4e, + 0x1f5000001f58, + 0x1f5900001f5a, + 0x1f5b00001f5c, + 0x1f5d00001f5e, + 0x1f5f00001f7e, + 0x1f8000001fb5, + 0x1fb600001fc5, + 0x1fc600001fd4, + 0x1fd600001fdc, + 0x1fdd00001ff0, + 0x1ff200001ff5, + 0x1ff600001fff, + 0x212600002127, + 0xab650000ab66, + 0x101400001018f, + 0x101a0000101a1, + 0x1d2000001d246, + ), + 'Han': ( + 0x2e8000002e9a, + 0x2e9b00002ef4, + 0x2f0000002fd6, + 0x300500003006, + 0x300700003008, + 0x30210000302a, + 0x30380000303c, + 0x340000004dc0, + 0x4e000000a000, + 0xf9000000fa6e, + 0xfa700000fada, + 0x16fe200016fe4, + 0x16ff000016ff2, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x2f8000002fa1e, + 0x300000003134b, + 0x31350000323b0, + ), + 'Hebrew': ( + 0x591000005c8, + 0x5d0000005eb, + 0x5ef000005f5, + 0xfb1d0000fb37, + 0xfb380000fb3d, + 0xfb3e0000fb3f, + 0xfb400000fb42, + 0xfb430000fb45, + 0xfb460000fb50, + ), + 'Hiragana': ( + 0x304100003097, + 0x309d000030a0, + 0x1b0010001b120, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1f2000001f201, + ), + 'Katakana': ( + 0x30a1000030fb, + 0x30fd00003100, + 0x31f000003200, + 0x32d0000032ff, + 0x330000003358, + 0xff660000ff70, + 0xff710000ff9e, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b001, + 0x1b1200001b123, + 0x1b1550001b156, + 0x1b1640001b168, + ), +} +joining_types = { + 0xad: 84, + 0x300: 84, + 0x301: 84, + 0x302: 84, + 0x303: 84, + 0x304: 84, + 0x305: 84, + 0x306: 84, + 0x307: 84, + 0x308: 84, + 0x309: 84, + 0x30a: 84, + 0x30b: 84, + 0x30c: 84, + 0x30d: 84, + 0x30e: 84, + 0x30f: 84, + 0x310: 84, + 0x311: 84, + 0x312: 84, + 0x313: 84, + 0x314: 84, + 0x315: 84, + 0x316: 84, + 0x317: 84, + 0x318: 84, + 0x319: 84, + 0x31a: 84, + 0x31b: 84, + 0x31c: 84, + 0x31d: 84, + 0x31e: 84, + 0x31f: 84, + 0x320: 84, + 0x321: 84, + 0x322: 84, + 0x323: 84, + 0x324: 84, + 0x325: 84, + 0x326: 84, + 0x327: 84, + 0x328: 84, + 0x329: 84, + 0x32a: 84, + 0x32b: 84, + 0x32c: 84, + 0x32d: 84, + 0x32e: 84, + 0x32f: 84, + 0x330: 84, + 0x331: 84, + 0x332: 84, + 0x333: 84, + 0x334: 84, + 0x335: 84, + 0x336: 84, + 0x337: 84, + 0x338: 84, + 0x339: 84, + 0x33a: 84, + 0x33b: 84, + 0x33c: 84, + 0x33d: 84, + 0x33e: 84, + 0x33f: 84, + 0x340: 84, + 0x341: 84, + 0x342: 84, + 0x343: 84, + 0x344: 84, + 0x345: 84, + 0x346: 84, + 0x347: 84, + 0x348: 84, + 0x349: 84, + 0x34a: 84, + 0x34b: 84, + 0x34c: 84, + 0x34d: 84, + 0x34e: 84, + 0x34f: 84, + 0x350: 84, + 0x351: 84, + 0x352: 84, + 0x353: 84, + 0x354: 84, + 0x355: 84, + 0x356: 84, + 0x357: 84, + 0x358: 84, + 0x359: 84, + 0x35a: 84, + 0x35b: 84, + 0x35c: 84, + 0x35d: 84, + 0x35e: 84, + 0x35f: 84, + 0x360: 84, + 0x361: 84, + 0x362: 84, + 0x363: 84, + 0x364: 84, + 0x365: 84, + 0x366: 84, + 0x367: 84, + 0x368: 84, + 0x369: 84, + 0x36a: 84, + 0x36b: 84, + 0x36c: 84, + 0x36d: 84, + 0x36e: 84, + 0x36f: 84, + 0x483: 84, + 0x484: 84, + 0x485: 84, + 0x486: 84, + 0x487: 84, + 0x488: 84, + 0x489: 84, + 0x591: 84, + 0x592: 84, + 0x593: 84, + 0x594: 84, + 0x595: 84, + 0x596: 84, + 0x597: 84, + 0x598: 84, + 0x599: 84, + 0x59a: 84, + 0x59b: 84, + 0x59c: 84, + 0x59d: 84, + 0x59e: 84, + 0x59f: 84, + 0x5a0: 84, + 0x5a1: 84, + 0x5a2: 84, + 0x5a3: 84, + 0x5a4: 84, + 0x5a5: 84, + 0x5a6: 84, + 0x5a7: 84, + 0x5a8: 84, + 0x5a9: 84, + 0x5aa: 84, + 0x5ab: 84, + 0x5ac: 84, + 0x5ad: 84, + 0x5ae: 84, + 0x5af: 84, + 0x5b0: 84, + 0x5b1: 84, + 0x5b2: 84, + 0x5b3: 84, + 0x5b4: 84, + 0x5b5: 84, + 0x5b6: 84, + 0x5b7: 84, + 0x5b8: 84, + 0x5b9: 84, + 0x5ba: 84, + 0x5bb: 84, + 0x5bc: 84, + 0x5bd: 84, + 0x5bf: 84, + 0x5c1: 84, + 0x5c2: 84, + 0x5c4: 84, + 0x5c5: 84, + 0x5c7: 84, + 0x610: 84, + 0x611: 84, + 0x612: 84, + 0x613: 84, + 0x614: 84, + 0x615: 84, + 0x616: 84, + 0x617: 84, + 0x618: 84, + 0x619: 84, + 0x61a: 84, + 0x61c: 84, + 0x620: 68, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62a: 68, + 0x62b: 68, + 0x62c: 68, + 0x62d: 68, + 0x62e: 68, + 0x62f: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63a: 68, + 0x63b: 68, + 0x63c: 68, + 0x63d: 68, + 0x63e: 68, + 0x63f: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64a: 68, + 0x64b: 84, + 0x64c: 84, + 0x64d: 84, + 0x64e: 84, + 0x64f: 84, + 0x650: 84, + 0x651: 84, + 0x652: 84, + 0x653: 84, + 0x654: 84, + 0x655: 84, + 0x656: 84, + 0x657: 84, + 0x658: 84, + 0x659: 84, + 0x65a: 84, + 0x65b: 84, + 0x65c: 84, + 0x65d: 84, + 0x65e: 84, + 0x65f: 84, + 0x66e: 68, + 0x66f: 68, + 0x670: 84, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67a: 68, + 0x67b: 68, + 0x67c: 68, + 0x67d: 68, + 0x67e: 68, + 0x67f: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68a: 82, + 0x68b: 82, + 0x68c: 82, + 0x68d: 82, + 0x68e: 82, + 0x68f: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69a: 68, + 0x69b: 68, + 0x69c: 68, + 0x69d: 68, + 0x69e: 68, + 0x69f: 68, + 0x6a0: 68, + 0x6a1: 68, + 0x6a2: 68, + 0x6a3: 68, + 0x6a4: 68, + 0x6a5: 68, + 0x6a6: 68, + 0x6a7: 68, + 0x6a8: 68, + 0x6a9: 68, + 0x6aa: 68, + 0x6ab: 68, + 0x6ac: 68, + 0x6ad: 68, + 0x6ae: 68, + 0x6af: 68, + 0x6b0: 68, + 0x6b1: 68, + 0x6b2: 68, + 0x6b3: 68, + 0x6b4: 68, + 0x6b5: 68, + 0x6b6: 68, + 0x6b7: 68, + 0x6b8: 68, + 0x6b9: 68, + 0x6ba: 68, + 0x6bb: 68, + 0x6bc: 68, + 0x6bd: 68, + 0x6be: 68, + 0x6bf: 68, + 0x6c0: 82, + 0x6c1: 68, + 0x6c2: 68, + 0x6c3: 82, + 0x6c4: 82, + 0x6c5: 82, + 0x6c6: 82, + 0x6c7: 82, + 0x6c8: 82, + 0x6c9: 82, + 0x6ca: 82, + 0x6cb: 82, + 0x6cc: 68, + 0x6cd: 82, + 0x6ce: 68, + 0x6cf: 82, + 0x6d0: 68, + 0x6d1: 68, + 0x6d2: 82, + 0x6d3: 82, + 0x6d5: 82, + 0x6d6: 84, + 0x6d7: 84, + 0x6d8: 84, + 0x6d9: 84, + 0x6da: 84, + 0x6db: 84, + 0x6dc: 84, + 0x6df: 84, + 0x6e0: 84, + 0x6e1: 84, + 0x6e2: 84, + 0x6e3: 84, + 0x6e4: 84, + 0x6e7: 84, + 0x6e8: 84, + 0x6ea: 84, + 0x6eb: 84, + 0x6ec: 84, + 0x6ed: 84, + 0x6ee: 82, + 0x6ef: 82, + 0x6fa: 68, + 0x6fb: 68, + 0x6fc: 68, + 0x6ff: 68, + 0x70f: 84, + 0x710: 82, + 0x711: 84, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71a: 68, + 0x71b: 68, + 0x71c: 68, + 0x71d: 68, + 0x71e: 82, + 0x71f: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72a: 82, + 0x72b: 68, + 0x72c: 82, + 0x72d: 68, + 0x72e: 68, + 0x72f: 82, + 0x730: 84, + 0x731: 84, + 0x732: 84, + 0x733: 84, + 0x734: 84, + 0x735: 84, + 0x736: 84, + 0x737: 84, + 0x738: 84, + 0x739: 84, + 0x73a: 84, + 0x73b: 84, + 0x73c: 84, + 0x73d: 84, + 0x73e: 84, + 0x73f: 84, + 0x740: 84, + 0x741: 84, + 0x742: 84, + 0x743: 84, + 0x744: 84, + 0x745: 84, + 0x746: 84, + 0x747: 84, + 0x748: 84, + 0x749: 84, + 0x74a: 84, + 0x74d: 82, + 0x74e: 68, + 0x74f: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75a: 82, + 0x75b: 82, + 0x75c: 68, + 0x75d: 68, + 0x75e: 68, + 0x75f: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76a: 68, + 0x76b: 82, + 0x76c: 82, + 0x76d: 68, + 0x76e: 68, + 0x76f: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77a: 68, + 0x77b: 68, + 0x77c: 68, + 0x77d: 68, + 0x77e: 68, + 0x77f: 68, + 0x7a6: 84, + 0x7a7: 84, + 0x7a8: 84, + 0x7a9: 84, + 0x7aa: 84, + 0x7ab: 84, + 0x7ac: 84, + 0x7ad: 84, + 0x7ae: 84, + 0x7af: 84, + 0x7b0: 84, + 0x7ca: 68, + 0x7cb: 68, + 0x7cc: 68, + 0x7cd: 68, + 0x7ce: 68, + 0x7cf: 68, + 0x7d0: 68, + 0x7d1: 68, + 0x7d2: 68, + 0x7d3: 68, + 0x7d4: 68, + 0x7d5: 68, + 0x7d6: 68, + 0x7d7: 68, + 0x7d8: 68, + 0x7d9: 68, + 0x7da: 68, + 0x7db: 68, + 0x7dc: 68, + 0x7dd: 68, + 0x7de: 68, + 0x7df: 68, + 0x7e0: 68, + 0x7e1: 68, + 0x7e2: 68, + 0x7e3: 68, + 0x7e4: 68, + 0x7e5: 68, + 0x7e6: 68, + 0x7e7: 68, + 0x7e8: 68, + 0x7e9: 68, + 0x7ea: 68, + 0x7eb: 84, + 0x7ec: 84, + 0x7ed: 84, + 0x7ee: 84, + 0x7ef: 84, + 0x7f0: 84, + 0x7f1: 84, + 0x7f2: 84, + 0x7f3: 84, + 0x7fa: 67, + 0x7fd: 84, + 0x816: 84, + 0x817: 84, + 0x818: 84, + 0x819: 84, + 0x81b: 84, + 0x81c: 84, + 0x81d: 84, + 0x81e: 84, + 0x81f: 84, + 0x820: 84, + 0x821: 84, + 0x822: 84, + 0x823: 84, + 0x825: 84, + 0x826: 84, + 0x827: 84, + 0x829: 84, + 0x82a: 84, + 0x82b: 84, + 0x82c: 84, + 0x82d: 84, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84a: 68, + 0x84b: 68, + 0x84c: 68, + 0x84d: 68, + 0x84e: 68, + 0x84f: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x859: 84, + 0x85a: 84, + 0x85b: 84, + 0x860: 68, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86a: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87a: 82, + 0x87b: 82, + 0x87c: 82, + 0x87d: 82, + 0x87e: 82, + 0x87f: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x889: 68, + 0x88a: 68, + 0x88b: 68, + 0x88c: 68, + 0x88d: 68, + 0x88e: 82, + 0x898: 84, + 0x899: 84, + 0x89a: 84, + 0x89b: 84, + 0x89c: 84, + 0x89d: 84, + 0x89e: 84, + 0x89f: 84, + 0x8a0: 68, + 0x8a1: 68, + 0x8a2: 68, + 0x8a3: 68, + 0x8a4: 68, + 0x8a5: 68, + 0x8a6: 68, + 0x8a7: 68, + 0x8a8: 68, + 0x8a9: 68, + 0x8aa: 82, + 0x8ab: 82, + 0x8ac: 82, + 0x8ae: 82, + 0x8af: 68, + 0x8b0: 68, + 0x8b1: 82, + 0x8b2: 82, + 0x8b3: 68, + 0x8b4: 68, + 0x8b5: 68, + 0x8b6: 68, + 0x8b7: 68, + 0x8b8: 68, + 0x8b9: 82, + 0x8ba: 68, + 0x8bb: 68, + 0x8bc: 68, + 0x8bd: 68, + 0x8be: 68, + 0x8bf: 68, + 0x8c0: 68, + 0x8c1: 68, + 0x8c2: 68, + 0x8c3: 68, + 0x8c4: 68, + 0x8c5: 68, + 0x8c6: 68, + 0x8c7: 68, + 0x8c8: 68, + 0x8ca: 84, + 0x8cb: 84, + 0x8cc: 84, + 0x8cd: 84, + 0x8ce: 84, + 0x8cf: 84, + 0x8d0: 84, + 0x8d1: 84, + 0x8d2: 84, + 0x8d3: 84, + 0x8d4: 84, + 0x8d5: 84, + 0x8d6: 84, + 0x8d7: 84, + 0x8d8: 84, + 0x8d9: 84, + 0x8da: 84, + 0x8db: 84, + 0x8dc: 84, + 0x8dd: 84, + 0x8de: 84, + 0x8df: 84, + 0x8e0: 84, + 0x8e1: 84, + 0x8e3: 84, + 0x8e4: 84, + 0x8e5: 84, + 0x8e6: 84, + 0x8e7: 84, + 0x8e8: 84, + 0x8e9: 84, + 0x8ea: 84, + 0x8eb: 84, + 0x8ec: 84, + 0x8ed: 84, + 0x8ee: 84, + 0x8ef: 84, + 0x8f0: 84, + 0x8f1: 84, + 0x8f2: 84, + 0x8f3: 84, + 0x8f4: 84, + 0x8f5: 84, + 0x8f6: 84, + 0x8f7: 84, + 0x8f8: 84, + 0x8f9: 84, + 0x8fa: 84, + 0x8fb: 84, + 0x8fc: 84, + 0x8fd: 84, + 0x8fe: 84, + 0x8ff: 84, + 0x900: 84, + 0x901: 84, + 0x902: 84, + 0x93a: 84, + 0x93c: 84, + 0x941: 84, + 0x942: 84, + 0x943: 84, + 0x944: 84, + 0x945: 84, + 0x946: 84, + 0x947: 84, + 0x948: 84, + 0x94d: 84, + 0x951: 84, + 0x952: 84, + 0x953: 84, + 0x954: 84, + 0x955: 84, + 0x956: 84, + 0x957: 84, + 0x962: 84, + 0x963: 84, + 0x981: 84, + 0x9bc: 84, + 0x9c1: 84, + 0x9c2: 84, + 0x9c3: 84, + 0x9c4: 84, + 0x9cd: 84, + 0x9e2: 84, + 0x9e3: 84, + 0x9fe: 84, + 0xa01: 84, + 0xa02: 84, + 0xa3c: 84, + 0xa41: 84, + 0xa42: 84, + 0xa47: 84, + 0xa48: 84, + 0xa4b: 84, + 0xa4c: 84, + 0xa4d: 84, + 0xa51: 84, + 0xa70: 84, + 0xa71: 84, + 0xa75: 84, + 0xa81: 84, + 0xa82: 84, + 0xabc: 84, + 0xac1: 84, + 0xac2: 84, + 0xac3: 84, + 0xac4: 84, + 0xac5: 84, + 0xac7: 84, + 0xac8: 84, + 0xacd: 84, + 0xae2: 84, + 0xae3: 84, + 0xafa: 84, + 0xafb: 84, + 0xafc: 84, + 0xafd: 84, + 0xafe: 84, + 0xaff: 84, + 0xb01: 84, + 0xb3c: 84, + 0xb3f: 84, + 0xb41: 84, + 0xb42: 84, + 0xb43: 84, + 0xb44: 84, + 0xb4d: 84, + 0xb55: 84, + 0xb56: 84, + 0xb62: 84, + 0xb63: 84, + 0xb82: 84, + 0xbc0: 84, + 0xbcd: 84, + 0xc00: 84, + 0xc04: 84, + 0xc3c: 84, + 0xc3e: 84, + 0xc3f: 84, + 0xc40: 84, + 0xc46: 84, + 0xc47: 84, + 0xc48: 84, + 0xc4a: 84, + 0xc4b: 84, + 0xc4c: 84, + 0xc4d: 84, + 0xc55: 84, + 0xc56: 84, + 0xc62: 84, + 0xc63: 84, + 0xc81: 84, + 0xcbc: 84, + 0xcbf: 84, + 0xcc6: 84, + 0xccc: 84, + 0xccd: 84, + 0xce2: 84, + 0xce3: 84, + 0xd00: 84, + 0xd01: 84, + 0xd3b: 84, + 0xd3c: 84, + 0xd41: 84, + 0xd42: 84, + 0xd43: 84, + 0xd44: 84, + 0xd4d: 84, + 0xd62: 84, + 0xd63: 84, + 0xd81: 84, + 0xdca: 84, + 0xdd2: 84, + 0xdd3: 84, + 0xdd4: 84, + 0xdd6: 84, + 0xe31: 84, + 0xe34: 84, + 0xe35: 84, + 0xe36: 84, + 0xe37: 84, + 0xe38: 84, + 0xe39: 84, + 0xe3a: 84, + 0xe47: 84, + 0xe48: 84, + 0xe49: 84, + 0xe4a: 84, + 0xe4b: 84, + 0xe4c: 84, + 0xe4d: 84, + 0xe4e: 84, + 0xeb1: 84, + 0xeb4: 84, + 0xeb5: 84, + 0xeb6: 84, + 0xeb7: 84, + 0xeb8: 84, + 0xeb9: 84, + 0xeba: 84, + 0xebb: 84, + 0xebc: 84, + 0xec8: 84, + 0xec9: 84, + 0xeca: 84, + 0xecb: 84, + 0xecc: 84, + 0xecd: 84, + 0xece: 84, + 0xf18: 84, + 0xf19: 84, + 0xf35: 84, + 0xf37: 84, + 0xf39: 84, + 0xf71: 84, + 0xf72: 84, + 0xf73: 84, + 0xf74: 84, + 0xf75: 84, + 0xf76: 84, + 0xf77: 84, + 0xf78: 84, + 0xf79: 84, + 0xf7a: 84, + 0xf7b: 84, + 0xf7c: 84, + 0xf7d: 84, + 0xf7e: 84, + 0xf80: 84, + 0xf81: 84, + 0xf82: 84, + 0xf83: 84, + 0xf84: 84, + 0xf86: 84, + 0xf87: 84, + 0xf8d: 84, + 0xf8e: 84, + 0xf8f: 84, + 0xf90: 84, + 0xf91: 84, + 0xf92: 84, + 0xf93: 84, + 0xf94: 84, + 0xf95: 84, + 0xf96: 84, + 0xf97: 84, + 0xf99: 84, + 0xf9a: 84, + 0xf9b: 84, + 0xf9c: 84, + 0xf9d: 84, + 0xf9e: 84, + 0xf9f: 84, + 0xfa0: 84, + 0xfa1: 84, + 0xfa2: 84, + 0xfa3: 84, + 0xfa4: 84, + 0xfa5: 84, + 0xfa6: 84, + 0xfa7: 84, + 0xfa8: 84, + 0xfa9: 84, + 0xfaa: 84, + 0xfab: 84, + 0xfac: 84, + 0xfad: 84, + 0xfae: 84, + 0xfaf: 84, + 0xfb0: 84, + 0xfb1: 84, + 0xfb2: 84, + 0xfb3: 84, + 0xfb4: 84, + 0xfb5: 84, + 0xfb6: 84, + 0xfb7: 84, + 0xfb8: 84, + 0xfb9: 84, + 0xfba: 84, + 0xfbb: 84, + 0xfbc: 84, + 0xfc6: 84, + 0x102d: 84, + 0x102e: 84, + 0x102f: 84, + 0x1030: 84, + 0x1032: 84, + 0x1033: 84, + 0x1034: 84, + 0x1035: 84, + 0x1036: 84, + 0x1037: 84, + 0x1039: 84, + 0x103a: 84, + 0x103d: 84, + 0x103e: 84, + 0x1058: 84, + 0x1059: 84, + 0x105e: 84, + 0x105f: 84, + 0x1060: 84, + 0x1071: 84, + 0x1072: 84, + 0x1073: 84, + 0x1074: 84, + 0x1082: 84, + 0x1085: 84, + 0x1086: 84, + 0x108d: 84, + 0x109d: 84, + 0x135d: 84, + 0x135e: 84, + 0x135f: 84, + 0x1712: 84, + 0x1713: 84, + 0x1714: 84, + 0x1732: 84, + 0x1733: 84, + 0x1752: 84, + 0x1753: 84, + 0x1772: 84, + 0x1773: 84, + 0x17b4: 84, + 0x17b5: 84, + 0x17b7: 84, + 0x17b8: 84, + 0x17b9: 84, + 0x17ba: 84, + 0x17bb: 84, + 0x17bc: 84, + 0x17bd: 84, + 0x17c6: 84, + 0x17c9: 84, + 0x17ca: 84, + 0x17cb: 84, + 0x17cc: 84, + 0x17cd: 84, + 0x17ce: 84, + 0x17cf: 84, + 0x17d0: 84, + 0x17d1: 84, + 0x17d2: 84, + 0x17d3: 84, + 0x17dd: 84, + 0x1807: 68, + 0x180a: 67, + 0x180b: 84, + 0x180c: 84, + 0x180d: 84, + 0x180f: 84, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182a: 68, + 0x182b: 68, + 0x182c: 68, + 0x182d: 68, + 0x182e: 68, + 0x182f: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183a: 68, + 0x183b: 68, + 0x183c: 68, + 0x183d: 68, + 0x183e: 68, + 0x183f: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184a: 68, + 0x184b: 68, + 0x184c: 68, + 0x184d: 68, + 0x184e: 68, + 0x184f: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185a: 68, + 0x185b: 68, + 0x185c: 68, + 0x185d: 68, + 0x185e: 68, + 0x185f: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186a: 68, + 0x186b: 68, + 0x186c: 68, + 0x186d: 68, + 0x186e: 68, + 0x186f: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188a: 68, + 0x188b: 68, + 0x188c: 68, + 0x188d: 68, + 0x188e: 68, + 0x188f: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189a: 68, + 0x189b: 68, + 0x189c: 68, + 0x189d: 68, + 0x189e: 68, + 0x189f: 68, + 0x18a0: 68, + 0x18a1: 68, + 0x18a2: 68, + 0x18a3: 68, + 0x18a4: 68, + 0x18a5: 68, + 0x18a6: 68, + 0x18a7: 68, + 0x18a8: 68, + 0x18a9: 84, + 0x18aa: 68, + 0x1920: 84, + 0x1921: 84, + 0x1922: 84, + 0x1927: 84, + 0x1928: 84, + 0x1932: 84, + 0x1939: 84, + 0x193a: 84, + 0x193b: 84, + 0x1a17: 84, + 0x1a18: 84, + 0x1a1b: 84, + 0x1a56: 84, + 0x1a58: 84, + 0x1a59: 84, + 0x1a5a: 84, + 0x1a5b: 84, + 0x1a5c: 84, + 0x1a5d: 84, + 0x1a5e: 84, + 0x1a60: 84, + 0x1a62: 84, + 0x1a65: 84, + 0x1a66: 84, + 0x1a67: 84, + 0x1a68: 84, + 0x1a69: 84, + 0x1a6a: 84, + 0x1a6b: 84, + 0x1a6c: 84, + 0x1a73: 84, + 0x1a74: 84, + 0x1a75: 84, + 0x1a76: 84, + 0x1a77: 84, + 0x1a78: 84, + 0x1a79: 84, + 0x1a7a: 84, + 0x1a7b: 84, + 0x1a7c: 84, + 0x1a7f: 84, + 0x1ab0: 84, + 0x1ab1: 84, + 0x1ab2: 84, + 0x1ab3: 84, + 0x1ab4: 84, + 0x1ab5: 84, + 0x1ab6: 84, + 0x1ab7: 84, + 0x1ab8: 84, + 0x1ab9: 84, + 0x1aba: 84, + 0x1abb: 84, + 0x1abc: 84, + 0x1abd: 84, + 0x1abe: 84, + 0x1abf: 84, + 0x1ac0: 84, + 0x1ac1: 84, + 0x1ac2: 84, + 0x1ac3: 84, + 0x1ac4: 84, + 0x1ac5: 84, + 0x1ac6: 84, + 0x1ac7: 84, + 0x1ac8: 84, + 0x1ac9: 84, + 0x1aca: 84, + 0x1acb: 84, + 0x1acc: 84, + 0x1acd: 84, + 0x1ace: 84, + 0x1b00: 84, + 0x1b01: 84, + 0x1b02: 84, + 0x1b03: 84, + 0x1b34: 84, + 0x1b36: 84, + 0x1b37: 84, + 0x1b38: 84, + 0x1b39: 84, + 0x1b3a: 84, + 0x1b3c: 84, + 0x1b42: 84, + 0x1b6b: 84, + 0x1b6c: 84, + 0x1b6d: 84, + 0x1b6e: 84, + 0x1b6f: 84, + 0x1b70: 84, + 0x1b71: 84, + 0x1b72: 84, + 0x1b73: 84, + 0x1b80: 84, + 0x1b81: 84, + 0x1ba2: 84, + 0x1ba3: 84, + 0x1ba4: 84, + 0x1ba5: 84, + 0x1ba8: 84, + 0x1ba9: 84, + 0x1bab: 84, + 0x1bac: 84, + 0x1bad: 84, + 0x1be6: 84, + 0x1be8: 84, + 0x1be9: 84, + 0x1bed: 84, + 0x1bef: 84, + 0x1bf0: 84, + 0x1bf1: 84, + 0x1c2c: 84, + 0x1c2d: 84, + 0x1c2e: 84, + 0x1c2f: 84, + 0x1c30: 84, + 0x1c31: 84, + 0x1c32: 84, + 0x1c33: 84, + 0x1c36: 84, + 0x1c37: 84, + 0x1cd0: 84, + 0x1cd1: 84, + 0x1cd2: 84, + 0x1cd4: 84, + 0x1cd5: 84, + 0x1cd6: 84, + 0x1cd7: 84, + 0x1cd8: 84, + 0x1cd9: 84, + 0x1cda: 84, + 0x1cdb: 84, + 0x1cdc: 84, + 0x1cdd: 84, + 0x1cde: 84, + 0x1cdf: 84, + 0x1ce0: 84, + 0x1ce2: 84, + 0x1ce3: 84, + 0x1ce4: 84, + 0x1ce5: 84, + 0x1ce6: 84, + 0x1ce7: 84, + 0x1ce8: 84, + 0x1ced: 84, + 0x1cf4: 84, + 0x1cf8: 84, + 0x1cf9: 84, + 0x1dc0: 84, + 0x1dc1: 84, + 0x1dc2: 84, + 0x1dc3: 84, + 0x1dc4: 84, + 0x1dc5: 84, + 0x1dc6: 84, + 0x1dc7: 84, + 0x1dc8: 84, + 0x1dc9: 84, + 0x1dca: 84, + 0x1dcb: 84, + 0x1dcc: 84, + 0x1dcd: 84, + 0x1dce: 84, + 0x1dcf: 84, + 0x1dd0: 84, + 0x1dd1: 84, + 0x1dd2: 84, + 0x1dd3: 84, + 0x1dd4: 84, + 0x1dd5: 84, + 0x1dd6: 84, + 0x1dd7: 84, + 0x1dd8: 84, + 0x1dd9: 84, + 0x1dda: 84, + 0x1ddb: 84, + 0x1ddc: 84, + 0x1ddd: 84, + 0x1dde: 84, + 0x1ddf: 84, + 0x1de0: 84, + 0x1de1: 84, + 0x1de2: 84, + 0x1de3: 84, + 0x1de4: 84, + 0x1de5: 84, + 0x1de6: 84, + 0x1de7: 84, + 0x1de8: 84, + 0x1de9: 84, + 0x1dea: 84, + 0x1deb: 84, + 0x1dec: 84, + 0x1ded: 84, + 0x1dee: 84, + 0x1def: 84, + 0x1df0: 84, + 0x1df1: 84, + 0x1df2: 84, + 0x1df3: 84, + 0x1df4: 84, + 0x1df5: 84, + 0x1df6: 84, + 0x1df7: 84, + 0x1df8: 84, + 0x1df9: 84, + 0x1dfa: 84, + 0x1dfb: 84, + 0x1dfc: 84, + 0x1dfd: 84, + 0x1dfe: 84, + 0x1dff: 84, + 0x200b: 84, + 0x200d: 67, + 0x200e: 84, + 0x200f: 84, + 0x202a: 84, + 0x202b: 84, + 0x202c: 84, + 0x202d: 84, + 0x202e: 84, + 0x2060: 84, + 0x2061: 84, + 0x2062: 84, + 0x2063: 84, + 0x2064: 84, + 0x206a: 84, + 0x206b: 84, + 0x206c: 84, + 0x206d: 84, + 0x206e: 84, + 0x206f: 84, + 0x20d0: 84, + 0x20d1: 84, + 0x20d2: 84, + 0x20d3: 84, + 0x20d4: 84, + 0x20d5: 84, + 0x20d6: 84, + 0x20d7: 84, + 0x20d8: 84, + 0x20d9: 84, + 0x20da: 84, + 0x20db: 84, + 0x20dc: 84, + 0x20dd: 84, + 0x20de: 84, + 0x20df: 84, + 0x20e0: 84, + 0x20e1: 84, + 0x20e2: 84, + 0x20e3: 84, + 0x20e4: 84, + 0x20e5: 84, + 0x20e6: 84, + 0x20e7: 84, + 0x20e8: 84, + 0x20e9: 84, + 0x20ea: 84, + 0x20eb: 84, + 0x20ec: 84, + 0x20ed: 84, + 0x20ee: 84, + 0x20ef: 84, + 0x20f0: 84, + 0x2cef: 84, + 0x2cf0: 84, + 0x2cf1: 84, + 0x2d7f: 84, + 0x2de0: 84, + 0x2de1: 84, + 0x2de2: 84, + 0x2de3: 84, + 0x2de4: 84, + 0x2de5: 84, + 0x2de6: 84, + 0x2de7: 84, + 0x2de8: 84, + 0x2de9: 84, + 0x2dea: 84, + 0x2deb: 84, + 0x2dec: 84, + 0x2ded: 84, + 0x2dee: 84, + 0x2def: 84, + 0x2df0: 84, + 0x2df1: 84, + 0x2df2: 84, + 0x2df3: 84, + 0x2df4: 84, + 0x2df5: 84, + 0x2df6: 84, + 0x2df7: 84, + 0x2df8: 84, + 0x2df9: 84, + 0x2dfa: 84, + 0x2dfb: 84, + 0x2dfc: 84, + 0x2dfd: 84, + 0x2dfe: 84, + 0x2dff: 84, + 0x302a: 84, + 0x302b: 84, + 0x302c: 84, + 0x302d: 84, + 0x3099: 84, + 0x309a: 84, + 0xa66f: 84, + 0xa670: 84, + 0xa671: 84, + 0xa672: 84, + 0xa674: 84, + 0xa675: 84, + 0xa676: 84, + 0xa677: 84, + 0xa678: 84, + 0xa679: 84, + 0xa67a: 84, + 0xa67b: 84, + 0xa67c: 84, + 0xa67d: 84, + 0xa69e: 84, + 0xa69f: 84, + 0xa6f0: 84, + 0xa6f1: 84, + 0xa802: 84, + 0xa806: 84, + 0xa80b: 84, + 0xa825: 84, + 0xa826: 84, + 0xa82c: 84, + 0xa840: 68, + 0xa841: 68, + 0xa842: 68, + 0xa843: 68, + 0xa844: 68, + 0xa845: 68, + 0xa846: 68, + 0xa847: 68, + 0xa848: 68, + 0xa849: 68, + 0xa84a: 68, + 0xa84b: 68, + 0xa84c: 68, + 0xa84d: 68, + 0xa84e: 68, + 0xa84f: 68, + 0xa850: 68, + 0xa851: 68, + 0xa852: 68, + 0xa853: 68, + 0xa854: 68, + 0xa855: 68, + 0xa856: 68, + 0xa857: 68, + 0xa858: 68, + 0xa859: 68, + 0xa85a: 68, + 0xa85b: 68, + 0xa85c: 68, + 0xa85d: 68, + 0xa85e: 68, + 0xa85f: 68, + 0xa860: 68, + 0xa861: 68, + 0xa862: 68, + 0xa863: 68, + 0xa864: 68, + 0xa865: 68, + 0xa866: 68, + 0xa867: 68, + 0xa868: 68, + 0xa869: 68, + 0xa86a: 68, + 0xa86b: 68, + 0xa86c: 68, + 0xa86d: 68, + 0xa86e: 68, + 0xa86f: 68, + 0xa870: 68, + 0xa871: 68, + 0xa872: 76, + 0xa8c4: 84, + 0xa8c5: 84, + 0xa8e0: 84, + 0xa8e1: 84, + 0xa8e2: 84, + 0xa8e3: 84, + 0xa8e4: 84, + 0xa8e5: 84, + 0xa8e6: 84, + 0xa8e7: 84, + 0xa8e8: 84, + 0xa8e9: 84, + 0xa8ea: 84, + 0xa8eb: 84, + 0xa8ec: 84, + 0xa8ed: 84, + 0xa8ee: 84, + 0xa8ef: 84, + 0xa8f0: 84, + 0xa8f1: 84, + 0xa8ff: 84, + 0xa926: 84, + 0xa927: 84, + 0xa928: 84, + 0xa929: 84, + 0xa92a: 84, + 0xa92b: 84, + 0xa92c: 84, + 0xa92d: 84, + 0xa947: 84, + 0xa948: 84, + 0xa949: 84, + 0xa94a: 84, + 0xa94b: 84, + 0xa94c: 84, + 0xa94d: 84, + 0xa94e: 84, + 0xa94f: 84, + 0xa950: 84, + 0xa951: 84, + 0xa980: 84, + 0xa981: 84, + 0xa982: 84, + 0xa9b3: 84, + 0xa9b6: 84, + 0xa9b7: 84, + 0xa9b8: 84, + 0xa9b9: 84, + 0xa9bc: 84, + 0xa9bd: 84, + 0xa9e5: 84, + 0xaa29: 84, + 0xaa2a: 84, + 0xaa2b: 84, + 0xaa2c: 84, + 0xaa2d: 84, + 0xaa2e: 84, + 0xaa31: 84, + 0xaa32: 84, + 0xaa35: 84, + 0xaa36: 84, + 0xaa43: 84, + 0xaa4c: 84, + 0xaa7c: 84, + 0xaab0: 84, + 0xaab2: 84, + 0xaab3: 84, + 0xaab4: 84, + 0xaab7: 84, + 0xaab8: 84, + 0xaabe: 84, + 0xaabf: 84, + 0xaac1: 84, + 0xaaec: 84, + 0xaaed: 84, + 0xaaf6: 84, + 0xabe5: 84, + 0xabe8: 84, + 0xabed: 84, + 0xfb1e: 84, + 0xfe00: 84, + 0xfe01: 84, + 0xfe02: 84, + 0xfe03: 84, + 0xfe04: 84, + 0xfe05: 84, + 0xfe06: 84, + 0xfe07: 84, + 0xfe08: 84, + 0xfe09: 84, + 0xfe0a: 84, + 0xfe0b: 84, + 0xfe0c: 84, + 0xfe0d: 84, + 0xfe0e: 84, + 0xfe0f: 84, + 0xfe20: 84, + 0xfe21: 84, + 0xfe22: 84, + 0xfe23: 84, + 0xfe24: 84, + 0xfe25: 84, + 0xfe26: 84, + 0xfe27: 84, + 0xfe28: 84, + 0xfe29: 84, + 0xfe2a: 84, + 0xfe2b: 84, + 0xfe2c: 84, + 0xfe2d: 84, + 0xfe2e: 84, + 0xfe2f: 84, + 0xfeff: 84, + 0xfff9: 84, + 0xfffa: 84, + 0xfffb: 84, + 0x101fd: 84, + 0x102e0: 84, + 0x10376: 84, + 0x10377: 84, + 0x10378: 84, + 0x10379: 84, + 0x1037a: 84, + 0x10a01: 84, + 0x10a02: 84, + 0x10a03: 84, + 0x10a05: 84, + 0x10a06: 84, + 0x10a0c: 84, + 0x10a0d: 84, + 0x10a0e: 84, + 0x10a0f: 84, + 0x10a38: 84, + 0x10a39: 84, + 0x10a3a: 84, + 0x10a3f: 84, + 0x10ac0: 68, + 0x10ac1: 68, + 0x10ac2: 68, + 0x10ac3: 68, + 0x10ac4: 68, + 0x10ac5: 82, + 0x10ac7: 82, + 0x10ac9: 82, + 0x10aca: 82, + 0x10acd: 76, + 0x10ace: 82, + 0x10acf: 82, + 0x10ad0: 82, + 0x10ad1: 82, + 0x10ad2: 82, + 0x10ad3: 68, + 0x10ad4: 68, + 0x10ad5: 68, + 0x10ad6: 68, + 0x10ad7: 76, + 0x10ad8: 68, + 0x10ad9: 68, + 0x10ada: 68, + 0x10adb: 68, + 0x10adc: 68, + 0x10add: 82, + 0x10ade: 68, + 0x10adf: 68, + 0x10ae0: 68, + 0x10ae1: 82, + 0x10ae4: 82, + 0x10ae5: 84, + 0x10ae6: 84, + 0x10aeb: 68, + 0x10aec: 68, + 0x10aed: 68, + 0x10aee: 68, + 0x10aef: 82, + 0x10b80: 68, + 0x10b81: 82, + 0x10b82: 68, + 0x10b83: 82, + 0x10b84: 82, + 0x10b85: 82, + 0x10b86: 68, + 0x10b87: 68, + 0x10b88: 68, + 0x10b89: 82, + 0x10b8a: 68, + 0x10b8b: 68, + 0x10b8c: 82, + 0x10b8d: 68, + 0x10b8e: 82, + 0x10b8f: 82, + 0x10b90: 68, + 0x10b91: 82, + 0x10ba9: 82, + 0x10baa: 82, + 0x10bab: 82, + 0x10bac: 82, + 0x10bad: 68, + 0x10bae: 68, + 0x10d00: 76, + 0x10d01: 68, + 0x10d02: 68, + 0x10d03: 68, + 0x10d04: 68, + 0x10d05: 68, + 0x10d06: 68, + 0x10d07: 68, + 0x10d08: 68, + 0x10d09: 68, + 0x10d0a: 68, + 0x10d0b: 68, + 0x10d0c: 68, + 0x10d0d: 68, + 0x10d0e: 68, + 0x10d0f: 68, + 0x10d10: 68, + 0x10d11: 68, + 0x10d12: 68, + 0x10d13: 68, + 0x10d14: 68, + 0x10d15: 68, + 0x10d16: 68, + 0x10d17: 68, + 0x10d18: 68, + 0x10d19: 68, + 0x10d1a: 68, + 0x10d1b: 68, + 0x10d1c: 68, + 0x10d1d: 68, + 0x10d1e: 68, + 0x10d1f: 68, + 0x10d20: 68, + 0x10d21: 68, + 0x10d22: 82, + 0x10d23: 68, + 0x10d24: 84, + 0x10d25: 84, + 0x10d26: 84, + 0x10d27: 84, + 0x10eab: 84, + 0x10eac: 84, + 0x10efd: 84, + 0x10efe: 84, + 0x10eff: 84, + 0x10f30: 68, + 0x10f31: 68, + 0x10f32: 68, + 0x10f33: 82, + 0x10f34: 68, + 0x10f35: 68, + 0x10f36: 68, + 0x10f37: 68, + 0x10f38: 68, + 0x10f39: 68, + 0x10f3a: 68, + 0x10f3b: 68, + 0x10f3c: 68, + 0x10f3d: 68, + 0x10f3e: 68, + 0x10f3f: 68, + 0x10f40: 68, + 0x10f41: 68, + 0x10f42: 68, + 0x10f43: 68, + 0x10f44: 68, + 0x10f46: 84, + 0x10f47: 84, + 0x10f48: 84, + 0x10f49: 84, + 0x10f4a: 84, + 0x10f4b: 84, + 0x10f4c: 84, + 0x10f4d: 84, + 0x10f4e: 84, + 0x10f4f: 84, + 0x10f50: 84, + 0x10f51: 68, + 0x10f52: 68, + 0x10f53: 68, + 0x10f54: 82, + 0x10f70: 68, + 0x10f71: 68, + 0x10f72: 68, + 0x10f73: 68, + 0x10f74: 82, + 0x10f75: 82, + 0x10f76: 68, + 0x10f77: 68, + 0x10f78: 68, + 0x10f79: 68, + 0x10f7a: 68, + 0x10f7b: 68, + 0x10f7c: 68, + 0x10f7d: 68, + 0x10f7e: 68, + 0x10f7f: 68, + 0x10f80: 68, + 0x10f81: 68, + 0x10f82: 84, + 0x10f83: 84, + 0x10f84: 84, + 0x10f85: 84, + 0x10fb0: 68, + 0x10fb2: 68, + 0x10fb3: 68, + 0x10fb4: 82, + 0x10fb5: 82, + 0x10fb6: 82, + 0x10fb8: 68, + 0x10fb9: 82, + 0x10fba: 82, + 0x10fbb: 68, + 0x10fbc: 68, + 0x10fbd: 82, + 0x10fbe: 68, + 0x10fbf: 68, + 0x10fc1: 68, + 0x10fc2: 82, + 0x10fc3: 82, + 0x10fc4: 68, + 0x10fc9: 82, + 0x10fca: 68, + 0x10fcb: 76, + 0x11001: 84, + 0x11038: 84, + 0x11039: 84, + 0x1103a: 84, + 0x1103b: 84, + 0x1103c: 84, + 0x1103d: 84, + 0x1103e: 84, + 0x1103f: 84, + 0x11040: 84, + 0x11041: 84, + 0x11042: 84, + 0x11043: 84, + 0x11044: 84, + 0x11045: 84, + 0x11046: 84, + 0x11070: 84, + 0x11073: 84, + 0x11074: 84, + 0x1107f: 84, + 0x11080: 84, + 0x11081: 84, + 0x110b3: 84, + 0x110b4: 84, + 0x110b5: 84, + 0x110b6: 84, + 0x110b9: 84, + 0x110ba: 84, + 0x110c2: 84, + 0x11100: 84, + 0x11101: 84, + 0x11102: 84, + 0x11127: 84, + 0x11128: 84, + 0x11129: 84, + 0x1112a: 84, + 0x1112b: 84, + 0x1112d: 84, + 0x1112e: 84, + 0x1112f: 84, + 0x11130: 84, + 0x11131: 84, + 0x11132: 84, + 0x11133: 84, + 0x11134: 84, + 0x11173: 84, + 0x11180: 84, + 0x11181: 84, + 0x111b6: 84, + 0x111b7: 84, + 0x111b8: 84, + 0x111b9: 84, + 0x111ba: 84, + 0x111bb: 84, + 0x111bc: 84, + 0x111bd: 84, + 0x111be: 84, + 0x111c9: 84, + 0x111ca: 84, + 0x111cb: 84, + 0x111cc: 84, + 0x111cf: 84, + 0x1122f: 84, + 0x11230: 84, + 0x11231: 84, + 0x11234: 84, + 0x11236: 84, + 0x11237: 84, + 0x1123e: 84, + 0x11241: 84, + 0x112df: 84, + 0x112e3: 84, + 0x112e4: 84, + 0x112e5: 84, + 0x112e6: 84, + 0x112e7: 84, + 0x112e8: 84, + 0x112e9: 84, + 0x112ea: 84, + 0x11300: 84, + 0x11301: 84, + 0x1133b: 84, + 0x1133c: 84, + 0x11340: 84, + 0x11366: 84, + 0x11367: 84, + 0x11368: 84, + 0x11369: 84, + 0x1136a: 84, + 0x1136b: 84, + 0x1136c: 84, + 0x11370: 84, + 0x11371: 84, + 0x11372: 84, + 0x11373: 84, + 0x11374: 84, + 0x11438: 84, + 0x11439: 84, + 0x1143a: 84, + 0x1143b: 84, + 0x1143c: 84, + 0x1143d: 84, + 0x1143e: 84, + 0x1143f: 84, + 0x11442: 84, + 0x11443: 84, + 0x11444: 84, + 0x11446: 84, + 0x1145e: 84, + 0x114b3: 84, + 0x114b4: 84, + 0x114b5: 84, + 0x114b6: 84, + 0x114b7: 84, + 0x114b8: 84, + 0x114ba: 84, + 0x114bf: 84, + 0x114c0: 84, + 0x114c2: 84, + 0x114c3: 84, + 0x115b2: 84, + 0x115b3: 84, + 0x115b4: 84, + 0x115b5: 84, + 0x115bc: 84, + 0x115bd: 84, + 0x115bf: 84, + 0x115c0: 84, + 0x115dc: 84, + 0x115dd: 84, + 0x11633: 84, + 0x11634: 84, + 0x11635: 84, + 0x11636: 84, + 0x11637: 84, + 0x11638: 84, + 0x11639: 84, + 0x1163a: 84, + 0x1163d: 84, + 0x1163f: 84, + 0x11640: 84, + 0x116ab: 84, + 0x116ad: 84, + 0x116b0: 84, + 0x116b1: 84, + 0x116b2: 84, + 0x116b3: 84, + 0x116b4: 84, + 0x116b5: 84, + 0x116b7: 84, + 0x1171d: 84, + 0x1171e: 84, + 0x1171f: 84, + 0x11722: 84, + 0x11723: 84, + 0x11724: 84, + 0x11725: 84, + 0x11727: 84, + 0x11728: 84, + 0x11729: 84, + 0x1172a: 84, + 0x1172b: 84, + 0x1182f: 84, + 0x11830: 84, + 0x11831: 84, + 0x11832: 84, + 0x11833: 84, + 0x11834: 84, + 0x11835: 84, + 0x11836: 84, + 0x11837: 84, + 0x11839: 84, + 0x1183a: 84, + 0x1193b: 84, + 0x1193c: 84, + 0x1193e: 84, + 0x11943: 84, + 0x119d4: 84, + 0x119d5: 84, + 0x119d6: 84, + 0x119d7: 84, + 0x119da: 84, + 0x119db: 84, + 0x119e0: 84, + 0x11a01: 84, + 0x11a02: 84, + 0x11a03: 84, + 0x11a04: 84, + 0x11a05: 84, + 0x11a06: 84, + 0x11a07: 84, + 0x11a08: 84, + 0x11a09: 84, + 0x11a0a: 84, + 0x11a33: 84, + 0x11a34: 84, + 0x11a35: 84, + 0x11a36: 84, + 0x11a37: 84, + 0x11a38: 84, + 0x11a3b: 84, + 0x11a3c: 84, + 0x11a3d: 84, + 0x11a3e: 84, + 0x11a47: 84, + 0x11a51: 84, + 0x11a52: 84, + 0x11a53: 84, + 0x11a54: 84, + 0x11a55: 84, + 0x11a56: 84, + 0x11a59: 84, + 0x11a5a: 84, + 0x11a5b: 84, + 0x11a8a: 84, + 0x11a8b: 84, + 0x11a8c: 84, + 0x11a8d: 84, + 0x11a8e: 84, + 0x11a8f: 84, + 0x11a90: 84, + 0x11a91: 84, + 0x11a92: 84, + 0x11a93: 84, + 0x11a94: 84, + 0x11a95: 84, + 0x11a96: 84, + 0x11a98: 84, + 0x11a99: 84, + 0x11c30: 84, + 0x11c31: 84, + 0x11c32: 84, + 0x11c33: 84, + 0x11c34: 84, + 0x11c35: 84, + 0x11c36: 84, + 0x11c38: 84, + 0x11c39: 84, + 0x11c3a: 84, + 0x11c3b: 84, + 0x11c3c: 84, + 0x11c3d: 84, + 0x11c3f: 84, + 0x11c92: 84, + 0x11c93: 84, + 0x11c94: 84, + 0x11c95: 84, + 0x11c96: 84, + 0x11c97: 84, + 0x11c98: 84, + 0x11c99: 84, + 0x11c9a: 84, + 0x11c9b: 84, + 0x11c9c: 84, + 0x11c9d: 84, + 0x11c9e: 84, + 0x11c9f: 84, + 0x11ca0: 84, + 0x11ca1: 84, + 0x11ca2: 84, + 0x11ca3: 84, + 0x11ca4: 84, + 0x11ca5: 84, + 0x11ca6: 84, + 0x11ca7: 84, + 0x11caa: 84, + 0x11cab: 84, + 0x11cac: 84, + 0x11cad: 84, + 0x11cae: 84, + 0x11caf: 84, + 0x11cb0: 84, + 0x11cb2: 84, + 0x11cb3: 84, + 0x11cb5: 84, + 0x11cb6: 84, + 0x11d31: 84, + 0x11d32: 84, + 0x11d33: 84, + 0x11d34: 84, + 0x11d35: 84, + 0x11d36: 84, + 0x11d3a: 84, + 0x11d3c: 84, + 0x11d3d: 84, + 0x11d3f: 84, + 0x11d40: 84, + 0x11d41: 84, + 0x11d42: 84, + 0x11d43: 84, + 0x11d44: 84, + 0x11d45: 84, + 0x11d47: 84, + 0x11d90: 84, + 0x11d91: 84, + 0x11d95: 84, + 0x11d97: 84, + 0x11ef3: 84, + 0x11ef4: 84, + 0x11f00: 84, + 0x11f01: 84, + 0x11f36: 84, + 0x11f37: 84, + 0x11f38: 84, + 0x11f39: 84, + 0x11f3a: 84, + 0x11f40: 84, + 0x11f42: 84, + 0x13430: 84, + 0x13431: 84, + 0x13432: 84, + 0x13433: 84, + 0x13434: 84, + 0x13435: 84, + 0x13436: 84, + 0x13437: 84, + 0x13438: 84, + 0x13439: 84, + 0x1343a: 84, + 0x1343b: 84, + 0x1343c: 84, + 0x1343d: 84, + 0x1343e: 84, + 0x1343f: 84, + 0x13440: 84, + 0x13447: 84, + 0x13448: 84, + 0x13449: 84, + 0x1344a: 84, + 0x1344b: 84, + 0x1344c: 84, + 0x1344d: 84, + 0x1344e: 84, + 0x1344f: 84, + 0x13450: 84, + 0x13451: 84, + 0x13452: 84, + 0x13453: 84, + 0x13454: 84, + 0x13455: 84, + 0x16af0: 84, + 0x16af1: 84, + 0x16af2: 84, + 0x16af3: 84, + 0x16af4: 84, + 0x16b30: 84, + 0x16b31: 84, + 0x16b32: 84, + 0x16b33: 84, + 0x16b34: 84, + 0x16b35: 84, + 0x16b36: 84, + 0x16f4f: 84, + 0x16f8f: 84, + 0x16f90: 84, + 0x16f91: 84, + 0x16f92: 84, + 0x16fe4: 84, + 0x1bc9d: 84, + 0x1bc9e: 84, + 0x1bca0: 84, + 0x1bca1: 84, + 0x1bca2: 84, + 0x1bca3: 84, + 0x1cf00: 84, + 0x1cf01: 84, + 0x1cf02: 84, + 0x1cf03: 84, + 0x1cf04: 84, + 0x1cf05: 84, + 0x1cf06: 84, + 0x1cf07: 84, + 0x1cf08: 84, + 0x1cf09: 84, + 0x1cf0a: 84, + 0x1cf0b: 84, + 0x1cf0c: 84, + 0x1cf0d: 84, + 0x1cf0e: 84, + 0x1cf0f: 84, + 0x1cf10: 84, + 0x1cf11: 84, + 0x1cf12: 84, + 0x1cf13: 84, + 0x1cf14: 84, + 0x1cf15: 84, + 0x1cf16: 84, + 0x1cf17: 84, + 0x1cf18: 84, + 0x1cf19: 84, + 0x1cf1a: 84, + 0x1cf1b: 84, + 0x1cf1c: 84, + 0x1cf1d: 84, + 0x1cf1e: 84, + 0x1cf1f: 84, + 0x1cf20: 84, + 0x1cf21: 84, + 0x1cf22: 84, + 0x1cf23: 84, + 0x1cf24: 84, + 0x1cf25: 84, + 0x1cf26: 84, + 0x1cf27: 84, + 0x1cf28: 84, + 0x1cf29: 84, + 0x1cf2a: 84, + 0x1cf2b: 84, + 0x1cf2c: 84, + 0x1cf2d: 84, + 0x1cf30: 84, + 0x1cf31: 84, + 0x1cf32: 84, + 0x1cf33: 84, + 0x1cf34: 84, + 0x1cf35: 84, + 0x1cf36: 84, + 0x1cf37: 84, + 0x1cf38: 84, + 0x1cf39: 84, + 0x1cf3a: 84, + 0x1cf3b: 84, + 0x1cf3c: 84, + 0x1cf3d: 84, + 0x1cf3e: 84, + 0x1cf3f: 84, + 0x1cf40: 84, + 0x1cf41: 84, + 0x1cf42: 84, + 0x1cf43: 84, + 0x1cf44: 84, + 0x1cf45: 84, + 0x1cf46: 84, + 0x1d167: 84, + 0x1d168: 84, + 0x1d169: 84, + 0x1d173: 84, + 0x1d174: 84, + 0x1d175: 84, + 0x1d176: 84, + 0x1d177: 84, + 0x1d178: 84, + 0x1d179: 84, + 0x1d17a: 84, + 0x1d17b: 84, + 0x1d17c: 84, + 0x1d17d: 84, + 0x1d17e: 84, + 0x1d17f: 84, + 0x1d180: 84, + 0x1d181: 84, + 0x1d182: 84, + 0x1d185: 84, + 0x1d186: 84, + 0x1d187: 84, + 0x1d188: 84, + 0x1d189: 84, + 0x1d18a: 84, + 0x1d18b: 84, + 0x1d1aa: 84, + 0x1d1ab: 84, + 0x1d1ac: 84, + 0x1d1ad: 84, + 0x1d242: 84, + 0x1d243: 84, + 0x1d244: 84, + 0x1da00: 84, + 0x1da01: 84, + 0x1da02: 84, + 0x1da03: 84, + 0x1da04: 84, + 0x1da05: 84, + 0x1da06: 84, + 0x1da07: 84, + 0x1da08: 84, + 0x1da09: 84, + 0x1da0a: 84, + 0x1da0b: 84, + 0x1da0c: 84, + 0x1da0d: 84, + 0x1da0e: 84, + 0x1da0f: 84, + 0x1da10: 84, + 0x1da11: 84, + 0x1da12: 84, + 0x1da13: 84, + 0x1da14: 84, + 0x1da15: 84, + 0x1da16: 84, + 0x1da17: 84, + 0x1da18: 84, + 0x1da19: 84, + 0x1da1a: 84, + 0x1da1b: 84, + 0x1da1c: 84, + 0x1da1d: 84, + 0x1da1e: 84, + 0x1da1f: 84, + 0x1da20: 84, + 0x1da21: 84, + 0x1da22: 84, + 0x1da23: 84, + 0x1da24: 84, + 0x1da25: 84, + 0x1da26: 84, + 0x1da27: 84, + 0x1da28: 84, + 0x1da29: 84, + 0x1da2a: 84, + 0x1da2b: 84, + 0x1da2c: 84, + 0x1da2d: 84, + 0x1da2e: 84, + 0x1da2f: 84, + 0x1da30: 84, + 0x1da31: 84, + 0x1da32: 84, + 0x1da33: 84, + 0x1da34: 84, + 0x1da35: 84, + 0x1da36: 84, + 0x1da3b: 84, + 0x1da3c: 84, + 0x1da3d: 84, + 0x1da3e: 84, + 0x1da3f: 84, + 0x1da40: 84, + 0x1da41: 84, + 0x1da42: 84, + 0x1da43: 84, + 0x1da44: 84, + 0x1da45: 84, + 0x1da46: 84, + 0x1da47: 84, + 0x1da48: 84, + 0x1da49: 84, + 0x1da4a: 84, + 0x1da4b: 84, + 0x1da4c: 84, + 0x1da4d: 84, + 0x1da4e: 84, + 0x1da4f: 84, + 0x1da50: 84, + 0x1da51: 84, + 0x1da52: 84, + 0x1da53: 84, + 0x1da54: 84, + 0x1da55: 84, + 0x1da56: 84, + 0x1da57: 84, + 0x1da58: 84, + 0x1da59: 84, + 0x1da5a: 84, + 0x1da5b: 84, + 0x1da5c: 84, + 0x1da5d: 84, + 0x1da5e: 84, + 0x1da5f: 84, + 0x1da60: 84, + 0x1da61: 84, + 0x1da62: 84, + 0x1da63: 84, + 0x1da64: 84, + 0x1da65: 84, + 0x1da66: 84, + 0x1da67: 84, + 0x1da68: 84, + 0x1da69: 84, + 0x1da6a: 84, + 0x1da6b: 84, + 0x1da6c: 84, + 0x1da75: 84, + 0x1da84: 84, + 0x1da9b: 84, + 0x1da9c: 84, + 0x1da9d: 84, + 0x1da9e: 84, + 0x1da9f: 84, + 0x1daa1: 84, + 0x1daa2: 84, + 0x1daa3: 84, + 0x1daa4: 84, + 0x1daa5: 84, + 0x1daa6: 84, + 0x1daa7: 84, + 0x1daa8: 84, + 0x1daa9: 84, + 0x1daaa: 84, + 0x1daab: 84, + 0x1daac: 84, + 0x1daad: 84, + 0x1daae: 84, + 0x1daaf: 84, + 0x1e000: 84, + 0x1e001: 84, + 0x1e002: 84, + 0x1e003: 84, + 0x1e004: 84, + 0x1e005: 84, + 0x1e006: 84, + 0x1e008: 84, + 0x1e009: 84, + 0x1e00a: 84, + 0x1e00b: 84, + 0x1e00c: 84, + 0x1e00d: 84, + 0x1e00e: 84, + 0x1e00f: 84, + 0x1e010: 84, + 0x1e011: 84, + 0x1e012: 84, + 0x1e013: 84, + 0x1e014: 84, + 0x1e015: 84, + 0x1e016: 84, + 0x1e017: 84, + 0x1e018: 84, + 0x1e01b: 84, + 0x1e01c: 84, + 0x1e01d: 84, + 0x1e01e: 84, + 0x1e01f: 84, + 0x1e020: 84, + 0x1e021: 84, + 0x1e023: 84, + 0x1e024: 84, + 0x1e026: 84, + 0x1e027: 84, + 0x1e028: 84, + 0x1e029: 84, + 0x1e02a: 84, + 0x1e08f: 84, + 0x1e130: 84, + 0x1e131: 84, + 0x1e132: 84, + 0x1e133: 84, + 0x1e134: 84, + 0x1e135: 84, + 0x1e136: 84, + 0x1e2ae: 84, + 0x1e2ec: 84, + 0x1e2ed: 84, + 0x1e2ee: 84, + 0x1e2ef: 84, + 0x1e4ec: 84, + 0x1e4ed: 84, + 0x1e4ee: 84, + 0x1e4ef: 84, + 0x1e8d0: 84, + 0x1e8d1: 84, + 0x1e8d2: 84, + 0x1e8d3: 84, + 0x1e8d4: 84, + 0x1e8d5: 84, + 0x1e8d6: 84, + 0x1e900: 68, + 0x1e901: 68, + 0x1e902: 68, + 0x1e903: 68, + 0x1e904: 68, + 0x1e905: 68, + 0x1e906: 68, + 0x1e907: 68, + 0x1e908: 68, + 0x1e909: 68, + 0x1e90a: 68, + 0x1e90b: 68, + 0x1e90c: 68, + 0x1e90d: 68, + 0x1e90e: 68, + 0x1e90f: 68, + 0x1e910: 68, + 0x1e911: 68, + 0x1e912: 68, + 0x1e913: 68, + 0x1e914: 68, + 0x1e915: 68, + 0x1e916: 68, + 0x1e917: 68, + 0x1e918: 68, + 0x1e919: 68, + 0x1e91a: 68, + 0x1e91b: 68, + 0x1e91c: 68, + 0x1e91d: 68, + 0x1e91e: 68, + 0x1e91f: 68, + 0x1e920: 68, + 0x1e921: 68, + 0x1e922: 68, + 0x1e923: 68, + 0x1e924: 68, + 0x1e925: 68, + 0x1e926: 68, + 0x1e927: 68, + 0x1e928: 68, + 0x1e929: 68, + 0x1e92a: 68, + 0x1e92b: 68, + 0x1e92c: 68, + 0x1e92d: 68, + 0x1e92e: 68, + 0x1e92f: 68, + 0x1e930: 68, + 0x1e931: 68, + 0x1e932: 68, + 0x1e933: 68, + 0x1e934: 68, + 0x1e935: 68, + 0x1e936: 68, + 0x1e937: 68, + 0x1e938: 68, + 0x1e939: 68, + 0x1e93a: 68, + 0x1e93b: 68, + 0x1e93c: 68, + 0x1e93d: 68, + 0x1e93e: 68, + 0x1e93f: 68, + 0x1e940: 68, + 0x1e941: 68, + 0x1e942: 68, + 0x1e943: 68, + 0x1e944: 84, + 0x1e945: 84, + 0x1e946: 84, + 0x1e947: 84, + 0x1e948: 84, + 0x1e949: 84, + 0x1e94a: 84, + 0x1e94b: 84, + 0xe0001: 84, + 0xe0020: 84, + 0xe0021: 84, + 0xe0022: 84, + 0xe0023: 84, + 0xe0024: 84, + 0xe0025: 84, + 0xe0026: 84, + 0xe0027: 84, + 0xe0028: 84, + 0xe0029: 84, + 0xe002a: 84, + 0xe002b: 84, + 0xe002c: 84, + 0xe002d: 84, + 0xe002e: 84, + 0xe002f: 84, + 0xe0030: 84, + 0xe0031: 84, + 0xe0032: 84, + 0xe0033: 84, + 0xe0034: 84, + 0xe0035: 84, + 0xe0036: 84, + 0xe0037: 84, + 0xe0038: 84, + 0xe0039: 84, + 0xe003a: 84, + 0xe003b: 84, + 0xe003c: 84, + 0xe003d: 84, + 0xe003e: 84, + 0xe003f: 84, + 0xe0040: 84, + 0xe0041: 84, + 0xe0042: 84, + 0xe0043: 84, + 0xe0044: 84, + 0xe0045: 84, + 0xe0046: 84, + 0xe0047: 84, + 0xe0048: 84, + 0xe0049: 84, + 0xe004a: 84, + 0xe004b: 84, + 0xe004c: 84, + 0xe004d: 84, + 0xe004e: 84, + 0xe004f: 84, + 0xe0050: 84, + 0xe0051: 84, + 0xe0052: 84, + 0xe0053: 84, + 0xe0054: 84, + 0xe0055: 84, + 0xe0056: 84, + 0xe0057: 84, + 0xe0058: 84, + 0xe0059: 84, + 0xe005a: 84, + 0xe005b: 84, + 0xe005c: 84, + 0xe005d: 84, + 0xe005e: 84, + 0xe005f: 84, + 0xe0060: 84, + 0xe0061: 84, + 0xe0062: 84, + 0xe0063: 84, + 0xe0064: 84, + 0xe0065: 84, + 0xe0066: 84, + 0xe0067: 84, + 0xe0068: 84, + 0xe0069: 84, + 0xe006a: 84, + 0xe006b: 84, + 0xe006c: 84, + 0xe006d: 84, + 0xe006e: 84, + 0xe006f: 84, + 0xe0070: 84, + 0xe0071: 84, + 0xe0072: 84, + 0xe0073: 84, + 0xe0074: 84, + 0xe0075: 84, + 0xe0076: 84, + 0xe0077: 84, + 0xe0078: 84, + 0xe0079: 84, + 0xe007a: 84, + 0xe007b: 84, + 0xe007c: 84, + 0xe007d: 84, + 0xe007e: 84, + 0xe007f: 84, + 0xe0100: 84, + 0xe0101: 84, + 0xe0102: 84, + 0xe0103: 84, + 0xe0104: 84, + 0xe0105: 84, + 0xe0106: 84, + 0xe0107: 84, + 0xe0108: 84, + 0xe0109: 84, + 0xe010a: 84, + 0xe010b: 84, + 0xe010c: 84, + 0xe010d: 84, + 0xe010e: 84, + 0xe010f: 84, + 0xe0110: 84, + 0xe0111: 84, + 0xe0112: 84, + 0xe0113: 84, + 0xe0114: 84, + 0xe0115: 84, + 0xe0116: 84, + 0xe0117: 84, + 0xe0118: 84, + 0xe0119: 84, + 0xe011a: 84, + 0xe011b: 84, + 0xe011c: 84, + 0xe011d: 84, + 0xe011e: 84, + 0xe011f: 84, + 0xe0120: 84, + 0xe0121: 84, + 0xe0122: 84, + 0xe0123: 84, + 0xe0124: 84, + 0xe0125: 84, + 0xe0126: 84, + 0xe0127: 84, + 0xe0128: 84, + 0xe0129: 84, + 0xe012a: 84, + 0xe012b: 84, + 0xe012c: 84, + 0xe012d: 84, + 0xe012e: 84, + 0xe012f: 84, + 0xe0130: 84, + 0xe0131: 84, + 0xe0132: 84, + 0xe0133: 84, + 0xe0134: 84, + 0xe0135: 84, + 0xe0136: 84, + 0xe0137: 84, + 0xe0138: 84, + 0xe0139: 84, + 0xe013a: 84, + 0xe013b: 84, + 0xe013c: 84, + 0xe013d: 84, + 0xe013e: 84, + 0xe013f: 84, + 0xe0140: 84, + 0xe0141: 84, + 0xe0142: 84, + 0xe0143: 84, + 0xe0144: 84, + 0xe0145: 84, + 0xe0146: 84, + 0xe0147: 84, + 0xe0148: 84, + 0xe0149: 84, + 0xe014a: 84, + 0xe014b: 84, + 0xe014c: 84, + 0xe014d: 84, + 0xe014e: 84, + 0xe014f: 84, + 0xe0150: 84, + 0xe0151: 84, + 0xe0152: 84, + 0xe0153: 84, + 0xe0154: 84, + 0xe0155: 84, + 0xe0156: 84, + 0xe0157: 84, + 0xe0158: 84, + 0xe0159: 84, + 0xe015a: 84, + 0xe015b: 84, + 0xe015c: 84, + 0xe015d: 84, + 0xe015e: 84, + 0xe015f: 84, + 0xe0160: 84, + 0xe0161: 84, + 0xe0162: 84, + 0xe0163: 84, + 0xe0164: 84, + 0xe0165: 84, + 0xe0166: 84, + 0xe0167: 84, + 0xe0168: 84, + 0xe0169: 84, + 0xe016a: 84, + 0xe016b: 84, + 0xe016c: 84, + 0xe016d: 84, + 0xe016e: 84, + 0xe016f: 84, + 0xe0170: 84, + 0xe0171: 84, + 0xe0172: 84, + 0xe0173: 84, + 0xe0174: 84, + 0xe0175: 84, + 0xe0176: 84, + 0xe0177: 84, + 0xe0178: 84, + 0xe0179: 84, + 0xe017a: 84, + 0xe017b: 84, + 0xe017c: 84, + 0xe017d: 84, + 0xe017e: 84, + 0xe017f: 84, + 0xe0180: 84, + 0xe0181: 84, + 0xe0182: 84, + 0xe0183: 84, + 0xe0184: 84, + 0xe0185: 84, + 0xe0186: 84, + 0xe0187: 84, + 0xe0188: 84, + 0xe0189: 84, + 0xe018a: 84, + 0xe018b: 84, + 0xe018c: 84, + 0xe018d: 84, + 0xe018e: 84, + 0xe018f: 84, + 0xe0190: 84, + 0xe0191: 84, + 0xe0192: 84, + 0xe0193: 84, + 0xe0194: 84, + 0xe0195: 84, + 0xe0196: 84, + 0xe0197: 84, + 0xe0198: 84, + 0xe0199: 84, + 0xe019a: 84, + 0xe019b: 84, + 0xe019c: 84, + 0xe019d: 84, + 0xe019e: 84, + 0xe019f: 84, + 0xe01a0: 84, + 0xe01a1: 84, + 0xe01a2: 84, + 0xe01a3: 84, + 0xe01a4: 84, + 0xe01a5: 84, + 0xe01a6: 84, + 0xe01a7: 84, + 0xe01a8: 84, + 0xe01a9: 84, + 0xe01aa: 84, + 0xe01ab: 84, + 0xe01ac: 84, + 0xe01ad: 84, + 0xe01ae: 84, + 0xe01af: 84, + 0xe01b0: 84, + 0xe01b1: 84, + 0xe01b2: 84, + 0xe01b3: 84, + 0xe01b4: 84, + 0xe01b5: 84, + 0xe01b6: 84, + 0xe01b7: 84, + 0xe01b8: 84, + 0xe01b9: 84, + 0xe01ba: 84, + 0xe01bb: 84, + 0xe01bc: 84, + 0xe01bd: 84, + 0xe01be: 84, + 0xe01bf: 84, + 0xe01c0: 84, + 0xe01c1: 84, + 0xe01c2: 84, + 0xe01c3: 84, + 0xe01c4: 84, + 0xe01c5: 84, + 0xe01c6: 84, + 0xe01c7: 84, + 0xe01c8: 84, + 0xe01c9: 84, + 0xe01ca: 84, + 0xe01cb: 84, + 0xe01cc: 84, + 0xe01cd: 84, + 0xe01ce: 84, + 0xe01cf: 84, + 0xe01d0: 84, + 0xe01d1: 84, + 0xe01d2: 84, + 0xe01d3: 84, + 0xe01d4: 84, + 0xe01d5: 84, + 0xe01d6: 84, + 0xe01d7: 84, + 0xe01d8: 84, + 0xe01d9: 84, + 0xe01da: 84, + 0xe01db: 84, + 0xe01dc: 84, + 0xe01dd: 84, + 0xe01de: 84, + 0xe01df: 84, + 0xe01e0: 84, + 0xe01e1: 84, + 0xe01e2: 84, + 0xe01e3: 84, + 0xe01e4: 84, + 0xe01e5: 84, + 0xe01e6: 84, + 0xe01e7: 84, + 0xe01e8: 84, + 0xe01e9: 84, + 0xe01ea: 84, + 0xe01eb: 84, + 0xe01ec: 84, + 0xe01ed: 84, + 0xe01ee: 84, + 0xe01ef: 84, +} +codepoint_classes = { + 'PVALID': ( + 0x2d0000002e, + 0x300000003a, + 0x610000007b, + 0xdf000000f7, + 0xf800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010a, + 0x10b0000010c, + 0x10d0000010e, + 0x10f00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011a, + 0x11b0000011c, + 0x11d0000011e, + 0x11f00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012a, + 0x12b0000012c, + 0x12d0000012e, + 0x12f00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13a0000013b, + 0x13c0000013d, + 0x13e0000013f, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14b0000014c, + 0x14d0000014e, + 0x14f00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015a, + 0x15b0000015c, + 0x15d0000015e, + 0x15f00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016a, + 0x16b0000016c, + 0x16d0000016e, + 0x16f00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17a0000017b, + 0x17c0000017d, + 0x17e0000017f, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18c0000018e, + 0x19200000193, + 0x19500000196, + 0x1990000019c, + 0x19e0000019f, + 0x1a1000001a2, + 0x1a3000001a4, + 0x1a5000001a6, + 0x1a8000001a9, + 0x1aa000001ac, + 0x1ad000001ae, + 0x1b0000001b1, + 0x1b4000001b5, + 0x1b6000001b7, + 0x1b9000001bc, + 0x1bd000001c4, + 0x1ce000001cf, + 0x1d0000001d1, + 0x1d2000001d3, + 0x1d4000001d5, + 0x1d6000001d7, + 0x1d8000001d9, + 0x1da000001db, + 0x1dc000001de, + 0x1df000001e0, + 0x1e1000001e2, + 0x1e3000001e4, + 0x1e5000001e6, + 0x1e7000001e8, + 0x1e9000001ea, + 0x1eb000001ec, + 0x1ed000001ee, + 0x1ef000001f1, + 0x1f5000001f6, + 0x1f9000001fa, + 0x1fb000001fc, + 0x1fd000001fe, + 0x1ff00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020a, + 0x20b0000020c, + 0x20d0000020e, + 0x20f00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021a, + 0x21b0000021c, + 0x21d0000021e, + 0x21f00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022a, + 0x22b0000022c, + 0x22d0000022e, + 0x22f00000230, + 0x23100000232, + 0x2330000023a, + 0x23c0000023d, + 0x23f00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024a, + 0x24b0000024c, + 0x24d0000024e, + 0x24f000002b0, + 0x2b9000002c2, + 0x2c6000002d2, + 0x2ec000002ed, + 0x2ee000002ef, + 0x30000000340, + 0x34200000343, + 0x3460000034f, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37b0000037e, + 0x39000000391, + 0x3ac000003cf, + 0x3d7000003d8, + 0x3d9000003da, + 0x3db000003dc, + 0x3dd000003de, + 0x3df000003e0, + 0x3e1000003e2, + 0x3e3000003e4, + 0x3e5000003e6, + 0x3e7000003e8, + 0x3e9000003ea, + 0x3eb000003ec, + 0x3ed000003ee, + 0x3ef000003f0, + 0x3f3000003f4, + 0x3f8000003f9, + 0x3fb000003fd, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046a, + 0x46b0000046c, + 0x46d0000046e, + 0x46f00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047a, + 0x47b0000047c, + 0x47d0000047e, + 0x47f00000480, + 0x48100000482, + 0x48300000488, + 0x48b0000048c, + 0x48d0000048e, + 0x48f00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049a, + 0x49b0000049c, + 0x49d0000049e, + 0x49f000004a0, + 0x4a1000004a2, + 0x4a3000004a4, + 0x4a5000004a6, + 0x4a7000004a8, + 0x4a9000004aa, + 0x4ab000004ac, + 0x4ad000004ae, + 0x4af000004b0, + 0x4b1000004b2, + 0x4b3000004b4, + 0x4b5000004b6, + 0x4b7000004b8, + 0x4b9000004ba, + 0x4bb000004bc, + 0x4bd000004be, + 0x4bf000004c0, + 0x4c2000004c3, + 0x4c4000004c5, + 0x4c6000004c7, + 0x4c8000004c9, + 0x4ca000004cb, + 0x4cc000004cd, + 0x4ce000004d0, + 0x4d1000004d2, + 0x4d3000004d4, + 0x4d5000004d6, + 0x4d7000004d8, + 0x4d9000004da, + 0x4db000004dc, + 0x4dd000004de, + 0x4df000004e0, + 0x4e1000004e2, + 0x4e3000004e4, + 0x4e5000004e6, + 0x4e7000004e8, + 0x4e9000004ea, + 0x4eb000004ec, + 0x4ed000004ee, + 0x4ef000004f0, + 0x4f1000004f2, + 0x4f3000004f4, + 0x4f5000004f6, + 0x4f7000004f8, + 0x4f9000004fa, + 0x4fb000004fc, + 0x4fd000004fe, + 0x4ff00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050a, + 0x50b0000050c, + 0x50d0000050e, + 0x50f00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051a, + 0x51b0000051c, + 0x51d0000051e, + 0x51f00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052a, + 0x52b0000052c, + 0x52d0000052e, + 0x52f00000530, + 0x5590000055a, + 0x56000000587, + 0x58800000589, + 0x591000005be, + 0x5bf000005c0, + 0x5c1000005c3, + 0x5c4000005c6, + 0x5c7000005c8, + 0x5d0000005eb, + 0x5ef000005f3, + 0x6100000061b, + 0x62000000640, + 0x64100000660, + 0x66e00000675, + 0x679000006d4, + 0x6d5000006dd, + 0x6df000006e9, + 0x6ea000006f0, + 0x6fa00000700, + 0x7100000074b, + 0x74d000007b2, + 0x7c0000007f6, + 0x7fd000007fe, + 0x8000000082e, + 0x8400000085c, + 0x8600000086b, + 0x87000000888, + 0x8890000088f, + 0x898000008e2, + 0x8e300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098d, + 0x98f00000991, + 0x993000009a9, + 0x9aa000009b1, + 0x9b2000009b3, + 0x9b6000009ba, + 0x9bc000009c5, + 0x9c7000009c9, + 0x9cb000009cf, + 0x9d7000009d8, + 0x9e0000009e4, + 0x9e6000009f2, + 0x9fc000009fd, + 0x9fe000009ff, + 0xa0100000a04, + 0xa0500000a0b, + 0xa0f00000a11, + 0xa1300000a29, + 0xa2a00000a31, + 0xa3200000a33, + 0xa3500000a36, + 0xa3800000a3a, + 0xa3c00000a3d, + 0xa3e00000a43, + 0xa4700000a49, + 0xa4b00000a4e, + 0xa5100000a52, + 0xa5c00000a5d, + 0xa6600000a76, + 0xa8100000a84, + 0xa8500000a8e, + 0xa8f00000a92, + 0xa9300000aa9, + 0xaaa00000ab1, + 0xab200000ab4, + 0xab500000aba, + 0xabc00000ac6, + 0xac700000aca, + 0xacb00000ace, + 0xad000000ad1, + 0xae000000ae4, + 0xae600000af0, + 0xaf900000b00, + 0xb0100000b04, + 0xb0500000b0d, + 0xb0f00000b11, + 0xb1300000b29, + 0xb2a00000b31, + 0xb3200000b34, + 0xb3500000b3a, + 0xb3c00000b45, + 0xb4700000b49, + 0xb4b00000b4e, + 0xb5500000b58, + 0xb5f00000b64, + 0xb6600000b70, + 0xb7100000b72, + 0xb8200000b84, + 0xb8500000b8b, + 0xb8e00000b91, + 0xb9200000b96, + 0xb9900000b9b, + 0xb9c00000b9d, + 0xb9e00000ba0, + 0xba300000ba5, + 0xba800000bab, + 0xbae00000bba, + 0xbbe00000bc3, + 0xbc600000bc9, + 0xbca00000bce, + 0xbd000000bd1, + 0xbd700000bd8, + 0xbe600000bf0, + 0xc0000000c0d, + 0xc0e00000c11, + 0xc1200000c29, + 0xc2a00000c3a, + 0xc3c00000c45, + 0xc4600000c49, + 0xc4a00000c4e, + 0xc5500000c57, + 0xc5800000c5b, + 0xc5d00000c5e, + 0xc6000000c64, + 0xc6600000c70, + 0xc8000000c84, + 0xc8500000c8d, + 0xc8e00000c91, + 0xc9200000ca9, + 0xcaa00000cb4, + 0xcb500000cba, + 0xcbc00000cc5, + 0xcc600000cc9, + 0xcca00000cce, + 0xcd500000cd7, + 0xcdd00000cdf, + 0xce000000ce4, + 0xce600000cf0, + 0xcf100000cf4, + 0xd0000000d0d, + 0xd0e00000d11, + 0xd1200000d45, + 0xd4600000d49, + 0xd4a00000d4f, + 0xd5400000d58, + 0xd5f00000d64, + 0xd6600000d70, + 0xd7a00000d80, + 0xd8100000d84, + 0xd8500000d97, + 0xd9a00000db2, + 0xdb300000dbc, + 0xdbd00000dbe, + 0xdc000000dc7, + 0xdca00000dcb, + 0xdcf00000dd5, + 0xdd600000dd7, + 0xdd800000de0, + 0xde600000df0, + 0xdf200000df4, + 0xe0100000e33, + 0xe3400000e3b, + 0xe4000000e4f, + 0xe5000000e5a, + 0xe8100000e83, + 0xe8400000e85, + 0xe8600000e8b, + 0xe8c00000ea4, + 0xea500000ea6, + 0xea700000eb3, + 0xeb400000ebe, + 0xec000000ec5, + 0xec600000ec7, + 0xec800000ecf, + 0xed000000eda, + 0xede00000ee0, + 0xf0000000f01, + 0xf0b00000f0c, + 0xf1800000f1a, + 0xf2000000f2a, + 0xf3500000f36, + 0xf3700000f38, + 0xf3900000f3a, + 0xf3e00000f43, + 0xf4400000f48, + 0xf4900000f4d, + 0xf4e00000f52, + 0xf5300000f57, + 0xf5800000f5c, + 0xf5d00000f69, + 0xf6a00000f6d, + 0xf7100000f73, + 0xf7400000f75, + 0xf7a00000f81, + 0xf8200000f85, + 0xf8600000f93, + 0xf9400000f98, + 0xf9900000f9d, + 0xf9e00000fa2, + 0xfa300000fa7, + 0xfa800000fac, + 0xfad00000fb9, + 0xfba00000fbd, + 0xfc600000fc7, + 0x10000000104a, + 0x10500000109e, + 0x10d0000010fb, + 0x10fd00001100, + 0x120000001249, + 0x124a0000124e, + 0x125000001257, + 0x125800001259, + 0x125a0000125e, + 0x126000001289, + 0x128a0000128e, + 0x1290000012b1, + 0x12b2000012b6, + 0x12b8000012bf, + 0x12c0000012c1, + 0x12c2000012c6, + 0x12c8000012d7, + 0x12d800001311, + 0x131200001316, + 0x13180000135b, + 0x135d00001360, + 0x138000001390, + 0x13a0000013f6, + 0x14010000166d, + 0x166f00001680, + 0x16810000169b, + 0x16a0000016eb, + 0x16f1000016f9, + 0x170000001716, + 0x171f00001735, + 0x174000001754, + 0x17600000176d, + 0x176e00001771, + 0x177200001774, + 0x1780000017b4, + 0x17b6000017d4, + 0x17d7000017d8, + 0x17dc000017de, + 0x17e0000017ea, + 0x18100000181a, + 0x182000001879, + 0x1880000018ab, + 0x18b0000018f6, + 0x19000000191f, + 0x19200000192c, + 0x19300000193c, + 0x19460000196e, + 0x197000001975, + 0x1980000019ac, + 0x19b0000019ca, + 0x19d0000019da, + 0x1a0000001a1c, + 0x1a2000001a5f, + 0x1a6000001a7d, + 0x1a7f00001a8a, + 0x1a9000001a9a, + 0x1aa700001aa8, + 0x1ab000001abe, + 0x1abf00001acf, + 0x1b0000001b4d, + 0x1b5000001b5a, + 0x1b6b00001b74, + 0x1b8000001bf4, + 0x1c0000001c38, + 0x1c4000001c4a, + 0x1c4d00001c7e, + 0x1cd000001cd3, + 0x1cd400001cfb, + 0x1d0000001d2c, + 0x1d2f00001d30, + 0x1d3b00001d3c, + 0x1d4e00001d4f, + 0x1d6b00001d78, + 0x1d7900001d9b, + 0x1dc000001e00, + 0x1e0100001e02, + 0x1e0300001e04, + 0x1e0500001e06, + 0x1e0700001e08, + 0x1e0900001e0a, + 0x1e0b00001e0c, + 0x1e0d00001e0e, + 0x1e0f00001e10, + 0x1e1100001e12, + 0x1e1300001e14, + 0x1e1500001e16, + 0x1e1700001e18, + 0x1e1900001e1a, + 0x1e1b00001e1c, + 0x1e1d00001e1e, + 0x1e1f00001e20, + 0x1e2100001e22, + 0x1e2300001e24, + 0x1e2500001e26, + 0x1e2700001e28, + 0x1e2900001e2a, + 0x1e2b00001e2c, + 0x1e2d00001e2e, + 0x1e2f00001e30, + 0x1e3100001e32, + 0x1e3300001e34, + 0x1e3500001e36, + 0x1e3700001e38, + 0x1e3900001e3a, + 0x1e3b00001e3c, + 0x1e3d00001e3e, + 0x1e3f00001e40, + 0x1e4100001e42, + 0x1e4300001e44, + 0x1e4500001e46, + 0x1e4700001e48, + 0x1e4900001e4a, + 0x1e4b00001e4c, + 0x1e4d00001e4e, + 0x1e4f00001e50, + 0x1e5100001e52, + 0x1e5300001e54, + 0x1e5500001e56, + 0x1e5700001e58, + 0x1e5900001e5a, + 0x1e5b00001e5c, + 0x1e5d00001e5e, + 0x1e5f00001e60, + 0x1e6100001e62, + 0x1e6300001e64, + 0x1e6500001e66, + 0x1e6700001e68, + 0x1e6900001e6a, + 0x1e6b00001e6c, + 0x1e6d00001e6e, + 0x1e6f00001e70, + 0x1e7100001e72, + 0x1e7300001e74, + 0x1e7500001e76, + 0x1e7700001e78, + 0x1e7900001e7a, + 0x1e7b00001e7c, + 0x1e7d00001e7e, + 0x1e7f00001e80, + 0x1e8100001e82, + 0x1e8300001e84, + 0x1e8500001e86, + 0x1e8700001e88, + 0x1e8900001e8a, + 0x1e8b00001e8c, + 0x1e8d00001e8e, + 0x1e8f00001e90, + 0x1e9100001e92, + 0x1e9300001e94, + 0x1e9500001e9a, + 0x1e9c00001e9e, + 0x1e9f00001ea0, + 0x1ea100001ea2, + 0x1ea300001ea4, + 0x1ea500001ea6, + 0x1ea700001ea8, + 0x1ea900001eaa, + 0x1eab00001eac, + 0x1ead00001eae, + 0x1eaf00001eb0, + 0x1eb100001eb2, + 0x1eb300001eb4, + 0x1eb500001eb6, + 0x1eb700001eb8, + 0x1eb900001eba, + 0x1ebb00001ebc, + 0x1ebd00001ebe, + 0x1ebf00001ec0, + 0x1ec100001ec2, + 0x1ec300001ec4, + 0x1ec500001ec6, + 0x1ec700001ec8, + 0x1ec900001eca, + 0x1ecb00001ecc, + 0x1ecd00001ece, + 0x1ecf00001ed0, + 0x1ed100001ed2, + 0x1ed300001ed4, + 0x1ed500001ed6, + 0x1ed700001ed8, + 0x1ed900001eda, + 0x1edb00001edc, + 0x1edd00001ede, + 0x1edf00001ee0, + 0x1ee100001ee2, + 0x1ee300001ee4, + 0x1ee500001ee6, + 0x1ee700001ee8, + 0x1ee900001eea, + 0x1eeb00001eec, + 0x1eed00001eee, + 0x1eef00001ef0, + 0x1ef100001ef2, + 0x1ef300001ef4, + 0x1ef500001ef6, + 0x1ef700001ef8, + 0x1ef900001efa, + 0x1efb00001efc, + 0x1efd00001efe, + 0x1eff00001f08, + 0x1f1000001f16, + 0x1f2000001f28, + 0x1f3000001f38, + 0x1f4000001f46, + 0x1f5000001f58, + 0x1f6000001f68, + 0x1f7000001f71, + 0x1f7200001f73, + 0x1f7400001f75, + 0x1f7600001f77, + 0x1f7800001f79, + 0x1f7a00001f7b, + 0x1f7c00001f7d, + 0x1fb000001fb2, + 0x1fb600001fb7, + 0x1fc600001fc7, + 0x1fd000001fd3, + 0x1fd600001fd8, + 0x1fe000001fe3, + 0x1fe400001fe8, + 0x1ff600001ff7, + 0x214e0000214f, + 0x218400002185, + 0x2c3000002c60, + 0x2c6100002c62, + 0x2c6500002c67, + 0x2c6800002c69, + 0x2c6a00002c6b, + 0x2c6c00002c6d, + 0x2c7100002c72, + 0x2c7300002c75, + 0x2c7600002c7c, + 0x2c8100002c82, + 0x2c8300002c84, + 0x2c8500002c86, + 0x2c8700002c88, + 0x2c8900002c8a, + 0x2c8b00002c8c, + 0x2c8d00002c8e, + 0x2c8f00002c90, + 0x2c9100002c92, + 0x2c9300002c94, + 0x2c9500002c96, + 0x2c9700002c98, + 0x2c9900002c9a, + 0x2c9b00002c9c, + 0x2c9d00002c9e, + 0x2c9f00002ca0, + 0x2ca100002ca2, + 0x2ca300002ca4, + 0x2ca500002ca6, + 0x2ca700002ca8, + 0x2ca900002caa, + 0x2cab00002cac, + 0x2cad00002cae, + 0x2caf00002cb0, + 0x2cb100002cb2, + 0x2cb300002cb4, + 0x2cb500002cb6, + 0x2cb700002cb8, + 0x2cb900002cba, + 0x2cbb00002cbc, + 0x2cbd00002cbe, + 0x2cbf00002cc0, + 0x2cc100002cc2, + 0x2cc300002cc4, + 0x2cc500002cc6, + 0x2cc700002cc8, + 0x2cc900002cca, + 0x2ccb00002ccc, + 0x2ccd00002cce, + 0x2ccf00002cd0, + 0x2cd100002cd2, + 0x2cd300002cd4, + 0x2cd500002cd6, + 0x2cd700002cd8, + 0x2cd900002cda, + 0x2cdb00002cdc, + 0x2cdd00002cde, + 0x2cdf00002ce0, + 0x2ce100002ce2, + 0x2ce300002ce5, + 0x2cec00002ced, + 0x2cee00002cf2, + 0x2cf300002cf4, + 0x2d0000002d26, + 0x2d2700002d28, + 0x2d2d00002d2e, + 0x2d3000002d68, + 0x2d7f00002d97, + 0x2da000002da7, + 0x2da800002daf, + 0x2db000002db7, + 0x2db800002dbf, + 0x2dc000002dc7, + 0x2dc800002dcf, + 0x2dd000002dd7, + 0x2dd800002ddf, + 0x2de000002e00, + 0x2e2f00002e30, + 0x300500003008, + 0x302a0000302e, + 0x303c0000303d, + 0x304100003097, + 0x30990000309b, + 0x309d0000309f, + 0x30a1000030fb, + 0x30fc000030ff, + 0x310500003130, + 0x31a0000031c0, + 0x31f000003200, + 0x340000004dc0, + 0x4e000000a48d, + 0xa4d00000a4fe, + 0xa5000000a60d, + 0xa6100000a62c, + 0xa6410000a642, + 0xa6430000a644, + 0xa6450000a646, + 0xa6470000a648, + 0xa6490000a64a, + 0xa64b0000a64c, + 0xa64d0000a64e, + 0xa64f0000a650, + 0xa6510000a652, + 0xa6530000a654, + 0xa6550000a656, + 0xa6570000a658, + 0xa6590000a65a, + 0xa65b0000a65c, + 0xa65d0000a65e, + 0xa65f0000a660, + 0xa6610000a662, + 0xa6630000a664, + 0xa6650000a666, + 0xa6670000a668, + 0xa6690000a66a, + 0xa66b0000a66c, + 0xa66d0000a670, + 0xa6740000a67e, + 0xa67f0000a680, + 0xa6810000a682, + 0xa6830000a684, + 0xa6850000a686, + 0xa6870000a688, + 0xa6890000a68a, + 0xa68b0000a68c, + 0xa68d0000a68e, + 0xa68f0000a690, + 0xa6910000a692, + 0xa6930000a694, + 0xa6950000a696, + 0xa6970000a698, + 0xa6990000a69a, + 0xa69b0000a69c, + 0xa69e0000a6e6, + 0xa6f00000a6f2, + 0xa7170000a720, + 0xa7230000a724, + 0xa7250000a726, + 0xa7270000a728, + 0xa7290000a72a, + 0xa72b0000a72c, + 0xa72d0000a72e, + 0xa72f0000a732, + 0xa7330000a734, + 0xa7350000a736, + 0xa7370000a738, + 0xa7390000a73a, + 0xa73b0000a73c, + 0xa73d0000a73e, + 0xa73f0000a740, + 0xa7410000a742, + 0xa7430000a744, + 0xa7450000a746, + 0xa7470000a748, + 0xa7490000a74a, + 0xa74b0000a74c, + 0xa74d0000a74e, + 0xa74f0000a750, + 0xa7510000a752, + 0xa7530000a754, + 0xa7550000a756, + 0xa7570000a758, + 0xa7590000a75a, + 0xa75b0000a75c, + 0xa75d0000a75e, + 0xa75f0000a760, + 0xa7610000a762, + 0xa7630000a764, + 0xa7650000a766, + 0xa7670000a768, + 0xa7690000a76a, + 0xa76b0000a76c, + 0xa76d0000a76e, + 0xa76f0000a770, + 0xa7710000a779, + 0xa77a0000a77b, + 0xa77c0000a77d, + 0xa77f0000a780, + 0xa7810000a782, + 0xa7830000a784, + 0xa7850000a786, + 0xa7870000a789, + 0xa78c0000a78d, + 0xa78e0000a790, + 0xa7910000a792, + 0xa7930000a796, + 0xa7970000a798, + 0xa7990000a79a, + 0xa79b0000a79c, + 0xa79d0000a79e, + 0xa79f0000a7a0, + 0xa7a10000a7a2, + 0xa7a30000a7a4, + 0xa7a50000a7a6, + 0xa7a70000a7a8, + 0xa7a90000a7aa, + 0xa7af0000a7b0, + 0xa7b50000a7b6, + 0xa7b70000a7b8, + 0xa7b90000a7ba, + 0xa7bb0000a7bc, + 0xa7bd0000a7be, + 0xa7bf0000a7c0, + 0xa7c10000a7c2, + 0xa7c30000a7c4, + 0xa7c80000a7c9, + 0xa7ca0000a7cb, + 0xa7d10000a7d2, + 0xa7d30000a7d4, + 0xa7d50000a7d6, + 0xa7d70000a7d8, + 0xa7d90000a7da, + 0xa7f60000a7f8, + 0xa7fa0000a828, + 0xa82c0000a82d, + 0xa8400000a874, + 0xa8800000a8c6, + 0xa8d00000a8da, + 0xa8e00000a8f8, + 0xa8fb0000a8fc, + 0xa8fd0000a92e, + 0xa9300000a954, + 0xa9800000a9c1, + 0xa9cf0000a9da, + 0xa9e00000a9ff, + 0xaa000000aa37, + 0xaa400000aa4e, + 0xaa500000aa5a, + 0xaa600000aa77, + 0xaa7a0000aac3, + 0xaadb0000aade, + 0xaae00000aaf0, + 0xaaf20000aaf7, + 0xab010000ab07, + 0xab090000ab0f, + 0xab110000ab17, + 0xab200000ab27, + 0xab280000ab2f, + 0xab300000ab5b, + 0xab600000ab69, + 0xabc00000abeb, + 0xabec0000abee, + 0xabf00000abfa, + 0xac000000d7a4, + 0xfa0e0000fa10, + 0xfa110000fa12, + 0xfa130000fa15, + 0xfa1f0000fa20, + 0xfa210000fa22, + 0xfa230000fa25, + 0xfa270000fa2a, + 0xfb1e0000fb1f, + 0xfe200000fe30, + 0xfe730000fe74, + 0x100000001000c, + 0x1000d00010027, + 0x100280001003b, + 0x1003c0001003e, + 0x1003f0001004e, + 0x100500001005e, + 0x10080000100fb, + 0x101fd000101fe, + 0x102800001029d, + 0x102a0000102d1, + 0x102e0000102e1, + 0x1030000010320, + 0x1032d00010341, + 0x103420001034a, + 0x103500001037b, + 0x103800001039e, + 0x103a0000103c4, + 0x103c8000103d0, + 0x104280001049e, + 0x104a0000104aa, + 0x104d8000104fc, + 0x1050000010528, + 0x1053000010564, + 0x10597000105a2, + 0x105a3000105b2, + 0x105b3000105ba, + 0x105bb000105bd, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010781, + 0x1080000010806, + 0x1080800010809, + 0x1080a00010836, + 0x1083700010839, + 0x1083c0001083d, + 0x1083f00010856, + 0x1086000010877, + 0x108800001089f, + 0x108e0000108f3, + 0x108f4000108f6, + 0x1090000010916, + 0x109200001093a, + 0x10980000109b8, + 0x109be000109c0, + 0x10a0000010a04, + 0x10a0500010a07, + 0x10a0c00010a14, + 0x10a1500010a18, + 0x10a1900010a36, + 0x10a3800010a3b, + 0x10a3f00010a40, + 0x10a6000010a7d, + 0x10a8000010a9d, + 0x10ac000010ac8, + 0x10ac900010ae7, + 0x10b0000010b36, + 0x10b4000010b56, + 0x10b6000010b73, + 0x10b8000010b92, + 0x10c0000010c49, + 0x10cc000010cf3, + 0x10d0000010d28, + 0x10d3000010d3a, + 0x10e8000010eaa, + 0x10eab00010ead, + 0x10eb000010eb2, + 0x10efd00010f1d, + 0x10f2700010f28, + 0x10f3000010f51, + 0x10f7000010f86, + 0x10fb000010fc5, + 0x10fe000010ff7, + 0x1100000011047, + 0x1106600011076, + 0x1107f000110bb, + 0x110c2000110c3, + 0x110d0000110e9, + 0x110f0000110fa, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111c5, + 0x111c9000111cd, + 0x111ce000111db, + 0x111dc000111dd, + 0x1120000011212, + 0x1121300011238, + 0x1123e00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128a0001128e, + 0x1128f0001129e, + 0x1129f000112a9, + 0x112b0000112eb, + 0x112f0000112fa, + 0x1130000011304, + 0x113050001130d, + 0x1130f00011311, + 0x1131300011329, + 0x1132a00011331, + 0x1133200011334, + 0x113350001133a, + 0x1133b00011345, + 0x1134700011349, + 0x1134b0001134e, + 0x1135000011351, + 0x1135700011358, + 0x1135d00011364, + 0x113660001136d, + 0x1137000011375, + 0x114000001144b, + 0x114500001145a, + 0x1145e00011462, + 0x11480000114c6, + 0x114c7000114c8, + 0x114d0000114da, + 0x11580000115b6, + 0x115b8000115c1, + 0x115d8000115de, + 0x1160000011641, + 0x1164400011645, + 0x116500001165a, + 0x11680000116b9, + 0x116c0000116ca, + 0x117000001171b, + 0x1171d0001172c, + 0x117300001173a, + 0x1174000011747, + 0x118000001183b, + 0x118c0000118ea, + 0x118ff00011907, + 0x119090001190a, + 0x1190c00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193b00011944, + 0x119500001195a, + 0x119a0000119a8, + 0x119aa000119d8, + 0x119da000119e2, + 0x119e3000119e5, + 0x11a0000011a3f, + 0x11a4700011a48, + 0x11a5000011a9a, + 0x11a9d00011a9e, + 0x11ab000011af9, + 0x11c0000011c09, + 0x11c0a00011c37, + 0x11c3800011c41, + 0x11c5000011c5a, + 0x11c7200011c90, + 0x11c9200011ca8, + 0x11ca900011cb7, + 0x11d0000011d07, + 0x11d0800011d0a, + 0x11d0b00011d37, + 0x11d3a00011d3b, + 0x11d3c00011d3e, + 0x11d3f00011d48, + 0x11d5000011d5a, + 0x11d6000011d66, + 0x11d6700011d69, + 0x11d6a00011d8f, + 0x11d9000011d92, + 0x11d9300011d99, + 0x11da000011daa, + 0x11ee000011ef7, + 0x11f0000011f11, + 0x11f1200011f3b, + 0x11f3e00011f43, + 0x11f5000011f5a, + 0x11fb000011fb1, + 0x120000001239a, + 0x1248000012544, + 0x12f9000012ff1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016a39, + 0x16a4000016a5f, + 0x16a6000016a6a, + 0x16a7000016abf, + 0x16ac000016aca, + 0x16ad000016aee, + 0x16af000016af5, + 0x16b0000016b37, + 0x16b4000016b44, + 0x16b5000016b5a, + 0x16b6300016b78, + 0x16b7d00016b90, + 0x16e6000016e80, + 0x16f0000016f4b, + 0x16f4f00016f88, + 0x16f8f00016fa0, + 0x16fe000016fe2, + 0x16fe300016fe5, + 0x16ff000016ff2, + 0x17000000187f8, + 0x1880000018cd6, + 0x18d0000018d09, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b123, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1b1550001b156, + 0x1b1640001b168, + 0x1b1700001b2fc, + 0x1bc000001bc6b, + 0x1bc700001bc7d, + 0x1bc800001bc89, + 0x1bc900001bc9a, + 0x1bc9d0001bc9f, + 0x1cf000001cf2e, + 0x1cf300001cf47, + 0x1da000001da37, + 0x1da3b0001da6d, + 0x1da750001da76, + 0x1da840001da85, + 0x1da9b0001daa0, + 0x1daa10001dab0, + 0x1df000001df1f, + 0x1df250001df2b, + 0x1e0000001e007, + 0x1e0080001e019, + 0x1e01b0001e022, + 0x1e0230001e025, + 0x1e0260001e02b, + 0x1e08f0001e090, + 0x1e1000001e12d, + 0x1e1300001e13e, + 0x1e1400001e14a, + 0x1e14e0001e14f, + 0x1e2900001e2af, + 0x1e2c00001e2fa, + 0x1e4d00001e4fa, + 0x1e7e00001e7e7, + 0x1e7e80001e7ec, + 0x1e7ed0001e7ef, + 0x1e7f00001e7ff, + 0x1e8000001e8c5, + 0x1e8d00001e8d7, + 0x1e9220001e94c, + 0x1e9500001e95a, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py b/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 0000000..6a43b04 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,54 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i+1 < len(sorted_list): + if sorted_list[i] == sorted_list[i+1]-1: + continue + current_range = sorted_list[last_write+1:i+1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos-1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py b/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 0000000..ed81113 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.7' + diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/py.typed b/lib/python3.12/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py b/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 0000000..6a1eddb --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8598 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = '15.1.0' +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, '3'), + (0x1, '3'), + (0x2, '3'), + (0x3, '3'), + (0x4, '3'), + (0x5, '3'), + (0x6, '3'), + (0x7, '3'), + (0x8, '3'), + (0x9, '3'), + (0xA, '3'), + (0xB, '3'), + (0xC, '3'), + (0xD, '3'), + (0xE, '3'), + (0xF, '3'), + (0x10, '3'), + (0x11, '3'), + (0x12, '3'), + (0x13, '3'), + (0x14, '3'), + (0x15, '3'), + (0x16, '3'), + (0x17, '3'), + (0x18, '3'), + (0x19, '3'), + (0x1A, '3'), + (0x1B, '3'), + (0x1C, '3'), + (0x1D, '3'), + (0x1E, '3'), + (0x1F, '3'), + (0x20, '3'), + (0x21, '3'), + (0x22, '3'), + (0x23, '3'), + (0x24, '3'), + (0x25, '3'), + (0x26, '3'), + (0x27, '3'), + (0x28, '3'), + (0x29, '3'), + (0x2A, '3'), + (0x2B, '3'), + (0x2C, '3'), + (0x2D, 'V'), + (0x2E, 'V'), + (0x2F, '3'), + (0x30, 'V'), + (0x31, 'V'), + (0x32, 'V'), + (0x33, 'V'), + (0x34, 'V'), + (0x35, 'V'), + (0x36, 'V'), + (0x37, 'V'), + (0x38, 'V'), + (0x39, 'V'), + (0x3A, '3'), + (0x3B, '3'), + (0x3C, '3'), + (0x3D, '3'), + (0x3E, '3'), + (0x3F, '3'), + (0x40, '3'), + (0x41, 'M', 'a'), + (0x42, 'M', 'b'), + (0x43, 'M', 'c'), + (0x44, 'M', 'd'), + (0x45, 'M', 'e'), + (0x46, 'M', 'f'), + (0x47, 'M', 'g'), + (0x48, 'M', 'h'), + (0x49, 'M', 'i'), + (0x4A, 'M', 'j'), + (0x4B, 'M', 'k'), + (0x4C, 'M', 'l'), + (0x4D, 'M', 'm'), + (0x4E, 'M', 'n'), + (0x4F, 'M', 'o'), + (0x50, 'M', 'p'), + (0x51, 'M', 'q'), + (0x52, 'M', 'r'), + (0x53, 'M', 's'), + (0x54, 'M', 't'), + (0x55, 'M', 'u'), + (0x56, 'M', 'v'), + (0x57, 'M', 'w'), + (0x58, 'M', 'x'), + (0x59, 'M', 'y'), + (0x5A, 'M', 'z'), + (0x5B, '3'), + (0x5C, '3'), + (0x5D, '3'), + (0x5E, '3'), + (0x5F, '3'), + (0x60, '3'), + (0x61, 'V'), + (0x62, 'V'), + (0x63, 'V'), + ] + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, 'V'), + (0x65, 'V'), + (0x66, 'V'), + (0x67, 'V'), + (0x68, 'V'), + (0x69, 'V'), + (0x6A, 'V'), + (0x6B, 'V'), + (0x6C, 'V'), + (0x6D, 'V'), + (0x6E, 'V'), + (0x6F, 'V'), + (0x70, 'V'), + (0x71, 'V'), + (0x72, 'V'), + (0x73, 'V'), + (0x74, 'V'), + (0x75, 'V'), + (0x76, 'V'), + (0x77, 'V'), + (0x78, 'V'), + (0x79, 'V'), + (0x7A, 'V'), + (0x7B, '3'), + (0x7C, '3'), + (0x7D, '3'), + (0x7E, '3'), + (0x7F, '3'), + (0x80, 'X'), + (0x81, 'X'), + (0x82, 'X'), + (0x83, 'X'), + (0x84, 'X'), + (0x85, 'X'), + (0x86, 'X'), + (0x87, 'X'), + (0x88, 'X'), + (0x89, 'X'), + (0x8A, 'X'), + (0x8B, 'X'), + (0x8C, 'X'), + (0x8D, 'X'), + (0x8E, 'X'), + (0x8F, 'X'), + (0x90, 'X'), + (0x91, 'X'), + (0x92, 'X'), + (0x93, 'X'), + (0x94, 'X'), + (0x95, 'X'), + (0x96, 'X'), + (0x97, 'X'), + (0x98, 'X'), + (0x99, 'X'), + (0x9A, 'X'), + (0x9B, 'X'), + (0x9C, 'X'), + (0x9D, 'X'), + (0x9E, 'X'), + (0x9F, 'X'), + (0xA0, '3', ' '), + (0xA1, 'V'), + (0xA2, 'V'), + (0xA3, 'V'), + (0xA4, 'V'), + (0xA5, 'V'), + (0xA6, 'V'), + (0xA7, 'V'), + (0xA8, '3', ' ̈'), + (0xA9, 'V'), + (0xAA, 'M', 'a'), + (0xAB, 'V'), + (0xAC, 'V'), + (0xAD, 'I'), + (0xAE, 'V'), + (0xAF, '3', ' ̄'), + (0xB0, 'V'), + (0xB1, 'V'), + (0xB2, 'M', '2'), + (0xB3, 'M', '3'), + (0xB4, '3', ' ́'), + (0xB5, 'M', 'μ'), + (0xB6, 'V'), + (0xB7, 'V'), + (0xB8, '3', ' ̧'), + (0xB9, 'M', '1'), + (0xBA, 'M', 'o'), + (0xBB, 'V'), + (0xBC, 'M', '1⁄4'), + (0xBD, 'M', '1⁄2'), + (0xBE, 'M', '3⁄4'), + (0xBF, 'V'), + (0xC0, 'M', 'à'), + (0xC1, 'M', 'á'), + (0xC2, 'M', 'â'), + (0xC3, 'M', 'ã'), + (0xC4, 'M', 'ä'), + (0xC5, 'M', 'å'), + (0xC6, 'M', 'æ'), + (0xC7, 'M', 'ç'), + ] + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, 'M', 'è'), + (0xC9, 'M', 'é'), + (0xCA, 'M', 'ê'), + (0xCB, 'M', 'ë'), + (0xCC, 'M', 'ì'), + (0xCD, 'M', 'í'), + (0xCE, 'M', 'î'), + (0xCF, 'M', 'ï'), + (0xD0, 'M', 'ð'), + (0xD1, 'M', 'ñ'), + (0xD2, 'M', 'ò'), + (0xD3, 'M', 'ó'), + (0xD4, 'M', 'ô'), + (0xD5, 'M', 'õ'), + (0xD6, 'M', 'ö'), + (0xD7, 'V'), + (0xD8, 'M', 'ø'), + (0xD9, 'M', 'ù'), + (0xDA, 'M', 'ú'), + (0xDB, 'M', 'û'), + (0xDC, 'M', 'ü'), + (0xDD, 'M', 'ý'), + (0xDE, 'M', 'þ'), + (0xDF, 'D', 'ss'), + (0xE0, 'V'), + (0xE1, 'V'), + (0xE2, 'V'), + (0xE3, 'V'), + (0xE4, 'V'), + (0xE5, 'V'), + (0xE6, 'V'), + (0xE7, 'V'), + (0xE8, 'V'), + (0xE9, 'V'), + (0xEA, 'V'), + (0xEB, 'V'), + (0xEC, 'V'), + (0xED, 'V'), + (0xEE, 'V'), + (0xEF, 'V'), + (0xF0, 'V'), + (0xF1, 'V'), + (0xF2, 'V'), + (0xF3, 'V'), + (0xF4, 'V'), + (0xF5, 'V'), + (0xF6, 'V'), + (0xF7, 'V'), + (0xF8, 'V'), + (0xF9, 'V'), + (0xFA, 'V'), + (0xFB, 'V'), + (0xFC, 'V'), + (0xFD, 'V'), + (0xFE, 'V'), + (0xFF, 'V'), + (0x100, 'M', 'ā'), + (0x101, 'V'), + (0x102, 'M', 'ă'), + (0x103, 'V'), + (0x104, 'M', 'ą'), + (0x105, 'V'), + (0x106, 'M', 'ć'), + (0x107, 'V'), + (0x108, 'M', 'ĉ'), + (0x109, 'V'), + (0x10A, 'M', 'ċ'), + (0x10B, 'V'), + (0x10C, 'M', 'č'), + (0x10D, 'V'), + (0x10E, 'M', 'ď'), + (0x10F, 'V'), + (0x110, 'M', 'đ'), + (0x111, 'V'), + (0x112, 'M', 'ē'), + (0x113, 'V'), + (0x114, 'M', 'ĕ'), + (0x115, 'V'), + (0x116, 'M', 'ė'), + (0x117, 'V'), + (0x118, 'M', 'ę'), + (0x119, 'V'), + (0x11A, 'M', 'ě'), + (0x11B, 'V'), + (0x11C, 'M', 'ĝ'), + (0x11D, 'V'), + (0x11E, 'M', 'ğ'), + (0x11F, 'V'), + (0x120, 'M', 'ġ'), + (0x121, 'V'), + (0x122, 'M', 'ģ'), + (0x123, 'V'), + (0x124, 'M', 'ĥ'), + (0x125, 'V'), + (0x126, 'M', 'ħ'), + (0x127, 'V'), + (0x128, 'M', 'ĩ'), + (0x129, 'V'), + (0x12A, 'M', 'ī'), + (0x12B, 'V'), + ] + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, 'M', 'ĭ'), + (0x12D, 'V'), + (0x12E, 'M', 'į'), + (0x12F, 'V'), + (0x130, 'M', 'i̇'), + (0x131, 'V'), + (0x132, 'M', 'ij'), + (0x134, 'M', 'ĵ'), + (0x135, 'V'), + (0x136, 'M', 'ķ'), + (0x137, 'V'), + (0x139, 'M', 'ĺ'), + (0x13A, 'V'), + (0x13B, 'M', 'ļ'), + (0x13C, 'V'), + (0x13D, 'M', 'ľ'), + (0x13E, 'V'), + (0x13F, 'M', 'l·'), + (0x141, 'M', 'ł'), + (0x142, 'V'), + (0x143, 'M', 'ń'), + (0x144, 'V'), + (0x145, 'M', 'ņ'), + (0x146, 'V'), + (0x147, 'M', 'ň'), + (0x148, 'V'), + (0x149, 'M', 'ʼn'), + (0x14A, 'M', 'ŋ'), + (0x14B, 'V'), + (0x14C, 'M', 'ō'), + (0x14D, 'V'), + (0x14E, 'M', 'ŏ'), + (0x14F, 'V'), + (0x150, 'M', 'ő'), + (0x151, 'V'), + (0x152, 'M', 'œ'), + (0x153, 'V'), + (0x154, 'M', 'ŕ'), + (0x155, 'V'), + (0x156, 'M', 'ŗ'), + (0x157, 'V'), + (0x158, 'M', 'ř'), + (0x159, 'V'), + (0x15A, 'M', 'ś'), + (0x15B, 'V'), + (0x15C, 'M', 'ŝ'), + (0x15D, 'V'), + (0x15E, 'M', 'ş'), + (0x15F, 'V'), + (0x160, 'M', 'š'), + (0x161, 'V'), + (0x162, 'M', 'ţ'), + (0x163, 'V'), + (0x164, 'M', 'ť'), + (0x165, 'V'), + (0x166, 'M', 'ŧ'), + (0x167, 'V'), + (0x168, 'M', 'ũ'), + (0x169, 'V'), + (0x16A, 'M', 'ū'), + (0x16B, 'V'), + (0x16C, 'M', 'ŭ'), + (0x16D, 'V'), + (0x16E, 'M', 'ů'), + (0x16F, 'V'), + (0x170, 'M', 'ű'), + (0x171, 'V'), + (0x172, 'M', 'ų'), + (0x173, 'V'), + (0x174, 'M', 'ŵ'), + (0x175, 'V'), + (0x176, 'M', 'ŷ'), + (0x177, 'V'), + (0x178, 'M', 'ÿ'), + (0x179, 'M', 'ź'), + (0x17A, 'V'), + (0x17B, 'M', 'ż'), + (0x17C, 'V'), + (0x17D, 'M', 'ž'), + (0x17E, 'V'), + (0x17F, 'M', 's'), + (0x180, 'V'), + (0x181, 'M', 'ɓ'), + (0x182, 'M', 'ƃ'), + (0x183, 'V'), + (0x184, 'M', 'ƅ'), + (0x185, 'V'), + (0x186, 'M', 'ɔ'), + (0x187, 'M', 'ƈ'), + (0x188, 'V'), + (0x189, 'M', 'ɖ'), + (0x18A, 'M', 'ɗ'), + (0x18B, 'M', 'ƌ'), + (0x18C, 'V'), + (0x18E, 'M', 'ǝ'), + (0x18F, 'M', 'ə'), + (0x190, 'M', 'ɛ'), + (0x191, 'M', 'ƒ'), + (0x192, 'V'), + (0x193, 'M', 'ɠ'), + ] + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, 'M', 'ɣ'), + (0x195, 'V'), + (0x196, 'M', 'ɩ'), + (0x197, 'M', 'ɨ'), + (0x198, 'M', 'ƙ'), + (0x199, 'V'), + (0x19C, 'M', 'ɯ'), + (0x19D, 'M', 'ɲ'), + (0x19E, 'V'), + (0x19F, 'M', 'ɵ'), + (0x1A0, 'M', 'ơ'), + (0x1A1, 'V'), + (0x1A2, 'M', 'ƣ'), + (0x1A3, 'V'), + (0x1A4, 'M', 'ƥ'), + (0x1A5, 'V'), + (0x1A6, 'M', 'ʀ'), + (0x1A7, 'M', 'ƨ'), + (0x1A8, 'V'), + (0x1A9, 'M', 'ʃ'), + (0x1AA, 'V'), + (0x1AC, 'M', 'ƭ'), + (0x1AD, 'V'), + (0x1AE, 'M', 'ʈ'), + (0x1AF, 'M', 'ư'), + (0x1B0, 'V'), + (0x1B1, 'M', 'ʊ'), + (0x1B2, 'M', 'ʋ'), + (0x1B3, 'M', 'ƴ'), + (0x1B4, 'V'), + (0x1B5, 'M', 'ƶ'), + (0x1B6, 'V'), + (0x1B7, 'M', 'ʒ'), + (0x1B8, 'M', 'ƹ'), + (0x1B9, 'V'), + (0x1BC, 'M', 'ƽ'), + (0x1BD, 'V'), + (0x1C4, 'M', 'dž'), + (0x1C7, 'M', 'lj'), + (0x1CA, 'M', 'nj'), + (0x1CD, 'M', 'ǎ'), + (0x1CE, 'V'), + (0x1CF, 'M', 'ǐ'), + (0x1D0, 'V'), + (0x1D1, 'M', 'ǒ'), + (0x1D2, 'V'), + (0x1D3, 'M', 'ǔ'), + (0x1D4, 'V'), + (0x1D5, 'M', 'ǖ'), + (0x1D6, 'V'), + (0x1D7, 'M', 'ǘ'), + (0x1D8, 'V'), + (0x1D9, 'M', 'ǚ'), + (0x1DA, 'V'), + (0x1DB, 'M', 'ǜ'), + (0x1DC, 'V'), + (0x1DE, 'M', 'ǟ'), + (0x1DF, 'V'), + (0x1E0, 'M', 'ǡ'), + (0x1E1, 'V'), + (0x1E2, 'M', 'ǣ'), + (0x1E3, 'V'), + (0x1E4, 'M', 'ǥ'), + (0x1E5, 'V'), + (0x1E6, 'M', 'ǧ'), + (0x1E7, 'V'), + (0x1E8, 'M', 'ǩ'), + (0x1E9, 'V'), + (0x1EA, 'M', 'ǫ'), + (0x1EB, 'V'), + (0x1EC, 'M', 'ǭ'), + (0x1ED, 'V'), + (0x1EE, 'M', 'ǯ'), + (0x1EF, 'V'), + (0x1F1, 'M', 'dz'), + (0x1F4, 'M', 'ǵ'), + (0x1F5, 'V'), + (0x1F6, 'M', 'ƕ'), + (0x1F7, 'M', 'ƿ'), + (0x1F8, 'M', 'ǹ'), + (0x1F9, 'V'), + (0x1FA, 'M', 'ǻ'), + (0x1FB, 'V'), + (0x1FC, 'M', 'ǽ'), + (0x1FD, 'V'), + (0x1FE, 'M', 'ǿ'), + (0x1FF, 'V'), + (0x200, 'M', 'ȁ'), + (0x201, 'V'), + (0x202, 'M', 'ȃ'), + (0x203, 'V'), + (0x204, 'M', 'ȅ'), + (0x205, 'V'), + (0x206, 'M', 'ȇ'), + (0x207, 'V'), + (0x208, 'M', 'ȉ'), + (0x209, 'V'), + (0x20A, 'M', 'ȋ'), + (0x20B, 'V'), + (0x20C, 'M', 'ȍ'), + ] + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, 'V'), + (0x20E, 'M', 'ȏ'), + (0x20F, 'V'), + (0x210, 'M', 'ȑ'), + (0x211, 'V'), + (0x212, 'M', 'ȓ'), + (0x213, 'V'), + (0x214, 'M', 'ȕ'), + (0x215, 'V'), + (0x216, 'M', 'ȗ'), + (0x217, 'V'), + (0x218, 'M', 'ș'), + (0x219, 'V'), + (0x21A, 'M', 'ț'), + (0x21B, 'V'), + (0x21C, 'M', 'ȝ'), + (0x21D, 'V'), + (0x21E, 'M', 'ȟ'), + (0x21F, 'V'), + (0x220, 'M', 'ƞ'), + (0x221, 'V'), + (0x222, 'M', 'ȣ'), + (0x223, 'V'), + (0x224, 'M', 'ȥ'), + (0x225, 'V'), + (0x226, 'M', 'ȧ'), + (0x227, 'V'), + (0x228, 'M', 'ȩ'), + (0x229, 'V'), + (0x22A, 'M', 'ȫ'), + (0x22B, 'V'), + (0x22C, 'M', 'ȭ'), + (0x22D, 'V'), + (0x22E, 'M', 'ȯ'), + (0x22F, 'V'), + (0x230, 'M', 'ȱ'), + (0x231, 'V'), + (0x232, 'M', 'ȳ'), + (0x233, 'V'), + (0x23A, 'M', 'ⱥ'), + (0x23B, 'M', 'ȼ'), + (0x23C, 'V'), + (0x23D, 'M', 'ƚ'), + (0x23E, 'M', 'ⱦ'), + (0x23F, 'V'), + (0x241, 'M', 'ɂ'), + (0x242, 'V'), + (0x243, 'M', 'ƀ'), + (0x244, 'M', 'ʉ'), + (0x245, 'M', 'ʌ'), + (0x246, 'M', 'ɇ'), + (0x247, 'V'), + (0x248, 'M', 'ɉ'), + (0x249, 'V'), + (0x24A, 'M', 'ɋ'), + (0x24B, 'V'), + (0x24C, 'M', 'ɍ'), + (0x24D, 'V'), + (0x24E, 'M', 'ɏ'), + (0x24F, 'V'), + (0x2B0, 'M', 'h'), + (0x2B1, 'M', 'ɦ'), + (0x2B2, 'M', 'j'), + (0x2B3, 'M', 'r'), + (0x2B4, 'M', 'ɹ'), + (0x2B5, 'M', 'ɻ'), + (0x2B6, 'M', 'ʁ'), + (0x2B7, 'M', 'w'), + (0x2B8, 'M', 'y'), + (0x2B9, 'V'), + (0x2D8, '3', ' ̆'), + (0x2D9, '3', ' ̇'), + (0x2DA, '3', ' ̊'), + (0x2DB, '3', ' ̨'), + (0x2DC, '3', ' ̃'), + (0x2DD, '3', ' ̋'), + (0x2DE, 'V'), + (0x2E0, 'M', 'ɣ'), + (0x2E1, 'M', 'l'), + (0x2E2, 'M', 's'), + (0x2E3, 'M', 'x'), + (0x2E4, 'M', 'ʕ'), + (0x2E5, 'V'), + (0x340, 'M', '̀'), + (0x341, 'M', '́'), + (0x342, 'V'), + (0x343, 'M', '̓'), + (0x344, 'M', '̈́'), + (0x345, 'M', 'ι'), + (0x346, 'V'), + (0x34F, 'I'), + (0x350, 'V'), + (0x370, 'M', 'ͱ'), + (0x371, 'V'), + (0x372, 'M', 'ͳ'), + (0x373, 'V'), + (0x374, 'M', 'ʹ'), + (0x375, 'V'), + (0x376, 'M', 'ͷ'), + (0x377, 'V'), + ] + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, 'X'), + (0x37A, '3', ' ι'), + (0x37B, 'V'), + (0x37E, '3', ';'), + (0x37F, 'M', 'ϳ'), + (0x380, 'X'), + (0x384, '3', ' ́'), + (0x385, '3', ' ̈́'), + (0x386, 'M', 'ά'), + (0x387, 'M', '·'), + (0x388, 'M', 'έ'), + (0x389, 'M', 'ή'), + (0x38A, 'M', 'ί'), + (0x38B, 'X'), + (0x38C, 'M', 'ό'), + (0x38D, 'X'), + (0x38E, 'M', 'ύ'), + (0x38F, 'M', 'ώ'), + (0x390, 'V'), + (0x391, 'M', 'α'), + (0x392, 'M', 'β'), + (0x393, 'M', 'γ'), + (0x394, 'M', 'δ'), + (0x395, 'M', 'ε'), + (0x396, 'M', 'ζ'), + (0x397, 'M', 'η'), + (0x398, 'M', 'θ'), + (0x399, 'M', 'ι'), + (0x39A, 'M', 'κ'), + (0x39B, 'M', 'λ'), + (0x39C, 'M', 'μ'), + (0x39D, 'M', 'ν'), + (0x39E, 'M', 'ξ'), + (0x39F, 'M', 'ο'), + (0x3A0, 'M', 'π'), + (0x3A1, 'M', 'ρ'), + (0x3A2, 'X'), + (0x3A3, 'M', 'σ'), + (0x3A4, 'M', 'τ'), + (0x3A5, 'M', 'υ'), + (0x3A6, 'M', 'φ'), + (0x3A7, 'M', 'χ'), + (0x3A8, 'M', 'ψ'), + (0x3A9, 'M', 'ω'), + (0x3AA, 'M', 'ϊ'), + (0x3AB, 'M', 'ϋ'), + (0x3AC, 'V'), + (0x3C2, 'D', 'σ'), + (0x3C3, 'V'), + (0x3CF, 'M', 'ϗ'), + (0x3D0, 'M', 'β'), + (0x3D1, 'M', 'θ'), + (0x3D2, 'M', 'υ'), + (0x3D3, 'M', 'ύ'), + (0x3D4, 'M', 'ϋ'), + (0x3D5, 'M', 'φ'), + (0x3D6, 'M', 'π'), + (0x3D7, 'V'), + (0x3D8, 'M', 'ϙ'), + (0x3D9, 'V'), + (0x3DA, 'M', 'ϛ'), + (0x3DB, 'V'), + (0x3DC, 'M', 'ϝ'), + (0x3DD, 'V'), + (0x3DE, 'M', 'ϟ'), + (0x3DF, 'V'), + (0x3E0, 'M', 'ϡ'), + (0x3E1, 'V'), + (0x3E2, 'M', 'ϣ'), + (0x3E3, 'V'), + (0x3E4, 'M', 'ϥ'), + (0x3E5, 'V'), + (0x3E6, 'M', 'ϧ'), + (0x3E7, 'V'), + (0x3E8, 'M', 'ϩ'), + (0x3E9, 'V'), + (0x3EA, 'M', 'ϫ'), + (0x3EB, 'V'), + (0x3EC, 'M', 'ϭ'), + (0x3ED, 'V'), + (0x3EE, 'M', 'ϯ'), + (0x3EF, 'V'), + (0x3F0, 'M', 'κ'), + (0x3F1, 'M', 'ρ'), + (0x3F2, 'M', 'σ'), + (0x3F3, 'V'), + (0x3F4, 'M', 'θ'), + (0x3F5, 'M', 'ε'), + (0x3F6, 'V'), + (0x3F7, 'M', 'ϸ'), + (0x3F8, 'V'), + (0x3F9, 'M', 'σ'), + (0x3FA, 'M', 'ϻ'), + (0x3FB, 'V'), + (0x3FD, 'M', 'ͻ'), + (0x3FE, 'M', 'ͼ'), + (0x3FF, 'M', 'ͽ'), + (0x400, 'M', 'ѐ'), + (0x401, 'M', 'ё'), + (0x402, 'M', 'ђ'), + ] + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, 'M', 'ѓ'), + (0x404, 'M', 'є'), + (0x405, 'M', 'ѕ'), + (0x406, 'M', 'і'), + (0x407, 'M', 'ї'), + (0x408, 'M', 'ј'), + (0x409, 'M', 'љ'), + (0x40A, 'M', 'њ'), + (0x40B, 'M', 'ћ'), + (0x40C, 'M', 'ќ'), + (0x40D, 'M', 'ѝ'), + (0x40E, 'M', 'ў'), + (0x40F, 'M', 'џ'), + (0x410, 'M', 'а'), + (0x411, 'M', 'б'), + (0x412, 'M', 'в'), + (0x413, 'M', 'г'), + (0x414, 'M', 'д'), + (0x415, 'M', 'е'), + (0x416, 'M', 'ж'), + (0x417, 'M', 'з'), + (0x418, 'M', 'и'), + (0x419, 'M', 'й'), + (0x41A, 'M', 'к'), + (0x41B, 'M', 'л'), + (0x41C, 'M', 'м'), + (0x41D, 'M', 'н'), + (0x41E, 'M', 'о'), + (0x41F, 'M', 'п'), + (0x420, 'M', 'р'), + (0x421, 'M', 'с'), + (0x422, 'M', 'т'), + (0x423, 'M', 'у'), + (0x424, 'M', 'ф'), + (0x425, 'M', 'х'), + (0x426, 'M', 'ц'), + (0x427, 'M', 'ч'), + (0x428, 'M', 'ш'), + (0x429, 'M', 'щ'), + (0x42A, 'M', 'ъ'), + (0x42B, 'M', 'ы'), + (0x42C, 'M', 'ь'), + (0x42D, 'M', 'э'), + (0x42E, 'M', 'ю'), + (0x42F, 'M', 'я'), + (0x430, 'V'), + (0x460, 'M', 'ѡ'), + (0x461, 'V'), + (0x462, 'M', 'ѣ'), + (0x463, 'V'), + (0x464, 'M', 'ѥ'), + (0x465, 'V'), + (0x466, 'M', 'ѧ'), + (0x467, 'V'), + (0x468, 'M', 'ѩ'), + (0x469, 'V'), + (0x46A, 'M', 'ѫ'), + (0x46B, 'V'), + (0x46C, 'M', 'ѭ'), + (0x46D, 'V'), + (0x46E, 'M', 'ѯ'), + (0x46F, 'V'), + (0x470, 'M', 'ѱ'), + (0x471, 'V'), + (0x472, 'M', 'ѳ'), + (0x473, 'V'), + (0x474, 'M', 'ѵ'), + (0x475, 'V'), + (0x476, 'M', 'ѷ'), + (0x477, 'V'), + (0x478, 'M', 'ѹ'), + (0x479, 'V'), + (0x47A, 'M', 'ѻ'), + (0x47B, 'V'), + (0x47C, 'M', 'ѽ'), + (0x47D, 'V'), + (0x47E, 'M', 'ѿ'), + (0x47F, 'V'), + (0x480, 'M', 'ҁ'), + (0x481, 'V'), + (0x48A, 'M', 'ҋ'), + (0x48B, 'V'), + (0x48C, 'M', 'ҍ'), + (0x48D, 'V'), + (0x48E, 'M', 'ҏ'), + (0x48F, 'V'), + (0x490, 'M', 'ґ'), + (0x491, 'V'), + (0x492, 'M', 'ғ'), + (0x493, 'V'), + (0x494, 'M', 'ҕ'), + (0x495, 'V'), + (0x496, 'M', 'җ'), + (0x497, 'V'), + (0x498, 'M', 'ҙ'), + (0x499, 'V'), + (0x49A, 'M', 'қ'), + (0x49B, 'V'), + (0x49C, 'M', 'ҝ'), + (0x49D, 'V'), + ] + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, 'M', 'ҟ'), + (0x49F, 'V'), + (0x4A0, 'M', 'ҡ'), + (0x4A1, 'V'), + (0x4A2, 'M', 'ң'), + (0x4A3, 'V'), + (0x4A4, 'M', 'ҥ'), + (0x4A5, 'V'), + (0x4A6, 'M', 'ҧ'), + (0x4A7, 'V'), + (0x4A8, 'M', 'ҩ'), + (0x4A9, 'V'), + (0x4AA, 'M', 'ҫ'), + (0x4AB, 'V'), + (0x4AC, 'M', 'ҭ'), + (0x4AD, 'V'), + (0x4AE, 'M', 'ү'), + (0x4AF, 'V'), + (0x4B0, 'M', 'ұ'), + (0x4B1, 'V'), + (0x4B2, 'M', 'ҳ'), + (0x4B3, 'V'), + (0x4B4, 'M', 'ҵ'), + (0x4B5, 'V'), + (0x4B6, 'M', 'ҷ'), + (0x4B7, 'V'), + (0x4B8, 'M', 'ҹ'), + (0x4B9, 'V'), + (0x4BA, 'M', 'һ'), + (0x4BB, 'V'), + (0x4BC, 'M', 'ҽ'), + (0x4BD, 'V'), + (0x4BE, 'M', 'ҿ'), + (0x4BF, 'V'), + (0x4C0, 'X'), + (0x4C1, 'M', 'ӂ'), + (0x4C2, 'V'), + (0x4C3, 'M', 'ӄ'), + (0x4C4, 'V'), + (0x4C5, 'M', 'ӆ'), + (0x4C6, 'V'), + (0x4C7, 'M', 'ӈ'), + (0x4C8, 'V'), + (0x4C9, 'M', 'ӊ'), + (0x4CA, 'V'), + (0x4CB, 'M', 'ӌ'), + (0x4CC, 'V'), + (0x4CD, 'M', 'ӎ'), + (0x4CE, 'V'), + (0x4D0, 'M', 'ӑ'), + (0x4D1, 'V'), + (0x4D2, 'M', 'ӓ'), + (0x4D3, 'V'), + (0x4D4, 'M', 'ӕ'), + (0x4D5, 'V'), + (0x4D6, 'M', 'ӗ'), + (0x4D7, 'V'), + (0x4D8, 'M', 'ә'), + (0x4D9, 'V'), + (0x4DA, 'M', 'ӛ'), + (0x4DB, 'V'), + (0x4DC, 'M', 'ӝ'), + (0x4DD, 'V'), + (0x4DE, 'M', 'ӟ'), + (0x4DF, 'V'), + (0x4E0, 'M', 'ӡ'), + (0x4E1, 'V'), + (0x4E2, 'M', 'ӣ'), + (0x4E3, 'V'), + (0x4E4, 'M', 'ӥ'), + (0x4E5, 'V'), + (0x4E6, 'M', 'ӧ'), + (0x4E7, 'V'), + (0x4E8, 'M', 'ө'), + (0x4E9, 'V'), + (0x4EA, 'M', 'ӫ'), + (0x4EB, 'V'), + (0x4EC, 'M', 'ӭ'), + (0x4ED, 'V'), + (0x4EE, 'M', 'ӯ'), + (0x4EF, 'V'), + (0x4F0, 'M', 'ӱ'), + (0x4F1, 'V'), + (0x4F2, 'M', 'ӳ'), + (0x4F3, 'V'), + (0x4F4, 'M', 'ӵ'), + (0x4F5, 'V'), + (0x4F6, 'M', 'ӷ'), + (0x4F7, 'V'), + (0x4F8, 'M', 'ӹ'), + (0x4F9, 'V'), + (0x4FA, 'M', 'ӻ'), + (0x4FB, 'V'), + (0x4FC, 'M', 'ӽ'), + (0x4FD, 'V'), + (0x4FE, 'M', 'ӿ'), + (0x4FF, 'V'), + (0x500, 'M', 'ԁ'), + (0x501, 'V'), + (0x502, 'M', 'ԃ'), + ] + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, 'V'), + (0x504, 'M', 'ԅ'), + (0x505, 'V'), + (0x506, 'M', 'ԇ'), + (0x507, 'V'), + (0x508, 'M', 'ԉ'), + (0x509, 'V'), + (0x50A, 'M', 'ԋ'), + (0x50B, 'V'), + (0x50C, 'M', 'ԍ'), + (0x50D, 'V'), + (0x50E, 'M', 'ԏ'), + (0x50F, 'V'), + (0x510, 'M', 'ԑ'), + (0x511, 'V'), + (0x512, 'M', 'ԓ'), + (0x513, 'V'), + (0x514, 'M', 'ԕ'), + (0x515, 'V'), + (0x516, 'M', 'ԗ'), + (0x517, 'V'), + (0x518, 'M', 'ԙ'), + (0x519, 'V'), + (0x51A, 'M', 'ԛ'), + (0x51B, 'V'), + (0x51C, 'M', 'ԝ'), + (0x51D, 'V'), + (0x51E, 'M', 'ԟ'), + (0x51F, 'V'), + (0x520, 'M', 'ԡ'), + (0x521, 'V'), + (0x522, 'M', 'ԣ'), + (0x523, 'V'), + (0x524, 'M', 'ԥ'), + (0x525, 'V'), + (0x526, 'M', 'ԧ'), + (0x527, 'V'), + (0x528, 'M', 'ԩ'), + (0x529, 'V'), + (0x52A, 'M', 'ԫ'), + (0x52B, 'V'), + (0x52C, 'M', 'ԭ'), + (0x52D, 'V'), + (0x52E, 'M', 'ԯ'), + (0x52F, 'V'), + (0x530, 'X'), + (0x531, 'M', 'ա'), + (0x532, 'M', 'բ'), + (0x533, 'M', 'գ'), + (0x534, 'M', 'դ'), + (0x535, 'M', 'ե'), + (0x536, 'M', 'զ'), + (0x537, 'M', 'է'), + (0x538, 'M', 'ը'), + (0x539, 'M', 'թ'), + (0x53A, 'M', 'ժ'), + (0x53B, 'M', 'ի'), + (0x53C, 'M', 'լ'), + (0x53D, 'M', 'խ'), + (0x53E, 'M', 'ծ'), + (0x53F, 'M', 'կ'), + (0x540, 'M', 'հ'), + (0x541, 'M', 'ձ'), + (0x542, 'M', 'ղ'), + (0x543, 'M', 'ճ'), + (0x544, 'M', 'մ'), + (0x545, 'M', 'յ'), + (0x546, 'M', 'ն'), + (0x547, 'M', 'շ'), + (0x548, 'M', 'ո'), + (0x549, 'M', 'չ'), + (0x54A, 'M', 'պ'), + (0x54B, 'M', 'ջ'), + (0x54C, 'M', 'ռ'), + (0x54D, 'M', 'ս'), + (0x54E, 'M', 'վ'), + (0x54F, 'M', 'տ'), + (0x550, 'M', 'ր'), + (0x551, 'M', 'ց'), + (0x552, 'M', 'ւ'), + (0x553, 'M', 'փ'), + (0x554, 'M', 'ք'), + (0x555, 'M', 'օ'), + (0x556, 'M', 'ֆ'), + (0x557, 'X'), + (0x559, 'V'), + (0x587, 'M', 'եւ'), + (0x588, 'V'), + (0x58B, 'X'), + (0x58D, 'V'), + (0x590, 'X'), + (0x591, 'V'), + (0x5C8, 'X'), + (0x5D0, 'V'), + (0x5EB, 'X'), + (0x5EF, 'V'), + (0x5F5, 'X'), + (0x606, 'V'), + (0x61C, 'X'), + (0x61D, 'V'), + ] + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, 'M', 'اٴ'), + (0x676, 'M', 'وٴ'), + (0x677, 'M', 'ۇٴ'), + (0x678, 'M', 'يٴ'), + (0x679, 'V'), + (0x6DD, 'X'), + (0x6DE, 'V'), + (0x70E, 'X'), + (0x710, 'V'), + (0x74B, 'X'), + (0x74D, 'V'), + (0x7B2, 'X'), + (0x7C0, 'V'), + (0x7FB, 'X'), + (0x7FD, 'V'), + (0x82E, 'X'), + (0x830, 'V'), + (0x83F, 'X'), + (0x840, 'V'), + (0x85C, 'X'), + (0x85E, 'V'), + (0x85F, 'X'), + (0x860, 'V'), + (0x86B, 'X'), + (0x870, 'V'), + (0x88F, 'X'), + (0x898, 'V'), + (0x8E2, 'X'), + (0x8E3, 'V'), + (0x958, 'M', 'क़'), + (0x959, 'M', 'ख़'), + (0x95A, 'M', 'ग़'), + (0x95B, 'M', 'ज़'), + (0x95C, 'M', 'ड़'), + (0x95D, 'M', 'ढ़'), + (0x95E, 'M', 'फ़'), + (0x95F, 'M', 'य़'), + (0x960, 'V'), + (0x984, 'X'), + (0x985, 'V'), + (0x98D, 'X'), + (0x98F, 'V'), + (0x991, 'X'), + (0x993, 'V'), + (0x9A9, 'X'), + (0x9AA, 'V'), + (0x9B1, 'X'), + (0x9B2, 'V'), + (0x9B3, 'X'), + (0x9B6, 'V'), + (0x9BA, 'X'), + (0x9BC, 'V'), + (0x9C5, 'X'), + (0x9C7, 'V'), + (0x9C9, 'X'), + (0x9CB, 'V'), + (0x9CF, 'X'), + (0x9D7, 'V'), + (0x9D8, 'X'), + (0x9DC, 'M', 'ড়'), + (0x9DD, 'M', 'ঢ়'), + (0x9DE, 'X'), + (0x9DF, 'M', 'য়'), + (0x9E0, 'V'), + (0x9E4, 'X'), + (0x9E6, 'V'), + (0x9FF, 'X'), + (0xA01, 'V'), + (0xA04, 'X'), + (0xA05, 'V'), + (0xA0B, 'X'), + (0xA0F, 'V'), + (0xA11, 'X'), + (0xA13, 'V'), + (0xA29, 'X'), + (0xA2A, 'V'), + (0xA31, 'X'), + (0xA32, 'V'), + (0xA33, 'M', 'ਲ਼'), + (0xA34, 'X'), + (0xA35, 'V'), + (0xA36, 'M', 'ਸ਼'), + (0xA37, 'X'), + (0xA38, 'V'), + (0xA3A, 'X'), + (0xA3C, 'V'), + (0xA3D, 'X'), + (0xA3E, 'V'), + (0xA43, 'X'), + (0xA47, 'V'), + (0xA49, 'X'), + (0xA4B, 'V'), + (0xA4E, 'X'), + (0xA51, 'V'), + (0xA52, 'X'), + (0xA59, 'M', 'ਖ਼'), + (0xA5A, 'M', 'ਗ਼'), + (0xA5B, 'M', 'ਜ਼'), + (0xA5C, 'V'), + (0xA5D, 'X'), + ] + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, 'M', 'ਫ਼'), + (0xA5F, 'X'), + (0xA66, 'V'), + (0xA77, 'X'), + (0xA81, 'V'), + (0xA84, 'X'), + (0xA85, 'V'), + (0xA8E, 'X'), + (0xA8F, 'V'), + (0xA92, 'X'), + (0xA93, 'V'), + (0xAA9, 'X'), + (0xAAA, 'V'), + (0xAB1, 'X'), + (0xAB2, 'V'), + (0xAB4, 'X'), + (0xAB5, 'V'), + (0xABA, 'X'), + (0xABC, 'V'), + (0xAC6, 'X'), + (0xAC7, 'V'), + (0xACA, 'X'), + (0xACB, 'V'), + (0xACE, 'X'), + (0xAD0, 'V'), + (0xAD1, 'X'), + (0xAE0, 'V'), + (0xAE4, 'X'), + (0xAE6, 'V'), + (0xAF2, 'X'), + (0xAF9, 'V'), + (0xB00, 'X'), + (0xB01, 'V'), + (0xB04, 'X'), + (0xB05, 'V'), + (0xB0D, 'X'), + (0xB0F, 'V'), + (0xB11, 'X'), + (0xB13, 'V'), + (0xB29, 'X'), + (0xB2A, 'V'), + (0xB31, 'X'), + (0xB32, 'V'), + (0xB34, 'X'), + (0xB35, 'V'), + (0xB3A, 'X'), + (0xB3C, 'V'), + (0xB45, 'X'), + (0xB47, 'V'), + (0xB49, 'X'), + (0xB4B, 'V'), + (0xB4E, 'X'), + (0xB55, 'V'), + (0xB58, 'X'), + (0xB5C, 'M', 'ଡ଼'), + (0xB5D, 'M', 'ଢ଼'), + (0xB5E, 'X'), + (0xB5F, 'V'), + (0xB64, 'X'), + (0xB66, 'V'), + (0xB78, 'X'), + (0xB82, 'V'), + (0xB84, 'X'), + (0xB85, 'V'), + (0xB8B, 'X'), + (0xB8E, 'V'), + (0xB91, 'X'), + (0xB92, 'V'), + (0xB96, 'X'), + (0xB99, 'V'), + (0xB9B, 'X'), + (0xB9C, 'V'), + (0xB9D, 'X'), + (0xB9E, 'V'), + (0xBA0, 'X'), + (0xBA3, 'V'), + (0xBA5, 'X'), + (0xBA8, 'V'), + (0xBAB, 'X'), + (0xBAE, 'V'), + (0xBBA, 'X'), + (0xBBE, 'V'), + (0xBC3, 'X'), + (0xBC6, 'V'), + (0xBC9, 'X'), + (0xBCA, 'V'), + (0xBCE, 'X'), + (0xBD0, 'V'), + (0xBD1, 'X'), + (0xBD7, 'V'), + (0xBD8, 'X'), + (0xBE6, 'V'), + (0xBFB, 'X'), + (0xC00, 'V'), + (0xC0D, 'X'), + (0xC0E, 'V'), + (0xC11, 'X'), + (0xC12, 'V'), + (0xC29, 'X'), + (0xC2A, 'V'), + ] + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, 'X'), + (0xC3C, 'V'), + (0xC45, 'X'), + (0xC46, 'V'), + (0xC49, 'X'), + (0xC4A, 'V'), + (0xC4E, 'X'), + (0xC55, 'V'), + (0xC57, 'X'), + (0xC58, 'V'), + (0xC5B, 'X'), + (0xC5D, 'V'), + (0xC5E, 'X'), + (0xC60, 'V'), + (0xC64, 'X'), + (0xC66, 'V'), + (0xC70, 'X'), + (0xC77, 'V'), + (0xC8D, 'X'), + (0xC8E, 'V'), + (0xC91, 'X'), + (0xC92, 'V'), + (0xCA9, 'X'), + (0xCAA, 'V'), + (0xCB4, 'X'), + (0xCB5, 'V'), + (0xCBA, 'X'), + (0xCBC, 'V'), + (0xCC5, 'X'), + (0xCC6, 'V'), + (0xCC9, 'X'), + (0xCCA, 'V'), + (0xCCE, 'X'), + (0xCD5, 'V'), + (0xCD7, 'X'), + (0xCDD, 'V'), + (0xCDF, 'X'), + (0xCE0, 'V'), + (0xCE4, 'X'), + (0xCE6, 'V'), + (0xCF0, 'X'), + (0xCF1, 'V'), + (0xCF4, 'X'), + (0xD00, 'V'), + (0xD0D, 'X'), + (0xD0E, 'V'), + (0xD11, 'X'), + (0xD12, 'V'), + (0xD45, 'X'), + (0xD46, 'V'), + (0xD49, 'X'), + (0xD4A, 'V'), + (0xD50, 'X'), + (0xD54, 'V'), + (0xD64, 'X'), + (0xD66, 'V'), + (0xD80, 'X'), + (0xD81, 'V'), + (0xD84, 'X'), + (0xD85, 'V'), + (0xD97, 'X'), + (0xD9A, 'V'), + (0xDB2, 'X'), + (0xDB3, 'V'), + (0xDBC, 'X'), + (0xDBD, 'V'), + (0xDBE, 'X'), + (0xDC0, 'V'), + (0xDC7, 'X'), + (0xDCA, 'V'), + (0xDCB, 'X'), + (0xDCF, 'V'), + (0xDD5, 'X'), + (0xDD6, 'V'), + (0xDD7, 'X'), + (0xDD8, 'V'), + (0xDE0, 'X'), + (0xDE6, 'V'), + (0xDF0, 'X'), + (0xDF2, 'V'), + (0xDF5, 'X'), + (0xE01, 'V'), + (0xE33, 'M', 'ํา'), + (0xE34, 'V'), + (0xE3B, 'X'), + (0xE3F, 'V'), + (0xE5C, 'X'), + (0xE81, 'V'), + (0xE83, 'X'), + (0xE84, 'V'), + (0xE85, 'X'), + (0xE86, 'V'), + (0xE8B, 'X'), + (0xE8C, 'V'), + (0xEA4, 'X'), + (0xEA5, 'V'), + (0xEA6, 'X'), + (0xEA7, 'V'), + (0xEB3, 'M', 'ໍາ'), + (0xEB4, 'V'), + ] + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, 'X'), + (0xEC0, 'V'), + (0xEC5, 'X'), + (0xEC6, 'V'), + (0xEC7, 'X'), + (0xEC8, 'V'), + (0xECF, 'X'), + (0xED0, 'V'), + (0xEDA, 'X'), + (0xEDC, 'M', 'ຫນ'), + (0xEDD, 'M', 'ຫມ'), + (0xEDE, 'V'), + (0xEE0, 'X'), + (0xF00, 'V'), + (0xF0C, 'M', '་'), + (0xF0D, 'V'), + (0xF43, 'M', 'གྷ'), + (0xF44, 'V'), + (0xF48, 'X'), + (0xF49, 'V'), + (0xF4D, 'M', 'ཌྷ'), + (0xF4E, 'V'), + (0xF52, 'M', 'དྷ'), + (0xF53, 'V'), + (0xF57, 'M', 'བྷ'), + (0xF58, 'V'), + (0xF5C, 'M', 'ཛྷ'), + (0xF5D, 'V'), + (0xF69, 'M', 'ཀྵ'), + (0xF6A, 'V'), + (0xF6D, 'X'), + (0xF71, 'V'), + (0xF73, 'M', 'ཱི'), + (0xF74, 'V'), + (0xF75, 'M', 'ཱུ'), + (0xF76, 'M', 'ྲྀ'), + (0xF77, 'M', 'ྲཱྀ'), + (0xF78, 'M', 'ླྀ'), + (0xF79, 'M', 'ླཱྀ'), + (0xF7A, 'V'), + (0xF81, 'M', 'ཱྀ'), + (0xF82, 'V'), + (0xF93, 'M', 'ྒྷ'), + (0xF94, 'V'), + (0xF98, 'X'), + (0xF99, 'V'), + (0xF9D, 'M', 'ྜྷ'), + (0xF9E, 'V'), + (0xFA2, 'M', 'ྡྷ'), + (0xFA3, 'V'), + (0xFA7, 'M', 'ྦྷ'), + (0xFA8, 'V'), + (0xFAC, 'M', 'ྫྷ'), + (0xFAD, 'V'), + (0xFB9, 'M', 'ྐྵ'), + (0xFBA, 'V'), + (0xFBD, 'X'), + (0xFBE, 'V'), + (0xFCD, 'X'), + (0xFCE, 'V'), + (0xFDB, 'X'), + (0x1000, 'V'), + (0x10A0, 'X'), + (0x10C7, 'M', 'ⴧ'), + (0x10C8, 'X'), + (0x10CD, 'M', 'ⴭ'), + (0x10CE, 'X'), + (0x10D0, 'V'), + (0x10FC, 'M', 'ნ'), + (0x10FD, 'V'), + (0x115F, 'X'), + (0x1161, 'V'), + (0x1249, 'X'), + (0x124A, 'V'), + (0x124E, 'X'), + (0x1250, 'V'), + (0x1257, 'X'), + (0x1258, 'V'), + (0x1259, 'X'), + (0x125A, 'V'), + (0x125E, 'X'), + (0x1260, 'V'), + (0x1289, 'X'), + (0x128A, 'V'), + (0x128E, 'X'), + (0x1290, 'V'), + (0x12B1, 'X'), + (0x12B2, 'V'), + (0x12B6, 'X'), + (0x12B8, 'V'), + (0x12BF, 'X'), + (0x12C0, 'V'), + (0x12C1, 'X'), + (0x12C2, 'V'), + (0x12C6, 'X'), + (0x12C8, 'V'), + (0x12D7, 'X'), + (0x12D8, 'V'), + (0x1311, 'X'), + (0x1312, 'V'), + ] + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, 'X'), + (0x1318, 'V'), + (0x135B, 'X'), + (0x135D, 'V'), + (0x137D, 'X'), + (0x1380, 'V'), + (0x139A, 'X'), + (0x13A0, 'V'), + (0x13F6, 'X'), + (0x13F8, 'M', 'Ᏸ'), + (0x13F9, 'M', 'Ᏹ'), + (0x13FA, 'M', 'Ᏺ'), + (0x13FB, 'M', 'Ᏻ'), + (0x13FC, 'M', 'Ᏼ'), + (0x13FD, 'M', 'Ᏽ'), + (0x13FE, 'X'), + (0x1400, 'V'), + (0x1680, 'X'), + (0x1681, 'V'), + (0x169D, 'X'), + (0x16A0, 'V'), + (0x16F9, 'X'), + (0x1700, 'V'), + (0x1716, 'X'), + (0x171F, 'V'), + (0x1737, 'X'), + (0x1740, 'V'), + (0x1754, 'X'), + (0x1760, 'V'), + (0x176D, 'X'), + (0x176E, 'V'), + (0x1771, 'X'), + (0x1772, 'V'), + (0x1774, 'X'), + (0x1780, 'V'), + (0x17B4, 'X'), + (0x17B6, 'V'), + (0x17DE, 'X'), + (0x17E0, 'V'), + (0x17EA, 'X'), + (0x17F0, 'V'), + (0x17FA, 'X'), + (0x1800, 'V'), + (0x1806, 'X'), + (0x1807, 'V'), + (0x180B, 'I'), + (0x180E, 'X'), + (0x180F, 'I'), + (0x1810, 'V'), + (0x181A, 'X'), + (0x1820, 'V'), + (0x1879, 'X'), + (0x1880, 'V'), + (0x18AB, 'X'), + (0x18B0, 'V'), + (0x18F6, 'X'), + (0x1900, 'V'), + (0x191F, 'X'), + (0x1920, 'V'), + (0x192C, 'X'), + (0x1930, 'V'), + (0x193C, 'X'), + (0x1940, 'V'), + (0x1941, 'X'), + (0x1944, 'V'), + (0x196E, 'X'), + (0x1970, 'V'), + (0x1975, 'X'), + (0x1980, 'V'), + (0x19AC, 'X'), + (0x19B0, 'V'), + (0x19CA, 'X'), + (0x19D0, 'V'), + (0x19DB, 'X'), + (0x19DE, 'V'), + (0x1A1C, 'X'), + (0x1A1E, 'V'), + (0x1A5F, 'X'), + (0x1A60, 'V'), + (0x1A7D, 'X'), + (0x1A7F, 'V'), + (0x1A8A, 'X'), + (0x1A90, 'V'), + (0x1A9A, 'X'), + (0x1AA0, 'V'), + (0x1AAE, 'X'), + (0x1AB0, 'V'), + (0x1ACF, 'X'), + (0x1B00, 'V'), + (0x1B4D, 'X'), + (0x1B50, 'V'), + (0x1B7F, 'X'), + (0x1B80, 'V'), + (0x1BF4, 'X'), + (0x1BFC, 'V'), + (0x1C38, 'X'), + (0x1C3B, 'V'), + (0x1C4A, 'X'), + (0x1C4D, 'V'), + (0x1C80, 'M', 'в'), + ] + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, 'M', 'д'), + (0x1C82, 'M', 'о'), + (0x1C83, 'M', 'с'), + (0x1C84, 'M', 'т'), + (0x1C86, 'M', 'ъ'), + (0x1C87, 'M', 'ѣ'), + (0x1C88, 'M', 'ꙋ'), + (0x1C89, 'X'), + (0x1C90, 'M', 'ა'), + (0x1C91, 'M', 'ბ'), + (0x1C92, 'M', 'გ'), + (0x1C93, 'M', 'დ'), + (0x1C94, 'M', 'ე'), + (0x1C95, 'M', 'ვ'), + (0x1C96, 'M', 'ზ'), + (0x1C97, 'M', 'თ'), + (0x1C98, 'M', 'ი'), + (0x1C99, 'M', 'კ'), + (0x1C9A, 'M', 'ლ'), + (0x1C9B, 'M', 'მ'), + (0x1C9C, 'M', 'ნ'), + (0x1C9D, 'M', 'ო'), + (0x1C9E, 'M', 'პ'), + (0x1C9F, 'M', 'ჟ'), + (0x1CA0, 'M', 'რ'), + (0x1CA1, 'M', 'ს'), + (0x1CA2, 'M', 'ტ'), + (0x1CA3, 'M', 'უ'), + (0x1CA4, 'M', 'ფ'), + (0x1CA5, 'M', 'ქ'), + (0x1CA6, 'M', 'ღ'), + (0x1CA7, 'M', 'ყ'), + (0x1CA8, 'M', 'შ'), + (0x1CA9, 'M', 'ჩ'), + (0x1CAA, 'M', 'ც'), + (0x1CAB, 'M', 'ძ'), + (0x1CAC, 'M', 'წ'), + (0x1CAD, 'M', 'ჭ'), + (0x1CAE, 'M', 'ხ'), + (0x1CAF, 'M', 'ჯ'), + (0x1CB0, 'M', 'ჰ'), + (0x1CB1, 'M', 'ჱ'), + (0x1CB2, 'M', 'ჲ'), + (0x1CB3, 'M', 'ჳ'), + (0x1CB4, 'M', 'ჴ'), + (0x1CB5, 'M', 'ჵ'), + (0x1CB6, 'M', 'ჶ'), + (0x1CB7, 'M', 'ჷ'), + (0x1CB8, 'M', 'ჸ'), + (0x1CB9, 'M', 'ჹ'), + (0x1CBA, 'M', 'ჺ'), + (0x1CBB, 'X'), + (0x1CBD, 'M', 'ჽ'), + (0x1CBE, 'M', 'ჾ'), + (0x1CBF, 'M', 'ჿ'), + (0x1CC0, 'V'), + (0x1CC8, 'X'), + (0x1CD0, 'V'), + (0x1CFB, 'X'), + (0x1D00, 'V'), + (0x1D2C, 'M', 'a'), + (0x1D2D, 'M', 'æ'), + (0x1D2E, 'M', 'b'), + (0x1D2F, 'V'), + (0x1D30, 'M', 'd'), + (0x1D31, 'M', 'e'), + (0x1D32, 'M', 'ǝ'), + (0x1D33, 'M', 'g'), + (0x1D34, 'M', 'h'), + (0x1D35, 'M', 'i'), + (0x1D36, 'M', 'j'), + (0x1D37, 'M', 'k'), + (0x1D38, 'M', 'l'), + (0x1D39, 'M', 'm'), + (0x1D3A, 'M', 'n'), + (0x1D3B, 'V'), + (0x1D3C, 'M', 'o'), + (0x1D3D, 'M', 'ȣ'), + (0x1D3E, 'M', 'p'), + (0x1D3F, 'M', 'r'), + (0x1D40, 'M', 't'), + (0x1D41, 'M', 'u'), + (0x1D42, 'M', 'w'), + (0x1D43, 'M', 'a'), + (0x1D44, 'M', 'ɐ'), + (0x1D45, 'M', 'ɑ'), + (0x1D46, 'M', 'ᴂ'), + (0x1D47, 'M', 'b'), + (0x1D48, 'M', 'd'), + (0x1D49, 'M', 'e'), + (0x1D4A, 'M', 'ə'), + (0x1D4B, 'M', 'ɛ'), + (0x1D4C, 'M', 'ɜ'), + (0x1D4D, 'M', 'g'), + (0x1D4E, 'V'), + (0x1D4F, 'M', 'k'), + (0x1D50, 'M', 'm'), + (0x1D51, 'M', 'ŋ'), + (0x1D52, 'M', 'o'), + (0x1D53, 'M', 'ɔ'), + ] + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, 'M', 'ᴖ'), + (0x1D55, 'M', 'ᴗ'), + (0x1D56, 'M', 'p'), + (0x1D57, 'M', 't'), + (0x1D58, 'M', 'u'), + (0x1D59, 'M', 'ᴝ'), + (0x1D5A, 'M', 'ɯ'), + (0x1D5B, 'M', 'v'), + (0x1D5C, 'M', 'ᴥ'), + (0x1D5D, 'M', 'β'), + (0x1D5E, 'M', 'γ'), + (0x1D5F, 'M', 'δ'), + (0x1D60, 'M', 'φ'), + (0x1D61, 'M', 'χ'), + (0x1D62, 'M', 'i'), + (0x1D63, 'M', 'r'), + (0x1D64, 'M', 'u'), + (0x1D65, 'M', 'v'), + (0x1D66, 'M', 'β'), + (0x1D67, 'M', 'γ'), + (0x1D68, 'M', 'ρ'), + (0x1D69, 'M', 'φ'), + (0x1D6A, 'M', 'χ'), + (0x1D6B, 'V'), + (0x1D78, 'M', 'н'), + (0x1D79, 'V'), + (0x1D9B, 'M', 'ɒ'), + (0x1D9C, 'M', 'c'), + (0x1D9D, 'M', 'ɕ'), + (0x1D9E, 'M', 'ð'), + (0x1D9F, 'M', 'ɜ'), + (0x1DA0, 'M', 'f'), + (0x1DA1, 'M', 'ɟ'), + (0x1DA2, 'M', 'ɡ'), + (0x1DA3, 'M', 'ɥ'), + (0x1DA4, 'M', 'ɨ'), + (0x1DA5, 'M', 'ɩ'), + (0x1DA6, 'M', 'ɪ'), + (0x1DA7, 'M', 'ᵻ'), + (0x1DA8, 'M', 'ʝ'), + (0x1DA9, 'M', 'ɭ'), + (0x1DAA, 'M', 'ᶅ'), + (0x1DAB, 'M', 'ʟ'), + (0x1DAC, 'M', 'ɱ'), + (0x1DAD, 'M', 'ɰ'), + (0x1DAE, 'M', 'ɲ'), + (0x1DAF, 'M', 'ɳ'), + (0x1DB0, 'M', 'ɴ'), + (0x1DB1, 'M', 'ɵ'), + (0x1DB2, 'M', 'ɸ'), + (0x1DB3, 'M', 'ʂ'), + (0x1DB4, 'M', 'ʃ'), + (0x1DB5, 'M', 'ƫ'), + (0x1DB6, 'M', 'ʉ'), + (0x1DB7, 'M', 'ʊ'), + (0x1DB8, 'M', 'ᴜ'), + (0x1DB9, 'M', 'ʋ'), + (0x1DBA, 'M', 'ʌ'), + (0x1DBB, 'M', 'z'), + (0x1DBC, 'M', 'ʐ'), + (0x1DBD, 'M', 'ʑ'), + (0x1DBE, 'M', 'ʒ'), + (0x1DBF, 'M', 'θ'), + (0x1DC0, 'V'), + (0x1E00, 'M', 'ḁ'), + (0x1E01, 'V'), + (0x1E02, 'M', 'ḃ'), + (0x1E03, 'V'), + (0x1E04, 'M', 'ḅ'), + (0x1E05, 'V'), + (0x1E06, 'M', 'ḇ'), + (0x1E07, 'V'), + (0x1E08, 'M', 'ḉ'), + (0x1E09, 'V'), + (0x1E0A, 'M', 'ḋ'), + (0x1E0B, 'V'), + (0x1E0C, 'M', 'ḍ'), + (0x1E0D, 'V'), + (0x1E0E, 'M', 'ḏ'), + (0x1E0F, 'V'), + (0x1E10, 'M', 'ḑ'), + (0x1E11, 'V'), + (0x1E12, 'M', 'ḓ'), + (0x1E13, 'V'), + (0x1E14, 'M', 'ḕ'), + (0x1E15, 'V'), + (0x1E16, 'M', 'ḗ'), + (0x1E17, 'V'), + (0x1E18, 'M', 'ḙ'), + (0x1E19, 'V'), + (0x1E1A, 'M', 'ḛ'), + (0x1E1B, 'V'), + (0x1E1C, 'M', 'ḝ'), + (0x1E1D, 'V'), + (0x1E1E, 'M', 'ḟ'), + (0x1E1F, 'V'), + (0x1E20, 'M', 'ḡ'), + (0x1E21, 'V'), + (0x1E22, 'M', 'ḣ'), + (0x1E23, 'V'), + ] + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, 'M', 'ḥ'), + (0x1E25, 'V'), + (0x1E26, 'M', 'ḧ'), + (0x1E27, 'V'), + (0x1E28, 'M', 'ḩ'), + (0x1E29, 'V'), + (0x1E2A, 'M', 'ḫ'), + (0x1E2B, 'V'), + (0x1E2C, 'M', 'ḭ'), + (0x1E2D, 'V'), + (0x1E2E, 'M', 'ḯ'), + (0x1E2F, 'V'), + (0x1E30, 'M', 'ḱ'), + (0x1E31, 'V'), + (0x1E32, 'M', 'ḳ'), + (0x1E33, 'V'), + (0x1E34, 'M', 'ḵ'), + (0x1E35, 'V'), + (0x1E36, 'M', 'ḷ'), + (0x1E37, 'V'), + (0x1E38, 'M', 'ḹ'), + (0x1E39, 'V'), + (0x1E3A, 'M', 'ḻ'), + (0x1E3B, 'V'), + (0x1E3C, 'M', 'ḽ'), + (0x1E3D, 'V'), + (0x1E3E, 'M', 'ḿ'), + (0x1E3F, 'V'), + (0x1E40, 'M', 'ṁ'), + (0x1E41, 'V'), + (0x1E42, 'M', 'ṃ'), + (0x1E43, 'V'), + (0x1E44, 'M', 'ṅ'), + (0x1E45, 'V'), + (0x1E46, 'M', 'ṇ'), + (0x1E47, 'V'), + (0x1E48, 'M', 'ṉ'), + (0x1E49, 'V'), + (0x1E4A, 'M', 'ṋ'), + (0x1E4B, 'V'), + (0x1E4C, 'M', 'ṍ'), + (0x1E4D, 'V'), + (0x1E4E, 'M', 'ṏ'), + (0x1E4F, 'V'), + (0x1E50, 'M', 'ṑ'), + (0x1E51, 'V'), + (0x1E52, 'M', 'ṓ'), + (0x1E53, 'V'), + (0x1E54, 'M', 'ṕ'), + (0x1E55, 'V'), + (0x1E56, 'M', 'ṗ'), + (0x1E57, 'V'), + (0x1E58, 'M', 'ṙ'), + (0x1E59, 'V'), + (0x1E5A, 'M', 'ṛ'), + (0x1E5B, 'V'), + (0x1E5C, 'M', 'ṝ'), + (0x1E5D, 'V'), + (0x1E5E, 'M', 'ṟ'), + (0x1E5F, 'V'), + (0x1E60, 'M', 'ṡ'), + (0x1E61, 'V'), + (0x1E62, 'M', 'ṣ'), + (0x1E63, 'V'), + (0x1E64, 'M', 'ṥ'), + (0x1E65, 'V'), + (0x1E66, 'M', 'ṧ'), + (0x1E67, 'V'), + (0x1E68, 'M', 'ṩ'), + (0x1E69, 'V'), + (0x1E6A, 'M', 'ṫ'), + (0x1E6B, 'V'), + (0x1E6C, 'M', 'ṭ'), + (0x1E6D, 'V'), + (0x1E6E, 'M', 'ṯ'), + (0x1E6F, 'V'), + (0x1E70, 'M', 'ṱ'), + (0x1E71, 'V'), + (0x1E72, 'M', 'ṳ'), + (0x1E73, 'V'), + (0x1E74, 'M', 'ṵ'), + (0x1E75, 'V'), + (0x1E76, 'M', 'ṷ'), + (0x1E77, 'V'), + (0x1E78, 'M', 'ṹ'), + (0x1E79, 'V'), + (0x1E7A, 'M', 'ṻ'), + (0x1E7B, 'V'), + (0x1E7C, 'M', 'ṽ'), + (0x1E7D, 'V'), + (0x1E7E, 'M', 'ṿ'), + (0x1E7F, 'V'), + (0x1E80, 'M', 'ẁ'), + (0x1E81, 'V'), + (0x1E82, 'M', 'ẃ'), + (0x1E83, 'V'), + (0x1E84, 'M', 'ẅ'), + (0x1E85, 'V'), + (0x1E86, 'M', 'ẇ'), + (0x1E87, 'V'), + ] + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, 'M', 'ẉ'), + (0x1E89, 'V'), + (0x1E8A, 'M', 'ẋ'), + (0x1E8B, 'V'), + (0x1E8C, 'M', 'ẍ'), + (0x1E8D, 'V'), + (0x1E8E, 'M', 'ẏ'), + (0x1E8F, 'V'), + (0x1E90, 'M', 'ẑ'), + (0x1E91, 'V'), + (0x1E92, 'M', 'ẓ'), + (0x1E93, 'V'), + (0x1E94, 'M', 'ẕ'), + (0x1E95, 'V'), + (0x1E9A, 'M', 'aʾ'), + (0x1E9B, 'M', 'ṡ'), + (0x1E9C, 'V'), + (0x1E9E, 'M', 'ß'), + (0x1E9F, 'V'), + (0x1EA0, 'M', 'ạ'), + (0x1EA1, 'V'), + (0x1EA2, 'M', 'ả'), + (0x1EA3, 'V'), + (0x1EA4, 'M', 'ấ'), + (0x1EA5, 'V'), + (0x1EA6, 'M', 'ầ'), + (0x1EA7, 'V'), + (0x1EA8, 'M', 'ẩ'), + (0x1EA9, 'V'), + (0x1EAA, 'M', 'ẫ'), + (0x1EAB, 'V'), + (0x1EAC, 'M', 'ậ'), + (0x1EAD, 'V'), + (0x1EAE, 'M', 'ắ'), + (0x1EAF, 'V'), + (0x1EB0, 'M', 'ằ'), + (0x1EB1, 'V'), + (0x1EB2, 'M', 'ẳ'), + (0x1EB3, 'V'), + (0x1EB4, 'M', 'ẵ'), + (0x1EB5, 'V'), + (0x1EB6, 'M', 'ặ'), + (0x1EB7, 'V'), + (0x1EB8, 'M', 'ẹ'), + (0x1EB9, 'V'), + (0x1EBA, 'M', 'ẻ'), + (0x1EBB, 'V'), + (0x1EBC, 'M', 'ẽ'), + (0x1EBD, 'V'), + (0x1EBE, 'M', 'ế'), + (0x1EBF, 'V'), + (0x1EC0, 'M', 'ề'), + (0x1EC1, 'V'), + (0x1EC2, 'M', 'ể'), + (0x1EC3, 'V'), + (0x1EC4, 'M', 'ễ'), + (0x1EC5, 'V'), + (0x1EC6, 'M', 'ệ'), + (0x1EC7, 'V'), + (0x1EC8, 'M', 'ỉ'), + (0x1EC9, 'V'), + (0x1ECA, 'M', 'ị'), + (0x1ECB, 'V'), + (0x1ECC, 'M', 'ọ'), + (0x1ECD, 'V'), + (0x1ECE, 'M', 'ỏ'), + (0x1ECF, 'V'), + (0x1ED0, 'M', 'ố'), + (0x1ED1, 'V'), + (0x1ED2, 'M', 'ồ'), + (0x1ED3, 'V'), + (0x1ED4, 'M', 'ổ'), + (0x1ED5, 'V'), + (0x1ED6, 'M', 'ỗ'), + (0x1ED7, 'V'), + (0x1ED8, 'M', 'ộ'), + (0x1ED9, 'V'), + (0x1EDA, 'M', 'ớ'), + (0x1EDB, 'V'), + (0x1EDC, 'M', 'ờ'), + (0x1EDD, 'V'), + (0x1EDE, 'M', 'ở'), + (0x1EDF, 'V'), + (0x1EE0, 'M', 'ỡ'), + (0x1EE1, 'V'), + (0x1EE2, 'M', 'ợ'), + (0x1EE3, 'V'), + (0x1EE4, 'M', 'ụ'), + (0x1EE5, 'V'), + (0x1EE6, 'M', 'ủ'), + (0x1EE7, 'V'), + (0x1EE8, 'M', 'ứ'), + (0x1EE9, 'V'), + (0x1EEA, 'M', 'ừ'), + (0x1EEB, 'V'), + (0x1EEC, 'M', 'ử'), + (0x1EED, 'V'), + (0x1EEE, 'M', 'ữ'), + (0x1EEF, 'V'), + (0x1EF0, 'M', 'ự'), + ] + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, 'V'), + (0x1EF2, 'M', 'ỳ'), + (0x1EF3, 'V'), + (0x1EF4, 'M', 'ỵ'), + (0x1EF5, 'V'), + (0x1EF6, 'M', 'ỷ'), + (0x1EF7, 'V'), + (0x1EF8, 'M', 'ỹ'), + (0x1EF9, 'V'), + (0x1EFA, 'M', 'ỻ'), + (0x1EFB, 'V'), + (0x1EFC, 'M', 'ỽ'), + (0x1EFD, 'V'), + (0x1EFE, 'M', 'ỿ'), + (0x1EFF, 'V'), + (0x1F08, 'M', 'ἀ'), + (0x1F09, 'M', 'ἁ'), + (0x1F0A, 'M', 'ἂ'), + (0x1F0B, 'M', 'ἃ'), + (0x1F0C, 'M', 'ἄ'), + (0x1F0D, 'M', 'ἅ'), + (0x1F0E, 'M', 'ἆ'), + (0x1F0F, 'M', 'ἇ'), + (0x1F10, 'V'), + (0x1F16, 'X'), + (0x1F18, 'M', 'ἐ'), + (0x1F19, 'M', 'ἑ'), + (0x1F1A, 'M', 'ἒ'), + (0x1F1B, 'M', 'ἓ'), + (0x1F1C, 'M', 'ἔ'), + (0x1F1D, 'M', 'ἕ'), + (0x1F1E, 'X'), + (0x1F20, 'V'), + (0x1F28, 'M', 'ἠ'), + (0x1F29, 'M', 'ἡ'), + (0x1F2A, 'M', 'ἢ'), + (0x1F2B, 'M', 'ἣ'), + (0x1F2C, 'M', 'ἤ'), + (0x1F2D, 'M', 'ἥ'), + (0x1F2E, 'M', 'ἦ'), + (0x1F2F, 'M', 'ἧ'), + (0x1F30, 'V'), + (0x1F38, 'M', 'ἰ'), + (0x1F39, 'M', 'ἱ'), + (0x1F3A, 'M', 'ἲ'), + (0x1F3B, 'M', 'ἳ'), + (0x1F3C, 'M', 'ἴ'), + (0x1F3D, 'M', 'ἵ'), + (0x1F3E, 'M', 'ἶ'), + (0x1F3F, 'M', 'ἷ'), + (0x1F40, 'V'), + (0x1F46, 'X'), + (0x1F48, 'M', 'ὀ'), + (0x1F49, 'M', 'ὁ'), + (0x1F4A, 'M', 'ὂ'), + (0x1F4B, 'M', 'ὃ'), + (0x1F4C, 'M', 'ὄ'), + (0x1F4D, 'M', 'ὅ'), + (0x1F4E, 'X'), + (0x1F50, 'V'), + (0x1F58, 'X'), + (0x1F59, 'M', 'ὑ'), + (0x1F5A, 'X'), + (0x1F5B, 'M', 'ὓ'), + (0x1F5C, 'X'), + (0x1F5D, 'M', 'ὕ'), + (0x1F5E, 'X'), + (0x1F5F, 'M', 'ὗ'), + (0x1F60, 'V'), + (0x1F68, 'M', 'ὠ'), + (0x1F69, 'M', 'ὡ'), + (0x1F6A, 'M', 'ὢ'), + (0x1F6B, 'M', 'ὣ'), + (0x1F6C, 'M', 'ὤ'), + (0x1F6D, 'M', 'ὥ'), + (0x1F6E, 'M', 'ὦ'), + (0x1F6F, 'M', 'ὧ'), + (0x1F70, 'V'), + (0x1F71, 'M', 'ά'), + (0x1F72, 'V'), + (0x1F73, 'M', 'έ'), + (0x1F74, 'V'), + (0x1F75, 'M', 'ή'), + (0x1F76, 'V'), + (0x1F77, 'M', 'ί'), + (0x1F78, 'V'), + (0x1F79, 'M', 'ό'), + (0x1F7A, 'V'), + (0x1F7B, 'M', 'ύ'), + (0x1F7C, 'V'), + (0x1F7D, 'M', 'ώ'), + (0x1F7E, 'X'), + (0x1F80, 'M', 'ἀι'), + (0x1F81, 'M', 'ἁι'), + (0x1F82, 'M', 'ἂι'), + (0x1F83, 'M', 'ἃι'), + (0x1F84, 'M', 'ἄι'), + (0x1F85, 'M', 'ἅι'), + (0x1F86, 'M', 'ἆι'), + (0x1F87, 'M', 'ἇι'), + ] + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, 'M', 'ἀι'), + (0x1F89, 'M', 'ἁι'), + (0x1F8A, 'M', 'ἂι'), + (0x1F8B, 'M', 'ἃι'), + (0x1F8C, 'M', 'ἄι'), + (0x1F8D, 'M', 'ἅι'), + (0x1F8E, 'M', 'ἆι'), + (0x1F8F, 'M', 'ἇι'), + (0x1F90, 'M', 'ἠι'), + (0x1F91, 'M', 'ἡι'), + (0x1F92, 'M', 'ἢι'), + (0x1F93, 'M', 'ἣι'), + (0x1F94, 'M', 'ἤι'), + (0x1F95, 'M', 'ἥι'), + (0x1F96, 'M', 'ἦι'), + (0x1F97, 'M', 'ἧι'), + (0x1F98, 'M', 'ἠι'), + (0x1F99, 'M', 'ἡι'), + (0x1F9A, 'M', 'ἢι'), + (0x1F9B, 'M', 'ἣι'), + (0x1F9C, 'M', 'ἤι'), + (0x1F9D, 'M', 'ἥι'), + (0x1F9E, 'M', 'ἦι'), + (0x1F9F, 'M', 'ἧι'), + (0x1FA0, 'M', 'ὠι'), + (0x1FA1, 'M', 'ὡι'), + (0x1FA2, 'M', 'ὢι'), + (0x1FA3, 'M', 'ὣι'), + (0x1FA4, 'M', 'ὤι'), + (0x1FA5, 'M', 'ὥι'), + (0x1FA6, 'M', 'ὦι'), + (0x1FA7, 'M', 'ὧι'), + (0x1FA8, 'M', 'ὠι'), + (0x1FA9, 'M', 'ὡι'), + (0x1FAA, 'M', 'ὢι'), + (0x1FAB, 'M', 'ὣι'), + (0x1FAC, 'M', 'ὤι'), + (0x1FAD, 'M', 'ὥι'), + (0x1FAE, 'M', 'ὦι'), + (0x1FAF, 'M', 'ὧι'), + (0x1FB0, 'V'), + (0x1FB2, 'M', 'ὰι'), + (0x1FB3, 'M', 'αι'), + (0x1FB4, 'M', 'άι'), + (0x1FB5, 'X'), + (0x1FB6, 'V'), + (0x1FB7, 'M', 'ᾶι'), + (0x1FB8, 'M', 'ᾰ'), + (0x1FB9, 'M', 'ᾱ'), + (0x1FBA, 'M', 'ὰ'), + (0x1FBB, 'M', 'ά'), + (0x1FBC, 'M', 'αι'), + (0x1FBD, '3', ' ̓'), + (0x1FBE, 'M', 'ι'), + (0x1FBF, '3', ' ̓'), + (0x1FC0, '3', ' ͂'), + (0x1FC1, '3', ' ̈͂'), + (0x1FC2, 'M', 'ὴι'), + (0x1FC3, 'M', 'ηι'), + (0x1FC4, 'M', 'ήι'), + (0x1FC5, 'X'), + (0x1FC6, 'V'), + (0x1FC7, 'M', 'ῆι'), + (0x1FC8, 'M', 'ὲ'), + (0x1FC9, 'M', 'έ'), + (0x1FCA, 'M', 'ὴ'), + (0x1FCB, 'M', 'ή'), + (0x1FCC, 'M', 'ηι'), + (0x1FCD, '3', ' ̓̀'), + (0x1FCE, '3', ' ̓́'), + (0x1FCF, '3', ' ̓͂'), + (0x1FD0, 'V'), + (0x1FD3, 'M', 'ΐ'), + (0x1FD4, 'X'), + (0x1FD6, 'V'), + (0x1FD8, 'M', 'ῐ'), + (0x1FD9, 'M', 'ῑ'), + (0x1FDA, 'M', 'ὶ'), + (0x1FDB, 'M', 'ί'), + (0x1FDC, 'X'), + (0x1FDD, '3', ' ̔̀'), + (0x1FDE, '3', ' ̔́'), + (0x1FDF, '3', ' ̔͂'), + (0x1FE0, 'V'), + (0x1FE3, 'M', 'ΰ'), + (0x1FE4, 'V'), + (0x1FE8, 'M', 'ῠ'), + (0x1FE9, 'M', 'ῡ'), + (0x1FEA, 'M', 'ὺ'), + (0x1FEB, 'M', 'ύ'), + (0x1FEC, 'M', 'ῥ'), + (0x1FED, '3', ' ̈̀'), + (0x1FEE, '3', ' ̈́'), + (0x1FEF, '3', '`'), + (0x1FF0, 'X'), + (0x1FF2, 'M', 'ὼι'), + (0x1FF3, 'M', 'ωι'), + (0x1FF4, 'M', 'ώι'), + (0x1FF5, 'X'), + (0x1FF6, 'V'), + ] + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, 'M', 'ῶι'), + (0x1FF8, 'M', 'ὸ'), + (0x1FF9, 'M', 'ό'), + (0x1FFA, 'M', 'ὼ'), + (0x1FFB, 'M', 'ώ'), + (0x1FFC, 'M', 'ωι'), + (0x1FFD, '3', ' ́'), + (0x1FFE, '3', ' ̔'), + (0x1FFF, 'X'), + (0x2000, '3', ' '), + (0x200B, 'I'), + (0x200C, 'D', ''), + (0x200E, 'X'), + (0x2010, 'V'), + (0x2011, 'M', '‐'), + (0x2012, 'V'), + (0x2017, '3', ' ̳'), + (0x2018, 'V'), + (0x2024, 'X'), + (0x2027, 'V'), + (0x2028, 'X'), + (0x202F, '3', ' '), + (0x2030, 'V'), + (0x2033, 'M', '′′'), + (0x2034, 'M', '′′′'), + (0x2035, 'V'), + (0x2036, 'M', '‵‵'), + (0x2037, 'M', '‵‵‵'), + (0x2038, 'V'), + (0x203C, '3', '!!'), + (0x203D, 'V'), + (0x203E, '3', ' ̅'), + (0x203F, 'V'), + (0x2047, '3', '??'), + (0x2048, '3', '?!'), + (0x2049, '3', '!?'), + (0x204A, 'V'), + (0x2057, 'M', '′′′′'), + (0x2058, 'V'), + (0x205F, '3', ' '), + (0x2060, 'I'), + (0x2061, 'X'), + (0x2064, 'I'), + (0x2065, 'X'), + (0x2070, 'M', '0'), + (0x2071, 'M', 'i'), + (0x2072, 'X'), + (0x2074, 'M', '4'), + (0x2075, 'M', '5'), + (0x2076, 'M', '6'), + (0x2077, 'M', '7'), + (0x2078, 'M', '8'), + (0x2079, 'M', '9'), + (0x207A, '3', '+'), + (0x207B, 'M', '−'), + (0x207C, '3', '='), + (0x207D, '3', '('), + (0x207E, '3', ')'), + (0x207F, 'M', 'n'), + (0x2080, 'M', '0'), + (0x2081, 'M', '1'), + (0x2082, 'M', '2'), + (0x2083, 'M', '3'), + (0x2084, 'M', '4'), + (0x2085, 'M', '5'), + (0x2086, 'M', '6'), + (0x2087, 'M', '7'), + (0x2088, 'M', '8'), + (0x2089, 'M', '9'), + (0x208A, '3', '+'), + (0x208B, 'M', '−'), + (0x208C, '3', '='), + (0x208D, '3', '('), + (0x208E, '3', ')'), + (0x208F, 'X'), + (0x2090, 'M', 'a'), + (0x2091, 'M', 'e'), + (0x2092, 'M', 'o'), + (0x2093, 'M', 'x'), + (0x2094, 'M', 'ə'), + (0x2095, 'M', 'h'), + (0x2096, 'M', 'k'), + (0x2097, 'M', 'l'), + (0x2098, 'M', 'm'), + (0x2099, 'M', 'n'), + (0x209A, 'M', 'p'), + (0x209B, 'M', 's'), + (0x209C, 'M', 't'), + (0x209D, 'X'), + (0x20A0, 'V'), + (0x20A8, 'M', 'rs'), + (0x20A9, 'V'), + (0x20C1, 'X'), + (0x20D0, 'V'), + (0x20F1, 'X'), + (0x2100, '3', 'a/c'), + (0x2101, '3', 'a/s'), + (0x2102, 'M', 'c'), + (0x2103, 'M', '°c'), + (0x2104, 'V'), + ] + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, '3', 'c/o'), + (0x2106, '3', 'c/u'), + (0x2107, 'M', 'ɛ'), + (0x2108, 'V'), + (0x2109, 'M', '°f'), + (0x210A, 'M', 'g'), + (0x210B, 'M', 'h'), + (0x210F, 'M', 'ħ'), + (0x2110, 'M', 'i'), + (0x2112, 'M', 'l'), + (0x2114, 'V'), + (0x2115, 'M', 'n'), + (0x2116, 'M', 'no'), + (0x2117, 'V'), + (0x2119, 'M', 'p'), + (0x211A, 'M', 'q'), + (0x211B, 'M', 'r'), + (0x211E, 'V'), + (0x2120, 'M', 'sm'), + (0x2121, 'M', 'tel'), + (0x2122, 'M', 'tm'), + (0x2123, 'V'), + (0x2124, 'M', 'z'), + (0x2125, 'V'), + (0x2126, 'M', 'ω'), + (0x2127, 'V'), + (0x2128, 'M', 'z'), + (0x2129, 'V'), + (0x212A, 'M', 'k'), + (0x212B, 'M', 'å'), + (0x212C, 'M', 'b'), + (0x212D, 'M', 'c'), + (0x212E, 'V'), + (0x212F, 'M', 'e'), + (0x2131, 'M', 'f'), + (0x2132, 'X'), + (0x2133, 'M', 'm'), + (0x2134, 'M', 'o'), + (0x2135, 'M', 'א'), + (0x2136, 'M', 'ב'), + (0x2137, 'M', 'ג'), + (0x2138, 'M', 'ד'), + (0x2139, 'M', 'i'), + (0x213A, 'V'), + (0x213B, 'M', 'fax'), + (0x213C, 'M', 'π'), + (0x213D, 'M', 'γ'), + (0x213F, 'M', 'π'), + (0x2140, 'M', '∑'), + (0x2141, 'V'), + (0x2145, 'M', 'd'), + (0x2147, 'M', 'e'), + (0x2148, 'M', 'i'), + (0x2149, 'M', 'j'), + (0x214A, 'V'), + (0x2150, 'M', '1⁄7'), + (0x2151, 'M', '1⁄9'), + (0x2152, 'M', '1⁄10'), + (0x2153, 'M', '1⁄3'), + (0x2154, 'M', '2⁄3'), + (0x2155, 'M', '1⁄5'), + (0x2156, 'M', '2⁄5'), + (0x2157, 'M', '3⁄5'), + (0x2158, 'M', '4⁄5'), + (0x2159, 'M', '1⁄6'), + (0x215A, 'M', '5⁄6'), + (0x215B, 'M', '1⁄8'), + (0x215C, 'M', '3⁄8'), + (0x215D, 'M', '5⁄8'), + (0x215E, 'M', '7⁄8'), + (0x215F, 'M', '1⁄'), + (0x2160, 'M', 'i'), + (0x2161, 'M', 'ii'), + (0x2162, 'M', 'iii'), + (0x2163, 'M', 'iv'), + (0x2164, 'M', 'v'), + (0x2165, 'M', 'vi'), + (0x2166, 'M', 'vii'), + (0x2167, 'M', 'viii'), + (0x2168, 'M', 'ix'), + (0x2169, 'M', 'x'), + (0x216A, 'M', 'xi'), + (0x216B, 'M', 'xii'), + (0x216C, 'M', 'l'), + (0x216D, 'M', 'c'), + (0x216E, 'M', 'd'), + (0x216F, 'M', 'm'), + (0x2170, 'M', 'i'), + (0x2171, 'M', 'ii'), + (0x2172, 'M', 'iii'), + (0x2173, 'M', 'iv'), + (0x2174, 'M', 'v'), + (0x2175, 'M', 'vi'), + (0x2176, 'M', 'vii'), + (0x2177, 'M', 'viii'), + (0x2178, 'M', 'ix'), + (0x2179, 'M', 'x'), + (0x217A, 'M', 'xi'), + (0x217B, 'M', 'xii'), + (0x217C, 'M', 'l'), + ] + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, 'M', 'c'), + (0x217E, 'M', 'd'), + (0x217F, 'M', 'm'), + (0x2180, 'V'), + (0x2183, 'X'), + (0x2184, 'V'), + (0x2189, 'M', '0⁄3'), + (0x218A, 'V'), + (0x218C, 'X'), + (0x2190, 'V'), + (0x222C, 'M', '∫∫'), + (0x222D, 'M', '∫∫∫'), + (0x222E, 'V'), + (0x222F, 'M', '∮∮'), + (0x2230, 'M', '∮∮∮'), + (0x2231, 'V'), + (0x2329, 'M', '〈'), + (0x232A, 'M', '〉'), + (0x232B, 'V'), + (0x2427, 'X'), + (0x2440, 'V'), + (0x244B, 'X'), + (0x2460, 'M', '1'), + (0x2461, 'M', '2'), + (0x2462, 'M', '3'), + (0x2463, 'M', '4'), + (0x2464, 'M', '5'), + (0x2465, 'M', '6'), + (0x2466, 'M', '7'), + (0x2467, 'M', '8'), + (0x2468, 'M', '9'), + (0x2469, 'M', '10'), + (0x246A, 'M', '11'), + (0x246B, 'M', '12'), + (0x246C, 'M', '13'), + (0x246D, 'M', '14'), + (0x246E, 'M', '15'), + (0x246F, 'M', '16'), + (0x2470, 'M', '17'), + (0x2471, 'M', '18'), + (0x2472, 'M', '19'), + (0x2473, 'M', '20'), + (0x2474, '3', '(1)'), + (0x2475, '3', '(2)'), + (0x2476, '3', '(3)'), + (0x2477, '3', '(4)'), + (0x2478, '3', '(5)'), + (0x2479, '3', '(6)'), + (0x247A, '3', '(7)'), + (0x247B, '3', '(8)'), + (0x247C, '3', '(9)'), + (0x247D, '3', '(10)'), + (0x247E, '3', '(11)'), + (0x247F, '3', '(12)'), + (0x2480, '3', '(13)'), + (0x2481, '3', '(14)'), + (0x2482, '3', '(15)'), + (0x2483, '3', '(16)'), + (0x2484, '3', '(17)'), + (0x2485, '3', '(18)'), + (0x2486, '3', '(19)'), + (0x2487, '3', '(20)'), + (0x2488, 'X'), + (0x249C, '3', '(a)'), + (0x249D, '3', '(b)'), + (0x249E, '3', '(c)'), + (0x249F, '3', '(d)'), + (0x24A0, '3', '(e)'), + (0x24A1, '3', '(f)'), + (0x24A2, '3', '(g)'), + (0x24A3, '3', '(h)'), + (0x24A4, '3', '(i)'), + (0x24A5, '3', '(j)'), + (0x24A6, '3', '(k)'), + (0x24A7, '3', '(l)'), + (0x24A8, '3', '(m)'), + (0x24A9, '3', '(n)'), + (0x24AA, '3', '(o)'), + (0x24AB, '3', '(p)'), + (0x24AC, '3', '(q)'), + (0x24AD, '3', '(r)'), + (0x24AE, '3', '(s)'), + (0x24AF, '3', '(t)'), + (0x24B0, '3', '(u)'), + (0x24B1, '3', '(v)'), + (0x24B2, '3', '(w)'), + (0x24B3, '3', '(x)'), + (0x24B4, '3', '(y)'), + (0x24B5, '3', '(z)'), + (0x24B6, 'M', 'a'), + (0x24B7, 'M', 'b'), + (0x24B8, 'M', 'c'), + (0x24B9, 'M', 'd'), + (0x24BA, 'M', 'e'), + (0x24BB, 'M', 'f'), + (0x24BC, 'M', 'g'), + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24C1, 'M', 'l'), + (0x24C2, 'M', 'm'), + (0x24C3, 'M', 'n'), + (0x24C4, 'M', 'o'), + (0x24C5, 'M', 'p'), + (0x24C6, 'M', 'q'), + (0x24C7, 'M', 'r'), + (0x24C8, 'M', 's'), + (0x24C9, 'M', 't'), + (0x24CA, 'M', 'u'), + (0x24CB, 'M', 'v'), + (0x24CC, 'M', 'w'), + (0x24CD, 'M', 'x'), + (0x24CE, 'M', 'y'), + (0x24CF, 'M', 'z'), + (0x24D0, 'M', 'a'), + (0x24D1, 'M', 'b'), + (0x24D2, 'M', 'c'), + (0x24D3, 'M', 'd'), + (0x24D4, 'M', 'e'), + (0x24D5, 'M', 'f'), + (0x24D6, 'M', 'g'), + (0x24D7, 'M', 'h'), + (0x24D8, 'M', 'i'), + (0x24D9, 'M', 'j'), + (0x24DA, 'M', 'k'), + (0x24DB, 'M', 'l'), + (0x24DC, 'M', 'm'), + (0x24DD, 'M', 'n'), + (0x24DE, 'M', 'o'), + (0x24DF, 'M', 'p'), + (0x24E0, 'M', 'q'), + (0x24E1, 'M', 'r'), + (0x24E2, 'M', 's'), + (0x24E3, 'M', 't'), + (0x24E4, 'M', 'u'), + (0x24E5, 'M', 'v'), + (0x24E6, 'M', 'w'), + (0x24E7, 'M', 'x'), + (0x24E8, 'M', 'y'), + (0x24E9, 'M', 'z'), + (0x24EA, 'M', '0'), + (0x24EB, 'V'), + (0x2A0C, 'M', '∫∫∫∫'), + (0x2A0D, 'V'), + (0x2A74, '3', '::='), + (0x2A75, '3', '=='), + (0x2A76, '3', '==='), + (0x2A77, 'V'), + (0x2ADC, 'M', '⫝̸'), + (0x2ADD, 'V'), + (0x2B74, 'X'), + (0x2B76, 'V'), + (0x2B96, 'X'), + (0x2B97, 'V'), + (0x2C00, 'M', 'ⰰ'), + (0x2C01, 'M', 'ⰱ'), + (0x2C02, 'M', 'ⰲ'), + (0x2C03, 'M', 'ⰳ'), + (0x2C04, 'M', 'ⰴ'), + (0x2C05, 'M', 'ⰵ'), + (0x2C06, 'M', 'ⰶ'), + (0x2C07, 'M', 'ⰷ'), + (0x2C08, 'M', 'ⰸ'), + (0x2C09, 'M', 'ⰹ'), + (0x2C0A, 'M', 'ⰺ'), + (0x2C0B, 'M', 'ⰻ'), + (0x2C0C, 'M', 'ⰼ'), + (0x2C0D, 'M', 'ⰽ'), + (0x2C0E, 'M', 'ⰾ'), + (0x2C0F, 'M', 'ⰿ'), + (0x2C10, 'M', 'ⱀ'), + (0x2C11, 'M', 'ⱁ'), + (0x2C12, 'M', 'ⱂ'), + (0x2C13, 'M', 'ⱃ'), + (0x2C14, 'M', 'ⱄ'), + (0x2C15, 'M', 'ⱅ'), + (0x2C16, 'M', 'ⱆ'), + (0x2C17, 'M', 'ⱇ'), + (0x2C18, 'M', 'ⱈ'), + (0x2C19, 'M', 'ⱉ'), + (0x2C1A, 'M', 'ⱊ'), + (0x2C1B, 'M', 'ⱋ'), + (0x2C1C, 'M', 'ⱌ'), + (0x2C1D, 'M', 'ⱍ'), + (0x2C1E, 'M', 'ⱎ'), + (0x2C1F, 'M', 'ⱏ'), + (0x2C20, 'M', 'ⱐ'), + (0x2C21, 'M', 'ⱑ'), + (0x2C22, 'M', 'ⱒ'), + (0x2C23, 'M', 'ⱓ'), + (0x2C24, 'M', 'ⱔ'), + (0x2C25, 'M', 'ⱕ'), + (0x2C26, 'M', 'ⱖ'), + (0x2C27, 'M', 'ⱗ'), + (0x2C28, 'M', 'ⱘ'), + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C2D, 'M', 'ⱝ'), + (0x2C2E, 'M', 'ⱞ'), + (0x2C2F, 'M', 'ⱟ'), + (0x2C30, 'V'), + (0x2C60, 'M', 'ⱡ'), + (0x2C61, 'V'), + (0x2C62, 'M', 'ɫ'), + (0x2C63, 'M', 'ᵽ'), + (0x2C64, 'M', 'ɽ'), + (0x2C65, 'V'), + (0x2C67, 'M', 'ⱨ'), + (0x2C68, 'V'), + (0x2C69, 'M', 'ⱪ'), + (0x2C6A, 'V'), + (0x2C6B, 'M', 'ⱬ'), + (0x2C6C, 'V'), + (0x2C6D, 'M', 'ɑ'), + (0x2C6E, 'M', 'ɱ'), + (0x2C6F, 'M', 'ɐ'), + (0x2C70, 'M', 'ɒ'), + (0x2C71, 'V'), + (0x2C72, 'M', 'ⱳ'), + (0x2C73, 'V'), + (0x2C75, 'M', 'ⱶ'), + (0x2C76, 'V'), + (0x2C7C, 'M', 'j'), + (0x2C7D, 'M', 'v'), + (0x2C7E, 'M', 'ȿ'), + (0x2C7F, 'M', 'ɀ'), + (0x2C80, 'M', 'ⲁ'), + (0x2C81, 'V'), + (0x2C82, 'M', 'ⲃ'), + (0x2C83, 'V'), + (0x2C84, 'M', 'ⲅ'), + (0x2C85, 'V'), + (0x2C86, 'M', 'ⲇ'), + (0x2C87, 'V'), + (0x2C88, 'M', 'ⲉ'), + (0x2C89, 'V'), + (0x2C8A, 'M', 'ⲋ'), + (0x2C8B, 'V'), + (0x2C8C, 'M', 'ⲍ'), + (0x2C8D, 'V'), + (0x2C8E, 'M', 'ⲏ'), + (0x2C8F, 'V'), + (0x2C90, 'M', 'ⲑ'), + (0x2C91, 'V'), + (0x2C92, 'M', 'ⲓ'), + (0x2C93, 'V'), + (0x2C94, 'M', 'ⲕ'), + (0x2C95, 'V'), + (0x2C96, 'M', 'ⲗ'), + (0x2C97, 'V'), + (0x2C98, 'M', 'ⲙ'), + (0x2C99, 'V'), + (0x2C9A, 'M', 'ⲛ'), + (0x2C9B, 'V'), + (0x2C9C, 'M', 'ⲝ'), + (0x2C9D, 'V'), + (0x2C9E, 'M', 'ⲟ'), + (0x2C9F, 'V'), + (0x2CA0, 'M', 'ⲡ'), + (0x2CA1, 'V'), + (0x2CA2, 'M', 'ⲣ'), + (0x2CA3, 'V'), + (0x2CA4, 'M', 'ⲥ'), + (0x2CA5, 'V'), + (0x2CA6, 'M', 'ⲧ'), + (0x2CA7, 'V'), + (0x2CA8, 'M', 'ⲩ'), + (0x2CA9, 'V'), + (0x2CAA, 'M', 'ⲫ'), + (0x2CAB, 'V'), + (0x2CAC, 'M', 'ⲭ'), + (0x2CAD, 'V'), + (0x2CAE, 'M', 'ⲯ'), + (0x2CAF, 'V'), + (0x2CB0, 'M', 'ⲱ'), + (0x2CB1, 'V'), + (0x2CB2, 'M', 'ⲳ'), + (0x2CB3, 'V'), + (0x2CB4, 'M', 'ⲵ'), + (0x2CB5, 'V'), + (0x2CB6, 'M', 'ⲷ'), + (0x2CB7, 'V'), + (0x2CB8, 'M', 'ⲹ'), + (0x2CB9, 'V'), + (0x2CBA, 'M', 'ⲻ'), + (0x2CBB, 'V'), + (0x2CBC, 'M', 'ⲽ'), + (0x2CBD, 'V'), + (0x2CBE, 'M', 'ⲿ'), + (0x2CBF, 'V'), + (0x2CC0, 'M', 'ⳁ'), + (0x2CC1, 'V'), + (0x2CC2, 'M', 'ⳃ'), + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC7, 'V'), + (0x2CC8, 'M', 'ⳉ'), + (0x2CC9, 'V'), + (0x2CCA, 'M', 'ⳋ'), + (0x2CCB, 'V'), + (0x2CCC, 'M', 'ⳍ'), + (0x2CCD, 'V'), + (0x2CCE, 'M', 'ⳏ'), + (0x2CCF, 'V'), + (0x2CD0, 'M', 'ⳑ'), + (0x2CD1, 'V'), + (0x2CD2, 'M', 'ⳓ'), + (0x2CD3, 'V'), + (0x2CD4, 'M', 'ⳕ'), + (0x2CD5, 'V'), + (0x2CD6, 'M', 'ⳗ'), + (0x2CD7, 'V'), + (0x2CD8, 'M', 'ⳙ'), + (0x2CD9, 'V'), + (0x2CDA, 'M', 'ⳛ'), + (0x2CDB, 'V'), + (0x2CDC, 'M', 'ⳝ'), + (0x2CDD, 'V'), + (0x2CDE, 'M', 'ⳟ'), + (0x2CDF, 'V'), + (0x2CE0, 'M', 'ⳡ'), + (0x2CE1, 'V'), + (0x2CE2, 'M', 'ⳣ'), + (0x2CE3, 'V'), + (0x2CEB, 'M', 'ⳬ'), + (0x2CEC, 'V'), + (0x2CED, 'M', 'ⳮ'), + (0x2CEE, 'V'), + (0x2CF2, 'M', 'ⳳ'), + (0x2CF3, 'V'), + (0x2CF4, 'X'), + (0x2CF9, 'V'), + (0x2D26, 'X'), + (0x2D27, 'V'), + (0x2D28, 'X'), + (0x2D2D, 'V'), + (0x2D2E, 'X'), + (0x2D30, 'V'), + (0x2D68, 'X'), + (0x2D6F, 'M', 'ⵡ'), + (0x2D70, 'V'), + (0x2D71, 'X'), + (0x2D7F, 'V'), + (0x2D97, 'X'), + (0x2DA0, 'V'), + (0x2DA7, 'X'), + (0x2DA8, 'V'), + (0x2DAF, 'X'), + (0x2DB0, 'V'), + (0x2DB7, 'X'), + (0x2DB8, 'V'), + (0x2DBF, 'X'), + (0x2DC0, 'V'), + (0x2DC7, 'X'), + (0x2DC8, 'V'), + (0x2DCF, 'X'), + (0x2DD0, 'V'), + (0x2DD7, 'X'), + (0x2DD8, 'V'), + (0x2DDF, 'X'), + (0x2DE0, 'V'), + (0x2E5E, 'X'), + (0x2E80, 'V'), + (0x2E9A, 'X'), + (0x2E9B, 'V'), + (0x2E9F, 'M', '母'), + (0x2EA0, 'V'), + (0x2EF3, 'M', '龟'), + (0x2EF4, 'X'), + (0x2F00, 'M', '一'), + (0x2F01, 'M', '丨'), + (0x2F02, 'M', '丶'), + (0x2F03, 'M', '丿'), + (0x2F04, 'M', '乙'), + (0x2F05, 'M', '亅'), + (0x2F06, 'M', '二'), + (0x2F07, 'M', '亠'), + (0x2F08, 'M', '人'), + (0x2F09, 'M', '儿'), + (0x2F0A, 'M', '入'), + (0x2F0B, 'M', '八'), + (0x2F0C, 'M', '冂'), + (0x2F0D, 'M', '冖'), + (0x2F0E, 'M', '冫'), + (0x2F0F, 'M', '几'), + (0x2F10, 'M', '凵'), + (0x2F11, 'M', '刀'), + (0x2F12, 'M', '力'), + (0x2F13, 'M', '勹'), + (0x2F14, 'M', '匕'), + (0x2F15, 'M', '匚'), + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F1A, 'M', '厂'), + (0x2F1B, 'M', '厶'), + (0x2F1C, 'M', '又'), + (0x2F1D, 'M', '口'), + (0x2F1E, 'M', '囗'), + (0x2F1F, 'M', '土'), + (0x2F20, 'M', '士'), + (0x2F21, 'M', '夂'), + (0x2F22, 'M', '夊'), + (0x2F23, 'M', '夕'), + (0x2F24, 'M', '大'), + (0x2F25, 'M', '女'), + (0x2F26, 'M', '子'), + (0x2F27, 'M', '宀'), + (0x2F28, 'M', '寸'), + (0x2F29, 'M', '小'), + (0x2F2A, 'M', '尢'), + (0x2F2B, 'M', '尸'), + (0x2F2C, 'M', '屮'), + (0x2F2D, 'M', '山'), + (0x2F2E, 'M', '巛'), + (0x2F2F, 'M', '工'), + (0x2F30, 'M', '己'), + (0x2F31, 'M', '巾'), + (0x2F32, 'M', '干'), + (0x2F33, 'M', '幺'), + (0x2F34, 'M', '广'), + (0x2F35, 'M', '廴'), + (0x2F36, 'M', '廾'), + (0x2F37, 'M', '弋'), + (0x2F38, 'M', '弓'), + (0x2F39, 'M', '彐'), + (0x2F3A, 'M', '彡'), + (0x2F3B, 'M', '彳'), + (0x2F3C, 'M', '心'), + (0x2F3D, 'M', '戈'), + (0x2F3E, 'M', '戶'), + (0x2F3F, 'M', '手'), + (0x2F40, 'M', '支'), + (0x2F41, 'M', '攴'), + (0x2F42, 'M', '文'), + (0x2F43, 'M', '斗'), + (0x2F44, 'M', '斤'), + (0x2F45, 'M', '方'), + (0x2F46, 'M', '无'), + (0x2F47, 'M', '日'), + (0x2F48, 'M', '曰'), + (0x2F49, 'M', '月'), + (0x2F4A, 'M', '木'), + (0x2F4B, 'M', '欠'), + (0x2F4C, 'M', '止'), + (0x2F4D, 'M', '歹'), + (0x2F4E, 'M', '殳'), + (0x2F4F, 'M', '毋'), + (0x2F50, 'M', '比'), + (0x2F51, 'M', '毛'), + (0x2F52, 'M', '氏'), + (0x2F53, 'M', '气'), + (0x2F54, 'M', '水'), + (0x2F55, 'M', '火'), + (0x2F56, 'M', '爪'), + (0x2F57, 'M', '父'), + (0x2F58, 'M', '爻'), + (0x2F59, 'M', '爿'), + (0x2F5A, 'M', '片'), + (0x2F5B, 'M', '牙'), + (0x2F5C, 'M', '牛'), + (0x2F5D, 'M', '犬'), + (0x2F5E, 'M', '玄'), + (0x2F5F, 'M', '玉'), + (0x2F60, 'M', '瓜'), + (0x2F61, 'M', '瓦'), + (0x2F62, 'M', '甘'), + (0x2F63, 'M', '生'), + (0x2F64, 'M', '用'), + (0x2F65, 'M', '田'), + (0x2F66, 'M', '疋'), + (0x2F67, 'M', '疒'), + (0x2F68, 'M', '癶'), + (0x2F69, 'M', '白'), + (0x2F6A, 'M', '皮'), + (0x2F6B, 'M', '皿'), + (0x2F6C, 'M', '目'), + (0x2F6D, 'M', '矛'), + (0x2F6E, 'M', '矢'), + (0x2F6F, 'M', '石'), + (0x2F70, 'M', '示'), + (0x2F71, 'M', '禸'), + (0x2F72, 'M', '禾'), + (0x2F73, 'M', '穴'), + (0x2F74, 'M', '立'), + (0x2F75, 'M', '竹'), + (0x2F76, 'M', '米'), + (0x2F77, 'M', '糸'), + (0x2F78, 'M', '缶'), + (0x2F79, 'M', '网'), + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7E, 'M', '耒'), + (0x2F7F, 'M', '耳'), + (0x2F80, 'M', '聿'), + (0x2F81, 'M', '肉'), + (0x2F82, 'M', '臣'), + (0x2F83, 'M', '自'), + (0x2F84, 'M', '至'), + (0x2F85, 'M', '臼'), + (0x2F86, 'M', '舌'), + (0x2F87, 'M', '舛'), + (0x2F88, 'M', '舟'), + (0x2F89, 'M', '艮'), + (0x2F8A, 'M', '色'), + (0x2F8B, 'M', '艸'), + (0x2F8C, 'M', '虍'), + (0x2F8D, 'M', '虫'), + (0x2F8E, 'M', '血'), + (0x2F8F, 'M', '行'), + (0x2F90, 'M', '衣'), + (0x2F91, 'M', '襾'), + (0x2F92, 'M', '見'), + (0x2F93, 'M', '角'), + (0x2F94, 'M', '言'), + (0x2F95, 'M', '谷'), + (0x2F96, 'M', '豆'), + (0x2F97, 'M', '豕'), + (0x2F98, 'M', '豸'), + (0x2F99, 'M', '貝'), + (0x2F9A, 'M', '赤'), + (0x2F9B, 'M', '走'), + (0x2F9C, 'M', '足'), + (0x2F9D, 'M', '身'), + (0x2F9E, 'M', '車'), + (0x2F9F, 'M', '辛'), + (0x2FA0, 'M', '辰'), + (0x2FA1, 'M', '辵'), + (0x2FA2, 'M', '邑'), + (0x2FA3, 'M', '酉'), + (0x2FA4, 'M', '釆'), + (0x2FA5, 'M', '里'), + (0x2FA6, 'M', '金'), + (0x2FA7, 'M', '長'), + (0x2FA8, 'M', '門'), + (0x2FA9, 'M', '阜'), + (0x2FAA, 'M', '隶'), + (0x2FAB, 'M', '隹'), + (0x2FAC, 'M', '雨'), + (0x2FAD, 'M', '靑'), + (0x2FAE, 'M', '非'), + (0x2FAF, 'M', '面'), + (0x2FB0, 'M', '革'), + (0x2FB1, 'M', '韋'), + (0x2FB2, 'M', '韭'), + (0x2FB3, 'M', '音'), + (0x2FB4, 'M', '頁'), + (0x2FB5, 'M', '風'), + (0x2FB6, 'M', '飛'), + (0x2FB7, 'M', '食'), + (0x2FB8, 'M', '首'), + (0x2FB9, 'M', '香'), + (0x2FBA, 'M', '馬'), + (0x2FBB, 'M', '骨'), + (0x2FBC, 'M', '高'), + (0x2FBD, 'M', '髟'), + (0x2FBE, 'M', '鬥'), + (0x2FBF, 'M', '鬯'), + (0x2FC0, 'M', '鬲'), + (0x2FC1, 'M', '鬼'), + (0x2FC2, 'M', '魚'), + (0x2FC3, 'M', '鳥'), + (0x2FC4, 'M', '鹵'), + (0x2FC5, 'M', '鹿'), + (0x2FC6, 'M', '麥'), + (0x2FC7, 'M', '麻'), + (0x2FC8, 'M', '黃'), + (0x2FC9, 'M', '黍'), + (0x2FCA, 'M', '黑'), + (0x2FCB, 'M', '黹'), + (0x2FCC, 'M', '黽'), + (0x2FCD, 'M', '鼎'), + (0x2FCE, 'M', '鼓'), + (0x2FCF, 'M', '鼠'), + (0x2FD0, 'M', '鼻'), + (0x2FD1, 'M', '齊'), + (0x2FD2, 'M', '齒'), + (0x2FD3, 'M', '龍'), + (0x2FD4, 'M', '龜'), + (0x2FD5, 'M', '龠'), + (0x2FD6, 'X'), + (0x3000, '3', ' '), + (0x3001, 'V'), + (0x3002, 'M', '.'), + (0x3003, 'V'), + (0x3036, 'M', '〒'), + (0x3037, 'V'), + (0x3038, 'M', '十'), + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3041, 'V'), + (0x3097, 'X'), + (0x3099, 'V'), + (0x309B, '3', ' ゙'), + (0x309C, '3', ' ゚'), + (0x309D, 'V'), + (0x309F, 'M', 'より'), + (0x30A0, 'V'), + (0x30FF, 'M', 'コト'), + (0x3100, 'X'), + (0x3105, 'V'), + (0x3130, 'X'), + (0x3131, 'M', 'ᄀ'), + (0x3132, 'M', 'ᄁ'), + (0x3133, 'M', 'ᆪ'), + (0x3134, 'M', 'ᄂ'), + (0x3135, 'M', 'ᆬ'), + (0x3136, 'M', 'ᆭ'), + (0x3137, 'M', 'ᄃ'), + (0x3138, 'M', 'ᄄ'), + (0x3139, 'M', 'ᄅ'), + (0x313A, 'M', 'ᆰ'), + (0x313B, 'M', 'ᆱ'), + (0x313C, 'M', 'ᆲ'), + (0x313D, 'M', 'ᆳ'), + (0x313E, 'M', 'ᆴ'), + (0x313F, 'M', 'ᆵ'), + (0x3140, 'M', 'ᄚ'), + (0x3141, 'M', 'ᄆ'), + (0x3142, 'M', 'ᄇ'), + (0x3143, 'M', 'ᄈ'), + (0x3144, 'M', 'ᄡ'), + (0x3145, 'M', 'ᄉ'), + (0x3146, 'M', 'ᄊ'), + (0x3147, 'M', 'ᄋ'), + (0x3148, 'M', 'ᄌ'), + (0x3149, 'M', 'ᄍ'), + (0x314A, 'M', 'ᄎ'), + (0x314B, 'M', 'ᄏ'), + (0x314C, 'M', 'ᄐ'), + (0x314D, 'M', 'ᄑ'), + (0x314E, 'M', 'ᄒ'), + (0x314F, 'M', 'ᅡ'), + (0x3150, 'M', 'ᅢ'), + (0x3151, 'M', 'ᅣ'), + (0x3152, 'M', 'ᅤ'), + (0x3153, 'M', 'ᅥ'), + (0x3154, 'M', 'ᅦ'), + (0x3155, 'M', 'ᅧ'), + (0x3156, 'M', 'ᅨ'), + (0x3157, 'M', 'ᅩ'), + (0x3158, 'M', 'ᅪ'), + (0x3159, 'M', 'ᅫ'), + (0x315A, 'M', 'ᅬ'), + (0x315B, 'M', 'ᅭ'), + (0x315C, 'M', 'ᅮ'), + (0x315D, 'M', 'ᅯ'), + (0x315E, 'M', 'ᅰ'), + (0x315F, 'M', 'ᅱ'), + (0x3160, 'M', 'ᅲ'), + (0x3161, 'M', 'ᅳ'), + (0x3162, 'M', 'ᅴ'), + (0x3163, 'M', 'ᅵ'), + (0x3164, 'X'), + (0x3165, 'M', 'ᄔ'), + (0x3166, 'M', 'ᄕ'), + (0x3167, 'M', 'ᇇ'), + (0x3168, 'M', 'ᇈ'), + (0x3169, 'M', 'ᇌ'), + (0x316A, 'M', 'ᇎ'), + (0x316B, 'M', 'ᇓ'), + (0x316C, 'M', 'ᇗ'), + (0x316D, 'M', 'ᇙ'), + (0x316E, 'M', 'ᄜ'), + (0x316F, 'M', 'ᇝ'), + (0x3170, 'M', 'ᇟ'), + (0x3171, 'M', 'ᄝ'), + (0x3172, 'M', 'ᄞ'), + (0x3173, 'M', 'ᄠ'), + (0x3174, 'M', 'ᄢ'), + (0x3175, 'M', 'ᄣ'), + (0x3176, 'M', 'ᄧ'), + (0x3177, 'M', 'ᄩ'), + (0x3178, 'M', 'ᄫ'), + (0x3179, 'M', 'ᄬ'), + (0x317A, 'M', 'ᄭ'), + (0x317B, 'M', 'ᄮ'), + (0x317C, 'M', 'ᄯ'), + (0x317D, 'M', 'ᄲ'), + (0x317E, 'M', 'ᄶ'), + (0x317F, 'M', 'ᅀ'), + (0x3180, 'M', 'ᅇ'), + (0x3181, 'M', 'ᅌ'), + (0x3182, 'M', 'ᇱ'), + (0x3183, 'M', 'ᇲ'), + (0x3184, 'M', 'ᅗ'), + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3189, 'M', 'ᆈ'), + (0x318A, 'M', 'ᆑ'), + (0x318B, 'M', 'ᆒ'), + (0x318C, 'M', 'ᆔ'), + (0x318D, 'M', 'ᆞ'), + (0x318E, 'M', 'ᆡ'), + (0x318F, 'X'), + (0x3190, 'V'), + (0x3192, 'M', '一'), + (0x3193, 'M', '二'), + (0x3194, 'M', '三'), + (0x3195, 'M', '四'), + (0x3196, 'M', '上'), + (0x3197, 'M', '中'), + (0x3198, 'M', '下'), + (0x3199, 'M', '甲'), + (0x319A, 'M', '乙'), + (0x319B, 'M', '丙'), + (0x319C, 'M', '丁'), + (0x319D, 'M', '天'), + (0x319E, 'M', '地'), + (0x319F, 'M', '人'), + (0x31A0, 'V'), + (0x31E4, 'X'), + (0x31F0, 'V'), + (0x3200, '3', '(ᄀ)'), + (0x3201, '3', '(ᄂ)'), + (0x3202, '3', '(ᄃ)'), + (0x3203, '3', '(ᄅ)'), + (0x3204, '3', '(ᄆ)'), + (0x3205, '3', '(ᄇ)'), + (0x3206, '3', '(ᄉ)'), + (0x3207, '3', '(ᄋ)'), + (0x3208, '3', '(ᄌ)'), + (0x3209, '3', '(ᄎ)'), + (0x320A, '3', '(ᄏ)'), + (0x320B, '3', '(ᄐ)'), + (0x320C, '3', '(ᄑ)'), + (0x320D, '3', '(ᄒ)'), + (0x320E, '3', '(가)'), + (0x320F, '3', '(나)'), + (0x3210, '3', '(다)'), + (0x3211, '3', '(라)'), + (0x3212, '3', '(마)'), + (0x3213, '3', '(바)'), + (0x3214, '3', '(사)'), + (0x3215, '3', '(아)'), + (0x3216, '3', '(자)'), + (0x3217, '3', '(차)'), + (0x3218, '3', '(카)'), + (0x3219, '3', '(타)'), + (0x321A, '3', '(파)'), + (0x321B, '3', '(하)'), + (0x321C, '3', '(주)'), + (0x321D, '3', '(오전)'), + (0x321E, '3', '(오후)'), + (0x321F, 'X'), + (0x3220, '3', '(一)'), + (0x3221, '3', '(二)'), + (0x3222, '3', '(三)'), + (0x3223, '3', '(四)'), + (0x3224, '3', '(五)'), + (0x3225, '3', '(六)'), + (0x3226, '3', '(七)'), + (0x3227, '3', '(八)'), + (0x3228, '3', '(九)'), + (0x3229, '3', '(十)'), + (0x322A, '3', '(月)'), + (0x322B, '3', '(火)'), + (0x322C, '3', '(水)'), + (0x322D, '3', '(木)'), + (0x322E, '3', '(金)'), + (0x322F, '3', '(土)'), + (0x3230, '3', '(日)'), + (0x3231, '3', '(株)'), + (0x3232, '3', '(有)'), + (0x3233, '3', '(社)'), + (0x3234, '3', '(名)'), + (0x3235, '3', '(特)'), + (0x3236, '3', '(財)'), + (0x3237, '3', '(祝)'), + (0x3238, '3', '(労)'), + (0x3239, '3', '(代)'), + (0x323A, '3', '(呼)'), + (0x323B, '3', '(学)'), + (0x323C, '3', '(監)'), + (0x323D, '3', '(企)'), + (0x323E, '3', '(資)'), + (0x323F, '3', '(協)'), + (0x3240, '3', '(祭)'), + (0x3241, '3', '(休)'), + (0x3242, '3', '(自)'), + (0x3243, '3', '(至)'), + (0x3244, 'M', '問'), + (0x3245, 'M', '幼'), + (0x3246, 'M', '文'), + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3252, 'M', '22'), + (0x3253, 'M', '23'), + (0x3254, 'M', '24'), + (0x3255, 'M', '25'), + (0x3256, 'M', '26'), + (0x3257, 'M', '27'), + (0x3258, 'M', '28'), + (0x3259, 'M', '29'), + (0x325A, 'M', '30'), + (0x325B, 'M', '31'), + (0x325C, 'M', '32'), + (0x325D, 'M', '33'), + (0x325E, 'M', '34'), + (0x325F, 'M', '35'), + (0x3260, 'M', 'ᄀ'), + (0x3261, 'M', 'ᄂ'), + (0x3262, 'M', 'ᄃ'), + (0x3263, 'M', 'ᄅ'), + (0x3264, 'M', 'ᄆ'), + (0x3265, 'M', 'ᄇ'), + (0x3266, 'M', 'ᄉ'), + (0x3267, 'M', 'ᄋ'), + (0x3268, 'M', 'ᄌ'), + (0x3269, 'M', 'ᄎ'), + (0x326A, 'M', 'ᄏ'), + (0x326B, 'M', 'ᄐ'), + (0x326C, 'M', 'ᄑ'), + (0x326D, 'M', 'ᄒ'), + (0x326E, 'M', '가'), + (0x326F, 'M', '나'), + (0x3270, 'M', '다'), + (0x3271, 'M', '라'), + (0x3272, 'M', '마'), + (0x3273, 'M', '바'), + (0x3274, 'M', '사'), + (0x3275, 'M', '아'), + (0x3276, 'M', '자'), + (0x3277, 'M', '차'), + (0x3278, 'M', '카'), + (0x3279, 'M', '타'), + (0x327A, 'M', '파'), + (0x327B, 'M', '하'), + (0x327C, 'M', '참고'), + (0x327D, 'M', '주의'), + (0x327E, 'M', '우'), + (0x327F, 'V'), + (0x3280, 'M', '一'), + (0x3281, 'M', '二'), + (0x3282, 'M', '三'), + (0x3283, 'M', '四'), + (0x3284, 'M', '五'), + (0x3285, 'M', '六'), + (0x3286, 'M', '七'), + (0x3287, 'M', '八'), + (0x3288, 'M', '九'), + (0x3289, 'M', '十'), + (0x328A, 'M', '月'), + (0x328B, 'M', '火'), + (0x328C, 'M', '水'), + (0x328D, 'M', '木'), + (0x328E, 'M', '金'), + (0x328F, 'M', '土'), + (0x3290, 'M', '日'), + (0x3291, 'M', '株'), + (0x3292, 'M', '有'), + (0x3293, 'M', '社'), + (0x3294, 'M', '名'), + (0x3295, 'M', '特'), + (0x3296, 'M', '財'), + (0x3297, 'M', '祝'), + (0x3298, 'M', '労'), + (0x3299, 'M', '秘'), + (0x329A, 'M', '男'), + (0x329B, 'M', '女'), + (0x329C, 'M', '適'), + (0x329D, 'M', '優'), + (0x329E, 'M', '印'), + (0x329F, 'M', '注'), + (0x32A0, 'M', '項'), + (0x32A1, 'M', '休'), + (0x32A2, 'M', '写'), + (0x32A3, 'M', '正'), + (0x32A4, 'M', '上'), + (0x32A5, 'M', '中'), + (0x32A6, 'M', '下'), + (0x32A7, 'M', '左'), + (0x32A8, 'M', '右'), + (0x32A9, 'M', '医'), + (0x32AA, 'M', '宗'), + (0x32AB, 'M', '学'), + (0x32AC, 'M', '監'), + (0x32AD, 'M', '企'), + (0x32AE, 'M', '資'), + (0x32AF, 'M', '協'), + (0x32B0, 'M', '夜'), + (0x32B1, 'M', '36'), + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B6, 'M', '41'), + (0x32B7, 'M', '42'), + (0x32B8, 'M', '43'), + (0x32B9, 'M', '44'), + (0x32BA, 'M', '45'), + (0x32BB, 'M', '46'), + (0x32BC, 'M', '47'), + (0x32BD, 'M', '48'), + (0x32BE, 'M', '49'), + (0x32BF, 'M', '50'), + (0x32C0, 'M', '1月'), + (0x32C1, 'M', '2月'), + (0x32C2, 'M', '3月'), + (0x32C3, 'M', '4月'), + (0x32C4, 'M', '5月'), + (0x32C5, 'M', '6月'), + (0x32C6, 'M', '7月'), + (0x32C7, 'M', '8月'), + (0x32C8, 'M', '9月'), + (0x32C9, 'M', '10月'), + (0x32CA, 'M', '11月'), + (0x32CB, 'M', '12月'), + (0x32CC, 'M', 'hg'), + (0x32CD, 'M', 'erg'), + (0x32CE, 'M', 'ev'), + (0x32CF, 'M', 'ltd'), + (0x32D0, 'M', 'ア'), + (0x32D1, 'M', 'イ'), + (0x32D2, 'M', 'ウ'), + (0x32D3, 'M', 'エ'), + (0x32D4, 'M', 'オ'), + (0x32D5, 'M', 'カ'), + (0x32D6, 'M', 'キ'), + (0x32D7, 'M', 'ク'), + (0x32D8, 'M', 'ケ'), + (0x32D9, 'M', 'コ'), + (0x32DA, 'M', 'サ'), + (0x32DB, 'M', 'シ'), + (0x32DC, 'M', 'ス'), + (0x32DD, 'M', 'セ'), + (0x32DE, 'M', 'ソ'), + (0x32DF, 'M', 'タ'), + (0x32E0, 'M', 'チ'), + (0x32E1, 'M', 'ツ'), + (0x32E2, 'M', 'テ'), + (0x32E3, 'M', 'ト'), + (0x32E4, 'M', 'ナ'), + (0x32E5, 'M', 'ニ'), + (0x32E6, 'M', 'ヌ'), + (0x32E7, 'M', 'ネ'), + (0x32E8, 'M', 'ノ'), + (0x32E9, 'M', 'ハ'), + (0x32EA, 'M', 'ヒ'), + (0x32EB, 'M', 'フ'), + (0x32EC, 'M', 'ヘ'), + (0x32ED, 'M', 'ホ'), + (0x32EE, 'M', 'マ'), + (0x32EF, 'M', 'ミ'), + (0x32F0, 'M', 'ム'), + (0x32F1, 'M', 'メ'), + (0x32F2, 'M', 'モ'), + (0x32F3, 'M', 'ヤ'), + (0x32F4, 'M', 'ユ'), + (0x32F5, 'M', 'ヨ'), + (0x32F6, 'M', 'ラ'), + (0x32F7, 'M', 'リ'), + (0x32F8, 'M', 'ル'), + (0x32F9, 'M', 'レ'), + (0x32FA, 'M', 'ロ'), + (0x32FB, 'M', 'ワ'), + (0x32FC, 'M', 'ヰ'), + (0x32FD, 'M', 'ヱ'), + (0x32FE, 'M', 'ヲ'), + (0x32FF, 'M', '令和'), + (0x3300, 'M', 'アパート'), + (0x3301, 'M', 'アルファ'), + (0x3302, 'M', 'アンペア'), + (0x3303, 'M', 'アール'), + (0x3304, 'M', 'イニング'), + (0x3305, 'M', 'インチ'), + (0x3306, 'M', 'ウォン'), + (0x3307, 'M', 'エスクード'), + (0x3308, 'M', 'エーカー'), + (0x3309, 'M', 'オンス'), + (0x330A, 'M', 'オーム'), + (0x330B, 'M', 'カイリ'), + (0x330C, 'M', 'カラット'), + (0x330D, 'M', 'カロリー'), + (0x330E, 'M', 'ガロン'), + (0x330F, 'M', 'ガンマ'), + (0x3310, 'M', 'ギガ'), + (0x3311, 'M', 'ギニー'), + (0x3312, 'M', 'キュリー'), + (0x3313, 'M', 'ギルダー'), + (0x3314, 'M', 'キロ'), + (0x3315, 'M', 'キログラム'), + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x331A, 'M', 'クルゼイロ'), + (0x331B, 'M', 'クローネ'), + (0x331C, 'M', 'ケース'), + (0x331D, 'M', 'コルナ'), + (0x331E, 'M', 'コーポ'), + (0x331F, 'M', 'サイクル'), + (0x3320, 'M', 'サンチーム'), + (0x3321, 'M', 'シリング'), + (0x3322, 'M', 'センチ'), + (0x3323, 'M', 'セント'), + (0x3324, 'M', 'ダース'), + (0x3325, 'M', 'デシ'), + (0x3326, 'M', 'ドル'), + (0x3327, 'M', 'トン'), + (0x3328, 'M', 'ナノ'), + (0x3329, 'M', 'ノット'), + (0x332A, 'M', 'ハイツ'), + (0x332B, 'M', 'パーセント'), + (0x332C, 'M', 'パーツ'), + (0x332D, 'M', 'バーレル'), + (0x332E, 'M', 'ピアストル'), + (0x332F, 'M', 'ピクル'), + (0x3330, 'M', 'ピコ'), + (0x3331, 'M', 'ビル'), + (0x3332, 'M', 'ファラッド'), + (0x3333, 'M', 'フィート'), + (0x3334, 'M', 'ブッシェル'), + (0x3335, 'M', 'フラン'), + (0x3336, 'M', 'ヘクタール'), + (0x3337, 'M', 'ペソ'), + (0x3338, 'M', 'ペニヒ'), + (0x3339, 'M', 'ヘルツ'), + (0x333A, 'M', 'ペンス'), + (0x333B, 'M', 'ページ'), + (0x333C, 'M', 'ベータ'), + (0x333D, 'M', 'ポイント'), + (0x333E, 'M', 'ボルト'), + (0x333F, 'M', 'ホン'), + (0x3340, 'M', 'ポンド'), + (0x3341, 'M', 'ホール'), + (0x3342, 'M', 'ホーン'), + (0x3343, 'M', 'マイクロ'), + (0x3344, 'M', 'マイル'), + (0x3345, 'M', 'マッハ'), + (0x3346, 'M', 'マルク'), + (0x3347, 'M', 'マンション'), + (0x3348, 'M', 'ミクロン'), + (0x3349, 'M', 'ミリ'), + (0x334A, 'M', 'ミリバール'), + (0x334B, 'M', 'メガ'), + (0x334C, 'M', 'メガトン'), + (0x334D, 'M', 'メートル'), + (0x334E, 'M', 'ヤード'), + (0x334F, 'M', 'ヤール'), + (0x3350, 'M', 'ユアン'), + (0x3351, 'M', 'リットル'), + (0x3352, 'M', 'リラ'), + (0x3353, 'M', 'ルピー'), + (0x3354, 'M', 'ルーブル'), + (0x3355, 'M', 'レム'), + (0x3356, 'M', 'レントゲン'), + (0x3357, 'M', 'ワット'), + (0x3358, 'M', '0点'), + (0x3359, 'M', '1点'), + (0x335A, 'M', '2点'), + (0x335B, 'M', '3点'), + (0x335C, 'M', '4点'), + (0x335D, 'M', '5点'), + (0x335E, 'M', '6点'), + (0x335F, 'M', '7点'), + (0x3360, 'M', '8点'), + (0x3361, 'M', '9点'), + (0x3362, 'M', '10点'), + (0x3363, 'M', '11点'), + (0x3364, 'M', '12点'), + (0x3365, 'M', '13点'), + (0x3366, 'M', '14点'), + (0x3367, 'M', '15点'), + (0x3368, 'M', '16点'), + (0x3369, 'M', '17点'), + (0x336A, 'M', '18点'), + (0x336B, 'M', '19点'), + (0x336C, 'M', '20点'), + (0x336D, 'M', '21点'), + (0x336E, 'M', '22点'), + (0x336F, 'M', '23点'), + (0x3370, 'M', '24点'), + (0x3371, 'M', 'hpa'), + (0x3372, 'M', 'da'), + (0x3373, 'M', 'au'), + (0x3374, 'M', 'bar'), + (0x3375, 'M', 'ov'), + (0x3376, 'M', 'pc'), + (0x3377, 'M', 'dm'), + (0x3378, 'M', 'dm2'), + (0x3379, 'M', 'dm3'), + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337E, 'M', '明治'), + (0x337F, 'M', '株式会社'), + (0x3380, 'M', 'pa'), + (0x3381, 'M', 'na'), + (0x3382, 'M', 'μa'), + (0x3383, 'M', 'ma'), + (0x3384, 'M', 'ka'), + (0x3385, 'M', 'kb'), + (0x3386, 'M', 'mb'), + (0x3387, 'M', 'gb'), + (0x3388, 'M', 'cal'), + (0x3389, 'M', 'kcal'), + (0x338A, 'M', 'pf'), + (0x338B, 'M', 'nf'), + (0x338C, 'M', 'μf'), + (0x338D, 'M', 'μg'), + (0x338E, 'M', 'mg'), + (0x338F, 'M', 'kg'), + (0x3390, 'M', 'hz'), + (0x3391, 'M', 'khz'), + (0x3392, 'M', 'mhz'), + (0x3393, 'M', 'ghz'), + (0x3394, 'M', 'thz'), + (0x3395, 'M', 'μl'), + (0x3396, 'M', 'ml'), + (0x3397, 'M', 'dl'), + (0x3398, 'M', 'kl'), + (0x3399, 'M', 'fm'), + (0x339A, 'M', 'nm'), + (0x339B, 'M', 'μm'), + (0x339C, 'M', 'mm'), + (0x339D, 'M', 'cm'), + (0x339E, 'M', 'km'), + (0x339F, 'M', 'mm2'), + (0x33A0, 'M', 'cm2'), + (0x33A1, 'M', 'm2'), + (0x33A2, 'M', 'km2'), + (0x33A3, 'M', 'mm3'), + (0x33A4, 'M', 'cm3'), + (0x33A5, 'M', 'm3'), + (0x33A6, 'M', 'km3'), + (0x33A7, 'M', 'm∕s'), + (0x33A8, 'M', 'm∕s2'), + (0x33A9, 'M', 'pa'), + (0x33AA, 'M', 'kpa'), + (0x33AB, 'M', 'mpa'), + (0x33AC, 'M', 'gpa'), + (0x33AD, 'M', 'rad'), + (0x33AE, 'M', 'rad∕s'), + (0x33AF, 'M', 'rad∕s2'), + (0x33B0, 'M', 'ps'), + (0x33B1, 'M', 'ns'), + (0x33B2, 'M', 'μs'), + (0x33B3, 'M', 'ms'), + (0x33B4, 'M', 'pv'), + (0x33B5, 'M', 'nv'), + (0x33B6, 'M', 'μv'), + (0x33B7, 'M', 'mv'), + (0x33B8, 'M', 'kv'), + (0x33B9, 'M', 'mv'), + (0x33BA, 'M', 'pw'), + (0x33BB, 'M', 'nw'), + (0x33BC, 'M', 'μw'), + (0x33BD, 'M', 'mw'), + (0x33BE, 'M', 'kw'), + (0x33BF, 'M', 'mw'), + (0x33C0, 'M', 'kω'), + (0x33C1, 'M', 'mω'), + (0x33C2, 'X'), + (0x33C3, 'M', 'bq'), + (0x33C4, 'M', 'cc'), + (0x33C5, 'M', 'cd'), + (0x33C6, 'M', 'c∕kg'), + (0x33C7, 'X'), + (0x33C8, 'M', 'db'), + (0x33C9, 'M', 'gy'), + (0x33CA, 'M', 'ha'), + (0x33CB, 'M', 'hp'), + (0x33CC, 'M', 'in'), + (0x33CD, 'M', 'kk'), + (0x33CE, 'M', 'km'), + (0x33CF, 'M', 'kt'), + (0x33D0, 'M', 'lm'), + (0x33D1, 'M', 'ln'), + (0x33D2, 'M', 'log'), + (0x33D3, 'M', 'lx'), + (0x33D4, 'M', 'mb'), + (0x33D5, 'M', 'mil'), + (0x33D6, 'M', 'mol'), + (0x33D7, 'M', 'ph'), + (0x33D8, 'X'), + (0x33D9, 'M', 'ppm'), + (0x33DA, 'M', 'pr'), + (0x33DB, 'M', 'sr'), + (0x33DC, 'M', 'sv'), + (0x33DD, 'M', 'wb'), + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33E2, 'M', '3日'), + (0x33E3, 'M', '4日'), + (0x33E4, 'M', '5日'), + (0x33E5, 'M', '6日'), + (0x33E6, 'M', '7日'), + (0x33E7, 'M', '8日'), + (0x33E8, 'M', '9日'), + (0x33E9, 'M', '10日'), + (0x33EA, 'M', '11日'), + (0x33EB, 'M', '12日'), + (0x33EC, 'M', '13日'), + (0x33ED, 'M', '14日'), + (0x33EE, 'M', '15日'), + (0x33EF, 'M', '16日'), + (0x33F0, 'M', '17日'), + (0x33F1, 'M', '18日'), + (0x33F2, 'M', '19日'), + (0x33F3, 'M', '20日'), + (0x33F4, 'M', '21日'), + (0x33F5, 'M', '22日'), + (0x33F6, 'M', '23日'), + (0x33F7, 'M', '24日'), + (0x33F8, 'M', '25日'), + (0x33F9, 'M', '26日'), + (0x33FA, 'M', '27日'), + (0x33FB, 'M', '28日'), + (0x33FC, 'M', '29日'), + (0x33FD, 'M', '30日'), + (0x33FE, 'M', '31日'), + (0x33FF, 'M', 'gal'), + (0x3400, 'V'), + (0xA48D, 'X'), + (0xA490, 'V'), + (0xA4C7, 'X'), + (0xA4D0, 'V'), + (0xA62C, 'X'), + (0xA640, 'M', 'ꙁ'), + (0xA641, 'V'), + (0xA642, 'M', 'ꙃ'), + (0xA643, 'V'), + (0xA644, 'M', 'ꙅ'), + (0xA645, 'V'), + (0xA646, 'M', 'ꙇ'), + (0xA647, 'V'), + (0xA648, 'M', 'ꙉ'), + (0xA649, 'V'), + (0xA64A, 'M', 'ꙋ'), + (0xA64B, 'V'), + (0xA64C, 'M', 'ꙍ'), + (0xA64D, 'V'), + (0xA64E, 'M', 'ꙏ'), + (0xA64F, 'V'), + (0xA650, 'M', 'ꙑ'), + (0xA651, 'V'), + (0xA652, 'M', 'ꙓ'), + (0xA653, 'V'), + (0xA654, 'M', 'ꙕ'), + (0xA655, 'V'), + (0xA656, 'M', 'ꙗ'), + (0xA657, 'V'), + (0xA658, 'M', 'ꙙ'), + (0xA659, 'V'), + (0xA65A, 'M', 'ꙛ'), + (0xA65B, 'V'), + (0xA65C, 'M', 'ꙝ'), + (0xA65D, 'V'), + (0xA65E, 'M', 'ꙟ'), + (0xA65F, 'V'), + (0xA660, 'M', 'ꙡ'), + (0xA661, 'V'), + (0xA662, 'M', 'ꙣ'), + (0xA663, 'V'), + (0xA664, 'M', 'ꙥ'), + (0xA665, 'V'), + (0xA666, 'M', 'ꙧ'), + (0xA667, 'V'), + (0xA668, 'M', 'ꙩ'), + (0xA669, 'V'), + (0xA66A, 'M', 'ꙫ'), + (0xA66B, 'V'), + (0xA66C, 'M', 'ꙭ'), + (0xA66D, 'V'), + (0xA680, 'M', 'ꚁ'), + (0xA681, 'V'), + (0xA682, 'M', 'ꚃ'), + (0xA683, 'V'), + (0xA684, 'M', 'ꚅ'), + (0xA685, 'V'), + (0xA686, 'M', 'ꚇ'), + (0xA687, 'V'), + (0xA688, 'M', 'ꚉ'), + (0xA689, 'V'), + (0xA68A, 'M', 'ꚋ'), + (0xA68B, 'V'), + (0xA68C, 'M', 'ꚍ'), + (0xA68D, 'V'), + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA692, 'M', 'ꚓ'), + (0xA693, 'V'), + (0xA694, 'M', 'ꚕ'), + (0xA695, 'V'), + (0xA696, 'M', 'ꚗ'), + (0xA697, 'V'), + (0xA698, 'M', 'ꚙ'), + (0xA699, 'V'), + (0xA69A, 'M', 'ꚛ'), + (0xA69B, 'V'), + (0xA69C, 'M', 'ъ'), + (0xA69D, 'M', 'ь'), + (0xA69E, 'V'), + (0xA6F8, 'X'), + (0xA700, 'V'), + (0xA722, 'M', 'ꜣ'), + (0xA723, 'V'), + (0xA724, 'M', 'ꜥ'), + (0xA725, 'V'), + (0xA726, 'M', 'ꜧ'), + (0xA727, 'V'), + (0xA728, 'M', 'ꜩ'), + (0xA729, 'V'), + (0xA72A, 'M', 'ꜫ'), + (0xA72B, 'V'), + (0xA72C, 'M', 'ꜭ'), + (0xA72D, 'V'), + (0xA72E, 'M', 'ꜯ'), + (0xA72F, 'V'), + (0xA732, 'M', 'ꜳ'), + (0xA733, 'V'), + (0xA734, 'M', 'ꜵ'), + (0xA735, 'V'), + (0xA736, 'M', 'ꜷ'), + (0xA737, 'V'), + (0xA738, 'M', 'ꜹ'), + (0xA739, 'V'), + (0xA73A, 'M', 'ꜻ'), + (0xA73B, 'V'), + (0xA73C, 'M', 'ꜽ'), + (0xA73D, 'V'), + (0xA73E, 'M', 'ꜿ'), + (0xA73F, 'V'), + (0xA740, 'M', 'ꝁ'), + (0xA741, 'V'), + (0xA742, 'M', 'ꝃ'), + (0xA743, 'V'), + (0xA744, 'M', 'ꝅ'), + (0xA745, 'V'), + (0xA746, 'M', 'ꝇ'), + (0xA747, 'V'), + (0xA748, 'M', 'ꝉ'), + (0xA749, 'V'), + (0xA74A, 'M', 'ꝋ'), + (0xA74B, 'V'), + (0xA74C, 'M', 'ꝍ'), + (0xA74D, 'V'), + (0xA74E, 'M', 'ꝏ'), + (0xA74F, 'V'), + (0xA750, 'M', 'ꝑ'), + (0xA751, 'V'), + (0xA752, 'M', 'ꝓ'), + (0xA753, 'V'), + (0xA754, 'M', 'ꝕ'), + (0xA755, 'V'), + (0xA756, 'M', 'ꝗ'), + (0xA757, 'V'), + (0xA758, 'M', 'ꝙ'), + (0xA759, 'V'), + (0xA75A, 'M', 'ꝛ'), + (0xA75B, 'V'), + (0xA75C, 'M', 'ꝝ'), + (0xA75D, 'V'), + (0xA75E, 'M', 'ꝟ'), + (0xA75F, 'V'), + (0xA760, 'M', 'ꝡ'), + (0xA761, 'V'), + (0xA762, 'M', 'ꝣ'), + (0xA763, 'V'), + (0xA764, 'M', 'ꝥ'), + (0xA765, 'V'), + (0xA766, 'M', 'ꝧ'), + (0xA767, 'V'), + (0xA768, 'M', 'ꝩ'), + (0xA769, 'V'), + (0xA76A, 'M', 'ꝫ'), + (0xA76B, 'V'), + (0xA76C, 'M', 'ꝭ'), + (0xA76D, 'V'), + (0xA76E, 'M', 'ꝯ'), + (0xA76F, 'V'), + (0xA770, 'M', 'ꝯ'), + (0xA771, 'V'), + (0xA779, 'M', 'ꝺ'), + (0xA77A, 'V'), + (0xA77B, 'M', 'ꝼ'), + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA780, 'M', 'ꞁ'), + (0xA781, 'V'), + (0xA782, 'M', 'ꞃ'), + (0xA783, 'V'), + (0xA784, 'M', 'ꞅ'), + (0xA785, 'V'), + (0xA786, 'M', 'ꞇ'), + (0xA787, 'V'), + (0xA78B, 'M', 'ꞌ'), + (0xA78C, 'V'), + (0xA78D, 'M', 'ɥ'), + (0xA78E, 'V'), + (0xA790, 'M', 'ꞑ'), + (0xA791, 'V'), + (0xA792, 'M', 'ꞓ'), + (0xA793, 'V'), + (0xA796, 'M', 'ꞗ'), + (0xA797, 'V'), + (0xA798, 'M', 'ꞙ'), + (0xA799, 'V'), + (0xA79A, 'M', 'ꞛ'), + (0xA79B, 'V'), + (0xA79C, 'M', 'ꞝ'), + (0xA79D, 'V'), + (0xA79E, 'M', 'ꞟ'), + (0xA79F, 'V'), + (0xA7A0, 'M', 'ꞡ'), + (0xA7A1, 'V'), + (0xA7A2, 'M', 'ꞣ'), + (0xA7A3, 'V'), + (0xA7A4, 'M', 'ꞥ'), + (0xA7A5, 'V'), + (0xA7A6, 'M', 'ꞧ'), + (0xA7A7, 'V'), + (0xA7A8, 'M', 'ꞩ'), + (0xA7A9, 'V'), + (0xA7AA, 'M', 'ɦ'), + (0xA7AB, 'M', 'ɜ'), + (0xA7AC, 'M', 'ɡ'), + (0xA7AD, 'M', 'ɬ'), + (0xA7AE, 'M', 'ɪ'), + (0xA7AF, 'V'), + (0xA7B0, 'M', 'ʞ'), + (0xA7B1, 'M', 'ʇ'), + (0xA7B2, 'M', 'ʝ'), + (0xA7B3, 'M', 'ꭓ'), + (0xA7B4, 'M', 'ꞵ'), + (0xA7B5, 'V'), + (0xA7B6, 'M', 'ꞷ'), + (0xA7B7, 'V'), + (0xA7B8, 'M', 'ꞹ'), + (0xA7B9, 'V'), + (0xA7BA, 'M', 'ꞻ'), + (0xA7BB, 'V'), + (0xA7BC, 'M', 'ꞽ'), + (0xA7BD, 'V'), + (0xA7BE, 'M', 'ꞿ'), + (0xA7BF, 'V'), + (0xA7C0, 'M', 'ꟁ'), + (0xA7C1, 'V'), + (0xA7C2, 'M', 'ꟃ'), + (0xA7C3, 'V'), + (0xA7C4, 'M', 'ꞔ'), + (0xA7C5, 'M', 'ʂ'), + (0xA7C6, 'M', 'ᶎ'), + (0xA7C7, 'M', 'ꟈ'), + (0xA7C8, 'V'), + (0xA7C9, 'M', 'ꟊ'), + (0xA7CA, 'V'), + (0xA7CB, 'X'), + (0xA7D0, 'M', 'ꟑ'), + (0xA7D1, 'V'), + (0xA7D2, 'X'), + (0xA7D3, 'V'), + (0xA7D4, 'X'), + (0xA7D5, 'V'), + (0xA7D6, 'M', 'ꟗ'), + (0xA7D7, 'V'), + (0xA7D8, 'M', 'ꟙ'), + (0xA7D9, 'V'), + (0xA7DA, 'X'), + (0xA7F2, 'M', 'c'), + (0xA7F3, 'M', 'f'), + (0xA7F4, 'M', 'q'), + (0xA7F5, 'M', 'ꟶ'), + (0xA7F6, 'V'), + (0xA7F8, 'M', 'ħ'), + (0xA7F9, 'M', 'œ'), + (0xA7FA, 'V'), + (0xA82D, 'X'), + (0xA830, 'V'), + (0xA83A, 'X'), + (0xA840, 'V'), + (0xA878, 'X'), + (0xA880, 'V'), + (0xA8C6, 'X'), + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA95F, 'V'), + (0xA97D, 'X'), + (0xA980, 'V'), + (0xA9CE, 'X'), + (0xA9CF, 'V'), + (0xA9DA, 'X'), + (0xA9DE, 'V'), + (0xA9FF, 'X'), + (0xAA00, 'V'), + (0xAA37, 'X'), + (0xAA40, 'V'), + (0xAA4E, 'X'), + (0xAA50, 'V'), + (0xAA5A, 'X'), + (0xAA5C, 'V'), + (0xAAC3, 'X'), + (0xAADB, 'V'), + (0xAAF7, 'X'), + (0xAB01, 'V'), + (0xAB07, 'X'), + (0xAB09, 'V'), + (0xAB0F, 'X'), + (0xAB11, 'V'), + (0xAB17, 'X'), + (0xAB20, 'V'), + (0xAB27, 'X'), + (0xAB28, 'V'), + (0xAB2F, 'X'), + (0xAB30, 'V'), + (0xAB5C, 'M', 'ꜧ'), + (0xAB5D, 'M', 'ꬷ'), + (0xAB5E, 'M', 'ɫ'), + (0xAB5F, 'M', 'ꭒ'), + (0xAB60, 'V'), + (0xAB69, 'M', 'ʍ'), + (0xAB6A, 'V'), + (0xAB6C, 'X'), + (0xAB70, 'M', 'Ꭰ'), + (0xAB71, 'M', 'Ꭱ'), + (0xAB72, 'M', 'Ꭲ'), + (0xAB73, 'M', 'Ꭳ'), + (0xAB74, 'M', 'Ꭴ'), + (0xAB75, 'M', 'Ꭵ'), + (0xAB76, 'M', 'Ꭶ'), + (0xAB77, 'M', 'Ꭷ'), + (0xAB78, 'M', 'Ꭸ'), + (0xAB79, 'M', 'Ꭹ'), + (0xAB7A, 'M', 'Ꭺ'), + (0xAB7B, 'M', 'Ꭻ'), + (0xAB7C, 'M', 'Ꭼ'), + (0xAB7D, 'M', 'Ꭽ'), + (0xAB7E, 'M', 'Ꭾ'), + (0xAB7F, 'M', 'Ꭿ'), + (0xAB80, 'M', 'Ꮀ'), + (0xAB81, 'M', 'Ꮁ'), + (0xAB82, 'M', 'Ꮂ'), + (0xAB83, 'M', 'Ꮃ'), + (0xAB84, 'M', 'Ꮄ'), + (0xAB85, 'M', 'Ꮅ'), + (0xAB86, 'M', 'Ꮆ'), + (0xAB87, 'M', 'Ꮇ'), + (0xAB88, 'M', 'Ꮈ'), + (0xAB89, 'M', 'Ꮉ'), + (0xAB8A, 'M', 'Ꮊ'), + (0xAB8B, 'M', 'Ꮋ'), + (0xAB8C, 'M', 'Ꮌ'), + (0xAB8D, 'M', 'Ꮍ'), + (0xAB8E, 'M', 'Ꮎ'), + (0xAB8F, 'M', 'Ꮏ'), + (0xAB90, 'M', 'Ꮐ'), + (0xAB91, 'M', 'Ꮑ'), + (0xAB92, 'M', 'Ꮒ'), + (0xAB93, 'M', 'Ꮓ'), + (0xAB94, 'M', 'Ꮔ'), + (0xAB95, 'M', 'Ꮕ'), + (0xAB96, 'M', 'Ꮖ'), + (0xAB97, 'M', 'Ꮗ'), + (0xAB98, 'M', 'Ꮘ'), + (0xAB99, 'M', 'Ꮙ'), + (0xAB9A, 'M', 'Ꮚ'), + (0xAB9B, 'M', 'Ꮛ'), + (0xAB9C, 'M', 'Ꮜ'), + (0xAB9D, 'M', 'Ꮝ'), + (0xAB9E, 'M', 'Ꮞ'), + (0xAB9F, 'M', 'Ꮟ'), + (0xABA0, 'M', 'Ꮠ'), + (0xABA1, 'M', 'Ꮡ'), + (0xABA2, 'M', 'Ꮢ'), + (0xABA3, 'M', 'Ꮣ'), + (0xABA4, 'M', 'Ꮤ'), + (0xABA5, 'M', 'Ꮥ'), + (0xABA6, 'M', 'Ꮦ'), + (0xABA7, 'M', 'Ꮧ'), + (0xABA8, 'M', 'Ꮨ'), + (0xABA9, 'M', 'Ꮩ'), + (0xABAA, 'M', 'Ꮪ'), + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAF, 'M', 'Ꮯ'), + (0xABB0, 'M', 'Ꮰ'), + (0xABB1, 'M', 'Ꮱ'), + (0xABB2, 'M', 'Ꮲ'), + (0xABB3, 'M', 'Ꮳ'), + (0xABB4, 'M', 'Ꮴ'), + (0xABB5, 'M', 'Ꮵ'), + (0xABB6, 'M', 'Ꮶ'), + (0xABB7, 'M', 'Ꮷ'), + (0xABB8, 'M', 'Ꮸ'), + (0xABB9, 'M', 'Ꮹ'), + (0xABBA, 'M', 'Ꮺ'), + (0xABBB, 'M', 'Ꮻ'), + (0xABBC, 'M', 'Ꮼ'), + (0xABBD, 'M', 'Ꮽ'), + (0xABBE, 'M', 'Ꮾ'), + (0xABBF, 'M', 'Ꮿ'), + (0xABC0, 'V'), + (0xABEE, 'X'), + (0xABF0, 'V'), + (0xABFA, 'X'), + (0xAC00, 'V'), + (0xD7A4, 'X'), + (0xD7B0, 'V'), + (0xD7C7, 'X'), + (0xD7CB, 'V'), + (0xD7FC, 'X'), + (0xF900, 'M', '豈'), + (0xF901, 'M', '更'), + (0xF902, 'M', '車'), + (0xF903, 'M', '賈'), + (0xF904, 'M', '滑'), + (0xF905, 'M', '串'), + (0xF906, 'M', '句'), + (0xF907, 'M', '龜'), + (0xF909, 'M', '契'), + (0xF90A, 'M', '金'), + (0xF90B, 'M', '喇'), + (0xF90C, 'M', '奈'), + (0xF90D, 'M', '懶'), + (0xF90E, 'M', '癩'), + (0xF90F, 'M', '羅'), + (0xF910, 'M', '蘿'), + (0xF911, 'M', '螺'), + (0xF912, 'M', '裸'), + (0xF913, 'M', '邏'), + (0xF914, 'M', '樂'), + (0xF915, 'M', '洛'), + (0xF916, 'M', '烙'), + (0xF917, 'M', '珞'), + (0xF918, 'M', '落'), + (0xF919, 'M', '酪'), + (0xF91A, 'M', '駱'), + (0xF91B, 'M', '亂'), + (0xF91C, 'M', '卵'), + (0xF91D, 'M', '欄'), + (0xF91E, 'M', '爛'), + (0xF91F, 'M', '蘭'), + (0xF920, 'M', '鸞'), + (0xF921, 'M', '嵐'), + (0xF922, 'M', '濫'), + (0xF923, 'M', '藍'), + (0xF924, 'M', '襤'), + (0xF925, 'M', '拉'), + (0xF926, 'M', '臘'), + (0xF927, 'M', '蠟'), + (0xF928, 'M', '廊'), + (0xF929, 'M', '朗'), + (0xF92A, 'M', '浪'), + (0xF92B, 'M', '狼'), + (0xF92C, 'M', '郎'), + (0xF92D, 'M', '來'), + (0xF92E, 'M', '冷'), + (0xF92F, 'M', '勞'), + (0xF930, 'M', '擄'), + (0xF931, 'M', '櫓'), + (0xF932, 'M', '爐'), + (0xF933, 'M', '盧'), + (0xF934, 'M', '老'), + (0xF935, 'M', '蘆'), + (0xF936, 'M', '虜'), + (0xF937, 'M', '路'), + (0xF938, 'M', '露'), + (0xF939, 'M', '魯'), + (0xF93A, 'M', '鷺'), + (0xF93B, 'M', '碌'), + (0xF93C, 'M', '祿'), + (0xF93D, 'M', '綠'), + (0xF93E, 'M', '菉'), + (0xF93F, 'M', '錄'), + (0xF940, 'M', '鹿'), + (0xF941, 'M', '論'), + (0xF942, 'M', '壟'), + (0xF943, 'M', '弄'), + (0xF944, 'M', '籠'), + (0xF945, 'M', '聾'), + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF94A, 'M', '壘'), + (0xF94B, 'M', '屢'), + (0xF94C, 'M', '樓'), + (0xF94D, 'M', '淚'), + (0xF94E, 'M', '漏'), + (0xF94F, 'M', '累'), + (0xF950, 'M', '縷'), + (0xF951, 'M', '陋'), + (0xF952, 'M', '勒'), + (0xF953, 'M', '肋'), + (0xF954, 'M', '凜'), + (0xF955, 'M', '凌'), + (0xF956, 'M', '稜'), + (0xF957, 'M', '綾'), + (0xF958, 'M', '菱'), + (0xF959, 'M', '陵'), + (0xF95A, 'M', '讀'), + (0xF95B, 'M', '拏'), + (0xF95C, 'M', '樂'), + (0xF95D, 'M', '諾'), + (0xF95E, 'M', '丹'), + (0xF95F, 'M', '寧'), + (0xF960, 'M', '怒'), + (0xF961, 'M', '率'), + (0xF962, 'M', '異'), + (0xF963, 'M', '北'), + (0xF964, 'M', '磻'), + (0xF965, 'M', '便'), + (0xF966, 'M', '復'), + (0xF967, 'M', '不'), + (0xF968, 'M', '泌'), + (0xF969, 'M', '數'), + (0xF96A, 'M', '索'), + (0xF96B, 'M', '參'), + (0xF96C, 'M', '塞'), + (0xF96D, 'M', '省'), + (0xF96E, 'M', '葉'), + (0xF96F, 'M', '說'), + (0xF970, 'M', '殺'), + (0xF971, 'M', '辰'), + (0xF972, 'M', '沈'), + (0xF973, 'M', '拾'), + (0xF974, 'M', '若'), + (0xF975, 'M', '掠'), + (0xF976, 'M', '略'), + (0xF977, 'M', '亮'), + (0xF978, 'M', '兩'), + (0xF979, 'M', '凉'), + (0xF97A, 'M', '梁'), + (0xF97B, 'M', '糧'), + (0xF97C, 'M', '良'), + (0xF97D, 'M', '諒'), + (0xF97E, 'M', '量'), + (0xF97F, 'M', '勵'), + (0xF980, 'M', '呂'), + (0xF981, 'M', '女'), + (0xF982, 'M', '廬'), + (0xF983, 'M', '旅'), + (0xF984, 'M', '濾'), + (0xF985, 'M', '礪'), + (0xF986, 'M', '閭'), + (0xF987, 'M', '驪'), + (0xF988, 'M', '麗'), + (0xF989, 'M', '黎'), + (0xF98A, 'M', '力'), + (0xF98B, 'M', '曆'), + (0xF98C, 'M', '歷'), + (0xF98D, 'M', '轢'), + (0xF98E, 'M', '年'), + (0xF98F, 'M', '憐'), + (0xF990, 'M', '戀'), + (0xF991, 'M', '撚'), + (0xF992, 'M', '漣'), + (0xF993, 'M', '煉'), + (0xF994, 'M', '璉'), + (0xF995, 'M', '秊'), + (0xF996, 'M', '練'), + (0xF997, 'M', '聯'), + (0xF998, 'M', '輦'), + (0xF999, 'M', '蓮'), + (0xF99A, 'M', '連'), + (0xF99B, 'M', '鍊'), + (0xF99C, 'M', '列'), + (0xF99D, 'M', '劣'), + (0xF99E, 'M', '咽'), + (0xF99F, 'M', '烈'), + (0xF9A0, 'M', '裂'), + (0xF9A1, 'M', '說'), + (0xF9A2, 'M', '廉'), + (0xF9A3, 'M', '念'), + (0xF9A4, 'M', '捻'), + (0xF9A5, 'M', '殮'), + (0xF9A6, 'M', '簾'), + (0xF9A7, 'M', '獵'), + (0xF9A8, 'M', '令'), + (0xF9A9, 'M', '囹'), + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AE, 'M', '瑩'), + (0xF9AF, 'M', '羚'), + (0xF9B0, 'M', '聆'), + (0xF9B1, 'M', '鈴'), + (0xF9B2, 'M', '零'), + (0xF9B3, 'M', '靈'), + (0xF9B4, 'M', '領'), + (0xF9B5, 'M', '例'), + (0xF9B6, 'M', '禮'), + (0xF9B7, 'M', '醴'), + (0xF9B8, 'M', '隸'), + (0xF9B9, 'M', '惡'), + (0xF9BA, 'M', '了'), + (0xF9BB, 'M', '僚'), + (0xF9BC, 'M', '寮'), + (0xF9BD, 'M', '尿'), + (0xF9BE, 'M', '料'), + (0xF9BF, 'M', '樂'), + (0xF9C0, 'M', '燎'), + (0xF9C1, 'M', '療'), + (0xF9C2, 'M', '蓼'), + (0xF9C3, 'M', '遼'), + (0xF9C4, 'M', '龍'), + (0xF9C5, 'M', '暈'), + (0xF9C6, 'M', '阮'), + (0xF9C7, 'M', '劉'), + (0xF9C8, 'M', '杻'), + (0xF9C9, 'M', '柳'), + (0xF9CA, 'M', '流'), + (0xF9CB, 'M', '溜'), + (0xF9CC, 'M', '琉'), + (0xF9CD, 'M', '留'), + (0xF9CE, 'M', '硫'), + (0xF9CF, 'M', '紐'), + (0xF9D0, 'M', '類'), + (0xF9D1, 'M', '六'), + (0xF9D2, 'M', '戮'), + (0xF9D3, 'M', '陸'), + (0xF9D4, 'M', '倫'), + (0xF9D5, 'M', '崙'), + (0xF9D6, 'M', '淪'), + (0xF9D7, 'M', '輪'), + (0xF9D8, 'M', '律'), + (0xF9D9, 'M', '慄'), + (0xF9DA, 'M', '栗'), + (0xF9DB, 'M', '率'), + (0xF9DC, 'M', '隆'), + (0xF9DD, 'M', '利'), + (0xF9DE, 'M', '吏'), + (0xF9DF, 'M', '履'), + (0xF9E0, 'M', '易'), + (0xF9E1, 'M', '李'), + (0xF9E2, 'M', '梨'), + (0xF9E3, 'M', '泥'), + (0xF9E4, 'M', '理'), + (0xF9E5, 'M', '痢'), + (0xF9E6, 'M', '罹'), + (0xF9E7, 'M', '裏'), + (0xF9E8, 'M', '裡'), + (0xF9E9, 'M', '里'), + (0xF9EA, 'M', '離'), + (0xF9EB, 'M', '匿'), + (0xF9EC, 'M', '溺'), + (0xF9ED, 'M', '吝'), + (0xF9EE, 'M', '燐'), + (0xF9EF, 'M', '璘'), + (0xF9F0, 'M', '藺'), + (0xF9F1, 'M', '隣'), + (0xF9F2, 'M', '鱗'), + (0xF9F3, 'M', '麟'), + (0xF9F4, 'M', '林'), + (0xF9F5, 'M', '淋'), + (0xF9F6, 'M', '臨'), + (0xF9F7, 'M', '立'), + (0xF9F8, 'M', '笠'), + (0xF9F9, 'M', '粒'), + (0xF9FA, 'M', '狀'), + (0xF9FB, 'M', '炙'), + (0xF9FC, 'M', '識'), + (0xF9FD, 'M', '什'), + (0xF9FE, 'M', '茶'), + (0xF9FF, 'M', '刺'), + (0xFA00, 'M', '切'), + (0xFA01, 'M', '度'), + (0xFA02, 'M', '拓'), + (0xFA03, 'M', '糖'), + (0xFA04, 'M', '宅'), + (0xFA05, 'M', '洞'), + (0xFA06, 'M', '暴'), + (0xFA07, 'M', '輻'), + (0xFA08, 'M', '行'), + (0xFA09, 'M', '降'), + (0xFA0A, 'M', '見'), + (0xFA0B, 'M', '廓'), + (0xFA0C, 'M', '兀'), + (0xFA0D, 'M', '嗀'), + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA13, 'V'), + (0xFA15, 'M', '凞'), + (0xFA16, 'M', '猪'), + (0xFA17, 'M', '益'), + (0xFA18, 'M', '礼'), + (0xFA19, 'M', '神'), + (0xFA1A, 'M', '祥'), + (0xFA1B, 'M', '福'), + (0xFA1C, 'M', '靖'), + (0xFA1D, 'M', '精'), + (0xFA1E, 'M', '羽'), + (0xFA1F, 'V'), + (0xFA20, 'M', '蘒'), + (0xFA21, 'V'), + (0xFA22, 'M', '諸'), + (0xFA23, 'V'), + (0xFA25, 'M', '逸'), + (0xFA26, 'M', '都'), + (0xFA27, 'V'), + (0xFA2A, 'M', '飯'), + (0xFA2B, 'M', '飼'), + (0xFA2C, 'M', '館'), + (0xFA2D, 'M', '鶴'), + (0xFA2E, 'M', '郞'), + (0xFA2F, 'M', '隷'), + (0xFA30, 'M', '侮'), + (0xFA31, 'M', '僧'), + (0xFA32, 'M', '免'), + (0xFA33, 'M', '勉'), + (0xFA34, 'M', '勤'), + (0xFA35, 'M', '卑'), + (0xFA36, 'M', '喝'), + (0xFA37, 'M', '嘆'), + (0xFA38, 'M', '器'), + (0xFA39, 'M', '塀'), + (0xFA3A, 'M', '墨'), + (0xFA3B, 'M', '層'), + (0xFA3C, 'M', '屮'), + (0xFA3D, 'M', '悔'), + (0xFA3E, 'M', '慨'), + (0xFA3F, 'M', '憎'), + (0xFA40, 'M', '懲'), + (0xFA41, 'M', '敏'), + (0xFA42, 'M', '既'), + (0xFA43, 'M', '暑'), + (0xFA44, 'M', '梅'), + (0xFA45, 'M', '海'), + (0xFA46, 'M', '渚'), + (0xFA47, 'M', '漢'), + (0xFA48, 'M', '煮'), + (0xFA49, 'M', '爫'), + (0xFA4A, 'M', '琢'), + (0xFA4B, 'M', '碑'), + (0xFA4C, 'M', '社'), + (0xFA4D, 'M', '祉'), + (0xFA4E, 'M', '祈'), + (0xFA4F, 'M', '祐'), + (0xFA50, 'M', '祖'), + (0xFA51, 'M', '祝'), + (0xFA52, 'M', '禍'), + (0xFA53, 'M', '禎'), + (0xFA54, 'M', '穀'), + (0xFA55, 'M', '突'), + (0xFA56, 'M', '節'), + (0xFA57, 'M', '練'), + (0xFA58, 'M', '縉'), + (0xFA59, 'M', '繁'), + (0xFA5A, 'M', '署'), + (0xFA5B, 'M', '者'), + (0xFA5C, 'M', '臭'), + (0xFA5D, 'M', '艹'), + (0xFA5F, 'M', '著'), + (0xFA60, 'M', '褐'), + (0xFA61, 'M', '視'), + (0xFA62, 'M', '謁'), + (0xFA63, 'M', '謹'), + (0xFA64, 'M', '賓'), + (0xFA65, 'M', '贈'), + (0xFA66, 'M', '辶'), + (0xFA67, 'M', '逸'), + (0xFA68, 'M', '難'), + (0xFA69, 'M', '響'), + (0xFA6A, 'M', '頻'), + (0xFA6B, 'M', '恵'), + (0xFA6C, 'M', '𤋮'), + (0xFA6D, 'M', '舘'), + (0xFA6E, 'X'), + (0xFA70, 'M', '並'), + (0xFA71, 'M', '况'), + (0xFA72, 'M', '全'), + (0xFA73, 'M', '侀'), + (0xFA74, 'M', '充'), + (0xFA75, 'M', '冀'), + (0xFA76, 'M', '勇'), + (0xFA77, 'M', '勺'), + (0xFA78, 'M', '喝'), + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA7D, 'M', '墳'), + (0xFA7E, 'M', '奄'), + (0xFA7F, 'M', '奔'), + (0xFA80, 'M', '婢'), + (0xFA81, 'M', '嬨'), + (0xFA82, 'M', '廒'), + (0xFA83, 'M', '廙'), + (0xFA84, 'M', '彩'), + (0xFA85, 'M', '徭'), + (0xFA86, 'M', '惘'), + (0xFA87, 'M', '慎'), + (0xFA88, 'M', '愈'), + (0xFA89, 'M', '憎'), + (0xFA8A, 'M', '慠'), + (0xFA8B, 'M', '懲'), + (0xFA8C, 'M', '戴'), + (0xFA8D, 'M', '揄'), + (0xFA8E, 'M', '搜'), + (0xFA8F, 'M', '摒'), + (0xFA90, 'M', '敖'), + (0xFA91, 'M', '晴'), + (0xFA92, 'M', '朗'), + (0xFA93, 'M', '望'), + (0xFA94, 'M', '杖'), + (0xFA95, 'M', '歹'), + (0xFA96, 'M', '殺'), + (0xFA97, 'M', '流'), + (0xFA98, 'M', '滛'), + (0xFA99, 'M', '滋'), + (0xFA9A, 'M', '漢'), + (0xFA9B, 'M', '瀞'), + (0xFA9C, 'M', '煮'), + (0xFA9D, 'M', '瞧'), + (0xFA9E, 'M', '爵'), + (0xFA9F, 'M', '犯'), + (0xFAA0, 'M', '猪'), + (0xFAA1, 'M', '瑱'), + (0xFAA2, 'M', '甆'), + (0xFAA3, 'M', '画'), + (0xFAA4, 'M', '瘝'), + (0xFAA5, 'M', '瘟'), + (0xFAA6, 'M', '益'), + (0xFAA7, 'M', '盛'), + (0xFAA8, 'M', '直'), + (0xFAA9, 'M', '睊'), + (0xFAAA, 'M', '着'), + (0xFAAB, 'M', '磌'), + (0xFAAC, 'M', '窱'), + (0xFAAD, 'M', '節'), + (0xFAAE, 'M', '类'), + (0xFAAF, 'M', '絛'), + (0xFAB0, 'M', '練'), + (0xFAB1, 'M', '缾'), + (0xFAB2, 'M', '者'), + (0xFAB3, 'M', '荒'), + (0xFAB4, 'M', '華'), + (0xFAB5, 'M', '蝹'), + (0xFAB6, 'M', '襁'), + (0xFAB7, 'M', '覆'), + (0xFAB8, 'M', '視'), + (0xFAB9, 'M', '調'), + (0xFABA, 'M', '諸'), + (0xFABB, 'M', '請'), + (0xFABC, 'M', '謁'), + (0xFABD, 'M', '諾'), + (0xFABE, 'M', '諭'), + (0xFABF, 'M', '謹'), + (0xFAC0, 'M', '變'), + (0xFAC1, 'M', '贈'), + (0xFAC2, 'M', '輸'), + (0xFAC3, 'M', '遲'), + (0xFAC4, 'M', '醙'), + (0xFAC5, 'M', '鉶'), + (0xFAC6, 'M', '陼'), + (0xFAC7, 'M', '難'), + (0xFAC8, 'M', '靖'), + (0xFAC9, 'M', '韛'), + (0xFACA, 'M', '響'), + (0xFACB, 'M', '頋'), + (0xFACC, 'M', '頻'), + (0xFACD, 'M', '鬒'), + (0xFACE, 'M', '龜'), + (0xFACF, 'M', '𢡊'), + (0xFAD0, 'M', '𢡄'), + (0xFAD1, 'M', '𣏕'), + (0xFAD2, 'M', '㮝'), + (0xFAD3, 'M', '䀘'), + (0xFAD4, 'M', '䀹'), + (0xFAD5, 'M', '𥉉'), + (0xFAD6, 'M', '𥳐'), + (0xFAD7, 'M', '𧻓'), + (0xFAD8, 'M', '齃'), + (0xFAD9, 'M', '龎'), + (0xFADA, 'X'), + (0xFB00, 'M', 'ff'), + (0xFB01, 'M', 'fi'), + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB07, 'X'), + (0xFB13, 'M', 'մն'), + (0xFB14, 'M', 'մե'), + (0xFB15, 'M', 'մի'), + (0xFB16, 'M', 'վն'), + (0xFB17, 'M', 'մխ'), + (0xFB18, 'X'), + (0xFB1D, 'M', 'יִ'), + (0xFB1E, 'V'), + (0xFB1F, 'M', 'ײַ'), + (0xFB20, 'M', 'ע'), + (0xFB21, 'M', 'א'), + (0xFB22, 'M', 'ד'), + (0xFB23, 'M', 'ה'), + (0xFB24, 'M', 'כ'), + (0xFB25, 'M', 'ל'), + (0xFB26, 'M', 'ם'), + (0xFB27, 'M', 'ר'), + (0xFB28, 'M', 'ת'), + (0xFB29, '3', '+'), + (0xFB2A, 'M', 'שׁ'), + (0xFB2B, 'M', 'שׂ'), + (0xFB2C, 'M', 'שּׁ'), + (0xFB2D, 'M', 'שּׂ'), + (0xFB2E, 'M', 'אַ'), + (0xFB2F, 'M', 'אָ'), + (0xFB30, 'M', 'אּ'), + (0xFB31, 'M', 'בּ'), + (0xFB32, 'M', 'גּ'), + (0xFB33, 'M', 'דּ'), + (0xFB34, 'M', 'הּ'), + (0xFB35, 'M', 'וּ'), + (0xFB36, 'M', 'זּ'), + (0xFB37, 'X'), + (0xFB38, 'M', 'טּ'), + (0xFB39, 'M', 'יּ'), + (0xFB3A, 'M', 'ךּ'), + (0xFB3B, 'M', 'כּ'), + (0xFB3C, 'M', 'לּ'), + (0xFB3D, 'X'), + (0xFB3E, 'M', 'מּ'), + (0xFB3F, 'X'), + (0xFB40, 'M', 'נּ'), + (0xFB41, 'M', 'סּ'), + (0xFB42, 'X'), + (0xFB43, 'M', 'ףּ'), + (0xFB44, 'M', 'פּ'), + (0xFB45, 'X'), + (0xFB46, 'M', 'צּ'), + (0xFB47, 'M', 'קּ'), + (0xFB48, 'M', 'רּ'), + (0xFB49, 'M', 'שּ'), + (0xFB4A, 'M', 'תּ'), + (0xFB4B, 'M', 'וֹ'), + (0xFB4C, 'M', 'בֿ'), + (0xFB4D, 'M', 'כֿ'), + (0xFB4E, 'M', 'פֿ'), + (0xFB4F, 'M', 'אל'), + (0xFB50, 'M', 'ٱ'), + (0xFB52, 'M', 'ٻ'), + (0xFB56, 'M', 'پ'), + (0xFB5A, 'M', 'ڀ'), + (0xFB5E, 'M', 'ٺ'), + (0xFB62, 'M', 'ٿ'), + (0xFB66, 'M', 'ٹ'), + (0xFB6A, 'M', 'ڤ'), + (0xFB6E, 'M', 'ڦ'), + (0xFB72, 'M', 'ڄ'), + (0xFB76, 'M', 'ڃ'), + (0xFB7A, 'M', 'چ'), + (0xFB7E, 'M', 'ڇ'), + (0xFB82, 'M', 'ڍ'), + (0xFB84, 'M', 'ڌ'), + (0xFB86, 'M', 'ڎ'), + (0xFB88, 'M', 'ڈ'), + (0xFB8A, 'M', 'ژ'), + (0xFB8C, 'M', 'ڑ'), + (0xFB8E, 'M', 'ک'), + (0xFB92, 'M', 'گ'), + (0xFB96, 'M', 'ڳ'), + (0xFB9A, 'M', 'ڱ'), + (0xFB9E, 'M', 'ں'), + (0xFBA0, 'M', 'ڻ'), + (0xFBA4, 'M', 'ۀ'), + (0xFBA6, 'M', 'ہ'), + (0xFBAA, 'M', 'ھ'), + (0xFBAE, 'M', 'ے'), + (0xFBB0, 'M', 'ۓ'), + (0xFBB2, 'V'), + (0xFBC3, 'X'), + (0xFBD3, 'M', 'ڭ'), + (0xFBD7, 'M', 'ۇ'), + (0xFBD9, 'M', 'ۆ'), + (0xFBDB, 'M', 'ۈ'), + (0xFBDD, 'M', 'ۇٴ'), + (0xFBDE, 'M', 'ۋ'), + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBEA, 'M', 'ئا'), + (0xFBEC, 'M', 'ئە'), + (0xFBEE, 'M', 'ئو'), + (0xFBF0, 'M', 'ئۇ'), + (0xFBF2, 'M', 'ئۆ'), + (0xFBF4, 'M', 'ئۈ'), + (0xFBF6, 'M', 'ئې'), + (0xFBF9, 'M', 'ئى'), + (0xFBFC, 'M', 'ی'), + (0xFC00, 'M', 'ئج'), + (0xFC01, 'M', 'ئح'), + (0xFC02, 'M', 'ئم'), + (0xFC03, 'M', 'ئى'), + (0xFC04, 'M', 'ئي'), + (0xFC05, 'M', 'بج'), + (0xFC06, 'M', 'بح'), + (0xFC07, 'M', 'بخ'), + (0xFC08, 'M', 'بم'), + (0xFC09, 'M', 'بى'), + (0xFC0A, 'M', 'بي'), + (0xFC0B, 'M', 'تج'), + (0xFC0C, 'M', 'تح'), + (0xFC0D, 'M', 'تخ'), + (0xFC0E, 'M', 'تم'), + (0xFC0F, 'M', 'تى'), + (0xFC10, 'M', 'تي'), + (0xFC11, 'M', 'ثج'), + (0xFC12, 'M', 'ثم'), + (0xFC13, 'M', 'ثى'), + (0xFC14, 'M', 'ثي'), + (0xFC15, 'M', 'جح'), + (0xFC16, 'M', 'جم'), + (0xFC17, 'M', 'حج'), + (0xFC18, 'M', 'حم'), + (0xFC19, 'M', 'خج'), + (0xFC1A, 'M', 'خح'), + (0xFC1B, 'M', 'خم'), + (0xFC1C, 'M', 'سج'), + (0xFC1D, 'M', 'سح'), + (0xFC1E, 'M', 'سخ'), + (0xFC1F, 'M', 'سم'), + (0xFC20, 'M', 'صح'), + (0xFC21, 'M', 'صم'), + (0xFC22, 'M', 'ضج'), + (0xFC23, 'M', 'ضح'), + (0xFC24, 'M', 'ضخ'), + (0xFC25, 'M', 'ضم'), + (0xFC26, 'M', 'طح'), + (0xFC27, 'M', 'طم'), + (0xFC28, 'M', 'ظم'), + (0xFC29, 'M', 'عج'), + (0xFC2A, 'M', 'عم'), + (0xFC2B, 'M', 'غج'), + (0xFC2C, 'M', 'غم'), + (0xFC2D, 'M', 'فج'), + (0xFC2E, 'M', 'فح'), + (0xFC2F, 'M', 'فخ'), + (0xFC30, 'M', 'فم'), + (0xFC31, 'M', 'فى'), + (0xFC32, 'M', 'في'), + (0xFC33, 'M', 'قح'), + (0xFC34, 'M', 'قم'), + (0xFC35, 'M', 'قى'), + (0xFC36, 'M', 'قي'), + (0xFC37, 'M', 'كا'), + (0xFC38, 'M', 'كج'), + (0xFC39, 'M', 'كح'), + (0xFC3A, 'M', 'كخ'), + (0xFC3B, 'M', 'كل'), + (0xFC3C, 'M', 'كم'), + (0xFC3D, 'M', 'كى'), + (0xFC3E, 'M', 'كي'), + (0xFC3F, 'M', 'لج'), + (0xFC40, 'M', 'لح'), + (0xFC41, 'M', 'لخ'), + (0xFC42, 'M', 'لم'), + (0xFC43, 'M', 'لى'), + (0xFC44, 'M', 'لي'), + (0xFC45, 'M', 'مج'), + (0xFC46, 'M', 'مح'), + (0xFC47, 'M', 'مخ'), + (0xFC48, 'M', 'مم'), + (0xFC49, 'M', 'مى'), + (0xFC4A, 'M', 'مي'), + (0xFC4B, 'M', 'نج'), + (0xFC4C, 'M', 'نح'), + (0xFC4D, 'M', 'نخ'), + (0xFC4E, 'M', 'نم'), + (0xFC4F, 'M', 'نى'), + (0xFC50, 'M', 'ني'), + (0xFC51, 'M', 'هج'), + (0xFC52, 'M', 'هم'), + (0xFC53, 'M', 'هى'), + (0xFC54, 'M', 'هي'), + (0xFC55, 'M', 'يج'), + (0xFC56, 'M', 'يح'), + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC5B, 'M', 'ذٰ'), + (0xFC5C, 'M', 'رٰ'), + (0xFC5D, 'M', 'ىٰ'), + (0xFC5E, '3', ' ٌّ'), + (0xFC5F, '3', ' ٍّ'), + (0xFC60, '3', ' َّ'), + (0xFC61, '3', ' ُّ'), + (0xFC62, '3', ' ِّ'), + (0xFC63, '3', ' ّٰ'), + (0xFC64, 'M', 'ئر'), + (0xFC65, 'M', 'ئز'), + (0xFC66, 'M', 'ئم'), + (0xFC67, 'M', 'ئن'), + (0xFC68, 'M', 'ئى'), + (0xFC69, 'M', 'ئي'), + (0xFC6A, 'M', 'بر'), + (0xFC6B, 'M', 'بز'), + (0xFC6C, 'M', 'بم'), + (0xFC6D, 'M', 'بن'), + (0xFC6E, 'M', 'بى'), + (0xFC6F, 'M', 'بي'), + (0xFC70, 'M', 'تر'), + (0xFC71, 'M', 'تز'), + (0xFC72, 'M', 'تم'), + (0xFC73, 'M', 'تن'), + (0xFC74, 'M', 'تى'), + (0xFC75, 'M', 'تي'), + (0xFC76, 'M', 'ثر'), + (0xFC77, 'M', 'ثز'), + (0xFC78, 'M', 'ثم'), + (0xFC79, 'M', 'ثن'), + (0xFC7A, 'M', 'ثى'), + (0xFC7B, 'M', 'ثي'), + (0xFC7C, 'M', 'فى'), + (0xFC7D, 'M', 'في'), + (0xFC7E, 'M', 'قى'), + (0xFC7F, 'M', 'قي'), + (0xFC80, 'M', 'كا'), + (0xFC81, 'M', 'كل'), + (0xFC82, 'M', 'كم'), + (0xFC83, 'M', 'كى'), + (0xFC84, 'M', 'كي'), + (0xFC85, 'M', 'لم'), + (0xFC86, 'M', 'لى'), + (0xFC87, 'M', 'لي'), + (0xFC88, 'M', 'ما'), + (0xFC89, 'M', 'مم'), + (0xFC8A, 'M', 'نر'), + (0xFC8B, 'M', 'نز'), + (0xFC8C, 'M', 'نم'), + (0xFC8D, 'M', 'نن'), + (0xFC8E, 'M', 'نى'), + (0xFC8F, 'M', 'ني'), + (0xFC90, 'M', 'ىٰ'), + (0xFC91, 'M', 'ير'), + (0xFC92, 'M', 'يز'), + (0xFC93, 'M', 'يم'), + (0xFC94, 'M', 'ين'), + (0xFC95, 'M', 'يى'), + (0xFC96, 'M', 'يي'), + (0xFC97, 'M', 'ئج'), + (0xFC98, 'M', 'ئح'), + (0xFC99, 'M', 'ئخ'), + (0xFC9A, 'M', 'ئم'), + (0xFC9B, 'M', 'ئه'), + (0xFC9C, 'M', 'بج'), + (0xFC9D, 'M', 'بح'), + (0xFC9E, 'M', 'بخ'), + (0xFC9F, 'M', 'بم'), + (0xFCA0, 'M', 'به'), + (0xFCA1, 'M', 'تج'), + (0xFCA2, 'M', 'تح'), + (0xFCA3, 'M', 'تخ'), + (0xFCA4, 'M', 'تم'), + (0xFCA5, 'M', 'ته'), + (0xFCA6, 'M', 'ثم'), + (0xFCA7, 'M', 'جح'), + (0xFCA8, 'M', 'جم'), + (0xFCA9, 'M', 'حج'), + (0xFCAA, 'M', 'حم'), + (0xFCAB, 'M', 'خج'), + (0xFCAC, 'M', 'خم'), + (0xFCAD, 'M', 'سج'), + (0xFCAE, 'M', 'سح'), + (0xFCAF, 'M', 'سخ'), + (0xFCB0, 'M', 'سم'), + (0xFCB1, 'M', 'صح'), + (0xFCB2, 'M', 'صخ'), + (0xFCB3, 'M', 'صم'), + (0xFCB4, 'M', 'ضج'), + (0xFCB5, 'M', 'ضح'), + (0xFCB6, 'M', 'ضخ'), + (0xFCB7, 'M', 'ضم'), + (0xFCB8, 'M', 'طح'), + (0xFCB9, 'M', 'ظم'), + (0xFCBA, 'M', 'عج'), + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBF, 'M', 'فح'), + (0xFCC0, 'M', 'فخ'), + (0xFCC1, 'M', 'فم'), + (0xFCC2, 'M', 'قح'), + (0xFCC3, 'M', 'قم'), + (0xFCC4, 'M', 'كج'), + (0xFCC5, 'M', 'كح'), + (0xFCC6, 'M', 'كخ'), + (0xFCC7, 'M', 'كل'), + (0xFCC8, 'M', 'كم'), + (0xFCC9, 'M', 'لج'), + (0xFCCA, 'M', 'لح'), + (0xFCCB, 'M', 'لخ'), + (0xFCCC, 'M', 'لم'), + (0xFCCD, 'M', 'له'), + (0xFCCE, 'M', 'مج'), + (0xFCCF, 'M', 'مح'), + (0xFCD0, 'M', 'مخ'), + (0xFCD1, 'M', 'مم'), + (0xFCD2, 'M', 'نج'), + (0xFCD3, 'M', 'نح'), + (0xFCD4, 'M', 'نخ'), + (0xFCD5, 'M', 'نم'), + (0xFCD6, 'M', 'نه'), + (0xFCD7, 'M', 'هج'), + (0xFCD8, 'M', 'هم'), + (0xFCD9, 'M', 'هٰ'), + (0xFCDA, 'M', 'يج'), + (0xFCDB, 'M', 'يح'), + (0xFCDC, 'M', 'يخ'), + (0xFCDD, 'M', 'يم'), + (0xFCDE, 'M', 'يه'), + (0xFCDF, 'M', 'ئم'), + (0xFCE0, 'M', 'ئه'), + (0xFCE1, 'M', 'بم'), + (0xFCE2, 'M', 'به'), + (0xFCE3, 'M', 'تم'), + (0xFCE4, 'M', 'ته'), + (0xFCE5, 'M', 'ثم'), + (0xFCE6, 'M', 'ثه'), + (0xFCE7, 'M', 'سم'), + (0xFCE8, 'M', 'سه'), + (0xFCE9, 'M', 'شم'), + (0xFCEA, 'M', 'شه'), + (0xFCEB, 'M', 'كل'), + (0xFCEC, 'M', 'كم'), + (0xFCED, 'M', 'لم'), + (0xFCEE, 'M', 'نم'), + (0xFCEF, 'M', 'نه'), + (0xFCF0, 'M', 'يم'), + (0xFCF1, 'M', 'يه'), + (0xFCF2, 'M', 'ـَّ'), + (0xFCF3, 'M', 'ـُّ'), + (0xFCF4, 'M', 'ـِّ'), + (0xFCF5, 'M', 'طى'), + (0xFCF6, 'M', 'طي'), + (0xFCF7, 'M', 'عى'), + (0xFCF8, 'M', 'عي'), + (0xFCF9, 'M', 'غى'), + (0xFCFA, 'M', 'غي'), + (0xFCFB, 'M', 'سى'), + (0xFCFC, 'M', 'سي'), + (0xFCFD, 'M', 'شى'), + (0xFCFE, 'M', 'شي'), + (0xFCFF, 'M', 'حى'), + (0xFD00, 'M', 'حي'), + (0xFD01, 'M', 'جى'), + (0xFD02, 'M', 'جي'), + (0xFD03, 'M', 'خى'), + (0xFD04, 'M', 'خي'), + (0xFD05, 'M', 'صى'), + (0xFD06, 'M', 'صي'), + (0xFD07, 'M', 'ضى'), + (0xFD08, 'M', 'ضي'), + (0xFD09, 'M', 'شج'), + (0xFD0A, 'M', 'شح'), + (0xFD0B, 'M', 'شخ'), + (0xFD0C, 'M', 'شم'), + (0xFD0D, 'M', 'شر'), + (0xFD0E, 'M', 'سر'), + (0xFD0F, 'M', 'صر'), + (0xFD10, 'M', 'ضر'), + (0xFD11, 'M', 'طى'), + (0xFD12, 'M', 'طي'), + (0xFD13, 'M', 'عى'), + (0xFD14, 'M', 'عي'), + (0xFD15, 'M', 'غى'), + (0xFD16, 'M', 'غي'), + (0xFD17, 'M', 'سى'), + (0xFD18, 'M', 'سي'), + (0xFD19, 'M', 'شى'), + (0xFD1A, 'M', 'شي'), + (0xFD1B, 'M', 'حى'), + (0xFD1C, 'M', 'حي'), + (0xFD1D, 'M', 'جى'), + (0xFD1E, 'M', 'جي'), + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD23, 'M', 'ضى'), + (0xFD24, 'M', 'ضي'), + (0xFD25, 'M', 'شج'), + (0xFD26, 'M', 'شح'), + (0xFD27, 'M', 'شخ'), + (0xFD28, 'M', 'شم'), + (0xFD29, 'M', 'شر'), + (0xFD2A, 'M', 'سر'), + (0xFD2B, 'M', 'صر'), + (0xFD2C, 'M', 'ضر'), + (0xFD2D, 'M', 'شج'), + (0xFD2E, 'M', 'شح'), + (0xFD2F, 'M', 'شخ'), + (0xFD30, 'M', 'شم'), + (0xFD31, 'M', 'سه'), + (0xFD32, 'M', 'شه'), + (0xFD33, 'M', 'طم'), + (0xFD34, 'M', 'سج'), + (0xFD35, 'M', 'سح'), + (0xFD36, 'M', 'سخ'), + (0xFD37, 'M', 'شج'), + (0xFD38, 'M', 'شح'), + (0xFD39, 'M', 'شخ'), + (0xFD3A, 'M', 'طم'), + (0xFD3B, 'M', 'ظم'), + (0xFD3C, 'M', 'اً'), + (0xFD3E, 'V'), + (0xFD50, 'M', 'تجم'), + (0xFD51, 'M', 'تحج'), + (0xFD53, 'M', 'تحم'), + (0xFD54, 'M', 'تخم'), + (0xFD55, 'M', 'تمج'), + (0xFD56, 'M', 'تمح'), + (0xFD57, 'M', 'تمخ'), + (0xFD58, 'M', 'جمح'), + (0xFD5A, 'M', 'حمي'), + (0xFD5B, 'M', 'حمى'), + (0xFD5C, 'M', 'سحج'), + (0xFD5D, 'M', 'سجح'), + (0xFD5E, 'M', 'سجى'), + (0xFD5F, 'M', 'سمح'), + (0xFD61, 'M', 'سمج'), + (0xFD62, 'M', 'سمم'), + (0xFD64, 'M', 'صحح'), + (0xFD66, 'M', 'صمم'), + (0xFD67, 'M', 'شحم'), + (0xFD69, 'M', 'شجي'), + (0xFD6A, 'M', 'شمخ'), + (0xFD6C, 'M', 'شمم'), + (0xFD6E, 'M', 'ضحى'), + (0xFD6F, 'M', 'ضخم'), + (0xFD71, 'M', 'طمح'), + (0xFD73, 'M', 'طمم'), + (0xFD74, 'M', 'طمي'), + (0xFD75, 'M', 'عجم'), + (0xFD76, 'M', 'عمم'), + (0xFD78, 'M', 'عمى'), + (0xFD79, 'M', 'غمم'), + (0xFD7A, 'M', 'غمي'), + (0xFD7B, 'M', 'غمى'), + (0xFD7C, 'M', 'فخم'), + (0xFD7E, 'M', 'قمح'), + (0xFD7F, 'M', 'قمم'), + (0xFD80, 'M', 'لحم'), + (0xFD81, 'M', 'لحي'), + (0xFD82, 'M', 'لحى'), + (0xFD83, 'M', 'لجج'), + (0xFD85, 'M', 'لخم'), + (0xFD87, 'M', 'لمح'), + (0xFD89, 'M', 'محج'), + (0xFD8A, 'M', 'محم'), + (0xFD8B, 'M', 'محي'), + (0xFD8C, 'M', 'مجح'), + (0xFD8D, 'M', 'مجم'), + (0xFD8E, 'M', 'مخج'), + (0xFD8F, 'M', 'مخم'), + (0xFD90, 'X'), + (0xFD92, 'M', 'مجخ'), + (0xFD93, 'M', 'همج'), + (0xFD94, 'M', 'همم'), + (0xFD95, 'M', 'نحم'), + (0xFD96, 'M', 'نحى'), + (0xFD97, 'M', 'نجم'), + (0xFD99, 'M', 'نجى'), + (0xFD9A, 'M', 'نمي'), + (0xFD9B, 'M', 'نمى'), + (0xFD9C, 'M', 'يمم'), + (0xFD9E, 'M', 'بخي'), + (0xFD9F, 'M', 'تجي'), + (0xFDA0, 'M', 'تجى'), + (0xFDA1, 'M', 'تخي'), + (0xFDA2, 'M', 'تخى'), + (0xFDA3, 'M', 'تمي'), + (0xFDA4, 'M', 'تمى'), + (0xFDA5, 'M', 'جمي'), + (0xFDA6, 'M', 'جحى'), + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDAB, 'M', 'ضحي'), + (0xFDAC, 'M', 'لجي'), + (0xFDAD, 'M', 'لمي'), + (0xFDAE, 'M', 'يحي'), + (0xFDAF, 'M', 'يجي'), + (0xFDB0, 'M', 'يمي'), + (0xFDB1, 'M', 'ممي'), + (0xFDB2, 'M', 'قمي'), + (0xFDB3, 'M', 'نحي'), + (0xFDB4, 'M', 'قمح'), + (0xFDB5, 'M', 'لحم'), + (0xFDB6, 'M', 'عمي'), + (0xFDB7, 'M', 'كمي'), + (0xFDB8, 'M', 'نجح'), + (0xFDB9, 'M', 'مخي'), + (0xFDBA, 'M', 'لجم'), + (0xFDBB, 'M', 'كمم'), + (0xFDBC, 'M', 'لجم'), + (0xFDBD, 'M', 'نجح'), + (0xFDBE, 'M', 'جحي'), + (0xFDBF, 'M', 'حجي'), + (0xFDC0, 'M', 'مجي'), + (0xFDC1, 'M', 'فمي'), + (0xFDC2, 'M', 'بحي'), + (0xFDC3, 'M', 'كمم'), + (0xFDC4, 'M', 'عجم'), + (0xFDC5, 'M', 'صمم'), + (0xFDC6, 'M', 'سخي'), + (0xFDC7, 'M', 'نجي'), + (0xFDC8, 'X'), + (0xFDCF, 'V'), + (0xFDD0, 'X'), + (0xFDF0, 'M', 'صلے'), + (0xFDF1, 'M', 'قلے'), + (0xFDF2, 'M', 'الله'), + (0xFDF3, 'M', 'اكبر'), + (0xFDF4, 'M', 'محمد'), + (0xFDF5, 'M', 'صلعم'), + (0xFDF6, 'M', 'رسول'), + (0xFDF7, 'M', 'عليه'), + (0xFDF8, 'M', 'وسلم'), + (0xFDF9, 'M', 'صلى'), + (0xFDFA, '3', 'صلى الله عليه وسلم'), + (0xFDFB, '3', 'جل جلاله'), + (0xFDFC, 'M', 'ریال'), + (0xFDFD, 'V'), + (0xFE00, 'I'), + (0xFE10, '3', ','), + (0xFE11, 'M', '、'), + (0xFE12, 'X'), + (0xFE13, '3', ':'), + (0xFE14, '3', ';'), + (0xFE15, '3', '!'), + (0xFE16, '3', '?'), + (0xFE17, 'M', '〖'), + (0xFE18, 'M', '〗'), + (0xFE19, 'X'), + (0xFE20, 'V'), + (0xFE30, 'X'), + (0xFE31, 'M', '—'), + (0xFE32, 'M', '–'), + (0xFE33, '3', '_'), + (0xFE35, '3', '('), + (0xFE36, '3', ')'), + (0xFE37, '3', '{'), + (0xFE38, '3', '}'), + (0xFE39, 'M', '〔'), + (0xFE3A, 'M', '〕'), + (0xFE3B, 'M', '【'), + (0xFE3C, 'M', '】'), + (0xFE3D, 'M', '《'), + (0xFE3E, 'M', '》'), + (0xFE3F, 'M', '〈'), + (0xFE40, 'M', '〉'), + (0xFE41, 'M', '「'), + (0xFE42, 'M', '」'), + (0xFE43, 'M', '『'), + (0xFE44, 'M', '』'), + (0xFE45, 'V'), + (0xFE47, '3', '['), + (0xFE48, '3', ']'), + (0xFE49, '3', ' ̅'), + (0xFE4D, '3', '_'), + (0xFE50, '3', ','), + (0xFE51, 'M', '、'), + (0xFE52, 'X'), + (0xFE54, '3', ';'), + (0xFE55, '3', ':'), + (0xFE56, '3', '?'), + (0xFE57, '3', '!'), + (0xFE58, 'M', '—'), + (0xFE59, '3', '('), + (0xFE5A, '3', ')'), + (0xFE5B, '3', '{'), + (0xFE5C, '3', '}'), + (0xFE5D, 'M', '〔'), + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE62, '3', '+'), + (0xFE63, 'M', '-'), + (0xFE64, '3', '<'), + (0xFE65, '3', '>'), + (0xFE66, '3', '='), + (0xFE67, 'X'), + (0xFE68, '3', '\\'), + (0xFE69, '3', '$'), + (0xFE6A, '3', '%'), + (0xFE6B, '3', '@'), + (0xFE6C, 'X'), + (0xFE70, '3', ' ً'), + (0xFE71, 'M', 'ـً'), + (0xFE72, '3', ' ٌ'), + (0xFE73, 'V'), + (0xFE74, '3', ' ٍ'), + (0xFE75, 'X'), + (0xFE76, '3', ' َ'), + (0xFE77, 'M', 'ـَ'), + (0xFE78, '3', ' ُ'), + (0xFE79, 'M', 'ـُ'), + (0xFE7A, '3', ' ِ'), + (0xFE7B, 'M', 'ـِ'), + (0xFE7C, '3', ' ّ'), + (0xFE7D, 'M', 'ـّ'), + (0xFE7E, '3', ' ْ'), + (0xFE7F, 'M', 'ـْ'), + (0xFE80, 'M', 'ء'), + (0xFE81, 'M', 'آ'), + (0xFE83, 'M', 'أ'), + (0xFE85, 'M', 'ؤ'), + (0xFE87, 'M', 'إ'), + (0xFE89, 'M', 'ئ'), + (0xFE8D, 'M', 'ا'), + (0xFE8F, 'M', 'ب'), + (0xFE93, 'M', 'ة'), + (0xFE95, 'M', 'ت'), + (0xFE99, 'M', 'ث'), + (0xFE9D, 'M', 'ج'), + (0xFEA1, 'M', 'ح'), + (0xFEA5, 'M', 'خ'), + (0xFEA9, 'M', 'د'), + (0xFEAB, 'M', 'ذ'), + (0xFEAD, 'M', 'ر'), + (0xFEAF, 'M', 'ز'), + (0xFEB1, 'M', 'س'), + (0xFEB5, 'M', 'ش'), + (0xFEB9, 'M', 'ص'), + (0xFEBD, 'M', 'ض'), + (0xFEC1, 'M', 'ط'), + (0xFEC5, 'M', 'ظ'), + (0xFEC9, 'M', 'ع'), + (0xFECD, 'M', 'غ'), + (0xFED1, 'M', 'ف'), + (0xFED5, 'M', 'ق'), + (0xFED9, 'M', 'ك'), + (0xFEDD, 'M', 'ل'), + (0xFEE1, 'M', 'م'), + (0xFEE5, 'M', 'ن'), + (0xFEE9, 'M', 'ه'), + (0xFEED, 'M', 'و'), + (0xFEEF, 'M', 'ى'), + (0xFEF1, 'M', 'ي'), + (0xFEF5, 'M', 'لآ'), + (0xFEF7, 'M', 'لأ'), + (0xFEF9, 'M', 'لإ'), + (0xFEFB, 'M', 'لا'), + (0xFEFD, 'X'), + (0xFEFF, 'I'), + (0xFF00, 'X'), + (0xFF01, '3', '!'), + (0xFF02, '3', '"'), + (0xFF03, '3', '#'), + (0xFF04, '3', '$'), + (0xFF05, '3', '%'), + (0xFF06, '3', '&'), + (0xFF07, '3', '\''), + (0xFF08, '3', '('), + (0xFF09, '3', ')'), + (0xFF0A, '3', '*'), + (0xFF0B, '3', '+'), + (0xFF0C, '3', ','), + (0xFF0D, 'M', '-'), + (0xFF0E, 'M', '.'), + (0xFF0F, '3', '/'), + (0xFF10, 'M', '0'), + (0xFF11, 'M', '1'), + (0xFF12, 'M', '2'), + (0xFF13, 'M', '3'), + (0xFF14, 'M', '4'), + (0xFF15, 'M', '5'), + (0xFF16, 'M', '6'), + (0xFF17, 'M', '7'), + (0xFF18, 'M', '8'), + (0xFF19, 'M', '9'), + (0xFF1A, '3', ':'), + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1F, '3', '?'), + (0xFF20, '3', '@'), + (0xFF21, 'M', 'a'), + (0xFF22, 'M', 'b'), + (0xFF23, 'M', 'c'), + (0xFF24, 'M', 'd'), + (0xFF25, 'M', 'e'), + (0xFF26, 'M', 'f'), + (0xFF27, 'M', 'g'), + (0xFF28, 'M', 'h'), + (0xFF29, 'M', 'i'), + (0xFF2A, 'M', 'j'), + (0xFF2B, 'M', 'k'), + (0xFF2C, 'M', 'l'), + (0xFF2D, 'M', 'm'), + (0xFF2E, 'M', 'n'), + (0xFF2F, 'M', 'o'), + (0xFF30, 'M', 'p'), + (0xFF31, 'M', 'q'), + (0xFF32, 'M', 'r'), + (0xFF33, 'M', 's'), + (0xFF34, 'M', 't'), + (0xFF35, 'M', 'u'), + (0xFF36, 'M', 'v'), + (0xFF37, 'M', 'w'), + (0xFF38, 'M', 'x'), + (0xFF39, 'M', 'y'), + (0xFF3A, 'M', 'z'), + (0xFF3B, '3', '['), + (0xFF3C, '3', '\\'), + (0xFF3D, '3', ']'), + (0xFF3E, '3', '^'), + (0xFF3F, '3', '_'), + (0xFF40, '3', '`'), + (0xFF41, 'M', 'a'), + (0xFF42, 'M', 'b'), + (0xFF43, 'M', 'c'), + (0xFF44, 'M', 'd'), + (0xFF45, 'M', 'e'), + (0xFF46, 'M', 'f'), + (0xFF47, 'M', 'g'), + (0xFF48, 'M', 'h'), + (0xFF49, 'M', 'i'), + (0xFF4A, 'M', 'j'), + (0xFF4B, 'M', 'k'), + (0xFF4C, 'M', 'l'), + (0xFF4D, 'M', 'm'), + (0xFF4E, 'M', 'n'), + (0xFF4F, 'M', 'o'), + (0xFF50, 'M', 'p'), + (0xFF51, 'M', 'q'), + (0xFF52, 'M', 'r'), + (0xFF53, 'M', 's'), + (0xFF54, 'M', 't'), + (0xFF55, 'M', 'u'), + (0xFF56, 'M', 'v'), + (0xFF57, 'M', 'w'), + (0xFF58, 'M', 'x'), + (0xFF59, 'M', 'y'), + (0xFF5A, 'M', 'z'), + (0xFF5B, '3', '{'), + (0xFF5C, '3', '|'), + (0xFF5D, '3', '}'), + (0xFF5E, '3', '~'), + (0xFF5F, 'M', '⦅'), + (0xFF60, 'M', '⦆'), + (0xFF61, 'M', '.'), + (0xFF62, 'M', '「'), + (0xFF63, 'M', '」'), + (0xFF64, 'M', '、'), + (0xFF65, 'M', '・'), + (0xFF66, 'M', 'ヲ'), + (0xFF67, 'M', 'ァ'), + (0xFF68, 'M', 'ィ'), + (0xFF69, 'M', 'ゥ'), + (0xFF6A, 'M', 'ェ'), + (0xFF6B, 'M', 'ォ'), + (0xFF6C, 'M', 'ャ'), + (0xFF6D, 'M', 'ュ'), + (0xFF6E, 'M', 'ョ'), + (0xFF6F, 'M', 'ッ'), + (0xFF70, 'M', 'ー'), + (0xFF71, 'M', 'ア'), + (0xFF72, 'M', 'イ'), + (0xFF73, 'M', 'ウ'), + (0xFF74, 'M', 'エ'), + (0xFF75, 'M', 'オ'), + (0xFF76, 'M', 'カ'), + (0xFF77, 'M', 'キ'), + (0xFF78, 'M', 'ク'), + (0xFF79, 'M', 'ケ'), + (0xFF7A, 'M', 'コ'), + (0xFF7B, 'M', 'サ'), + (0xFF7C, 'M', 'シ'), + (0xFF7D, 'M', 'ス'), + (0xFF7E, 'M', 'セ'), + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF83, 'M', 'テ'), + (0xFF84, 'M', 'ト'), + (0xFF85, 'M', 'ナ'), + (0xFF86, 'M', 'ニ'), + (0xFF87, 'M', 'ヌ'), + (0xFF88, 'M', 'ネ'), + (0xFF89, 'M', 'ノ'), + (0xFF8A, 'M', 'ハ'), + (0xFF8B, 'M', 'ヒ'), + (0xFF8C, 'M', 'フ'), + (0xFF8D, 'M', 'ヘ'), + (0xFF8E, 'M', 'ホ'), + (0xFF8F, 'M', 'マ'), + (0xFF90, 'M', 'ミ'), + (0xFF91, 'M', 'ム'), + (0xFF92, 'M', 'メ'), + (0xFF93, 'M', 'モ'), + (0xFF94, 'M', 'ヤ'), + (0xFF95, 'M', 'ユ'), + (0xFF96, 'M', 'ヨ'), + (0xFF97, 'M', 'ラ'), + (0xFF98, 'M', 'リ'), + (0xFF99, 'M', 'ル'), + (0xFF9A, 'M', 'レ'), + (0xFF9B, 'M', 'ロ'), + (0xFF9C, 'M', 'ワ'), + (0xFF9D, 'M', 'ン'), + (0xFF9E, 'M', '゙'), + (0xFF9F, 'M', '゚'), + (0xFFA0, 'X'), + (0xFFA1, 'M', 'ᄀ'), + (0xFFA2, 'M', 'ᄁ'), + (0xFFA3, 'M', 'ᆪ'), + (0xFFA4, 'M', 'ᄂ'), + (0xFFA5, 'M', 'ᆬ'), + (0xFFA6, 'M', 'ᆭ'), + (0xFFA7, 'M', 'ᄃ'), + (0xFFA8, 'M', 'ᄄ'), + (0xFFA9, 'M', 'ᄅ'), + (0xFFAA, 'M', 'ᆰ'), + (0xFFAB, 'M', 'ᆱ'), + (0xFFAC, 'M', 'ᆲ'), + (0xFFAD, 'M', 'ᆳ'), + (0xFFAE, 'M', 'ᆴ'), + (0xFFAF, 'M', 'ᆵ'), + (0xFFB0, 'M', 'ᄚ'), + (0xFFB1, 'M', 'ᄆ'), + (0xFFB2, 'M', 'ᄇ'), + (0xFFB3, 'M', 'ᄈ'), + (0xFFB4, 'M', 'ᄡ'), + (0xFFB5, 'M', 'ᄉ'), + (0xFFB6, 'M', 'ᄊ'), + (0xFFB7, 'M', 'ᄋ'), + (0xFFB8, 'M', 'ᄌ'), + (0xFFB9, 'M', 'ᄍ'), + (0xFFBA, 'M', 'ᄎ'), + (0xFFBB, 'M', 'ᄏ'), + (0xFFBC, 'M', 'ᄐ'), + (0xFFBD, 'M', 'ᄑ'), + (0xFFBE, 'M', 'ᄒ'), + (0xFFBF, 'X'), + (0xFFC2, 'M', 'ᅡ'), + (0xFFC3, 'M', 'ᅢ'), + (0xFFC4, 'M', 'ᅣ'), + (0xFFC5, 'M', 'ᅤ'), + (0xFFC6, 'M', 'ᅥ'), + (0xFFC7, 'M', 'ᅦ'), + (0xFFC8, 'X'), + (0xFFCA, 'M', 'ᅧ'), + (0xFFCB, 'M', 'ᅨ'), + (0xFFCC, 'M', 'ᅩ'), + (0xFFCD, 'M', 'ᅪ'), + (0xFFCE, 'M', 'ᅫ'), + (0xFFCF, 'M', 'ᅬ'), + (0xFFD0, 'X'), + (0xFFD2, 'M', 'ᅭ'), + (0xFFD3, 'M', 'ᅮ'), + (0xFFD4, 'M', 'ᅯ'), + (0xFFD5, 'M', 'ᅰ'), + (0xFFD6, 'M', 'ᅱ'), + (0xFFD7, 'M', 'ᅲ'), + (0xFFD8, 'X'), + (0xFFDA, 'M', 'ᅳ'), + (0xFFDB, 'M', 'ᅴ'), + (0xFFDC, 'M', 'ᅵ'), + (0xFFDD, 'X'), + (0xFFE0, 'M', '¢'), + (0xFFE1, 'M', '£'), + (0xFFE2, 'M', '¬'), + (0xFFE3, '3', ' ̄'), + (0xFFE4, 'M', '¦'), + (0xFFE5, 'M', '¥'), + (0xFFE6, 'M', '₩'), + (0xFFE7, 'X'), + (0xFFE8, 'M', '│'), + (0xFFE9, 'M', '←'), + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEE, 'M', '○'), + (0xFFEF, 'X'), + (0x10000, 'V'), + (0x1000C, 'X'), + (0x1000D, 'V'), + (0x10027, 'X'), + (0x10028, 'V'), + (0x1003B, 'X'), + (0x1003C, 'V'), + (0x1003E, 'X'), + (0x1003F, 'V'), + (0x1004E, 'X'), + (0x10050, 'V'), + (0x1005E, 'X'), + (0x10080, 'V'), + (0x100FB, 'X'), + (0x10100, 'V'), + (0x10103, 'X'), + (0x10107, 'V'), + (0x10134, 'X'), + (0x10137, 'V'), + (0x1018F, 'X'), + (0x10190, 'V'), + (0x1019D, 'X'), + (0x101A0, 'V'), + (0x101A1, 'X'), + (0x101D0, 'V'), + (0x101FE, 'X'), + (0x10280, 'V'), + (0x1029D, 'X'), + (0x102A0, 'V'), + (0x102D1, 'X'), + (0x102E0, 'V'), + (0x102FC, 'X'), + (0x10300, 'V'), + (0x10324, 'X'), + (0x1032D, 'V'), + (0x1034B, 'X'), + (0x10350, 'V'), + (0x1037B, 'X'), + (0x10380, 'V'), + (0x1039E, 'X'), + (0x1039F, 'V'), + (0x103C4, 'X'), + (0x103C8, 'V'), + (0x103D6, 'X'), + (0x10400, 'M', '𐐨'), + (0x10401, 'M', '𐐩'), + (0x10402, 'M', '𐐪'), + (0x10403, 'M', '𐐫'), + (0x10404, 'M', '𐐬'), + (0x10405, 'M', '𐐭'), + (0x10406, 'M', '𐐮'), + (0x10407, 'M', '𐐯'), + (0x10408, 'M', '𐐰'), + (0x10409, 'M', '𐐱'), + (0x1040A, 'M', '𐐲'), + (0x1040B, 'M', '𐐳'), + (0x1040C, 'M', '𐐴'), + (0x1040D, 'M', '𐐵'), + (0x1040E, 'M', '𐐶'), + (0x1040F, 'M', '𐐷'), + (0x10410, 'M', '𐐸'), + (0x10411, 'M', '𐐹'), + (0x10412, 'M', '𐐺'), + (0x10413, 'M', '𐐻'), + (0x10414, 'M', '𐐼'), + (0x10415, 'M', '𐐽'), + (0x10416, 'M', '𐐾'), + (0x10417, 'M', '𐐿'), + (0x10418, 'M', '𐑀'), + (0x10419, 'M', '𐑁'), + (0x1041A, 'M', '𐑂'), + (0x1041B, 'M', '𐑃'), + (0x1041C, 'M', '𐑄'), + (0x1041D, 'M', '𐑅'), + (0x1041E, 'M', '𐑆'), + (0x1041F, 'M', '𐑇'), + (0x10420, 'M', '𐑈'), + (0x10421, 'M', '𐑉'), + (0x10422, 'M', '𐑊'), + (0x10423, 'M', '𐑋'), + (0x10424, 'M', '𐑌'), + (0x10425, 'M', '𐑍'), + (0x10426, 'M', '𐑎'), + (0x10427, 'M', '𐑏'), + (0x10428, 'V'), + (0x1049E, 'X'), + (0x104A0, 'V'), + (0x104AA, 'X'), + (0x104B0, 'M', '𐓘'), + (0x104B1, 'M', '𐓙'), + (0x104B2, 'M', '𐓚'), + (0x104B3, 'M', '𐓛'), + (0x104B4, 'M', '𐓜'), + (0x104B5, 'M', '𐓝'), + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104BA, 'M', '𐓢'), + (0x104BB, 'M', '𐓣'), + (0x104BC, 'M', '𐓤'), + (0x104BD, 'M', '𐓥'), + (0x104BE, 'M', '𐓦'), + (0x104BF, 'M', '𐓧'), + (0x104C0, 'M', '𐓨'), + (0x104C1, 'M', '𐓩'), + (0x104C2, 'M', '𐓪'), + (0x104C3, 'M', '𐓫'), + (0x104C4, 'M', '𐓬'), + (0x104C5, 'M', '𐓭'), + (0x104C6, 'M', '𐓮'), + (0x104C7, 'M', '𐓯'), + (0x104C8, 'M', '𐓰'), + (0x104C9, 'M', '𐓱'), + (0x104CA, 'M', '𐓲'), + (0x104CB, 'M', '𐓳'), + (0x104CC, 'M', '𐓴'), + (0x104CD, 'M', '𐓵'), + (0x104CE, 'M', '𐓶'), + (0x104CF, 'M', '𐓷'), + (0x104D0, 'M', '𐓸'), + (0x104D1, 'M', '𐓹'), + (0x104D2, 'M', '𐓺'), + (0x104D3, 'M', '𐓻'), + (0x104D4, 'X'), + (0x104D8, 'V'), + (0x104FC, 'X'), + (0x10500, 'V'), + (0x10528, 'X'), + (0x10530, 'V'), + (0x10564, 'X'), + (0x1056F, 'V'), + (0x10570, 'M', '𐖗'), + (0x10571, 'M', '𐖘'), + (0x10572, 'M', '𐖙'), + (0x10573, 'M', '𐖚'), + (0x10574, 'M', '𐖛'), + (0x10575, 'M', '𐖜'), + (0x10576, 'M', '𐖝'), + (0x10577, 'M', '𐖞'), + (0x10578, 'M', '𐖟'), + (0x10579, 'M', '𐖠'), + (0x1057A, 'M', '𐖡'), + (0x1057B, 'X'), + (0x1057C, 'M', '𐖣'), + (0x1057D, 'M', '𐖤'), + (0x1057E, 'M', '𐖥'), + (0x1057F, 'M', '𐖦'), + (0x10580, 'M', '𐖧'), + (0x10581, 'M', '𐖨'), + (0x10582, 'M', '𐖩'), + (0x10583, 'M', '𐖪'), + (0x10584, 'M', '𐖫'), + (0x10585, 'M', '𐖬'), + (0x10586, 'M', '𐖭'), + (0x10587, 'M', '𐖮'), + (0x10588, 'M', '𐖯'), + (0x10589, 'M', '𐖰'), + (0x1058A, 'M', '𐖱'), + (0x1058B, 'X'), + (0x1058C, 'M', '𐖳'), + (0x1058D, 'M', '𐖴'), + (0x1058E, 'M', '𐖵'), + (0x1058F, 'M', '𐖶'), + (0x10590, 'M', '𐖷'), + (0x10591, 'M', '𐖸'), + (0x10592, 'M', '𐖹'), + (0x10593, 'X'), + (0x10594, 'M', '𐖻'), + (0x10595, 'M', '𐖼'), + (0x10596, 'X'), + (0x10597, 'V'), + (0x105A2, 'X'), + (0x105A3, 'V'), + (0x105B2, 'X'), + (0x105B3, 'V'), + (0x105BA, 'X'), + (0x105BB, 'V'), + (0x105BD, 'X'), + (0x10600, 'V'), + (0x10737, 'X'), + (0x10740, 'V'), + (0x10756, 'X'), + (0x10760, 'V'), + (0x10768, 'X'), + (0x10780, 'V'), + (0x10781, 'M', 'ː'), + (0x10782, 'M', 'ˑ'), + (0x10783, 'M', 'æ'), + (0x10784, 'M', 'ʙ'), + (0x10785, 'M', 'ɓ'), + (0x10786, 'X'), + (0x10787, 'M', 'ʣ'), + (0x10788, 'M', 'ꭦ'), + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1078D, 'M', 'ᶑ'), + (0x1078E, 'M', 'ɘ'), + (0x1078F, 'M', 'ɞ'), + (0x10790, 'M', 'ʩ'), + (0x10791, 'M', 'ɤ'), + (0x10792, 'M', 'ɢ'), + (0x10793, 'M', 'ɠ'), + (0x10794, 'M', 'ʛ'), + (0x10795, 'M', 'ħ'), + (0x10796, 'M', 'ʜ'), + (0x10797, 'M', 'ɧ'), + (0x10798, 'M', 'ʄ'), + (0x10799, 'M', 'ʪ'), + (0x1079A, 'M', 'ʫ'), + (0x1079B, 'M', 'ɬ'), + (0x1079C, 'M', '𝼄'), + (0x1079D, 'M', 'ꞎ'), + (0x1079E, 'M', 'ɮ'), + (0x1079F, 'M', '𝼅'), + (0x107A0, 'M', 'ʎ'), + (0x107A1, 'M', '𝼆'), + (0x107A2, 'M', 'ø'), + (0x107A3, 'M', 'ɶ'), + (0x107A4, 'M', 'ɷ'), + (0x107A5, 'M', 'q'), + (0x107A6, 'M', 'ɺ'), + (0x107A7, 'M', '𝼈'), + (0x107A8, 'M', 'ɽ'), + (0x107A9, 'M', 'ɾ'), + (0x107AA, 'M', 'ʀ'), + (0x107AB, 'M', 'ʨ'), + (0x107AC, 'M', 'ʦ'), + (0x107AD, 'M', 'ꭧ'), + (0x107AE, 'M', 'ʧ'), + (0x107AF, 'M', 'ʈ'), + (0x107B0, 'M', 'ⱱ'), + (0x107B1, 'X'), + (0x107B2, 'M', 'ʏ'), + (0x107B3, 'M', 'ʡ'), + (0x107B4, 'M', 'ʢ'), + (0x107B5, 'M', 'ʘ'), + (0x107B6, 'M', 'ǀ'), + (0x107B7, 'M', 'ǁ'), + (0x107B8, 'M', 'ǂ'), + (0x107B9, 'M', '𝼊'), + (0x107BA, 'M', '𝼞'), + (0x107BB, 'X'), + (0x10800, 'V'), + (0x10806, 'X'), + (0x10808, 'V'), + (0x10809, 'X'), + (0x1080A, 'V'), + (0x10836, 'X'), + (0x10837, 'V'), + (0x10839, 'X'), + (0x1083C, 'V'), + (0x1083D, 'X'), + (0x1083F, 'V'), + (0x10856, 'X'), + (0x10857, 'V'), + (0x1089F, 'X'), + (0x108A7, 'V'), + (0x108B0, 'X'), + (0x108E0, 'V'), + (0x108F3, 'X'), + (0x108F4, 'V'), + (0x108F6, 'X'), + (0x108FB, 'V'), + (0x1091C, 'X'), + (0x1091F, 'V'), + (0x1093A, 'X'), + (0x1093F, 'V'), + (0x10940, 'X'), + (0x10980, 'V'), + (0x109B8, 'X'), + (0x109BC, 'V'), + (0x109D0, 'X'), + (0x109D2, 'V'), + (0x10A04, 'X'), + (0x10A05, 'V'), + (0x10A07, 'X'), + (0x10A0C, 'V'), + (0x10A14, 'X'), + (0x10A15, 'V'), + (0x10A18, 'X'), + (0x10A19, 'V'), + (0x10A36, 'X'), + (0x10A38, 'V'), + (0x10A3B, 'X'), + (0x10A3F, 'V'), + (0x10A49, 'X'), + (0x10A50, 'V'), + (0x10A59, 'X'), + (0x10A60, 'V'), + (0x10AA0, 'X'), + (0x10AC0, 'V'), + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10B36, 'X'), + (0x10B39, 'V'), + (0x10B56, 'X'), + (0x10B58, 'V'), + (0x10B73, 'X'), + (0x10B78, 'V'), + (0x10B92, 'X'), + (0x10B99, 'V'), + (0x10B9D, 'X'), + (0x10BA9, 'V'), + (0x10BB0, 'X'), + (0x10C00, 'V'), + (0x10C49, 'X'), + (0x10C80, 'M', '𐳀'), + (0x10C81, 'M', '𐳁'), + (0x10C82, 'M', '𐳂'), + (0x10C83, 'M', '𐳃'), + (0x10C84, 'M', '𐳄'), + (0x10C85, 'M', '𐳅'), + (0x10C86, 'M', '𐳆'), + (0x10C87, 'M', '𐳇'), + (0x10C88, 'M', '𐳈'), + (0x10C89, 'M', '𐳉'), + (0x10C8A, 'M', '𐳊'), + (0x10C8B, 'M', '𐳋'), + (0x10C8C, 'M', '𐳌'), + (0x10C8D, 'M', '𐳍'), + (0x10C8E, 'M', '𐳎'), + (0x10C8F, 'M', '𐳏'), + (0x10C90, 'M', '𐳐'), + (0x10C91, 'M', '𐳑'), + (0x10C92, 'M', '𐳒'), + (0x10C93, 'M', '𐳓'), + (0x10C94, 'M', '𐳔'), + (0x10C95, 'M', '𐳕'), + (0x10C96, 'M', '𐳖'), + (0x10C97, 'M', '𐳗'), + (0x10C98, 'M', '𐳘'), + (0x10C99, 'M', '𐳙'), + (0x10C9A, 'M', '𐳚'), + (0x10C9B, 'M', '𐳛'), + (0x10C9C, 'M', '𐳜'), + (0x10C9D, 'M', '𐳝'), + (0x10C9E, 'M', '𐳞'), + (0x10C9F, 'M', '𐳟'), + (0x10CA0, 'M', '𐳠'), + (0x10CA1, 'M', '𐳡'), + (0x10CA2, 'M', '𐳢'), + (0x10CA3, 'M', '𐳣'), + (0x10CA4, 'M', '𐳤'), + (0x10CA5, 'M', '𐳥'), + (0x10CA6, 'M', '𐳦'), + (0x10CA7, 'M', '𐳧'), + (0x10CA8, 'M', '𐳨'), + (0x10CA9, 'M', '𐳩'), + (0x10CAA, 'M', '𐳪'), + (0x10CAB, 'M', '𐳫'), + (0x10CAC, 'M', '𐳬'), + (0x10CAD, 'M', '𐳭'), + (0x10CAE, 'M', '𐳮'), + (0x10CAF, 'M', '𐳯'), + (0x10CB0, 'M', '𐳰'), + (0x10CB1, 'M', '𐳱'), + (0x10CB2, 'M', '𐳲'), + (0x10CB3, 'X'), + (0x10CC0, 'V'), + (0x10CF3, 'X'), + (0x10CFA, 'V'), + (0x10D28, 'X'), + (0x10D30, 'V'), + (0x10D3A, 'X'), + (0x10E60, 'V'), + (0x10E7F, 'X'), + (0x10E80, 'V'), + (0x10EAA, 'X'), + (0x10EAB, 'V'), + (0x10EAE, 'X'), + (0x10EB0, 'V'), + (0x10EB2, 'X'), + (0x10EFD, 'V'), + (0x10F28, 'X'), + (0x10F30, 'V'), + (0x10F5A, 'X'), + (0x10F70, 'V'), + (0x10F8A, 'X'), + (0x10FB0, 'V'), + (0x10FCC, 'X'), + (0x10FE0, 'V'), + (0x10FF7, 'X'), + (0x11000, 'V'), + (0x1104E, 'X'), + (0x11052, 'V'), + (0x11076, 'X'), + (0x1107F, 'V'), + (0x110BD, 'X'), + (0x110BE, 'V'), + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110FA, 'X'), + (0x11100, 'V'), + (0x11135, 'X'), + (0x11136, 'V'), + (0x11148, 'X'), + (0x11150, 'V'), + (0x11177, 'X'), + (0x11180, 'V'), + (0x111E0, 'X'), + (0x111E1, 'V'), + (0x111F5, 'X'), + (0x11200, 'V'), + (0x11212, 'X'), + (0x11213, 'V'), + (0x11242, 'X'), + (0x11280, 'V'), + (0x11287, 'X'), + (0x11288, 'V'), + (0x11289, 'X'), + (0x1128A, 'V'), + (0x1128E, 'X'), + (0x1128F, 'V'), + (0x1129E, 'X'), + (0x1129F, 'V'), + (0x112AA, 'X'), + (0x112B0, 'V'), + (0x112EB, 'X'), + (0x112F0, 'V'), + (0x112FA, 'X'), + (0x11300, 'V'), + (0x11304, 'X'), + (0x11305, 'V'), + (0x1130D, 'X'), + (0x1130F, 'V'), + (0x11311, 'X'), + (0x11313, 'V'), + (0x11329, 'X'), + (0x1132A, 'V'), + (0x11331, 'X'), + (0x11332, 'V'), + (0x11334, 'X'), + (0x11335, 'V'), + (0x1133A, 'X'), + (0x1133B, 'V'), + (0x11345, 'X'), + (0x11347, 'V'), + (0x11349, 'X'), + (0x1134B, 'V'), + (0x1134E, 'X'), + (0x11350, 'V'), + (0x11351, 'X'), + (0x11357, 'V'), + (0x11358, 'X'), + (0x1135D, 'V'), + (0x11364, 'X'), + (0x11366, 'V'), + (0x1136D, 'X'), + (0x11370, 'V'), + (0x11375, 'X'), + (0x11400, 'V'), + (0x1145C, 'X'), + (0x1145D, 'V'), + (0x11462, 'X'), + (0x11480, 'V'), + (0x114C8, 'X'), + (0x114D0, 'V'), + (0x114DA, 'X'), + (0x11580, 'V'), + (0x115B6, 'X'), + (0x115B8, 'V'), + (0x115DE, 'X'), + (0x11600, 'V'), + (0x11645, 'X'), + (0x11650, 'V'), + (0x1165A, 'X'), + (0x11660, 'V'), + (0x1166D, 'X'), + (0x11680, 'V'), + (0x116BA, 'X'), + (0x116C0, 'V'), + (0x116CA, 'X'), + (0x11700, 'V'), + (0x1171B, 'X'), + (0x1171D, 'V'), + (0x1172C, 'X'), + (0x11730, 'V'), + (0x11747, 'X'), + (0x11800, 'V'), + (0x1183C, 'X'), + (0x118A0, 'M', '𑣀'), + (0x118A1, 'M', '𑣁'), + (0x118A2, 'M', '𑣂'), + (0x118A3, 'M', '𑣃'), + (0x118A4, 'M', '𑣄'), + (0x118A5, 'M', '𑣅'), + (0x118A6, 'M', '𑣆'), + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118AB, 'M', '𑣋'), + (0x118AC, 'M', '𑣌'), + (0x118AD, 'M', '𑣍'), + (0x118AE, 'M', '𑣎'), + (0x118AF, 'M', '𑣏'), + (0x118B0, 'M', '𑣐'), + (0x118B1, 'M', '𑣑'), + (0x118B2, 'M', '𑣒'), + (0x118B3, 'M', '𑣓'), + (0x118B4, 'M', '𑣔'), + (0x118B5, 'M', '𑣕'), + (0x118B6, 'M', '𑣖'), + (0x118B7, 'M', '𑣗'), + (0x118B8, 'M', '𑣘'), + (0x118B9, 'M', '𑣙'), + (0x118BA, 'M', '𑣚'), + (0x118BB, 'M', '𑣛'), + (0x118BC, 'M', '𑣜'), + (0x118BD, 'M', '𑣝'), + (0x118BE, 'M', '𑣞'), + (0x118BF, 'M', '𑣟'), + (0x118C0, 'V'), + (0x118F3, 'X'), + (0x118FF, 'V'), + (0x11907, 'X'), + (0x11909, 'V'), + (0x1190A, 'X'), + (0x1190C, 'V'), + (0x11914, 'X'), + (0x11915, 'V'), + (0x11917, 'X'), + (0x11918, 'V'), + (0x11936, 'X'), + (0x11937, 'V'), + (0x11939, 'X'), + (0x1193B, 'V'), + (0x11947, 'X'), + (0x11950, 'V'), + (0x1195A, 'X'), + (0x119A0, 'V'), + (0x119A8, 'X'), + (0x119AA, 'V'), + (0x119D8, 'X'), + (0x119DA, 'V'), + (0x119E5, 'X'), + (0x11A00, 'V'), + (0x11A48, 'X'), + (0x11A50, 'V'), + (0x11AA3, 'X'), + (0x11AB0, 'V'), + (0x11AF9, 'X'), + (0x11B00, 'V'), + (0x11B0A, 'X'), + (0x11C00, 'V'), + (0x11C09, 'X'), + (0x11C0A, 'V'), + (0x11C37, 'X'), + (0x11C38, 'V'), + (0x11C46, 'X'), + (0x11C50, 'V'), + (0x11C6D, 'X'), + (0x11C70, 'V'), + (0x11C90, 'X'), + (0x11C92, 'V'), + (0x11CA8, 'X'), + (0x11CA9, 'V'), + (0x11CB7, 'X'), + (0x11D00, 'V'), + (0x11D07, 'X'), + (0x11D08, 'V'), + (0x11D0A, 'X'), + (0x11D0B, 'V'), + (0x11D37, 'X'), + (0x11D3A, 'V'), + (0x11D3B, 'X'), + (0x11D3C, 'V'), + (0x11D3E, 'X'), + (0x11D3F, 'V'), + (0x11D48, 'X'), + (0x11D50, 'V'), + (0x11D5A, 'X'), + (0x11D60, 'V'), + (0x11D66, 'X'), + (0x11D67, 'V'), + (0x11D69, 'X'), + (0x11D6A, 'V'), + (0x11D8F, 'X'), + (0x11D90, 'V'), + (0x11D92, 'X'), + (0x11D93, 'V'), + (0x11D99, 'X'), + (0x11DA0, 'V'), + (0x11DAA, 'X'), + (0x11EE0, 'V'), + (0x11EF9, 'X'), + (0x11F00, 'V'), + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F5A, 'X'), + (0x11FB0, 'V'), + (0x11FB1, 'X'), + (0x11FC0, 'V'), + (0x11FF2, 'X'), + (0x11FFF, 'V'), + (0x1239A, 'X'), + (0x12400, 'V'), + (0x1246F, 'X'), + (0x12470, 'V'), + (0x12475, 'X'), + (0x12480, 'V'), + (0x12544, 'X'), + (0x12F90, 'V'), + (0x12FF3, 'X'), + (0x13000, 'V'), + (0x13430, 'X'), + (0x13440, 'V'), + (0x13456, 'X'), + (0x14400, 'V'), + (0x14647, 'X'), + (0x16800, 'V'), + (0x16A39, 'X'), + (0x16A40, 'V'), + (0x16A5F, 'X'), + (0x16A60, 'V'), + (0x16A6A, 'X'), + (0x16A6E, 'V'), + (0x16ABF, 'X'), + (0x16AC0, 'V'), + (0x16ACA, 'X'), + (0x16AD0, 'V'), + (0x16AEE, 'X'), + (0x16AF0, 'V'), + (0x16AF6, 'X'), + (0x16B00, 'V'), + (0x16B46, 'X'), + (0x16B50, 'V'), + (0x16B5A, 'X'), + (0x16B5B, 'V'), + (0x16B62, 'X'), + (0x16B63, 'V'), + (0x16B78, 'X'), + (0x16B7D, 'V'), + (0x16B90, 'X'), + (0x16E40, 'M', '𖹠'), + (0x16E41, 'M', '𖹡'), + (0x16E42, 'M', '𖹢'), + (0x16E43, 'M', '𖹣'), + (0x16E44, 'M', '𖹤'), + (0x16E45, 'M', '𖹥'), + (0x16E46, 'M', '𖹦'), + (0x16E47, 'M', '𖹧'), + (0x16E48, 'M', '𖹨'), + (0x16E49, 'M', '𖹩'), + (0x16E4A, 'M', '𖹪'), + (0x16E4B, 'M', '𖹫'), + (0x16E4C, 'M', '𖹬'), + (0x16E4D, 'M', '𖹭'), + (0x16E4E, 'M', '𖹮'), + (0x16E4F, 'M', '𖹯'), + (0x16E50, 'M', '𖹰'), + (0x16E51, 'M', '𖹱'), + (0x16E52, 'M', '𖹲'), + (0x16E53, 'M', '𖹳'), + (0x16E54, 'M', '𖹴'), + (0x16E55, 'M', '𖹵'), + (0x16E56, 'M', '𖹶'), + (0x16E57, 'M', '𖹷'), + (0x16E58, 'M', '𖹸'), + (0x16E59, 'M', '𖹹'), + (0x16E5A, 'M', '𖹺'), + (0x16E5B, 'M', '𖹻'), + (0x16E5C, 'M', '𖹼'), + (0x16E5D, 'M', '𖹽'), + (0x16E5E, 'M', '𖹾'), + (0x16E5F, 'M', '𖹿'), + (0x16E60, 'V'), + (0x16E9B, 'X'), + (0x16F00, 'V'), + (0x16F4B, 'X'), + (0x16F4F, 'V'), + (0x16F88, 'X'), + (0x16F8F, 'V'), + (0x16FA0, 'X'), + (0x16FE0, 'V'), + (0x16FE5, 'X'), + (0x16FF0, 'V'), + (0x16FF2, 'X'), + (0x17000, 'V'), + (0x187F8, 'X'), + (0x18800, 'V'), + (0x18CD6, 'X'), + (0x18D00, 'V'), + (0x18D09, 'X'), + (0x1AFF0, 'V'), + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFFF, 'X'), + (0x1B000, 'V'), + (0x1B123, 'X'), + (0x1B132, 'V'), + (0x1B133, 'X'), + (0x1B150, 'V'), + (0x1B153, 'X'), + (0x1B155, 'V'), + (0x1B156, 'X'), + (0x1B164, 'V'), + (0x1B168, 'X'), + (0x1B170, 'V'), + (0x1B2FC, 'X'), + (0x1BC00, 'V'), + (0x1BC6B, 'X'), + (0x1BC70, 'V'), + (0x1BC7D, 'X'), + (0x1BC80, 'V'), + (0x1BC89, 'X'), + (0x1BC90, 'V'), + (0x1BC9A, 'X'), + (0x1BC9C, 'V'), + (0x1BCA0, 'I'), + (0x1BCA4, 'X'), + (0x1CF00, 'V'), + (0x1CF2E, 'X'), + (0x1CF30, 'V'), + (0x1CF47, 'X'), + (0x1CF50, 'V'), + (0x1CFC4, 'X'), + (0x1D000, 'V'), + (0x1D0F6, 'X'), + (0x1D100, 'V'), + (0x1D127, 'X'), + (0x1D129, 'V'), + (0x1D15E, 'M', '𝅗𝅥'), + (0x1D15F, 'M', '𝅘𝅥'), + (0x1D160, 'M', '𝅘𝅥𝅮'), + (0x1D161, 'M', '𝅘𝅥𝅯'), + (0x1D162, 'M', '𝅘𝅥𝅰'), + (0x1D163, 'M', '𝅘𝅥𝅱'), + (0x1D164, 'M', '𝅘𝅥𝅲'), + (0x1D165, 'V'), + (0x1D173, 'X'), + (0x1D17B, 'V'), + (0x1D1BB, 'M', '𝆹𝅥'), + (0x1D1BC, 'M', '𝆺𝅥'), + (0x1D1BD, 'M', '𝆹𝅥𝅮'), + (0x1D1BE, 'M', '𝆺𝅥𝅮'), + (0x1D1BF, 'M', '𝆹𝅥𝅯'), + (0x1D1C0, 'M', '𝆺𝅥𝅯'), + (0x1D1C1, 'V'), + (0x1D1EB, 'X'), + (0x1D200, 'V'), + (0x1D246, 'X'), + (0x1D2C0, 'V'), + (0x1D2D4, 'X'), + (0x1D2E0, 'V'), + (0x1D2F4, 'X'), + (0x1D300, 'V'), + (0x1D357, 'X'), + (0x1D360, 'V'), + (0x1D379, 'X'), + (0x1D400, 'M', 'a'), + (0x1D401, 'M', 'b'), + (0x1D402, 'M', 'c'), + (0x1D403, 'M', 'd'), + (0x1D404, 'M', 'e'), + (0x1D405, 'M', 'f'), + (0x1D406, 'M', 'g'), + (0x1D407, 'M', 'h'), + (0x1D408, 'M', 'i'), + (0x1D409, 'M', 'j'), + (0x1D40A, 'M', 'k'), + (0x1D40B, 'M', 'l'), + (0x1D40C, 'M', 'm'), + (0x1D40D, 'M', 'n'), + (0x1D40E, 'M', 'o'), + (0x1D40F, 'M', 'p'), + (0x1D410, 'M', 'q'), + (0x1D411, 'M', 'r'), + (0x1D412, 'M', 's'), + (0x1D413, 'M', 't'), + (0x1D414, 'M', 'u'), + (0x1D415, 'M', 'v'), + (0x1D416, 'M', 'w'), + (0x1D417, 'M', 'x'), + (0x1D418, 'M', 'y'), + (0x1D419, 'M', 'z'), + (0x1D41A, 'M', 'a'), + (0x1D41B, 'M', 'b'), + (0x1D41C, 'M', 'c'), + (0x1D41D, 'M', 'd'), + (0x1D41E, 'M', 'e'), + (0x1D41F, 'M', 'f'), + (0x1D420, 'M', 'g'), + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D425, 'M', 'l'), + (0x1D426, 'M', 'm'), + (0x1D427, 'M', 'n'), + (0x1D428, 'M', 'o'), + (0x1D429, 'M', 'p'), + (0x1D42A, 'M', 'q'), + (0x1D42B, 'M', 'r'), + (0x1D42C, 'M', 's'), + (0x1D42D, 'M', 't'), + (0x1D42E, 'M', 'u'), + (0x1D42F, 'M', 'v'), + (0x1D430, 'M', 'w'), + (0x1D431, 'M', 'x'), + (0x1D432, 'M', 'y'), + (0x1D433, 'M', 'z'), + (0x1D434, 'M', 'a'), + (0x1D435, 'M', 'b'), + (0x1D436, 'M', 'c'), + (0x1D437, 'M', 'd'), + (0x1D438, 'M', 'e'), + (0x1D439, 'M', 'f'), + (0x1D43A, 'M', 'g'), + (0x1D43B, 'M', 'h'), + (0x1D43C, 'M', 'i'), + (0x1D43D, 'M', 'j'), + (0x1D43E, 'M', 'k'), + (0x1D43F, 'M', 'l'), + (0x1D440, 'M', 'm'), + (0x1D441, 'M', 'n'), + (0x1D442, 'M', 'o'), + (0x1D443, 'M', 'p'), + (0x1D444, 'M', 'q'), + (0x1D445, 'M', 'r'), + (0x1D446, 'M', 's'), + (0x1D447, 'M', 't'), + (0x1D448, 'M', 'u'), + (0x1D449, 'M', 'v'), + (0x1D44A, 'M', 'w'), + (0x1D44B, 'M', 'x'), + (0x1D44C, 'M', 'y'), + (0x1D44D, 'M', 'z'), + (0x1D44E, 'M', 'a'), + (0x1D44F, 'M', 'b'), + (0x1D450, 'M', 'c'), + (0x1D451, 'M', 'd'), + (0x1D452, 'M', 'e'), + (0x1D453, 'M', 'f'), + (0x1D454, 'M', 'g'), + (0x1D455, 'X'), + (0x1D456, 'M', 'i'), + (0x1D457, 'M', 'j'), + (0x1D458, 'M', 'k'), + (0x1D459, 'M', 'l'), + (0x1D45A, 'M', 'm'), + (0x1D45B, 'M', 'n'), + (0x1D45C, 'M', 'o'), + (0x1D45D, 'M', 'p'), + (0x1D45E, 'M', 'q'), + (0x1D45F, 'M', 'r'), + (0x1D460, 'M', 's'), + (0x1D461, 'M', 't'), + (0x1D462, 'M', 'u'), + (0x1D463, 'M', 'v'), + (0x1D464, 'M', 'w'), + (0x1D465, 'M', 'x'), + (0x1D466, 'M', 'y'), + (0x1D467, 'M', 'z'), + (0x1D468, 'M', 'a'), + (0x1D469, 'M', 'b'), + (0x1D46A, 'M', 'c'), + (0x1D46B, 'M', 'd'), + (0x1D46C, 'M', 'e'), + (0x1D46D, 'M', 'f'), + (0x1D46E, 'M', 'g'), + (0x1D46F, 'M', 'h'), + (0x1D470, 'M', 'i'), + (0x1D471, 'M', 'j'), + (0x1D472, 'M', 'k'), + (0x1D473, 'M', 'l'), + (0x1D474, 'M', 'm'), + (0x1D475, 'M', 'n'), + (0x1D476, 'M', 'o'), + (0x1D477, 'M', 'p'), + (0x1D478, 'M', 'q'), + (0x1D479, 'M', 'r'), + (0x1D47A, 'M', 's'), + (0x1D47B, 'M', 't'), + (0x1D47C, 'M', 'u'), + (0x1D47D, 'M', 'v'), + (0x1D47E, 'M', 'w'), + (0x1D47F, 'M', 'x'), + (0x1D480, 'M', 'y'), + (0x1D481, 'M', 'z'), + (0x1D482, 'M', 'a'), + (0x1D483, 'M', 'b'), + (0x1D484, 'M', 'c'), + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D489, 'M', 'h'), + (0x1D48A, 'M', 'i'), + (0x1D48B, 'M', 'j'), + (0x1D48C, 'M', 'k'), + (0x1D48D, 'M', 'l'), + (0x1D48E, 'M', 'm'), + (0x1D48F, 'M', 'n'), + (0x1D490, 'M', 'o'), + (0x1D491, 'M', 'p'), + (0x1D492, 'M', 'q'), + (0x1D493, 'M', 'r'), + (0x1D494, 'M', 's'), + (0x1D495, 'M', 't'), + (0x1D496, 'M', 'u'), + (0x1D497, 'M', 'v'), + (0x1D498, 'M', 'w'), + (0x1D499, 'M', 'x'), + (0x1D49A, 'M', 'y'), + (0x1D49B, 'M', 'z'), + (0x1D49C, 'M', 'a'), + (0x1D49D, 'X'), + (0x1D49E, 'M', 'c'), + (0x1D49F, 'M', 'd'), + (0x1D4A0, 'X'), + (0x1D4A2, 'M', 'g'), + (0x1D4A3, 'X'), + (0x1D4A5, 'M', 'j'), + (0x1D4A6, 'M', 'k'), + (0x1D4A7, 'X'), + (0x1D4A9, 'M', 'n'), + (0x1D4AA, 'M', 'o'), + (0x1D4AB, 'M', 'p'), + (0x1D4AC, 'M', 'q'), + (0x1D4AD, 'X'), + (0x1D4AE, 'M', 's'), + (0x1D4AF, 'M', 't'), + (0x1D4B0, 'M', 'u'), + (0x1D4B1, 'M', 'v'), + (0x1D4B2, 'M', 'w'), + (0x1D4B3, 'M', 'x'), + (0x1D4B4, 'M', 'y'), + (0x1D4B5, 'M', 'z'), + (0x1D4B6, 'M', 'a'), + (0x1D4B7, 'M', 'b'), + (0x1D4B8, 'M', 'c'), + (0x1D4B9, 'M', 'd'), + (0x1D4BA, 'X'), + (0x1D4BB, 'M', 'f'), + (0x1D4BC, 'X'), + (0x1D4BD, 'M', 'h'), + (0x1D4BE, 'M', 'i'), + (0x1D4BF, 'M', 'j'), + (0x1D4C0, 'M', 'k'), + (0x1D4C1, 'M', 'l'), + (0x1D4C2, 'M', 'm'), + (0x1D4C3, 'M', 'n'), + (0x1D4C4, 'X'), + (0x1D4C5, 'M', 'p'), + (0x1D4C6, 'M', 'q'), + (0x1D4C7, 'M', 'r'), + (0x1D4C8, 'M', 's'), + (0x1D4C9, 'M', 't'), + (0x1D4CA, 'M', 'u'), + (0x1D4CB, 'M', 'v'), + (0x1D4CC, 'M', 'w'), + (0x1D4CD, 'M', 'x'), + (0x1D4CE, 'M', 'y'), + (0x1D4CF, 'M', 'z'), + (0x1D4D0, 'M', 'a'), + (0x1D4D1, 'M', 'b'), + (0x1D4D2, 'M', 'c'), + (0x1D4D3, 'M', 'd'), + (0x1D4D4, 'M', 'e'), + (0x1D4D5, 'M', 'f'), + (0x1D4D6, 'M', 'g'), + (0x1D4D7, 'M', 'h'), + (0x1D4D8, 'M', 'i'), + (0x1D4D9, 'M', 'j'), + (0x1D4DA, 'M', 'k'), + (0x1D4DB, 'M', 'l'), + (0x1D4DC, 'M', 'm'), + (0x1D4DD, 'M', 'n'), + (0x1D4DE, 'M', 'o'), + (0x1D4DF, 'M', 'p'), + (0x1D4E0, 'M', 'q'), + (0x1D4E1, 'M', 'r'), + (0x1D4E2, 'M', 's'), + (0x1D4E3, 'M', 't'), + (0x1D4E4, 'M', 'u'), + (0x1D4E5, 'M', 'v'), + (0x1D4E6, 'M', 'w'), + (0x1D4E7, 'M', 'x'), + (0x1D4E8, 'M', 'y'), + (0x1D4E9, 'M', 'z'), + (0x1D4EA, 'M', 'a'), + (0x1D4EB, 'M', 'b'), + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4F0, 'M', 'g'), + (0x1D4F1, 'M', 'h'), + (0x1D4F2, 'M', 'i'), + (0x1D4F3, 'M', 'j'), + (0x1D4F4, 'M', 'k'), + (0x1D4F5, 'M', 'l'), + (0x1D4F6, 'M', 'm'), + (0x1D4F7, 'M', 'n'), + (0x1D4F8, 'M', 'o'), + (0x1D4F9, 'M', 'p'), + (0x1D4FA, 'M', 'q'), + (0x1D4FB, 'M', 'r'), + (0x1D4FC, 'M', 's'), + (0x1D4FD, 'M', 't'), + (0x1D4FE, 'M', 'u'), + (0x1D4FF, 'M', 'v'), + (0x1D500, 'M', 'w'), + (0x1D501, 'M', 'x'), + (0x1D502, 'M', 'y'), + (0x1D503, 'M', 'z'), + (0x1D504, 'M', 'a'), + (0x1D505, 'M', 'b'), + (0x1D506, 'X'), + (0x1D507, 'M', 'd'), + (0x1D508, 'M', 'e'), + (0x1D509, 'M', 'f'), + (0x1D50A, 'M', 'g'), + (0x1D50B, 'X'), + (0x1D50D, 'M', 'j'), + (0x1D50E, 'M', 'k'), + (0x1D50F, 'M', 'l'), + (0x1D510, 'M', 'm'), + (0x1D511, 'M', 'n'), + (0x1D512, 'M', 'o'), + (0x1D513, 'M', 'p'), + (0x1D514, 'M', 'q'), + (0x1D515, 'X'), + (0x1D516, 'M', 's'), + (0x1D517, 'M', 't'), + (0x1D518, 'M', 'u'), + (0x1D519, 'M', 'v'), + (0x1D51A, 'M', 'w'), + (0x1D51B, 'M', 'x'), + (0x1D51C, 'M', 'y'), + (0x1D51D, 'X'), + (0x1D51E, 'M', 'a'), + (0x1D51F, 'M', 'b'), + (0x1D520, 'M', 'c'), + (0x1D521, 'M', 'd'), + (0x1D522, 'M', 'e'), + (0x1D523, 'M', 'f'), + (0x1D524, 'M', 'g'), + (0x1D525, 'M', 'h'), + (0x1D526, 'M', 'i'), + (0x1D527, 'M', 'j'), + (0x1D528, 'M', 'k'), + (0x1D529, 'M', 'l'), + (0x1D52A, 'M', 'm'), + (0x1D52B, 'M', 'n'), + (0x1D52C, 'M', 'o'), + (0x1D52D, 'M', 'p'), + (0x1D52E, 'M', 'q'), + (0x1D52F, 'M', 'r'), + (0x1D530, 'M', 's'), + (0x1D531, 'M', 't'), + (0x1D532, 'M', 'u'), + (0x1D533, 'M', 'v'), + (0x1D534, 'M', 'w'), + (0x1D535, 'M', 'x'), + (0x1D536, 'M', 'y'), + (0x1D537, 'M', 'z'), + (0x1D538, 'M', 'a'), + (0x1D539, 'M', 'b'), + (0x1D53A, 'X'), + (0x1D53B, 'M', 'd'), + (0x1D53C, 'M', 'e'), + (0x1D53D, 'M', 'f'), + (0x1D53E, 'M', 'g'), + (0x1D53F, 'X'), + (0x1D540, 'M', 'i'), + (0x1D541, 'M', 'j'), + (0x1D542, 'M', 'k'), + (0x1D543, 'M', 'l'), + (0x1D544, 'M', 'm'), + (0x1D545, 'X'), + (0x1D546, 'M', 'o'), + (0x1D547, 'X'), + (0x1D54A, 'M', 's'), + (0x1D54B, 'M', 't'), + (0x1D54C, 'M', 'u'), + (0x1D54D, 'M', 'v'), + (0x1D54E, 'M', 'w'), + (0x1D54F, 'M', 'x'), + (0x1D550, 'M', 'y'), + (0x1D551, 'X'), + (0x1D552, 'M', 'a'), + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D557, 'M', 'f'), + (0x1D558, 'M', 'g'), + (0x1D559, 'M', 'h'), + (0x1D55A, 'M', 'i'), + (0x1D55B, 'M', 'j'), + (0x1D55C, 'M', 'k'), + (0x1D55D, 'M', 'l'), + (0x1D55E, 'M', 'm'), + (0x1D55F, 'M', 'n'), + (0x1D560, 'M', 'o'), + (0x1D561, 'M', 'p'), + (0x1D562, 'M', 'q'), + (0x1D563, 'M', 'r'), + (0x1D564, 'M', 's'), + (0x1D565, 'M', 't'), + (0x1D566, 'M', 'u'), + (0x1D567, 'M', 'v'), + (0x1D568, 'M', 'w'), + (0x1D569, 'M', 'x'), + (0x1D56A, 'M', 'y'), + (0x1D56B, 'M', 'z'), + (0x1D56C, 'M', 'a'), + (0x1D56D, 'M', 'b'), + (0x1D56E, 'M', 'c'), + (0x1D56F, 'M', 'd'), + (0x1D570, 'M', 'e'), + (0x1D571, 'M', 'f'), + (0x1D572, 'M', 'g'), + (0x1D573, 'M', 'h'), + (0x1D574, 'M', 'i'), + (0x1D575, 'M', 'j'), + (0x1D576, 'M', 'k'), + (0x1D577, 'M', 'l'), + (0x1D578, 'M', 'm'), + (0x1D579, 'M', 'n'), + (0x1D57A, 'M', 'o'), + (0x1D57B, 'M', 'p'), + (0x1D57C, 'M', 'q'), + (0x1D57D, 'M', 'r'), + (0x1D57E, 'M', 's'), + (0x1D57F, 'M', 't'), + (0x1D580, 'M', 'u'), + (0x1D581, 'M', 'v'), + (0x1D582, 'M', 'w'), + (0x1D583, 'M', 'x'), + (0x1D584, 'M', 'y'), + (0x1D585, 'M', 'z'), + (0x1D586, 'M', 'a'), + (0x1D587, 'M', 'b'), + (0x1D588, 'M', 'c'), + (0x1D589, 'M', 'd'), + (0x1D58A, 'M', 'e'), + (0x1D58B, 'M', 'f'), + (0x1D58C, 'M', 'g'), + (0x1D58D, 'M', 'h'), + (0x1D58E, 'M', 'i'), + (0x1D58F, 'M', 'j'), + (0x1D590, 'M', 'k'), + (0x1D591, 'M', 'l'), + (0x1D592, 'M', 'm'), + (0x1D593, 'M', 'n'), + (0x1D594, 'M', 'o'), + (0x1D595, 'M', 'p'), + (0x1D596, 'M', 'q'), + (0x1D597, 'M', 'r'), + (0x1D598, 'M', 's'), + (0x1D599, 'M', 't'), + (0x1D59A, 'M', 'u'), + (0x1D59B, 'M', 'v'), + (0x1D59C, 'M', 'w'), + (0x1D59D, 'M', 'x'), + (0x1D59E, 'M', 'y'), + (0x1D59F, 'M', 'z'), + (0x1D5A0, 'M', 'a'), + (0x1D5A1, 'M', 'b'), + (0x1D5A2, 'M', 'c'), + (0x1D5A3, 'M', 'd'), + (0x1D5A4, 'M', 'e'), + (0x1D5A5, 'M', 'f'), + (0x1D5A6, 'M', 'g'), + (0x1D5A7, 'M', 'h'), + (0x1D5A8, 'M', 'i'), + (0x1D5A9, 'M', 'j'), + (0x1D5AA, 'M', 'k'), + (0x1D5AB, 'M', 'l'), + (0x1D5AC, 'M', 'm'), + (0x1D5AD, 'M', 'n'), + (0x1D5AE, 'M', 'o'), + (0x1D5AF, 'M', 'p'), + (0x1D5B0, 'M', 'q'), + (0x1D5B1, 'M', 'r'), + (0x1D5B2, 'M', 's'), + (0x1D5B3, 'M', 't'), + (0x1D5B4, 'M', 'u'), + (0x1D5B5, 'M', 'v'), + (0x1D5B6, 'M', 'w'), + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5BB, 'M', 'b'), + (0x1D5BC, 'M', 'c'), + (0x1D5BD, 'M', 'd'), + (0x1D5BE, 'M', 'e'), + (0x1D5BF, 'M', 'f'), + (0x1D5C0, 'M', 'g'), + (0x1D5C1, 'M', 'h'), + (0x1D5C2, 'M', 'i'), + (0x1D5C3, 'M', 'j'), + (0x1D5C4, 'M', 'k'), + (0x1D5C5, 'M', 'l'), + (0x1D5C6, 'M', 'm'), + (0x1D5C7, 'M', 'n'), + (0x1D5C8, 'M', 'o'), + (0x1D5C9, 'M', 'p'), + (0x1D5CA, 'M', 'q'), + (0x1D5CB, 'M', 'r'), + (0x1D5CC, 'M', 's'), + (0x1D5CD, 'M', 't'), + (0x1D5CE, 'M', 'u'), + (0x1D5CF, 'M', 'v'), + (0x1D5D0, 'M', 'w'), + (0x1D5D1, 'M', 'x'), + (0x1D5D2, 'M', 'y'), + (0x1D5D3, 'M', 'z'), + (0x1D5D4, 'M', 'a'), + (0x1D5D5, 'M', 'b'), + (0x1D5D6, 'M', 'c'), + (0x1D5D7, 'M', 'd'), + (0x1D5D8, 'M', 'e'), + (0x1D5D9, 'M', 'f'), + (0x1D5DA, 'M', 'g'), + (0x1D5DB, 'M', 'h'), + (0x1D5DC, 'M', 'i'), + (0x1D5DD, 'M', 'j'), + (0x1D5DE, 'M', 'k'), + (0x1D5DF, 'M', 'l'), + (0x1D5E0, 'M', 'm'), + (0x1D5E1, 'M', 'n'), + (0x1D5E2, 'M', 'o'), + (0x1D5E3, 'M', 'p'), + (0x1D5E4, 'M', 'q'), + (0x1D5E5, 'M', 'r'), + (0x1D5E6, 'M', 's'), + (0x1D5E7, 'M', 't'), + (0x1D5E8, 'M', 'u'), + (0x1D5E9, 'M', 'v'), + (0x1D5EA, 'M', 'w'), + (0x1D5EB, 'M', 'x'), + (0x1D5EC, 'M', 'y'), + (0x1D5ED, 'M', 'z'), + (0x1D5EE, 'M', 'a'), + (0x1D5EF, 'M', 'b'), + (0x1D5F0, 'M', 'c'), + (0x1D5F1, 'M', 'd'), + (0x1D5F2, 'M', 'e'), + (0x1D5F3, 'M', 'f'), + (0x1D5F4, 'M', 'g'), + (0x1D5F5, 'M', 'h'), + (0x1D5F6, 'M', 'i'), + (0x1D5F7, 'M', 'j'), + (0x1D5F8, 'M', 'k'), + (0x1D5F9, 'M', 'l'), + (0x1D5FA, 'M', 'm'), + (0x1D5FB, 'M', 'n'), + (0x1D5FC, 'M', 'o'), + (0x1D5FD, 'M', 'p'), + (0x1D5FE, 'M', 'q'), + (0x1D5FF, 'M', 'r'), + (0x1D600, 'M', 's'), + (0x1D601, 'M', 't'), + (0x1D602, 'M', 'u'), + (0x1D603, 'M', 'v'), + (0x1D604, 'M', 'w'), + (0x1D605, 'M', 'x'), + (0x1D606, 'M', 'y'), + (0x1D607, 'M', 'z'), + (0x1D608, 'M', 'a'), + (0x1D609, 'M', 'b'), + (0x1D60A, 'M', 'c'), + (0x1D60B, 'M', 'd'), + (0x1D60C, 'M', 'e'), + (0x1D60D, 'M', 'f'), + (0x1D60E, 'M', 'g'), + (0x1D60F, 'M', 'h'), + (0x1D610, 'M', 'i'), + (0x1D611, 'M', 'j'), + (0x1D612, 'M', 'k'), + (0x1D613, 'M', 'l'), + (0x1D614, 'M', 'm'), + (0x1D615, 'M', 'n'), + (0x1D616, 'M', 'o'), + (0x1D617, 'M', 'p'), + (0x1D618, 'M', 'q'), + (0x1D619, 'M', 'r'), + (0x1D61A, 'M', 's'), + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61F, 'M', 'x'), + (0x1D620, 'M', 'y'), + (0x1D621, 'M', 'z'), + (0x1D622, 'M', 'a'), + (0x1D623, 'M', 'b'), + (0x1D624, 'M', 'c'), + (0x1D625, 'M', 'd'), + (0x1D626, 'M', 'e'), + (0x1D627, 'M', 'f'), + (0x1D628, 'M', 'g'), + (0x1D629, 'M', 'h'), + (0x1D62A, 'M', 'i'), + (0x1D62B, 'M', 'j'), + (0x1D62C, 'M', 'k'), + (0x1D62D, 'M', 'l'), + (0x1D62E, 'M', 'm'), + (0x1D62F, 'M', 'n'), + (0x1D630, 'M', 'o'), + (0x1D631, 'M', 'p'), + (0x1D632, 'M', 'q'), + (0x1D633, 'M', 'r'), + (0x1D634, 'M', 's'), + (0x1D635, 'M', 't'), + (0x1D636, 'M', 'u'), + (0x1D637, 'M', 'v'), + (0x1D638, 'M', 'w'), + (0x1D639, 'M', 'x'), + (0x1D63A, 'M', 'y'), + (0x1D63B, 'M', 'z'), + (0x1D63C, 'M', 'a'), + (0x1D63D, 'M', 'b'), + (0x1D63E, 'M', 'c'), + (0x1D63F, 'M', 'd'), + (0x1D640, 'M', 'e'), + (0x1D641, 'M', 'f'), + (0x1D642, 'M', 'g'), + (0x1D643, 'M', 'h'), + (0x1D644, 'M', 'i'), + (0x1D645, 'M', 'j'), + (0x1D646, 'M', 'k'), + (0x1D647, 'M', 'l'), + (0x1D648, 'M', 'm'), + (0x1D649, 'M', 'n'), + (0x1D64A, 'M', 'o'), + (0x1D64B, 'M', 'p'), + (0x1D64C, 'M', 'q'), + (0x1D64D, 'M', 'r'), + (0x1D64E, 'M', 's'), + (0x1D64F, 'M', 't'), + (0x1D650, 'M', 'u'), + (0x1D651, 'M', 'v'), + (0x1D652, 'M', 'w'), + (0x1D653, 'M', 'x'), + (0x1D654, 'M', 'y'), + (0x1D655, 'M', 'z'), + (0x1D656, 'M', 'a'), + (0x1D657, 'M', 'b'), + (0x1D658, 'M', 'c'), + (0x1D659, 'M', 'd'), + (0x1D65A, 'M', 'e'), + (0x1D65B, 'M', 'f'), + (0x1D65C, 'M', 'g'), + (0x1D65D, 'M', 'h'), + (0x1D65E, 'M', 'i'), + (0x1D65F, 'M', 'j'), + (0x1D660, 'M', 'k'), + (0x1D661, 'M', 'l'), + (0x1D662, 'M', 'm'), + (0x1D663, 'M', 'n'), + (0x1D664, 'M', 'o'), + (0x1D665, 'M', 'p'), + (0x1D666, 'M', 'q'), + (0x1D667, 'M', 'r'), + (0x1D668, 'M', 's'), + (0x1D669, 'M', 't'), + (0x1D66A, 'M', 'u'), + (0x1D66B, 'M', 'v'), + (0x1D66C, 'M', 'w'), + (0x1D66D, 'M', 'x'), + (0x1D66E, 'M', 'y'), + (0x1D66F, 'M', 'z'), + (0x1D670, 'M', 'a'), + (0x1D671, 'M', 'b'), + (0x1D672, 'M', 'c'), + (0x1D673, 'M', 'd'), + (0x1D674, 'M', 'e'), + (0x1D675, 'M', 'f'), + (0x1D676, 'M', 'g'), + (0x1D677, 'M', 'h'), + (0x1D678, 'M', 'i'), + (0x1D679, 'M', 'j'), + (0x1D67A, 'M', 'k'), + (0x1D67B, 'M', 'l'), + (0x1D67C, 'M', 'm'), + (0x1D67D, 'M', 'n'), + (0x1D67E, 'M', 'o'), + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D683, 'M', 't'), + (0x1D684, 'M', 'u'), + (0x1D685, 'M', 'v'), + (0x1D686, 'M', 'w'), + (0x1D687, 'M', 'x'), + (0x1D688, 'M', 'y'), + (0x1D689, 'M', 'z'), + (0x1D68A, 'M', 'a'), + (0x1D68B, 'M', 'b'), + (0x1D68C, 'M', 'c'), + (0x1D68D, 'M', 'd'), + (0x1D68E, 'M', 'e'), + (0x1D68F, 'M', 'f'), + (0x1D690, 'M', 'g'), + (0x1D691, 'M', 'h'), + (0x1D692, 'M', 'i'), + (0x1D693, 'M', 'j'), + (0x1D694, 'M', 'k'), + (0x1D695, 'M', 'l'), + (0x1D696, 'M', 'm'), + (0x1D697, 'M', 'n'), + (0x1D698, 'M', 'o'), + (0x1D699, 'M', 'p'), + (0x1D69A, 'M', 'q'), + (0x1D69B, 'M', 'r'), + (0x1D69C, 'M', 's'), + (0x1D69D, 'M', 't'), + (0x1D69E, 'M', 'u'), + (0x1D69F, 'M', 'v'), + (0x1D6A0, 'M', 'w'), + (0x1D6A1, 'M', 'x'), + (0x1D6A2, 'M', 'y'), + (0x1D6A3, 'M', 'z'), + (0x1D6A4, 'M', 'ı'), + (0x1D6A5, 'M', 'ȷ'), + (0x1D6A6, 'X'), + (0x1D6A8, 'M', 'α'), + (0x1D6A9, 'M', 'β'), + (0x1D6AA, 'M', 'γ'), + (0x1D6AB, 'M', 'δ'), + (0x1D6AC, 'M', 'ε'), + (0x1D6AD, 'M', 'ζ'), + (0x1D6AE, 'M', 'η'), + (0x1D6AF, 'M', 'θ'), + (0x1D6B0, 'M', 'ι'), + (0x1D6B1, 'M', 'κ'), + (0x1D6B2, 'M', 'λ'), + (0x1D6B3, 'M', 'μ'), + (0x1D6B4, 'M', 'ν'), + (0x1D6B5, 'M', 'ξ'), + (0x1D6B6, 'M', 'ο'), + (0x1D6B7, 'M', 'π'), + (0x1D6B8, 'M', 'ρ'), + (0x1D6B9, 'M', 'θ'), + (0x1D6BA, 'M', 'σ'), + (0x1D6BB, 'M', 'τ'), + (0x1D6BC, 'M', 'υ'), + (0x1D6BD, 'M', 'φ'), + (0x1D6BE, 'M', 'χ'), + (0x1D6BF, 'M', 'ψ'), + (0x1D6C0, 'M', 'ω'), + (0x1D6C1, 'M', '∇'), + (0x1D6C2, 'M', 'α'), + (0x1D6C3, 'M', 'β'), + (0x1D6C4, 'M', 'γ'), + (0x1D6C5, 'M', 'δ'), + (0x1D6C6, 'M', 'ε'), + (0x1D6C7, 'M', 'ζ'), + (0x1D6C8, 'M', 'η'), + (0x1D6C9, 'M', 'θ'), + (0x1D6CA, 'M', 'ι'), + (0x1D6CB, 'M', 'κ'), + (0x1D6CC, 'M', 'λ'), + (0x1D6CD, 'M', 'μ'), + (0x1D6CE, 'M', 'ν'), + (0x1D6CF, 'M', 'ξ'), + (0x1D6D0, 'M', 'ο'), + (0x1D6D1, 'M', 'π'), + (0x1D6D2, 'M', 'ρ'), + (0x1D6D3, 'M', 'σ'), + (0x1D6D5, 'M', 'τ'), + (0x1D6D6, 'M', 'υ'), + (0x1D6D7, 'M', 'φ'), + (0x1D6D8, 'M', 'χ'), + (0x1D6D9, 'M', 'ψ'), + (0x1D6DA, 'M', 'ω'), + (0x1D6DB, 'M', '∂'), + (0x1D6DC, 'M', 'ε'), + (0x1D6DD, 'M', 'θ'), + (0x1D6DE, 'M', 'κ'), + (0x1D6DF, 'M', 'φ'), + (0x1D6E0, 'M', 'ρ'), + (0x1D6E1, 'M', 'π'), + (0x1D6E2, 'M', 'α'), + (0x1D6E3, 'M', 'β'), + (0x1D6E4, 'M', 'γ'), + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E9, 'M', 'θ'), + (0x1D6EA, 'M', 'ι'), + (0x1D6EB, 'M', 'κ'), + (0x1D6EC, 'M', 'λ'), + (0x1D6ED, 'M', 'μ'), + (0x1D6EE, 'M', 'ν'), + (0x1D6EF, 'M', 'ξ'), + (0x1D6F0, 'M', 'ο'), + (0x1D6F1, 'M', 'π'), + (0x1D6F2, 'M', 'ρ'), + (0x1D6F3, 'M', 'θ'), + (0x1D6F4, 'M', 'σ'), + (0x1D6F5, 'M', 'τ'), + (0x1D6F6, 'M', 'υ'), + (0x1D6F7, 'M', 'φ'), + (0x1D6F8, 'M', 'χ'), + (0x1D6F9, 'M', 'ψ'), + (0x1D6FA, 'M', 'ω'), + (0x1D6FB, 'M', '∇'), + (0x1D6FC, 'M', 'α'), + (0x1D6FD, 'M', 'β'), + (0x1D6FE, 'M', 'γ'), + (0x1D6FF, 'M', 'δ'), + (0x1D700, 'M', 'ε'), + (0x1D701, 'M', 'ζ'), + (0x1D702, 'M', 'η'), + (0x1D703, 'M', 'θ'), + (0x1D704, 'M', 'ι'), + (0x1D705, 'M', 'κ'), + (0x1D706, 'M', 'λ'), + (0x1D707, 'M', 'μ'), + (0x1D708, 'M', 'ν'), + (0x1D709, 'M', 'ξ'), + (0x1D70A, 'M', 'ο'), + (0x1D70B, 'M', 'π'), + (0x1D70C, 'M', 'ρ'), + (0x1D70D, 'M', 'σ'), + (0x1D70F, 'M', 'τ'), + (0x1D710, 'M', 'υ'), + (0x1D711, 'M', 'φ'), + (0x1D712, 'M', 'χ'), + (0x1D713, 'M', 'ψ'), + (0x1D714, 'M', 'ω'), + (0x1D715, 'M', '∂'), + (0x1D716, 'M', 'ε'), + (0x1D717, 'M', 'θ'), + (0x1D718, 'M', 'κ'), + (0x1D719, 'M', 'φ'), + (0x1D71A, 'M', 'ρ'), + (0x1D71B, 'M', 'π'), + (0x1D71C, 'M', 'α'), + (0x1D71D, 'M', 'β'), + (0x1D71E, 'M', 'γ'), + (0x1D71F, 'M', 'δ'), + (0x1D720, 'M', 'ε'), + (0x1D721, 'M', 'ζ'), + (0x1D722, 'M', 'η'), + (0x1D723, 'M', 'θ'), + (0x1D724, 'M', 'ι'), + (0x1D725, 'M', 'κ'), + (0x1D726, 'M', 'λ'), + (0x1D727, 'M', 'μ'), + (0x1D728, 'M', 'ν'), + (0x1D729, 'M', 'ξ'), + (0x1D72A, 'M', 'ο'), + (0x1D72B, 'M', 'π'), + (0x1D72C, 'M', 'ρ'), + (0x1D72D, 'M', 'θ'), + (0x1D72E, 'M', 'σ'), + (0x1D72F, 'M', 'τ'), + (0x1D730, 'M', 'υ'), + (0x1D731, 'M', 'φ'), + (0x1D732, 'M', 'χ'), + (0x1D733, 'M', 'ψ'), + (0x1D734, 'M', 'ω'), + (0x1D735, 'M', '∇'), + (0x1D736, 'M', 'α'), + (0x1D737, 'M', 'β'), + (0x1D738, 'M', 'γ'), + (0x1D739, 'M', 'δ'), + (0x1D73A, 'M', 'ε'), + (0x1D73B, 'M', 'ζ'), + (0x1D73C, 'M', 'η'), + (0x1D73D, 'M', 'θ'), + (0x1D73E, 'M', 'ι'), + (0x1D73F, 'M', 'κ'), + (0x1D740, 'M', 'λ'), + (0x1D741, 'M', 'μ'), + (0x1D742, 'M', 'ν'), + (0x1D743, 'M', 'ξ'), + (0x1D744, 'M', 'ο'), + (0x1D745, 'M', 'π'), + (0x1D746, 'M', 'ρ'), + (0x1D747, 'M', 'σ'), + (0x1D749, 'M', 'τ'), + (0x1D74A, 'M', 'υ'), + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74F, 'M', '∂'), + (0x1D750, 'M', 'ε'), + (0x1D751, 'M', 'θ'), + (0x1D752, 'M', 'κ'), + (0x1D753, 'M', 'φ'), + (0x1D754, 'M', 'ρ'), + (0x1D755, 'M', 'π'), + (0x1D756, 'M', 'α'), + (0x1D757, 'M', 'β'), + (0x1D758, 'M', 'γ'), + (0x1D759, 'M', 'δ'), + (0x1D75A, 'M', 'ε'), + (0x1D75B, 'M', 'ζ'), + (0x1D75C, 'M', 'η'), + (0x1D75D, 'M', 'θ'), + (0x1D75E, 'M', 'ι'), + (0x1D75F, 'M', 'κ'), + (0x1D760, 'M', 'λ'), + (0x1D761, 'M', 'μ'), + (0x1D762, 'M', 'ν'), + (0x1D763, 'M', 'ξ'), + (0x1D764, 'M', 'ο'), + (0x1D765, 'M', 'π'), + (0x1D766, 'M', 'ρ'), + (0x1D767, 'M', 'θ'), + (0x1D768, 'M', 'σ'), + (0x1D769, 'M', 'τ'), + (0x1D76A, 'M', 'υ'), + (0x1D76B, 'M', 'φ'), + (0x1D76C, 'M', 'χ'), + (0x1D76D, 'M', 'ψ'), + (0x1D76E, 'M', 'ω'), + (0x1D76F, 'M', '∇'), + (0x1D770, 'M', 'α'), + (0x1D771, 'M', 'β'), + (0x1D772, 'M', 'γ'), + (0x1D773, 'M', 'δ'), + (0x1D774, 'M', 'ε'), + (0x1D775, 'M', 'ζ'), + (0x1D776, 'M', 'η'), + (0x1D777, 'M', 'θ'), + (0x1D778, 'M', 'ι'), + (0x1D779, 'M', 'κ'), + (0x1D77A, 'M', 'λ'), + (0x1D77B, 'M', 'μ'), + (0x1D77C, 'M', 'ν'), + (0x1D77D, 'M', 'ξ'), + (0x1D77E, 'M', 'ο'), + (0x1D77F, 'M', 'π'), + (0x1D780, 'M', 'ρ'), + (0x1D781, 'M', 'σ'), + (0x1D783, 'M', 'τ'), + (0x1D784, 'M', 'υ'), + (0x1D785, 'M', 'φ'), + (0x1D786, 'M', 'χ'), + (0x1D787, 'M', 'ψ'), + (0x1D788, 'M', 'ω'), + (0x1D789, 'M', '∂'), + (0x1D78A, 'M', 'ε'), + (0x1D78B, 'M', 'θ'), + (0x1D78C, 'M', 'κ'), + (0x1D78D, 'M', 'φ'), + (0x1D78E, 'M', 'ρ'), + (0x1D78F, 'M', 'π'), + (0x1D790, 'M', 'α'), + (0x1D791, 'M', 'β'), + (0x1D792, 'M', 'γ'), + (0x1D793, 'M', 'δ'), + (0x1D794, 'M', 'ε'), + (0x1D795, 'M', 'ζ'), + (0x1D796, 'M', 'η'), + (0x1D797, 'M', 'θ'), + (0x1D798, 'M', 'ι'), + (0x1D799, 'M', 'κ'), + (0x1D79A, 'M', 'λ'), + (0x1D79B, 'M', 'μ'), + (0x1D79C, 'M', 'ν'), + (0x1D79D, 'M', 'ξ'), + (0x1D79E, 'M', 'ο'), + (0x1D79F, 'M', 'π'), + (0x1D7A0, 'M', 'ρ'), + (0x1D7A1, 'M', 'θ'), + (0x1D7A2, 'M', 'σ'), + (0x1D7A3, 'M', 'τ'), + (0x1D7A4, 'M', 'υ'), + (0x1D7A5, 'M', 'φ'), + (0x1D7A6, 'M', 'χ'), + (0x1D7A7, 'M', 'ψ'), + (0x1D7A8, 'M', 'ω'), + (0x1D7A9, 'M', '∇'), + (0x1D7AA, 'M', 'α'), + (0x1D7AB, 'M', 'β'), + (0x1D7AC, 'M', 'γ'), + (0x1D7AD, 'M', 'δ'), + (0x1D7AE, 'M', 'ε'), + (0x1D7AF, 'M', 'ζ'), + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B4, 'M', 'λ'), + (0x1D7B5, 'M', 'μ'), + (0x1D7B6, 'M', 'ν'), + (0x1D7B7, 'M', 'ξ'), + (0x1D7B8, 'M', 'ο'), + (0x1D7B9, 'M', 'π'), + (0x1D7BA, 'M', 'ρ'), + (0x1D7BB, 'M', 'σ'), + (0x1D7BD, 'M', 'τ'), + (0x1D7BE, 'M', 'υ'), + (0x1D7BF, 'M', 'φ'), + (0x1D7C0, 'M', 'χ'), + (0x1D7C1, 'M', 'ψ'), + (0x1D7C2, 'M', 'ω'), + (0x1D7C3, 'M', '∂'), + (0x1D7C4, 'M', 'ε'), + (0x1D7C5, 'M', 'θ'), + (0x1D7C6, 'M', 'κ'), + (0x1D7C7, 'M', 'φ'), + (0x1D7C8, 'M', 'ρ'), + (0x1D7C9, 'M', 'π'), + (0x1D7CA, 'M', 'ϝ'), + (0x1D7CC, 'X'), + (0x1D7CE, 'M', '0'), + (0x1D7CF, 'M', '1'), + (0x1D7D0, 'M', '2'), + (0x1D7D1, 'M', '3'), + (0x1D7D2, 'M', '4'), + (0x1D7D3, 'M', '5'), + (0x1D7D4, 'M', '6'), + (0x1D7D5, 'M', '7'), + (0x1D7D6, 'M', '8'), + (0x1D7D7, 'M', '9'), + (0x1D7D8, 'M', '0'), + (0x1D7D9, 'M', '1'), + (0x1D7DA, 'M', '2'), + (0x1D7DB, 'M', '3'), + (0x1D7DC, 'M', '4'), + (0x1D7DD, 'M', '5'), + (0x1D7DE, 'M', '6'), + (0x1D7DF, 'M', '7'), + (0x1D7E0, 'M', '8'), + (0x1D7E1, 'M', '9'), + (0x1D7E2, 'M', '0'), + (0x1D7E3, 'M', '1'), + (0x1D7E4, 'M', '2'), + (0x1D7E5, 'M', '3'), + (0x1D7E6, 'M', '4'), + (0x1D7E7, 'M', '5'), + (0x1D7E8, 'M', '6'), + (0x1D7E9, 'M', '7'), + (0x1D7EA, 'M', '8'), + (0x1D7EB, 'M', '9'), + (0x1D7EC, 'M', '0'), + (0x1D7ED, 'M', '1'), + (0x1D7EE, 'M', '2'), + (0x1D7EF, 'M', '3'), + (0x1D7F0, 'M', '4'), + (0x1D7F1, 'M', '5'), + (0x1D7F2, 'M', '6'), + (0x1D7F3, 'M', '7'), + (0x1D7F4, 'M', '8'), + (0x1D7F5, 'M', '9'), + (0x1D7F6, 'M', '0'), + (0x1D7F7, 'M', '1'), + (0x1D7F8, 'M', '2'), + (0x1D7F9, 'M', '3'), + (0x1D7FA, 'M', '4'), + (0x1D7FB, 'M', '5'), + (0x1D7FC, 'M', '6'), + (0x1D7FD, 'M', '7'), + (0x1D7FE, 'M', '8'), + (0x1D7FF, 'M', '9'), + (0x1D800, 'V'), + (0x1DA8C, 'X'), + (0x1DA9B, 'V'), + (0x1DAA0, 'X'), + (0x1DAA1, 'V'), + (0x1DAB0, 'X'), + (0x1DF00, 'V'), + (0x1DF1F, 'X'), + (0x1DF25, 'V'), + (0x1DF2B, 'X'), + (0x1E000, 'V'), + (0x1E007, 'X'), + (0x1E008, 'V'), + (0x1E019, 'X'), + (0x1E01B, 'V'), + (0x1E022, 'X'), + (0x1E023, 'V'), + (0x1E025, 'X'), + (0x1E026, 'V'), + (0x1E02B, 'X'), + (0x1E030, 'M', 'а'), + (0x1E031, 'M', 'б'), + (0x1E032, 'M', 'в'), + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E037, 'M', 'з'), + (0x1E038, 'M', 'и'), + (0x1E039, 'M', 'к'), + (0x1E03A, 'M', 'л'), + (0x1E03B, 'M', 'м'), + (0x1E03C, 'M', 'о'), + (0x1E03D, 'M', 'п'), + (0x1E03E, 'M', 'р'), + (0x1E03F, 'M', 'с'), + (0x1E040, 'M', 'т'), + (0x1E041, 'M', 'у'), + (0x1E042, 'M', 'ф'), + (0x1E043, 'M', 'х'), + (0x1E044, 'M', 'ц'), + (0x1E045, 'M', 'ч'), + (0x1E046, 'M', 'ш'), + (0x1E047, 'M', 'ы'), + (0x1E048, 'M', 'э'), + (0x1E049, 'M', 'ю'), + (0x1E04A, 'M', 'ꚉ'), + (0x1E04B, 'M', 'ә'), + (0x1E04C, 'M', 'і'), + (0x1E04D, 'M', 'ј'), + (0x1E04E, 'M', 'ө'), + (0x1E04F, 'M', 'ү'), + (0x1E050, 'M', 'ӏ'), + (0x1E051, 'M', 'а'), + (0x1E052, 'M', 'б'), + (0x1E053, 'M', 'в'), + (0x1E054, 'M', 'г'), + (0x1E055, 'M', 'д'), + (0x1E056, 'M', 'е'), + (0x1E057, 'M', 'ж'), + (0x1E058, 'M', 'з'), + (0x1E059, 'M', 'и'), + (0x1E05A, 'M', 'к'), + (0x1E05B, 'M', 'л'), + (0x1E05C, 'M', 'о'), + (0x1E05D, 'M', 'п'), + (0x1E05E, 'M', 'с'), + (0x1E05F, 'M', 'у'), + (0x1E060, 'M', 'ф'), + (0x1E061, 'M', 'х'), + (0x1E062, 'M', 'ц'), + (0x1E063, 'M', 'ч'), + (0x1E064, 'M', 'ш'), + (0x1E065, 'M', 'ъ'), + (0x1E066, 'M', 'ы'), + (0x1E067, 'M', 'ґ'), + (0x1E068, 'M', 'і'), + (0x1E069, 'M', 'ѕ'), + (0x1E06A, 'M', 'џ'), + (0x1E06B, 'M', 'ҫ'), + (0x1E06C, 'M', 'ꙑ'), + (0x1E06D, 'M', 'ұ'), + (0x1E06E, 'X'), + (0x1E08F, 'V'), + (0x1E090, 'X'), + (0x1E100, 'V'), + (0x1E12D, 'X'), + (0x1E130, 'V'), + (0x1E13E, 'X'), + (0x1E140, 'V'), + (0x1E14A, 'X'), + (0x1E14E, 'V'), + (0x1E150, 'X'), + (0x1E290, 'V'), + (0x1E2AF, 'X'), + (0x1E2C0, 'V'), + (0x1E2FA, 'X'), + (0x1E2FF, 'V'), + (0x1E300, 'X'), + (0x1E4D0, 'V'), + (0x1E4FA, 'X'), + (0x1E7E0, 'V'), + (0x1E7E7, 'X'), + (0x1E7E8, 'V'), + (0x1E7EC, 'X'), + (0x1E7ED, 'V'), + (0x1E7EF, 'X'), + (0x1E7F0, 'V'), + (0x1E7FF, 'X'), + (0x1E800, 'V'), + (0x1E8C5, 'X'), + (0x1E8C7, 'V'), + (0x1E8D7, 'X'), + (0x1E900, 'M', '𞤢'), + (0x1E901, 'M', '𞤣'), + (0x1E902, 'M', '𞤤'), + (0x1E903, 'M', '𞤥'), + (0x1E904, 'M', '𞤦'), + (0x1E905, 'M', '𞤧'), + (0x1E906, 'M', '𞤨'), + (0x1E907, 'M', '𞤩'), + (0x1E908, 'M', '𞤪'), + (0x1E909, 'M', '𞤫'), + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90E, 'M', '𞤰'), + (0x1E90F, 'M', '𞤱'), + (0x1E910, 'M', '𞤲'), + (0x1E911, 'M', '𞤳'), + (0x1E912, 'M', '𞤴'), + (0x1E913, 'M', '𞤵'), + (0x1E914, 'M', '𞤶'), + (0x1E915, 'M', '𞤷'), + (0x1E916, 'M', '𞤸'), + (0x1E917, 'M', '𞤹'), + (0x1E918, 'M', '𞤺'), + (0x1E919, 'M', '𞤻'), + (0x1E91A, 'M', '𞤼'), + (0x1E91B, 'M', '𞤽'), + (0x1E91C, 'M', '𞤾'), + (0x1E91D, 'M', '𞤿'), + (0x1E91E, 'M', '𞥀'), + (0x1E91F, 'M', '𞥁'), + (0x1E920, 'M', '𞥂'), + (0x1E921, 'M', '𞥃'), + (0x1E922, 'V'), + (0x1E94C, 'X'), + (0x1E950, 'V'), + (0x1E95A, 'X'), + (0x1E95E, 'V'), + (0x1E960, 'X'), + (0x1EC71, 'V'), + (0x1ECB5, 'X'), + (0x1ED01, 'V'), + (0x1ED3E, 'X'), + (0x1EE00, 'M', 'ا'), + (0x1EE01, 'M', 'ب'), + (0x1EE02, 'M', 'ج'), + (0x1EE03, 'M', 'د'), + (0x1EE04, 'X'), + (0x1EE05, 'M', 'و'), + (0x1EE06, 'M', 'ز'), + (0x1EE07, 'M', 'ح'), + (0x1EE08, 'M', 'ط'), + (0x1EE09, 'M', 'ي'), + (0x1EE0A, 'M', 'ك'), + (0x1EE0B, 'M', 'ل'), + (0x1EE0C, 'M', 'م'), + (0x1EE0D, 'M', 'ن'), + (0x1EE0E, 'M', 'س'), + (0x1EE0F, 'M', 'ع'), + (0x1EE10, 'M', 'ف'), + (0x1EE11, 'M', 'ص'), + (0x1EE12, 'M', 'ق'), + (0x1EE13, 'M', 'ر'), + (0x1EE14, 'M', 'ش'), + (0x1EE15, 'M', 'ت'), + (0x1EE16, 'M', 'ث'), + (0x1EE17, 'M', 'خ'), + (0x1EE18, 'M', 'ذ'), + (0x1EE19, 'M', 'ض'), + (0x1EE1A, 'M', 'ظ'), + (0x1EE1B, 'M', 'غ'), + (0x1EE1C, 'M', 'ٮ'), + (0x1EE1D, 'M', 'ں'), + (0x1EE1E, 'M', 'ڡ'), + (0x1EE1F, 'M', 'ٯ'), + (0x1EE20, 'X'), + (0x1EE21, 'M', 'ب'), + (0x1EE22, 'M', 'ج'), + (0x1EE23, 'X'), + (0x1EE24, 'M', 'ه'), + (0x1EE25, 'X'), + (0x1EE27, 'M', 'ح'), + (0x1EE28, 'X'), + (0x1EE29, 'M', 'ي'), + (0x1EE2A, 'M', 'ك'), + (0x1EE2B, 'M', 'ل'), + (0x1EE2C, 'M', 'م'), + (0x1EE2D, 'M', 'ن'), + (0x1EE2E, 'M', 'س'), + (0x1EE2F, 'M', 'ع'), + (0x1EE30, 'M', 'ف'), + (0x1EE31, 'M', 'ص'), + (0x1EE32, 'M', 'ق'), + (0x1EE33, 'X'), + (0x1EE34, 'M', 'ش'), + (0x1EE35, 'M', 'ت'), + (0x1EE36, 'M', 'ث'), + (0x1EE37, 'M', 'خ'), + (0x1EE38, 'X'), + (0x1EE39, 'M', 'ض'), + (0x1EE3A, 'X'), + (0x1EE3B, 'M', 'غ'), + (0x1EE3C, 'X'), + (0x1EE42, 'M', 'ج'), + (0x1EE43, 'X'), + (0x1EE47, 'M', 'ح'), + (0x1EE48, 'X'), + (0x1EE49, 'M', 'ي'), + (0x1EE4A, 'X'), + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4F, 'M', 'ع'), + (0x1EE50, 'X'), + (0x1EE51, 'M', 'ص'), + (0x1EE52, 'M', 'ق'), + (0x1EE53, 'X'), + (0x1EE54, 'M', 'ش'), + (0x1EE55, 'X'), + (0x1EE57, 'M', 'خ'), + (0x1EE58, 'X'), + (0x1EE59, 'M', 'ض'), + (0x1EE5A, 'X'), + (0x1EE5B, 'M', 'غ'), + (0x1EE5C, 'X'), + (0x1EE5D, 'M', 'ں'), + (0x1EE5E, 'X'), + (0x1EE5F, 'M', 'ٯ'), + (0x1EE60, 'X'), + (0x1EE61, 'M', 'ب'), + (0x1EE62, 'M', 'ج'), + (0x1EE63, 'X'), + (0x1EE64, 'M', 'ه'), + (0x1EE65, 'X'), + (0x1EE67, 'M', 'ح'), + (0x1EE68, 'M', 'ط'), + (0x1EE69, 'M', 'ي'), + (0x1EE6A, 'M', 'ك'), + (0x1EE6B, 'X'), + (0x1EE6C, 'M', 'م'), + (0x1EE6D, 'M', 'ن'), + (0x1EE6E, 'M', 'س'), + (0x1EE6F, 'M', 'ع'), + (0x1EE70, 'M', 'ف'), + (0x1EE71, 'M', 'ص'), + (0x1EE72, 'M', 'ق'), + (0x1EE73, 'X'), + (0x1EE74, 'M', 'ش'), + (0x1EE75, 'M', 'ت'), + (0x1EE76, 'M', 'ث'), + (0x1EE77, 'M', 'خ'), + (0x1EE78, 'X'), + (0x1EE79, 'M', 'ض'), + (0x1EE7A, 'M', 'ظ'), + (0x1EE7B, 'M', 'غ'), + (0x1EE7C, 'M', 'ٮ'), + (0x1EE7D, 'X'), + (0x1EE7E, 'M', 'ڡ'), + (0x1EE7F, 'X'), + (0x1EE80, 'M', 'ا'), + (0x1EE81, 'M', 'ب'), + (0x1EE82, 'M', 'ج'), + (0x1EE83, 'M', 'د'), + (0x1EE84, 'M', 'ه'), + (0x1EE85, 'M', 'و'), + (0x1EE86, 'M', 'ز'), + (0x1EE87, 'M', 'ح'), + (0x1EE88, 'M', 'ط'), + (0x1EE89, 'M', 'ي'), + (0x1EE8A, 'X'), + (0x1EE8B, 'M', 'ل'), + (0x1EE8C, 'M', 'م'), + (0x1EE8D, 'M', 'ن'), + (0x1EE8E, 'M', 'س'), + (0x1EE8F, 'M', 'ع'), + (0x1EE90, 'M', 'ف'), + (0x1EE91, 'M', 'ص'), + (0x1EE92, 'M', 'ق'), + (0x1EE93, 'M', 'ر'), + (0x1EE94, 'M', 'ش'), + (0x1EE95, 'M', 'ت'), + (0x1EE96, 'M', 'ث'), + (0x1EE97, 'M', 'خ'), + (0x1EE98, 'M', 'ذ'), + (0x1EE99, 'M', 'ض'), + (0x1EE9A, 'M', 'ظ'), + (0x1EE9B, 'M', 'غ'), + (0x1EE9C, 'X'), + (0x1EEA1, 'M', 'ب'), + (0x1EEA2, 'M', 'ج'), + (0x1EEA3, 'M', 'د'), + (0x1EEA4, 'X'), + (0x1EEA5, 'M', 'و'), + (0x1EEA6, 'M', 'ز'), + (0x1EEA7, 'M', 'ح'), + (0x1EEA8, 'M', 'ط'), + (0x1EEA9, 'M', 'ي'), + (0x1EEAA, 'X'), + (0x1EEAB, 'M', 'ل'), + (0x1EEAC, 'M', 'م'), + (0x1EEAD, 'M', 'ن'), + (0x1EEAE, 'M', 'س'), + (0x1EEAF, 'M', 'ع'), + (0x1EEB0, 'M', 'ف'), + (0x1EEB1, 'M', 'ص'), + (0x1EEB2, 'M', 'ق'), + (0x1EEB3, 'M', 'ر'), + (0x1EEB4, 'M', 'ش'), + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB9, 'M', 'ض'), + (0x1EEBA, 'M', 'ظ'), + (0x1EEBB, 'M', 'غ'), + (0x1EEBC, 'X'), + (0x1EEF0, 'V'), + (0x1EEF2, 'X'), + (0x1F000, 'V'), + (0x1F02C, 'X'), + (0x1F030, 'V'), + (0x1F094, 'X'), + (0x1F0A0, 'V'), + (0x1F0AF, 'X'), + (0x1F0B1, 'V'), + (0x1F0C0, 'X'), + (0x1F0C1, 'V'), + (0x1F0D0, 'X'), + (0x1F0D1, 'V'), + (0x1F0F6, 'X'), + (0x1F101, '3', '0,'), + (0x1F102, '3', '1,'), + (0x1F103, '3', '2,'), + (0x1F104, '3', '3,'), + (0x1F105, '3', '4,'), + (0x1F106, '3', '5,'), + (0x1F107, '3', '6,'), + (0x1F108, '3', '7,'), + (0x1F109, '3', '8,'), + (0x1F10A, '3', '9,'), + (0x1F10B, 'V'), + (0x1F110, '3', '(a)'), + (0x1F111, '3', '(b)'), + (0x1F112, '3', '(c)'), + (0x1F113, '3', '(d)'), + (0x1F114, '3', '(e)'), + (0x1F115, '3', '(f)'), + (0x1F116, '3', '(g)'), + (0x1F117, '3', '(h)'), + (0x1F118, '3', '(i)'), + (0x1F119, '3', '(j)'), + (0x1F11A, '3', '(k)'), + (0x1F11B, '3', '(l)'), + (0x1F11C, '3', '(m)'), + (0x1F11D, '3', '(n)'), + (0x1F11E, '3', '(o)'), + (0x1F11F, '3', '(p)'), + (0x1F120, '3', '(q)'), + (0x1F121, '3', '(r)'), + (0x1F122, '3', '(s)'), + (0x1F123, '3', '(t)'), + (0x1F124, '3', '(u)'), + (0x1F125, '3', '(v)'), + (0x1F126, '3', '(w)'), + (0x1F127, '3', '(x)'), + (0x1F128, '3', '(y)'), + (0x1F129, '3', '(z)'), + (0x1F12A, 'M', '〔s〕'), + (0x1F12B, 'M', 'c'), + (0x1F12C, 'M', 'r'), + (0x1F12D, 'M', 'cd'), + (0x1F12E, 'M', 'wz'), + (0x1F12F, 'V'), + (0x1F130, 'M', 'a'), + (0x1F131, 'M', 'b'), + (0x1F132, 'M', 'c'), + (0x1F133, 'M', 'd'), + (0x1F134, 'M', 'e'), + (0x1F135, 'M', 'f'), + (0x1F136, 'M', 'g'), + (0x1F137, 'M', 'h'), + (0x1F138, 'M', 'i'), + (0x1F139, 'M', 'j'), + (0x1F13A, 'M', 'k'), + (0x1F13B, 'M', 'l'), + (0x1F13C, 'M', 'm'), + (0x1F13D, 'M', 'n'), + (0x1F13E, 'M', 'o'), + (0x1F13F, 'M', 'p'), + (0x1F140, 'M', 'q'), + (0x1F141, 'M', 'r'), + (0x1F142, 'M', 's'), + (0x1F143, 'M', 't'), + (0x1F144, 'M', 'u'), + (0x1F145, 'M', 'v'), + (0x1F146, 'M', 'w'), + (0x1F147, 'M', 'x'), + (0x1F148, 'M', 'y'), + (0x1F149, 'M', 'z'), + (0x1F14A, 'M', 'hv'), + (0x1F14B, 'M', 'mv'), + (0x1F14C, 'M', 'sd'), + (0x1F14D, 'M', 'ss'), + (0x1F14E, 'M', 'ppv'), + (0x1F14F, 'M', 'wc'), + (0x1F150, 'V'), + (0x1F16A, 'M', 'mc'), + (0x1F16B, 'M', 'md'), + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F1AE, 'X'), + (0x1F1E6, 'V'), + (0x1F200, 'M', 'ほか'), + (0x1F201, 'M', 'ココ'), + (0x1F202, 'M', 'サ'), + (0x1F203, 'X'), + (0x1F210, 'M', '手'), + (0x1F211, 'M', '字'), + (0x1F212, 'M', '双'), + (0x1F213, 'M', 'デ'), + (0x1F214, 'M', '二'), + (0x1F215, 'M', '多'), + (0x1F216, 'M', '解'), + (0x1F217, 'M', '天'), + (0x1F218, 'M', '交'), + (0x1F219, 'M', '映'), + (0x1F21A, 'M', '無'), + (0x1F21B, 'M', '料'), + (0x1F21C, 'M', '前'), + (0x1F21D, 'M', '後'), + (0x1F21E, 'M', '再'), + (0x1F21F, 'M', '新'), + (0x1F220, 'M', '初'), + (0x1F221, 'M', '終'), + (0x1F222, 'M', '生'), + (0x1F223, 'M', '販'), + (0x1F224, 'M', '声'), + (0x1F225, 'M', '吹'), + (0x1F226, 'M', '演'), + (0x1F227, 'M', '投'), + (0x1F228, 'M', '捕'), + (0x1F229, 'M', '一'), + (0x1F22A, 'M', '三'), + (0x1F22B, 'M', '遊'), + (0x1F22C, 'M', '左'), + (0x1F22D, 'M', '中'), + (0x1F22E, 'M', '右'), + (0x1F22F, 'M', '指'), + (0x1F230, 'M', '走'), + (0x1F231, 'M', '打'), + (0x1F232, 'M', '禁'), + (0x1F233, 'M', '空'), + (0x1F234, 'M', '合'), + (0x1F235, 'M', '満'), + (0x1F236, 'M', '有'), + (0x1F237, 'M', '月'), + (0x1F238, 'M', '申'), + (0x1F239, 'M', '割'), + (0x1F23A, 'M', '営'), + (0x1F23B, 'M', '配'), + (0x1F23C, 'X'), + (0x1F240, 'M', '〔本〕'), + (0x1F241, 'M', '〔三〕'), + (0x1F242, 'M', '〔二〕'), + (0x1F243, 'M', '〔安〕'), + (0x1F244, 'M', '〔点〕'), + (0x1F245, 'M', '〔打〕'), + (0x1F246, 'M', '〔盗〕'), + (0x1F247, 'M', '〔勝〕'), + (0x1F248, 'M', '〔敗〕'), + (0x1F249, 'X'), + (0x1F250, 'M', '得'), + (0x1F251, 'M', '可'), + (0x1F252, 'X'), + (0x1F260, 'V'), + (0x1F266, 'X'), + (0x1F300, 'V'), + (0x1F6D8, 'X'), + (0x1F6DC, 'V'), + (0x1F6ED, 'X'), + (0x1F6F0, 'V'), + (0x1F6FD, 'X'), + (0x1F700, 'V'), + (0x1F777, 'X'), + (0x1F77B, 'V'), + (0x1F7DA, 'X'), + (0x1F7E0, 'V'), + (0x1F7EC, 'X'), + (0x1F7F0, 'V'), + (0x1F7F1, 'X'), + (0x1F800, 'V'), + (0x1F80C, 'X'), + (0x1F810, 'V'), + (0x1F848, 'X'), + (0x1F850, 'V'), + (0x1F85A, 'X'), + (0x1F860, 'V'), + (0x1F888, 'X'), + (0x1F890, 'V'), + (0x1F8AE, 'X'), + (0x1F8B0, 'V'), + (0x1F8B2, 'X'), + (0x1F900, 'V'), + (0x1FA54, 'X'), + (0x1FA60, 'V'), + (0x1FA6E, 'X'), + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA90, 'V'), + (0x1FABE, 'X'), + (0x1FABF, 'V'), + (0x1FAC6, 'X'), + (0x1FACE, 'V'), + (0x1FADC, 'X'), + (0x1FAE0, 'V'), + (0x1FAE9, 'X'), + (0x1FAF0, 'V'), + (0x1FAF9, 'X'), + (0x1FB00, 'V'), + (0x1FB93, 'X'), + (0x1FB94, 'V'), + (0x1FBCB, 'X'), + (0x1FBF0, 'M', '0'), + (0x1FBF1, 'M', '1'), + (0x1FBF2, 'M', '2'), + (0x1FBF3, 'M', '3'), + (0x1FBF4, 'M', '4'), + (0x1FBF5, 'M', '5'), + (0x1FBF6, 'M', '6'), + (0x1FBF7, 'M', '7'), + (0x1FBF8, 'M', '8'), + (0x1FBF9, 'M', '9'), + (0x1FBFA, 'X'), + (0x20000, 'V'), + (0x2A6E0, 'X'), + (0x2A700, 'V'), + (0x2B73A, 'X'), + (0x2B740, 'V'), + (0x2B81E, 'X'), + (0x2B820, 'V'), + (0x2CEA2, 'X'), + (0x2CEB0, 'V'), + (0x2EBE1, 'X'), + (0x2EBF0, 'V'), + (0x2EE5E, 'X'), + (0x2F800, 'M', '丽'), + (0x2F801, 'M', '丸'), + (0x2F802, 'M', '乁'), + (0x2F803, 'M', '𠄢'), + (0x2F804, 'M', '你'), + (0x2F805, 'M', '侮'), + (0x2F806, 'M', '侻'), + (0x2F807, 'M', '倂'), + (0x2F808, 'M', '偺'), + (0x2F809, 'M', '備'), + (0x2F80A, 'M', '僧'), + (0x2F80B, 'M', '像'), + (0x2F80C, 'M', '㒞'), + (0x2F80D, 'M', '𠘺'), + (0x2F80E, 'M', '免'), + (0x2F80F, 'M', '兔'), + (0x2F810, 'M', '兤'), + (0x2F811, 'M', '具'), + (0x2F812, 'M', '𠔜'), + (0x2F813, 'M', '㒹'), + (0x2F814, 'M', '內'), + (0x2F815, 'M', '再'), + (0x2F816, 'M', '𠕋'), + (0x2F817, 'M', '冗'), + (0x2F818, 'M', '冤'), + (0x2F819, 'M', '仌'), + (0x2F81A, 'M', '冬'), + (0x2F81B, 'M', '况'), + (0x2F81C, 'M', '𩇟'), + (0x2F81D, 'M', '凵'), + (0x2F81E, 'M', '刃'), + (0x2F81F, 'M', '㓟'), + (0x2F820, 'M', '刻'), + (0x2F821, 'M', '剆'), + (0x2F822, 'M', '割'), + (0x2F823, 'M', '剷'), + (0x2F824, 'M', '㔕'), + (0x2F825, 'M', '勇'), + (0x2F826, 'M', '勉'), + (0x2F827, 'M', '勤'), + (0x2F828, 'M', '勺'), + (0x2F829, 'M', '包'), + (0x2F82A, 'M', '匆'), + (0x2F82B, 'M', '北'), + (0x2F82C, 'M', '卉'), + (0x2F82D, 'M', '卑'), + (0x2F82E, 'M', '博'), + (0x2F82F, 'M', '即'), + (0x2F830, 'M', '卽'), + (0x2F831, 'M', '卿'), + (0x2F834, 'M', '𠨬'), + (0x2F835, 'M', '灰'), + (0x2F836, 'M', '及'), + (0x2F837, 'M', '叟'), + (0x2F838, 'M', '𠭣'), + (0x2F839, 'M', '叫'), + (0x2F83A, 'M', '叱'), + (0x2F83B, 'M', '吆'), + (0x2F83C, 'M', '咞'), + (0x2F83D, 'M', '吸'), + (0x2F83E, 'M', '呈'), + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F841, 'M', '哶'), + (0x2F842, 'M', '唐'), + (0x2F843, 'M', '啓'), + (0x2F844, 'M', '啣'), + (0x2F845, 'M', '善'), + (0x2F847, 'M', '喙'), + (0x2F848, 'M', '喫'), + (0x2F849, 'M', '喳'), + (0x2F84A, 'M', '嗂'), + (0x2F84B, 'M', '圖'), + (0x2F84C, 'M', '嘆'), + (0x2F84D, 'M', '圗'), + (0x2F84E, 'M', '噑'), + (0x2F84F, 'M', '噴'), + (0x2F850, 'M', '切'), + (0x2F851, 'M', '壮'), + (0x2F852, 'M', '城'), + (0x2F853, 'M', '埴'), + (0x2F854, 'M', '堍'), + (0x2F855, 'M', '型'), + (0x2F856, 'M', '堲'), + (0x2F857, 'M', '報'), + (0x2F858, 'M', '墬'), + (0x2F859, 'M', '𡓤'), + (0x2F85A, 'M', '売'), + (0x2F85B, 'M', '壷'), + (0x2F85C, 'M', '夆'), + (0x2F85D, 'M', '多'), + (0x2F85E, 'M', '夢'), + (0x2F85F, 'M', '奢'), + (0x2F860, 'M', '𡚨'), + (0x2F861, 'M', '𡛪'), + (0x2F862, 'M', '姬'), + (0x2F863, 'M', '娛'), + (0x2F864, 'M', '娧'), + (0x2F865, 'M', '姘'), + (0x2F866, 'M', '婦'), + (0x2F867, 'M', '㛮'), + (0x2F868, 'X'), + (0x2F869, 'M', '嬈'), + (0x2F86A, 'M', '嬾'), + (0x2F86C, 'M', '𡧈'), + (0x2F86D, 'M', '寃'), + (0x2F86E, 'M', '寘'), + (0x2F86F, 'M', '寧'), + (0x2F870, 'M', '寳'), + (0x2F871, 'M', '𡬘'), + (0x2F872, 'M', '寿'), + (0x2F873, 'M', '将'), + (0x2F874, 'X'), + (0x2F875, 'M', '尢'), + (0x2F876, 'M', '㞁'), + (0x2F877, 'M', '屠'), + (0x2F878, 'M', '屮'), + (0x2F879, 'M', '峀'), + (0x2F87A, 'M', '岍'), + (0x2F87B, 'M', '𡷤'), + (0x2F87C, 'M', '嵃'), + (0x2F87D, 'M', '𡷦'), + (0x2F87E, 'M', '嵮'), + (0x2F87F, 'M', '嵫'), + (0x2F880, 'M', '嵼'), + (0x2F881, 'M', '巡'), + (0x2F882, 'M', '巢'), + (0x2F883, 'M', '㠯'), + (0x2F884, 'M', '巽'), + (0x2F885, 'M', '帨'), + (0x2F886, 'M', '帽'), + (0x2F887, 'M', '幩'), + (0x2F888, 'M', '㡢'), + (0x2F889, 'M', '𢆃'), + (0x2F88A, 'M', '㡼'), + (0x2F88B, 'M', '庰'), + (0x2F88C, 'M', '庳'), + (0x2F88D, 'M', '庶'), + (0x2F88E, 'M', '廊'), + (0x2F88F, 'M', '𪎒'), + (0x2F890, 'M', '廾'), + (0x2F891, 'M', '𢌱'), + (0x2F893, 'M', '舁'), + (0x2F894, 'M', '弢'), + (0x2F896, 'M', '㣇'), + (0x2F897, 'M', '𣊸'), + (0x2F898, 'M', '𦇚'), + (0x2F899, 'M', '形'), + (0x2F89A, 'M', '彫'), + (0x2F89B, 'M', '㣣'), + (0x2F89C, 'M', '徚'), + (0x2F89D, 'M', '忍'), + (0x2F89E, 'M', '志'), + (0x2F89F, 'M', '忹'), + (0x2F8A0, 'M', '悁'), + (0x2F8A1, 'M', '㤺'), + (0x2F8A2, 'M', '㤜'), + (0x2F8A3, 'M', '悔'), + (0x2F8A4, 'M', '𢛔'), + (0x2F8A5, 'M', '惇'), + (0x2F8A6, 'M', '慈'), + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A9, 'M', '慌'), + (0x2F8AA, 'M', '慺'), + (0x2F8AB, 'M', '憎'), + (0x2F8AC, 'M', '憲'), + (0x2F8AD, 'M', '憤'), + (0x2F8AE, 'M', '憯'), + (0x2F8AF, 'M', '懞'), + (0x2F8B0, 'M', '懲'), + (0x2F8B1, 'M', '懶'), + (0x2F8B2, 'M', '成'), + (0x2F8B3, 'M', '戛'), + (0x2F8B4, 'M', '扝'), + (0x2F8B5, 'M', '抱'), + (0x2F8B6, 'M', '拔'), + (0x2F8B7, 'M', '捐'), + (0x2F8B8, 'M', '𢬌'), + (0x2F8B9, 'M', '挽'), + (0x2F8BA, 'M', '拼'), + (0x2F8BB, 'M', '捨'), + (0x2F8BC, 'M', '掃'), + (0x2F8BD, 'M', '揤'), + (0x2F8BE, 'M', '𢯱'), + (0x2F8BF, 'M', '搢'), + (0x2F8C0, 'M', '揅'), + (0x2F8C1, 'M', '掩'), + (0x2F8C2, 'M', '㨮'), + (0x2F8C3, 'M', '摩'), + (0x2F8C4, 'M', '摾'), + (0x2F8C5, 'M', '撝'), + (0x2F8C6, 'M', '摷'), + (0x2F8C7, 'M', '㩬'), + (0x2F8C8, 'M', '敏'), + (0x2F8C9, 'M', '敬'), + (0x2F8CA, 'M', '𣀊'), + (0x2F8CB, 'M', '旣'), + (0x2F8CC, 'M', '書'), + (0x2F8CD, 'M', '晉'), + (0x2F8CE, 'M', '㬙'), + (0x2F8CF, 'M', '暑'), + (0x2F8D0, 'M', '㬈'), + (0x2F8D1, 'M', '㫤'), + (0x2F8D2, 'M', '冒'), + (0x2F8D3, 'M', '冕'), + (0x2F8D4, 'M', '最'), + (0x2F8D5, 'M', '暜'), + (0x2F8D6, 'M', '肭'), + (0x2F8D7, 'M', '䏙'), + (0x2F8D8, 'M', '朗'), + (0x2F8D9, 'M', '望'), + (0x2F8DA, 'M', '朡'), + (0x2F8DB, 'M', '杞'), + (0x2F8DC, 'M', '杓'), + (0x2F8DD, 'M', '𣏃'), + (0x2F8DE, 'M', '㭉'), + (0x2F8DF, 'M', '柺'), + (0x2F8E0, 'M', '枅'), + (0x2F8E1, 'M', '桒'), + (0x2F8E2, 'M', '梅'), + (0x2F8E3, 'M', '𣑭'), + (0x2F8E4, 'M', '梎'), + (0x2F8E5, 'M', '栟'), + (0x2F8E6, 'M', '椔'), + (0x2F8E7, 'M', '㮝'), + (0x2F8E8, 'M', '楂'), + (0x2F8E9, 'M', '榣'), + (0x2F8EA, 'M', '槪'), + (0x2F8EB, 'M', '檨'), + (0x2F8EC, 'M', '𣚣'), + (0x2F8ED, 'M', '櫛'), + (0x2F8EE, 'M', '㰘'), + (0x2F8EF, 'M', '次'), + (0x2F8F0, 'M', '𣢧'), + (0x2F8F1, 'M', '歔'), + (0x2F8F2, 'M', '㱎'), + (0x2F8F3, 'M', '歲'), + (0x2F8F4, 'M', '殟'), + (0x2F8F5, 'M', '殺'), + (0x2F8F6, 'M', '殻'), + (0x2F8F7, 'M', '𣪍'), + (0x2F8F8, 'M', '𡴋'), + (0x2F8F9, 'M', '𣫺'), + (0x2F8FA, 'M', '汎'), + (0x2F8FB, 'M', '𣲼'), + (0x2F8FC, 'M', '沿'), + (0x2F8FD, 'M', '泍'), + (0x2F8FE, 'M', '汧'), + (0x2F8FF, 'M', '洖'), + (0x2F900, 'M', '派'), + (0x2F901, 'M', '海'), + (0x2F902, 'M', '流'), + (0x2F903, 'M', '浩'), + (0x2F904, 'M', '浸'), + (0x2F905, 'M', '涅'), + (0x2F906, 'M', '𣴞'), + (0x2F907, 'M', '洴'), + (0x2F908, 'M', '港'), + (0x2F909, 'M', '湮'), + (0x2F90A, 'M', '㴳'), + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90D, 'M', '𣻑'), + (0x2F90E, 'M', '淹'), + (0x2F90F, 'M', '潮'), + (0x2F910, 'M', '𣽞'), + (0x2F911, 'M', '𣾎'), + (0x2F912, 'M', '濆'), + (0x2F913, 'M', '瀹'), + (0x2F914, 'M', '瀞'), + (0x2F915, 'M', '瀛'), + (0x2F916, 'M', '㶖'), + (0x2F917, 'M', '灊'), + (0x2F918, 'M', '災'), + (0x2F919, 'M', '灷'), + (0x2F91A, 'M', '炭'), + (0x2F91B, 'M', '𠔥'), + (0x2F91C, 'M', '煅'), + (0x2F91D, 'M', '𤉣'), + (0x2F91E, 'M', '熜'), + (0x2F91F, 'X'), + (0x2F920, 'M', '爨'), + (0x2F921, 'M', '爵'), + (0x2F922, 'M', '牐'), + (0x2F923, 'M', '𤘈'), + (0x2F924, 'M', '犀'), + (0x2F925, 'M', '犕'), + (0x2F926, 'M', '𤜵'), + (0x2F927, 'M', '𤠔'), + (0x2F928, 'M', '獺'), + (0x2F929, 'M', '王'), + (0x2F92A, 'M', '㺬'), + (0x2F92B, 'M', '玥'), + (0x2F92C, 'M', '㺸'), + (0x2F92E, 'M', '瑇'), + (0x2F92F, 'M', '瑜'), + (0x2F930, 'M', '瑱'), + (0x2F931, 'M', '璅'), + (0x2F932, 'M', '瓊'), + (0x2F933, 'M', '㼛'), + (0x2F934, 'M', '甤'), + (0x2F935, 'M', '𤰶'), + (0x2F936, 'M', '甾'), + (0x2F937, 'M', '𤲒'), + (0x2F938, 'M', '異'), + (0x2F939, 'M', '𢆟'), + (0x2F93A, 'M', '瘐'), + (0x2F93B, 'M', '𤾡'), + (0x2F93C, 'M', '𤾸'), + (0x2F93D, 'M', '𥁄'), + (0x2F93E, 'M', '㿼'), + (0x2F93F, 'M', '䀈'), + (0x2F940, 'M', '直'), + (0x2F941, 'M', '𥃳'), + (0x2F942, 'M', '𥃲'), + (0x2F943, 'M', '𥄙'), + (0x2F944, 'M', '𥄳'), + (0x2F945, 'M', '眞'), + (0x2F946, 'M', '真'), + (0x2F948, 'M', '睊'), + (0x2F949, 'M', '䀹'), + (0x2F94A, 'M', '瞋'), + (0x2F94B, 'M', '䁆'), + (0x2F94C, 'M', '䂖'), + (0x2F94D, 'M', '𥐝'), + (0x2F94E, 'M', '硎'), + (0x2F94F, 'M', '碌'), + (0x2F950, 'M', '磌'), + (0x2F951, 'M', '䃣'), + (0x2F952, 'M', '𥘦'), + (0x2F953, 'M', '祖'), + (0x2F954, 'M', '𥚚'), + (0x2F955, 'M', '𥛅'), + (0x2F956, 'M', '福'), + (0x2F957, 'M', '秫'), + (0x2F958, 'M', '䄯'), + (0x2F959, 'M', '穀'), + (0x2F95A, 'M', '穊'), + (0x2F95B, 'M', '穏'), + (0x2F95C, 'M', '𥥼'), + (0x2F95D, 'M', '𥪧'), + (0x2F95F, 'X'), + (0x2F960, 'M', '䈂'), + (0x2F961, 'M', '𥮫'), + (0x2F962, 'M', '篆'), + (0x2F963, 'M', '築'), + (0x2F964, 'M', '䈧'), + (0x2F965, 'M', '𥲀'), + (0x2F966, 'M', '糒'), + (0x2F967, 'M', '䊠'), + (0x2F968, 'M', '糨'), + (0x2F969, 'M', '糣'), + (0x2F96A, 'M', '紀'), + (0x2F96B, 'M', '𥾆'), + (0x2F96C, 'M', '絣'), + (0x2F96D, 'M', '䌁'), + (0x2F96E, 'M', '緇'), + (0x2F96F, 'M', '縂'), + (0x2F970, 'M', '繅'), + (0x2F971, 'M', '䌴'), + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F974, 'M', '䍙'), + (0x2F975, 'M', '𦋙'), + (0x2F976, 'M', '罺'), + (0x2F977, 'M', '𦌾'), + (0x2F978, 'M', '羕'), + (0x2F979, 'M', '翺'), + (0x2F97A, 'M', '者'), + (0x2F97B, 'M', '𦓚'), + (0x2F97C, 'M', '𦔣'), + (0x2F97D, 'M', '聠'), + (0x2F97E, 'M', '𦖨'), + (0x2F97F, 'M', '聰'), + (0x2F980, 'M', '𣍟'), + (0x2F981, 'M', '䏕'), + (0x2F982, 'M', '育'), + (0x2F983, 'M', '脃'), + (0x2F984, 'M', '䐋'), + (0x2F985, 'M', '脾'), + (0x2F986, 'M', '媵'), + (0x2F987, 'M', '𦞧'), + (0x2F988, 'M', '𦞵'), + (0x2F989, 'M', '𣎓'), + (0x2F98A, 'M', '𣎜'), + (0x2F98B, 'M', '舁'), + (0x2F98C, 'M', '舄'), + (0x2F98D, 'M', '辞'), + (0x2F98E, 'M', '䑫'), + (0x2F98F, 'M', '芑'), + (0x2F990, 'M', '芋'), + (0x2F991, 'M', '芝'), + (0x2F992, 'M', '劳'), + (0x2F993, 'M', '花'), + (0x2F994, 'M', '芳'), + (0x2F995, 'M', '芽'), + (0x2F996, 'M', '苦'), + (0x2F997, 'M', '𦬼'), + (0x2F998, 'M', '若'), + (0x2F999, 'M', '茝'), + (0x2F99A, 'M', '荣'), + (0x2F99B, 'M', '莭'), + (0x2F99C, 'M', '茣'), + (0x2F99D, 'M', '莽'), + (0x2F99E, 'M', '菧'), + (0x2F99F, 'M', '著'), + (0x2F9A0, 'M', '荓'), + (0x2F9A1, 'M', '菊'), + (0x2F9A2, 'M', '菌'), + (0x2F9A3, 'M', '菜'), + (0x2F9A4, 'M', '𦰶'), + (0x2F9A5, 'M', '𦵫'), + (0x2F9A6, 'M', '𦳕'), + (0x2F9A7, 'M', '䔫'), + (0x2F9A8, 'M', '蓱'), + (0x2F9A9, 'M', '蓳'), + (0x2F9AA, 'M', '蔖'), + (0x2F9AB, 'M', '𧏊'), + (0x2F9AC, 'M', '蕤'), + (0x2F9AD, 'M', '𦼬'), + (0x2F9AE, 'M', '䕝'), + (0x2F9AF, 'M', '䕡'), + (0x2F9B0, 'M', '𦾱'), + (0x2F9B1, 'M', '𧃒'), + (0x2F9B2, 'M', '䕫'), + (0x2F9B3, 'M', '虐'), + (0x2F9B4, 'M', '虜'), + (0x2F9B5, 'M', '虧'), + (0x2F9B6, 'M', '虩'), + (0x2F9B7, 'M', '蚩'), + (0x2F9B8, 'M', '蚈'), + (0x2F9B9, 'M', '蜎'), + (0x2F9BA, 'M', '蛢'), + (0x2F9BB, 'M', '蝹'), + (0x2F9BC, 'M', '蜨'), + (0x2F9BD, 'M', '蝫'), + (0x2F9BE, 'M', '螆'), + (0x2F9BF, 'X'), + (0x2F9C0, 'M', '蟡'), + (0x2F9C1, 'M', '蠁'), + (0x2F9C2, 'M', '䗹'), + (0x2F9C3, 'M', '衠'), + (0x2F9C4, 'M', '衣'), + (0x2F9C5, 'M', '𧙧'), + (0x2F9C6, 'M', '裗'), + (0x2F9C7, 'M', '裞'), + (0x2F9C8, 'M', '䘵'), + (0x2F9C9, 'M', '裺'), + (0x2F9CA, 'M', '㒻'), + (0x2F9CB, 'M', '𧢮'), + (0x2F9CC, 'M', '𧥦'), + (0x2F9CD, 'M', '䚾'), + (0x2F9CE, 'M', '䛇'), + (0x2F9CF, 'M', '誠'), + (0x2F9D0, 'M', '諭'), + (0x2F9D1, 'M', '變'), + (0x2F9D2, 'M', '豕'), + (0x2F9D3, 'M', '𧲨'), + (0x2F9D4, 'M', '貫'), + (0x2F9D5, 'M', '賁'), + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D8, 'M', '𧼯'), + (0x2F9D9, 'M', '𠠄'), + (0x2F9DA, 'M', '跋'), + (0x2F9DB, 'M', '趼'), + (0x2F9DC, 'M', '跰'), + (0x2F9DD, 'M', '𠣞'), + (0x2F9DE, 'M', '軔'), + (0x2F9DF, 'M', '輸'), + (0x2F9E0, 'M', '𨗒'), + (0x2F9E1, 'M', '𨗭'), + (0x2F9E2, 'M', '邔'), + (0x2F9E3, 'M', '郱'), + (0x2F9E4, 'M', '鄑'), + (0x2F9E5, 'M', '𨜮'), + (0x2F9E6, 'M', '鄛'), + (0x2F9E7, 'M', '鈸'), + (0x2F9E8, 'M', '鋗'), + (0x2F9E9, 'M', '鋘'), + (0x2F9EA, 'M', '鉼'), + (0x2F9EB, 'M', '鏹'), + (0x2F9EC, 'M', '鐕'), + (0x2F9ED, 'M', '𨯺'), + (0x2F9EE, 'M', '開'), + (0x2F9EF, 'M', '䦕'), + (0x2F9F0, 'M', '閷'), + (0x2F9F1, 'M', '𨵷'), + (0x2F9F2, 'M', '䧦'), + (0x2F9F3, 'M', '雃'), + (0x2F9F4, 'M', '嶲'), + (0x2F9F5, 'M', '霣'), + (0x2F9F6, 'M', '𩅅'), + (0x2F9F7, 'M', '𩈚'), + (0x2F9F8, 'M', '䩮'), + (0x2F9F9, 'M', '䩶'), + (0x2F9FA, 'M', '韠'), + (0x2F9FB, 'M', '𩐊'), + (0x2F9FC, 'M', '䪲'), + (0x2F9FD, 'M', '𩒖'), + (0x2F9FE, 'M', '頋'), + (0x2FA00, 'M', '頩'), + (0x2FA01, 'M', '𩖶'), + (0x2FA02, 'M', '飢'), + (0x2FA03, 'M', '䬳'), + (0x2FA04, 'M', '餩'), + (0x2FA05, 'M', '馧'), + (0x2FA06, 'M', '駂'), + (0x2FA07, 'M', '駾'), + (0x2FA08, 'M', '䯎'), + (0x2FA09, 'M', '𩬰'), + (0x2FA0A, 'M', '鬒'), + (0x2FA0B, 'M', '鱀'), + (0x2FA0C, 'M', '鳽'), + (0x2FA0D, 'M', '䳎'), + (0x2FA0E, 'M', '䳭'), + (0x2FA0F, 'M', '鵧'), + (0x2FA10, 'M', '𪃎'), + (0x2FA11, 'M', '䳸'), + (0x2FA12, 'M', '𪄅'), + (0x2FA13, 'M', '𪈎'), + (0x2FA14, 'M', '𪊑'), + (0x2FA15, 'M', '麻'), + (0x2FA16, 'M', '䵖'), + (0x2FA17, 'M', '黹'), + (0x2FA18, 'M', '黾'), + (0x2FA19, 'M', '鼅'), + (0x2FA1A, 'M', '鼏'), + (0x2FA1B, 'M', '鼖'), + (0x2FA1C, 'M', '鼻'), + (0x2FA1D, 'M', '𪘀'), + (0x2FA1E, 'X'), + (0x30000, 'V'), + (0x3134B, 'X'), + (0x31350, 'V'), + (0x323B0, 'X'), + (0xE0100, 'I'), + (0xE01F0, 'X'), + ] + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py b/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 0000000..919b86f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,55 @@ +from .exceptions import * +from .ext import ExtType, Timestamp + +import os + + +version = (1, 0, 8) +__version__ = "1.0.8" + + +if os.environ.get("MSGPACK_PUREPYTHON"): + from .fallback import Packer, unpackb, Unpacker +else: + try: + from ._cmsgpack import Packer, unpackb, Unpacker + except ImportError: + from .fallback import Packer, unpackb, Unpacker + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4caacdf0b8928a4b0128d919044830bb93b25bb5 GIT binary patch literal 1734 zcmb7E&2Jk;6rb_#`fF_`F-c1lwJddMsQct;ADF@UOZ+2soLOAfG{mq;2H^29L z`%^L*M_}o1&sE=&5qcszU4y=FPj{i&L?$w^jeZDW;e~AMg!GUj=@RrMQ?_MYHWghl z!+My=wbbF>BTa4KNaxTsBM))lQWZ{(+A$}t#~oEyorIpisIJDuZBaY<{J0tW4C#Gl z9I)S10SCx{o+hgP0_oESNxweSlrxB=&LW!hG<2?P*?0Yj)?|xXAxpi}T zW`6Gd8?cs#XN>Y4LV0Ad-T<$}qqlsA(6TtDYYI3jd{1?NP2?RCf`DWTwL%Z@m-w#K z!ZoS8;qSI3)x_?9SPOMY?Y0;-aaLOWB(8yps5G}!BV|u3x<$>Xo7yt9Jfc~i=DAvt zd6XDVG48LPB}AJj+XiD3#o#?ft>RM6ZFrVjXE}e-_3sgI6N5Oo;vdCj@#3t^vCG53 zc|3e)*`QU%!(xh1CgdgJd3HO$;5sDFY^y@@Rm;n>1}R&HZ80xzTcv!X=`FbRvD}3> z@(jX!P3$+SgykDnBVSk|bFFh6 z7G*=LxBruVO1wo{*L-43t<>}g`ycGnBt(@B`TYCO1-~DLXc~YCsc9M&6mUh{P@*Tn zKP~1?0r-?8(%b6D##MmdRBc<;z8iR~X13%E9fB3dQ!xQEo2Z3qM~Q+lVGn}_-3@s? z)wV*F9$7#KUcKkj5tIaouq(+5b)B9Da{&!E4T}+`6`?SxamDbAqPDz1>b+%J*{yqq zRc9IzD*^@sX&%*YxBQM#FqFLvsyC_l9fFp{zsl#2%O>2%#4|vv0gd6Hpy>z4@qSt*mCcDN*>6=gt$z<9`I zJhB9p0foiY0w~*e3k4n_^(BkKs8l5$k5&xZEZdlxYV1b z)TKckh@|@wbJ=zclPdxlJa5rya77^Vh2#esyfgZ?$nWUqzS>&003eb@-#=B^E z4`rU9SSO6s!FFUPHPlwYm&5B5YZL2}Ym-~)bH7OE_vEpk<*|+|DdT(5@$KmNK|F$A zJ{Sz+vj^!Y&U9Wx(NtUBiT1UX-y^EP97jEwq1H0y#$vk05}6{pPjH()M_PQE4qIVXX}$?t_+*3=ZL16ttP9Mu(S0BSCv1%(y?EpY>I zh=;3bD%=9RdT0ok5 zpfw8v-6>>i-^D%V|FHku=e;yc;^C{uOmgZ+OiJ2H1eHmbQ$7<*Dp)9aKuC+Y+Bz=0q;*_Qd z^;zn7D2pP>g-FClIiPIk>C-TlDQ7`FPv^?WEYFKsmwR4jdtNsQ`VsOK&-<~@qN$|h zc|qcP-W3_+b^ZO!?ZByB8HFwGw!_qwJ?@7r3T5g>;gQ=Lq@5)GwEpoYt_)ND5O0vR zxpaGB&-IRZ93;Z+$~NNe&E3^|1A(=o2tJG~0XZjcbknp1)}E5w{eBe?-@M;IbM(x9 z+;6qGc+!ue##KR>=m6_fpj%N!qMWWESDg`r#;AKvM#eNO3jcH1@6j^Y0=q(J55zJh{%9A zS_7)r%AN5bGdUg%hLIt8)DrK4mDmO%(IZS1fd!0>9L8bldBctQ>FYD>160Q{IwPZZ z=nLcL>S$~Gh4G86?%kgU2Mt^*RVr?gRXkrIU zBs!bs1cL)^2vVvorlcSTRk89QqcvBh(Qt~(O=^LHz_%B>NR~S3ZN!kEP-6d_lfQJs zwBA&7b7yR6=A*o>P^aNku|%eGJRdZw>CrB;zh_aOs~T2~p-MDc&xh`U3_WGlZx;U& zvQ^yP=w#J{V=h`za-!U2H5A{1md=q`U*v=LOK~6EtH~Dub6wChZK4-7>mr;G_)Io5 zt$gwRgurKFA-^`~_bxtsnc!{@C0iHUFFo9CUE5@H_cd9c6f4@J*Xwjb;CoF;ZTqY` Rs_mSujyCuHAT@PQ{{X6f&d2}& literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce14ca488f9056cce91c768a9fddd764e53a6616 GIT binary patch literal 8163 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d12e4771cd7a1f5931d3134a35e60f59d62a58c GIT binary patch literal 42036 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 Z4&?*O-pT6B;l7?@>2w>uUZjKjzW~kuk?jBg literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py b/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py new file mode 100644 index 0000000..d6d2615 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py @@ -0,0 +1,48 @@ +class UnpackException(Exception): + """Base class for some exceptions raised while unpacking. + + NOTE: unpack may raise exception other than subclass of + UnpackException. If you want to catch all error, catch + Exception instead. + """ + + +class BufferFull(UnpackException): + pass + + +class OutOfData(UnpackException): + pass + + +class FormatError(ValueError, UnpackException): + """Invalid msgpack format""" + + +class StackError(ValueError, UnpackException): + """Too nested""" + + +# Deprecated. Use ValueError instead +UnpackValueError = ValueError + + +class ExtraData(UnpackValueError): + """ExtraData is raised when there is trailing data. + + This exception is raised while only one-shot (not streaming) + unpack. + """ + + def __init__(self, unpacked, extra): + self.unpacked = unpacked + self.extra = extra + + def __str__(self): + return "unpack(b) received extra data." + + +# Deprecated. Use Exception instead to catch all exception during packing. +PackException = Exception +PackValueError = ValueError +PackOverflowError = OverflowError diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py b/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py new file mode 100644 index 0000000..02c2c43 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py @@ -0,0 +1,168 @@ +from collections import namedtuple +import datetime +import struct + + +class ExtType(namedtuple("ExtType", "code data")): + """ExtType represents ext type in msgpack.""" + + def __new__(cls, code, data): + if not isinstance(code, int): + raise TypeError("code must be int") + if not isinstance(data, bytes): + raise TypeError("data must be bytes") + if not 0 <= code <= 127: + raise ValueError("code must be 0~127") + return super().__new__(cls, code, data) + + +class Timestamp: + """Timestamp represents the Timestamp extension type in msgpack. + + When built with Cython, msgpack uses C methods to pack and unpack `Timestamp`. + When using pure-Python msgpack, :func:`to_bytes` and :func:`from_bytes` are used to pack and + unpack `Timestamp`. + + This class is immutable: Do not override seconds and nanoseconds. + """ + + __slots__ = ["seconds", "nanoseconds"] + + def __init__(self, seconds, nanoseconds=0): + """Initialize a Timestamp object. + + :param int seconds: + Number of seconds since the UNIX epoch (00:00:00 UTC Jan 1 1970, minus leap seconds). + May be negative. + + :param int nanoseconds: + Number of nanoseconds to add to `seconds` to get fractional time. + Maximum is 999_999_999. Default is 0. + + Note: Negative times (before the UNIX epoch) are represented as neg. seconds + pos. ns. + """ + if not isinstance(seconds, int): + raise TypeError("seconds must be an integer") + if not isinstance(nanoseconds, int): + raise TypeError("nanoseconds must be an integer") + if not (0 <= nanoseconds < 10**9): + raise ValueError("nanoseconds must be a non-negative integer less than 999999999.") + self.seconds = seconds + self.nanoseconds = nanoseconds + + def __repr__(self): + """String representation of Timestamp.""" + return f"Timestamp(seconds={self.seconds}, nanoseconds={self.nanoseconds})" + + def __eq__(self, other): + """Check for equality with another Timestamp object""" + if type(other) is self.__class__: + return self.seconds == other.seconds and self.nanoseconds == other.nanoseconds + return False + + def __ne__(self, other): + """not-equals method (see :func:`__eq__()`)""" + return not self.__eq__(other) + + def __hash__(self): + return hash((self.seconds, self.nanoseconds)) + + @staticmethod + def from_bytes(b): + """Unpack bytes into a `Timestamp` object. + + Used for pure-Python msgpack unpacking. + + :param b: Payload from msgpack ext message with code -1 + :type b: bytes + + :returns: Timestamp object unpacked from msgpack ext payload + :rtype: Timestamp + """ + if len(b) == 4: + seconds = struct.unpack("!L", b)[0] + nanoseconds = 0 + elif len(b) == 8: + data64 = struct.unpack("!Q", b)[0] + seconds = data64 & 0x00000003FFFFFFFF + nanoseconds = data64 >> 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + :rtype: `datetime.datetime` + """ + utc = datetime.timezone.utc + return datetime.datetime.fromtimestamp(0, utc) + datetime.timedelta(seconds=self.to_unix()) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py b/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 0000000..a174162 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,951 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +if hasattr(sys, "pypy_version_info"): + # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own + # StringBuilder is fastest. + from __pypy__ import newlist_hint + + try: + from __pypy__.builders import BytesBuilder as StringBuilder + except ImportError: + from __pypy__.builders import StringBuilder + USING_STRINGBUILDER = True + + class StringIO: + def __init__(self, s=b""): + if s: + self.builder = StringBuilder(len(s)) + self.builder.append(s) + else: + self.builder = StringBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + USING_STRINGBUILDER = False + from io import BytesIO as StringIO + + newlist_hint = lambda size: [] + + +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError + +from .ext import ExtType, Timestamp + + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError: + raise StackError + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker: + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and `.feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError("object_pairs_hook and object_hook are mutually exclusive") + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError(f"{n} exceeds max_bin_len({self._max_bin_len})") + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError(f"{L} exceeds max_ext_len({self._max_ext_len})") + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError(f"{size} exceeds max_ext_len({self._max_ext_len})") + self._reserve(size + 1) + n, obj = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in range(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) for _ in range(n) + ) + else: + ret = {} + for _ in range(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (str, bytes): + raise ValueError("%s is not allowed for map key" % str(type(key))) + if isinstance(key, str): + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer: + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param default: + When specified, it should be callable. + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = StringIO() + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None: + if not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, str): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in range(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs(len(obj), obj.items(), nest_limit - 1) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError(f"Cannot serialize {obj!r} where tzinfo=None") + + raise TypeError(f"Cannot serialize {obj!r}") + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = StringIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for k, v in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = StringIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if USING_STRINGBUILDER: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py b/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 0000000..9ba41d8 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "24.1" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014 %s" % __author__ diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0dc0420fede07152536c92eb2a8fe4eeac899a2 GIT binary patch literal 551 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 G_WuBv#UZ2s literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77c6dc2d7f63cf07d67d96013af6e25c42dc47d4 GIT binary patch literal 9678 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1ea533c5b3bb245e38b93fa1c42742cf0dd2a66 GIT binary patch literal 13978 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 L&6Iv+)5_^T6a#_N literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..851560264ed3750df3a059e930ed439634cf7bc3 GIT binary patch literal 7908 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..676fae1a01b15078d485e7e222afb66681dd1794 GIT binary patch literal 38732 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b768ca15ebd50832c1ae4af52d12f94fd04eda1 GIT binary patch literal 7334 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 G@qYmE!i0qY literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d64a70e1580ad15e004566c4aa9c018720775db GIT binary patch literal 19500 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 None: + self._f = f + + try: + ident = self._read("16B") + except struct.error: + raise ELFInvalid("unable to parse identification") + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or " + f"encoding ({self.encoding})" + ) + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> str | None: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py b/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 0000000..08f651f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,262 @@ +from __future__ import annotations + +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Generator, Iterator, NamedTuple, Sequence + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[ELFFile | None, None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = { + "x86_64", + "aarch64", + "ppc64", + "ppc64le", + "s390x", + "loongarch64", + "riscv64", + } + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> str | None: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str | None = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> str | None: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> str | None: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor," + f" got: {version_str}", + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache +def _get_glibc_version() -> tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py b/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 0000000..d2bf30b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,85 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +from __future__ import annotations + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> _MuslVersion | None: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache +def _get_musl_version(executable: str) -> _MuslVersion | None: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py b/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py new file mode 100644 index 0000000..c1238c0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py @@ -0,0 +1,354 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains EBNF-inspired grammar representing +the implementation. +""" + +from __future__ import annotations + +import ast +from typing import NamedTuple, Sequence, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +MarkerAtom = Union[MarkerItem, Sequence["MarkerAtom"]] +MarkerList = Sequence[Union["MarkerList", MarkerAtom, str]] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: list[str] + specifier: str + marker: MarkerList | None + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> tuple[str, str, MarkerList | None]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> list[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> list[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: list[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if env_var in ("platform_python_implementation", "python_implementation"): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of " + "<=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py b/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 0000000..90a6465 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py b/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py new file mode 100644 index 0000000..89d0416 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py @@ -0,0 +1,194 @@ +from __future__ import annotations + +import contextlib +import re +from dataclasses import dataclass +from typing import Iterator, NoReturn + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: dict[str, str | re.Pattern[str]] = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extra + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: dict[str, str | re.Pattern[str]], + ) -> None: + self.source = source + self.rules: dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Token | None = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert ( + self.next_token is None + ), f"Cannot check for {name!r}, already have {self.next_token!r}" + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: int | None = None, + span_end: int | None = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py b/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 0000000..7ac7bb6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,325 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import operator +import os +import platform +import sys +from typing import Any, Callable, TypedDict, cast + +from ._parser import MarkerAtom, MarkerList, Op, Value, Variable +from ._parser import parse_marker as _parse_marker +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Environment(TypedDict): + implementation_name: str + """The implementation's identifier, e.g. ``'cpython'``.""" + + implementation_version: str + """ + The implementation's version, e.g. ``'3.13.0a2'`` for CPython 3.13.0a2, or + ``'7.3.13'`` for PyPy3.10 v7.3.13. + """ + + os_name: str + """ + The value of :py:data:`os.name`. The name of the operating system dependent module + imported, e.g. ``'posix'``. + """ + + platform_machine: str + """ + Returns the machine type, e.g. ``'i386'``. + + An empty string if the value cannot be determined. + """ + + platform_release: str + """ + The system's release, e.g. ``'2.2.0'`` or ``'NT'``. + + An empty string if the value cannot be determined. + """ + + platform_system: str + """ + The system/OS name, e.g. ``'Linux'``, ``'Windows'`` or ``'Java'``. + + An empty string if the value cannot be determined. + """ + + platform_version: str + """ + The system's release version, e.g. ``'#3 on degas'``. + + An empty string if the value cannot be determined. + """ + + python_full_version: str + """ + The Python version as string ``'major.minor.patchlevel'``. + + Note that unlike the Python :py:data:`sys.version`, this value will always include + the patchlevel (it defaults to 0). + """ + + platform_python_implementation: str + """ + A string identifying the Python implementation, e.g. ``'CPython'``. + """ + + python_version: str + """The Python version as string ``'major.minor'``.""" + + sys_platform: str + """ + This string contains a platform identifier that can be used to append + platform-specific components to :py:data:`sys.path`, for instance. + + For Unix systems, except on Linux and AIX, this is the lowercased OS name as + returned by ``uname -s`` with the first part of the version as returned by + ``uname -r`` appended, e.g. ``'sunos5'`` or ``'freebsd8'``, at the time when Python + was built. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: list[str] | MarkerAtom | str, first: bool | None = True +) -> str: + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Operator | None = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize(*values: str, key: str) -> tuple[str, ...]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + return tuple(canonicalize_name(v) for v in values) + + # other environment markers don't have such standards + return values + + +def _evaluate_markers(markers: MarkerList, environment: dict[str, str]) -> bool: + groups: list[list[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: sys._version_info) -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Environment: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate(self, environment: dict[str, str] | None = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = cast("dict[str, str]", default_environment()) + current_environment["extra"] = "" + # Work around platform.python_version() returning something that is not PEP 440 + # compliant for non-tagged Python builds. We preserve default_environment()'s + # behavior of returning platform.python_version() verbatim, and leave it to the + # caller to provide a syntactically valid version if they want to override it. + if current_environment["python_full_version"].endswith("+"): + current_environment["python_full_version"] += "local" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers(self._markers, current_environment) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py b/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py new file mode 100644 index 0000000..eb8dc84 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py @@ -0,0 +1,804 @@ +from __future__ import annotations + +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import typing +from typing import ( + Any, + Callable, + Generic, + Literal, + TypedDict, + cast, +) + +from . import requirements, specifiers, utils +from . import version as version_module + +T = typing.TypeVar("T") + + +try: + ExceptionGroup +except NameError: # pragma: no cover + + class ExceptionGroup(Exception): + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: list[Exception] + + def __init__(self, message: str, exceptions: list[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + +else: # pragma: no cover + ExceptionGroup = ExceptionGroup + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: list[str] + summary: str + description: str + keywords: list[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: list[str] + download_url: str + classifiers: list[str] + requires: list[str] + provides: list[str] + obsoletes: list[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: list[str] + provides_dist: list[str] + obsoletes_dist: list[str] + requires_python: str + requires_external: list[str] + project_urls: dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: list[str] + + # Metadata 2.2 - PEP 643 + dynamic: list[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> list[str]: + """Split a string of comma-separate keyboards into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: list[str]) -> dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: bytes | str) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload: str = msg.get_payload() + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload: bytes = msg.get_payload(decode=True) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError: + raise ValueError("payload in an invalid encoding") + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: bytes | str) -> tuple[RawMetadata, dict[str, list[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: dict[str, str | list[str] | dict[str, str]] = {} + unparsed: dict[str, list[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: list[tuple[bytes, str | None]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: Metadata, name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: Metadata, _owner: type[Metadata]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Exception | None = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: list[str]) -> list[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{value!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata(f"{value!r} is not a valid dynamic field") + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: list[str], + ) -> list[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_requires_dist( + self, + value: list[str], + ) -> list[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) + else: + return reqs + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> Metadata: + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: list[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + "{field} introduced in metadata version " + "{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email(cls, data: bytes | str, *, validate: bool = True) -> Metadata: + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[list[str] | None] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[str | None] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[str | None] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[str | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-license`""" + classifiers: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[list[requirements.Requirement] | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[specifiers.SpecifierSet | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[dict[str, str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[list[utils.NormalizedName] | None] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[list[str] | None] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[list[str] | None] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[list[str] | None] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed b/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py b/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 0000000..4e068c9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,91 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +from __future__ import annotations + +from typing import Any, Iterator + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: str | None = parsed.url or None + self.extras: set[str] = set(parsed.extras or []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Marker | None = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py b/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 0000000..f3ac480 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,1009 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from pip._vendor.packaging.version import Version +""" + +from __future__ import annotations + +import abc +import itertools +import re +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> bool | None: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: bool | None = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: bool | None = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: str | Version) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains(self, item: UnparsedVersion, prereleases: bool | None = None) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> list[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: list[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: list[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: list[str], right: list[str]) -> tuple[list[str], list[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return ( + list(itertools.chain.from_iterable(left_split)), + list(itertools.chain.from_iterable(right_split)), + ) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__(self, specifiers: str = "", prereleases: bool | None = None) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + # Split on `,` to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Make each individual specifier a Specifier and save in a frozen set for later. + self._specs = frozenset(map(Specifier, split_specifiers)) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> bool | None: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: SpecifierSet | str) -> SpecifierSet: + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: bool | None = None, + installed: bool | None = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: list[UnparsedVersionVar] = [] + found_prereleases: list[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py b/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 0000000..703f0ed --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,627 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import logging +import platform +import re +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Iterable, + Iterator, + Sequence, + Tuple, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +AppleVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> frozenset[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> int | str | None: + value: int | str | None = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _is_threaded_cpython(abis: list[str]) -> bool: + """ + Determine if the ABI corresponds to a threaded (`--disable-gil`) build. + + The threaded builds are indicated by a "t" in the abiflags. + """ + if len(abis) == 0: + return False + # expect e.g., cp313 + m = re.match(r"cp\d+(.*)", abis[0]) + if not m: + return False + abiflags = m.group(1) + return "t" in abiflags + + +def _abi3_applies(python_version: PythonVersion, threading: bool) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. The threaded (`--disable-gil`) + builds do not support abi3. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) and not threading + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> list[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + threading = debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version >= (3, 13) and _get_config_var("Py_GIL_DISABLED", warn): + threading = "t" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}{threading}") + abis.insert(0, f"cp{version}{threading}{debug}{pymalloc}{ucs4}") + return abis + + +def cpython_tags( + python_version: PythonVersion | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + threading = _is_threaded_cpython(abis) + use_abi3 = _abi3_applies(python_version, threading) + if use_abi3: + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if use_abi3: + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> list[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: str | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: PythonVersion | None = None, + interpreter: str | None = None, + platforms: Iterable[str] | None = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: AppleVersion, cpu_arch: str) -> list[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: AppleVersion | None = None, arch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("AppleVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("AppleVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def ios_platforms( + version: AppleVersion | None = None, multiarch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for an iOS system. + + :param version: A two-item tuple specifying the iOS version to generate + platform tags for. Defaults to the current iOS version. + :param multiarch: The CPU architecture+ABI to generate platform tags for - + (the value used by `sys.implementation._multiarch` e.g., + `arm64_iphoneos` or `x84_64_iphonesimulator`). Defaults to the current + multiarch value. + """ + if version is None: + # if iOS is the current platform, ios_ver *must* be defined. However, + # it won't exist for CPython versions before 3.13, which causes a mypy + # error. + _, release, _, _ = platform.ios_ver() # type: ignore[attr-defined] + version = cast("AppleVersion", tuple(map(int, release.split(".")[:2]))) + + if multiarch is None: + multiarch = sys.implementation._multiarch + multiarch = multiarch.replace("-", "_") + + ios_platform_template = "ios_{major}_{minor}_{multiarch}" + + # Consider any iOS major.minor version from the version requested, down to + # 12.0. 12.0 is the first iOS version that is known to have enough features + # to support CPython. Consider every possible minor release up to X.9. There + # highest the minor has ever gone is 8 (14.8 and 15.8) but having some extra + # candidates that won't ever match doesn't really hurt, and it saves us from + # having to keep an explicit list of known iOS versions in the code. Return + # the results descending order of version number. + + # If the requested major version is less than 12, there won't be any matches. + if version[0] < 12: + return + + # Consider the actual X.Y version that was requested. + yield ios_platform_template.format( + major=version[0], minor=version[1], multiarch=multiarch + ) + + # Consider every minor version from X.0 to the minor version prior to the + # version requested by the platform. + for minor in range(version[1] - 1, -1, -1): + yield ios_platform_template.format( + major=version[0], minor=minor, multiarch=multiarch + ) + + for major in range(version[0] - 1, 11, -1): + for minor in range(9, -1, -1): + yield ios_platform_template.format( + major=major, minor=minor, multiarch=multiarch + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "iOS": + return ios_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py b/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 0000000..d33da5b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,174 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import re +from typing import NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +def canonicalize_version( + version: Version | str, *, strip_trailing_zero: bool = True +) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + release_segment = ".".join(str(x) for x in parsed.release) + if strip_trailing_zero: + # NB: This strips trailing '.0's to normalize + release_segment = re.sub(r"(\.0)+$", "", release_segment) + parts.append(release_segment) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> tuple[NormalizedName, Version, BuildTag, frozenset[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename}" + ) from e + + return (name, version) diff --git a/lib/python3.12/site-packages/pip/_vendor/packaging/version.py b/lib/python3.12/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 0000000..8b0a040 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,563 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.version import parse, Version +""" + +from __future__ import annotations + +import itertools +import re +from typing import Any, Callable, NamedTuple, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "parse", "Version", "InvalidVersion"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: tuple[int, ...] + dev: tuple[str, int] | None + pre: tuple[str, int] | None + post: tuple[str, int] | None + local: LocalType | None + + +def parse(version: str) -> Version: + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

                                          # pre-release
+            [-_\.]?
+            (?Palpha|a|beta|b|preview|pre|c|rc)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+        (?P                                         # post release
+            (?:-(?P[0-9]+))
+            |
+            (?:
+                [-_\.]?
+                (?Ppost|rev|r)
+                [-_\.]?
+                (?P[0-9]+)?
+            )
+        )?
+        (?P                                          # dev release
+            [-_\.]?
+            (?Pdev)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+    )
+    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
+"""
+
+VERSION_PATTERN = _VERSION_PATTERN
+"""
+A string containing the regular expression used to match a valid version.
+
+The pattern is not anchored at either end, and is intended for embedding in larger
+expressions (for example, matching a version number as part of a file name). The
+regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
+flags set.
+
+:meta hide-value:
+"""
+
+
+class Version(_BaseVersion):
+    """This class abstracts handling of a project's versions.
+
+    A :class:`Version` instance is comparison aware and can be compared and
+    sorted using the standard Python interfaces.
+
+    >>> v1 = Version("1.0a5")
+    >>> v2 = Version("1.0")
+    >>> v1
+    
+    >>> v2
+    
+    >>> v1 < v2
+    True
+    >>> v1 == v2
+    False
+    >>> v1 > v2
+    False
+    >>> v1 >= v2
+    False
+    >>> v1 <= v2
+    True
+    """
+
+    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
+    _key: CmpKey
+
+    def __init__(self, version: str) -> None:
+        """Initialize a Version object.
+
+        :param version:
+            The string representation of a version which will be parsed and normalized
+            before use.
+        :raises InvalidVersion:
+            If the ``version`` does not conform to PEP 440 in any way then this
+            exception will be raised.
+        """
+
+        # Validate the version and parse it into pieces
+        match = self._regex.search(version)
+        if not match:
+            raise InvalidVersion(f"Invalid version: '{version}'")
+
+        # Store the parsed out pieces of the version
+        self._version = _Version(
+            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
+            release=tuple(int(i) for i in match.group("release").split(".")),
+            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
+            post=_parse_letter_version(
+                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
+            ),
+            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
+            local=_parse_local_version(match.group("local")),
+        )
+
+        # Generate a key which will be used for sorting
+        self._key = _cmpkey(
+            self._version.epoch,
+            self._version.release,
+            self._version.pre,
+            self._version.post,
+            self._version.dev,
+            self._version.local,
+        )
+
+    def __repr__(self) -> str:
+        """A representation of the Version that shows all internal state.
+
+        >>> Version('1.0.0')
+        
+        """
+        return f""
+
+    def __str__(self) -> str:
+        """A string representation of the version that can be rounded-tripped.
+
+        >>> str(Version("1.0a5"))
+        '1.0a5'
+        """
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        # Pre-release
+        if self.pre is not None:
+            parts.append("".join(str(x) for x in self.pre))
+
+        # Post-release
+        if self.post is not None:
+            parts.append(f".post{self.post}")
+
+        # Development release
+        if self.dev is not None:
+            parts.append(f".dev{self.dev}")
+
+        # Local version segment
+        if self.local is not None:
+            parts.append(f"+{self.local}")
+
+        return "".join(parts)
+
+    @property
+    def epoch(self) -> int:
+        """The epoch of the version.
+
+        >>> Version("2.0.0").epoch
+        0
+        >>> Version("1!2.0.0").epoch
+        1
+        """
+        return self._version.epoch
+
+    @property
+    def release(self) -> tuple[int, ...]:
+        """The components of the "release" segment of the version.
+
+        >>> Version("1.2.3").release
+        (1, 2, 3)
+        >>> Version("2.0.0").release
+        (2, 0, 0)
+        >>> Version("1!2.0.0.post0").release
+        (2, 0, 0)
+
+        Includes trailing zeroes but not the epoch or any pre-release / development /
+        post-release suffixes.
+        """
+        return self._version.release
+
+    @property
+    def pre(self) -> tuple[str, int] | None:
+        """The pre-release segment of the version.
+
+        >>> print(Version("1.2.3").pre)
+        None
+        >>> Version("1.2.3a1").pre
+        ('a', 1)
+        >>> Version("1.2.3b1").pre
+        ('b', 1)
+        >>> Version("1.2.3rc1").pre
+        ('rc', 1)
+        """
+        return self._version.pre
+
+    @property
+    def post(self) -> int | None:
+        """The post-release number of the version.
+
+        >>> print(Version("1.2.3").post)
+        None
+        >>> Version("1.2.3.post1").post
+        1
+        """
+        return self._version.post[1] if self._version.post else None
+
+    @property
+    def dev(self) -> int | None:
+        """The development number of the version.
+
+        >>> print(Version("1.2.3").dev)
+        None
+        >>> Version("1.2.3.dev1").dev
+        1
+        """
+        return self._version.dev[1] if self._version.dev else None
+
+    @property
+    def local(self) -> str | None:
+        """The local version segment of the version.
+
+        >>> print(Version("1.2.3").local)
+        None
+        >>> Version("1.2.3+abc").local
+        'abc'
+        """
+        if self._version.local:
+            return ".".join(str(x) for x in self._version.local)
+        else:
+            return None
+
+    @property
+    def public(self) -> str:
+        """The public portion of the version.
+
+        >>> Version("1.2.3").public
+        '1.2.3'
+        >>> Version("1.2.3+abc").public
+        '1.2.3'
+        >>> Version("1.2.3+abc.dev1").public
+        '1.2.3'
+        """
+        return str(self).split("+", 1)[0]
+
+    @property
+    def base_version(self) -> str:
+        """The "base version" of the version.
+
+        >>> Version("1.2.3").base_version
+        '1.2.3'
+        >>> Version("1.2.3+abc").base_version
+        '1.2.3'
+        >>> Version("1!1.2.3+abc.dev1").base_version
+        '1!1.2.3'
+
+        The "base version" is the public version of the project without any pre or post
+        release markers.
+        """
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        return "".join(parts)
+
+    @property
+    def is_prerelease(self) -> bool:
+        """Whether this version is a pre-release.
+
+        >>> Version("1.2.3").is_prerelease
+        False
+        >>> Version("1.2.3a1").is_prerelease
+        True
+        >>> Version("1.2.3b1").is_prerelease
+        True
+        >>> Version("1.2.3rc1").is_prerelease
+        True
+        >>> Version("1.2.3dev1").is_prerelease
+        True
+        """
+        return self.dev is not None or self.pre is not None
+
+    @property
+    def is_postrelease(self) -> bool:
+        """Whether this version is a post-release.
+
+        >>> Version("1.2.3").is_postrelease
+        False
+        >>> Version("1.2.3.post1").is_postrelease
+        True
+        """
+        return self.post is not None
+
+    @property
+    def is_devrelease(self) -> bool:
+        """Whether this version is a development release.
+
+        >>> Version("1.2.3").is_devrelease
+        False
+        >>> Version("1.2.3.dev1").is_devrelease
+        True
+        """
+        return self.dev is not None
+
+    @property
+    def major(self) -> int:
+        """The first item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").major
+        1
+        """
+        return self.release[0] if len(self.release) >= 1 else 0
+
+    @property
+    def minor(self) -> int:
+        """The second item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").minor
+        2
+        >>> Version("1").minor
+        0
+        """
+        return self.release[1] if len(self.release) >= 2 else 0
+
+    @property
+    def micro(self) -> int:
+        """The third item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").micro
+        3
+        >>> Version("1").micro
+        0
+        """
+        return self.release[2] if len(self.release) >= 3 else 0
+
+
+def _parse_letter_version(
+    letter: str | None, number: str | bytes | SupportsInt | None
+) -> tuple[str, int] | None:
+    if letter:
+        # We consider there to be an implicit 0 in a pre-release if there is
+        # not a numeral associated with it.
+        if number is None:
+            number = 0
+
+        # We normalize any letters to their lower case form
+        letter = letter.lower()
+
+        # We consider some words to be alternate spellings of other words and
+        # in those cases we want to normalize the spellings to our preferred
+        # spelling.
+        if letter == "alpha":
+            letter = "a"
+        elif letter == "beta":
+            letter = "b"
+        elif letter in ["c", "pre", "preview"]:
+            letter = "rc"
+        elif letter in ["rev", "r"]:
+            letter = "post"
+
+        return letter, int(number)
+    if not letter and number:
+        # We assume if we are given a number, but we are not given a letter
+        # then this is using the implicit post release syntax (e.g. 1.0-1)
+        letter = "post"
+
+        return letter, int(number)
+
+    return None
+
+
+_local_version_separators = re.compile(r"[\._-]")
+
+
+def _parse_local_version(local: str | None) -> LocalType | None:
+    """
+    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
+    """
+    if local is not None:
+        return tuple(
+            part.lower() if not part.isdigit() else int(part)
+            for part in _local_version_separators.split(local)
+        )
+    return None
+
+
+def _cmpkey(
+    epoch: int,
+    release: tuple[int, ...],
+    pre: tuple[str, int] | None,
+    post: tuple[str, int] | None,
+    dev: tuple[str, int] | None,
+    local: LocalType | None,
+) -> CmpKey:
+    # When we compare a release version, we want to compare it with all of the
+    # trailing zeros removed. So we'll use a reverse the list, drop all the now
+    # leading zeros until we come to something non zero, then take the rest
+    # re-reverse it back into the correct order and make it a tuple and use
+    # that for our sorting key.
+    _release = tuple(
+        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
+    )
+
+    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
+    # We'll do this by abusing the pre segment, but we _only_ want to do this
+    # if there is not a pre or a post segment. If we have one of those then
+    # the normal sorting rules will handle this case correctly.
+    if pre is None and post is None and dev is not None:
+        _pre: CmpPrePostDevType = NegativeInfinity
+    # Versions without a pre-release (except as noted above) should sort after
+    # those with one.
+    elif pre is None:
+        _pre = Infinity
+    else:
+        _pre = pre
+
+    # Versions without a post segment should sort before those with one.
+    if post is None:
+        _post: CmpPrePostDevType = NegativeInfinity
+
+    else:
+        _post = post
+
+    # Versions without a development segment should sort after those with one.
+    if dev is None:
+        _dev: CmpPrePostDevType = Infinity
+
+    else:
+        _dev = dev
+
+    if local is None:
+        # Versions without a local segment should sort before those with one.
+        _local: CmpLocalType = NegativeInfinity
+    else:
+        # Versions with a local segment need that segment parsed to implement
+        # the sorting rules in PEP440.
+        # - Alpha numeric segments sort before numeric segments
+        # - Alpha numeric segments sort lexicographically
+        # - Numeric segments sort numerically
+        # - Shorter versions sort before longer versions when the prefixes
+        #   match exactly
+        _local = tuple(
+            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
+        )
+
+    return epoch, _release, _pre, _post, _dev, _local
diff --git a/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py b/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
new file mode 100644
index 0000000..57ce7f1
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
@@ -0,0 +1,3676 @@
+# TODO: Add Generic type annotations to initialized collections.
+# For now we'd simply use implicit Any/Unknown which would add redundant annotations
+# mypy: disable-error-code="var-annotated"
+"""
+Package resource API
+--------------------
+
+A resource is a logical file contained within a package, or a logical
+subdirectory thereof.  The package resource API expects resource names
+to have their path parts separated with ``/``, *not* whatever the local
+path separator is.  Do not use os.path operations to manipulate resource
+names being passed into the API.
+
+The package resource API is designed to work with normal filesystem packages,
+.egg files, and unpacked .egg files.  It can also work in a limited way with
+.zip files and with custom PEP 302 loaders that support the ``get_data()``
+method.
+
+This module is deprecated. Users are directed to :mod:`importlib.resources`,
+:mod:`importlib.metadata` and :pypi:`packaging` instead.
+"""
+
+from __future__ import annotations
+
+import sys
+
+if sys.version_info < (3, 8):  # noqa: UP036 # Check for unsupported versions
+    raise RuntimeError("Python 3.8 or later is required")
+
+import os
+import io
+import time
+import re
+import types
+from typing import (
+    Any,
+    Literal,
+    Dict,
+    Iterator,
+    Mapping,
+    MutableSequence,
+    NamedTuple,
+    NoReturn,
+    Tuple,
+    Union,
+    TYPE_CHECKING,
+    Protocol,
+    Callable,
+    Iterable,
+    TypeVar,
+    overload,
+)
+import zipfile
+import zipimport
+import warnings
+import stat
+import functools
+import pkgutil
+import operator
+import platform
+import collections
+import plistlib
+import email.parser
+import errno
+import tempfile
+import textwrap
+import inspect
+import ntpath
+import posixpath
+import importlib
+import importlib.abc
+import importlib.machinery
+from pkgutil import get_importer
+
+import _imp
+
+# capture these to bypass sandboxing
+from os import utime
+from os import open as os_open
+from os.path import isdir, split
+
+try:
+    from os import mkdir, rename, unlink
+
+    WRITE_SUPPORT = True
+except ImportError:
+    # no write support, probably under GAE
+    WRITE_SUPPORT = False
+
+from pip._internal.utils._jaraco_text import (
+    yield_lines,
+    drop_comment,
+    join_continuation,
+)
+from pip._vendor.packaging import markers as _packaging_markers
+from pip._vendor.packaging import requirements as _packaging_requirements
+from pip._vendor.packaging import utils as _packaging_utils
+from pip._vendor.packaging import version as _packaging_version
+from pip._vendor.platformdirs import user_cache_dir as _user_cache_dir
+
+if TYPE_CHECKING:
+    from _typeshed import BytesPath, StrPath, StrOrBytesPath
+    from pip._vendor.typing_extensions import Self
+
+
+# Patch: Remove deprecation warning from vendored pkg_resources.
+# Setting PYTHONWARNINGS=error to verify builds produce no warnings
+# causes immediate exceptions.
+# See https://github.com/pypa/pip/issues/12243
+
+
+_T = TypeVar("_T")
+_DistributionT = TypeVar("_DistributionT", bound="Distribution")
+# Type aliases
+_NestedStr = Union[str, Iterable[Union[str, Iterable["_NestedStr"]]]]
+_InstallerTypeT = Callable[["Requirement"], "_DistributionT"]
+_InstallerType = Callable[["Requirement"], Union["Distribution", None]]
+_PkgReqType = Union[str, "Requirement"]
+_EPDistType = Union["Distribution", _PkgReqType]
+_MetadataType = Union["IResourceProvider", None]
+_ResolvedEntryPoint = Any  # Can be any attribute in the module
+_ResourceStream = Any  # TODO / Incomplete: A readable file-like object
+# Any object works, but let's indicate we expect something like a module (optionally has __loader__ or __file__)
+_ModuleLike = Union[object, types.ModuleType]
+# Any: Should be _ModuleLike but we end up with issues where _ModuleLike doesn't have _ZipLoaderModule's __loader__
+_ProviderFactoryType = Callable[[Any], "IResourceProvider"]
+_DistFinderType = Callable[[_T, str, bool], Iterable["Distribution"]]
+_NSHandlerType = Callable[[_T, str, str, types.ModuleType], Union[str, None]]
+_AdapterT = TypeVar(
+    "_AdapterT", _DistFinderType[Any], _ProviderFactoryType, _NSHandlerType[Any]
+)
+
+
+# Use _typeshed.importlib.LoaderProtocol once available https://github.com/python/typeshed/pull/11890
+class _LoaderProtocol(Protocol):
+    def load_module(self, fullname: str, /) -> types.ModuleType: ...
+
+
+class _ZipLoaderModule(Protocol):
+    __loader__: zipimport.zipimporter
+
+
+_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
+
+
+class PEP440Warning(RuntimeWarning):
+    """
+    Used when there is an issue with a version or specifier not complying with
+    PEP 440.
+    """
+
+
+parse_version = _packaging_version.Version
+
+
+_state_vars: dict[str, str] = {}
+
+
+def _declare_state(vartype: str, varname: str, initial_value: _T) -> _T:
+    _state_vars[varname] = vartype
+    return initial_value
+
+
+def __getstate__() -> dict[str, Any]:
+    state = {}
+    g = globals()
+    for k, v in _state_vars.items():
+        state[k] = g['_sget_' + v](g[k])
+    return state
+
+
+def __setstate__(state: dict[str, Any]) -> dict[str, Any]:
+    g = globals()
+    for k, v in state.items():
+        g['_sset_' + _state_vars[k]](k, g[k], v)
+    return state
+
+
+def _sget_dict(val):
+    return val.copy()
+
+
+def _sset_dict(key, ob, state):
+    ob.clear()
+    ob.update(state)
+
+
+def _sget_object(val):
+    return val.__getstate__()
+
+
+def _sset_object(key, ob, state):
+    ob.__setstate__(state)
+
+
+_sget_none = _sset_none = lambda *args: None
+
+
+def get_supported_platform():
+    """Return this platform's maximum compatible version.
+
+    distutils.util.get_platform() normally reports the minimum version
+    of macOS that would be required to *use* extensions produced by
+    distutils.  But what we want when checking compatibility is to know the
+    version of macOS that we are *running*.  To allow usage of packages that
+    explicitly require a newer version of macOS, we must also know the
+    current version of the OS.
+
+    If this condition occurs for any other platform with a version in its
+    platform strings, this function should be extended accordingly.
+    """
+    plat = get_build_platform()
+    m = macosVersionString.match(plat)
+    if m is not None and sys.platform == "darwin":
+        try:
+            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
+        except ValueError:
+            # not macOS
+            pass
+    return plat
+
+
+__all__ = [
+    # Basic resource access and distribution/entry point discovery
+    'require',
+    'run_script',
+    'get_provider',
+    'get_distribution',
+    'load_entry_point',
+    'get_entry_map',
+    'get_entry_info',
+    'iter_entry_points',
+    'resource_string',
+    'resource_stream',
+    'resource_filename',
+    'resource_listdir',
+    'resource_exists',
+    'resource_isdir',
+    # Environmental control
+    'declare_namespace',
+    'working_set',
+    'add_activation_listener',
+    'find_distributions',
+    'set_extraction_path',
+    'cleanup_resources',
+    'get_default_cache',
+    # Primary implementation classes
+    'Environment',
+    'WorkingSet',
+    'ResourceManager',
+    'Distribution',
+    'Requirement',
+    'EntryPoint',
+    # Exceptions
+    'ResolutionError',
+    'VersionConflict',
+    'DistributionNotFound',
+    'UnknownExtra',
+    'ExtractionError',
+    # Warnings
+    'PEP440Warning',
+    # Parsing functions and string utilities
+    'parse_requirements',
+    'parse_version',
+    'safe_name',
+    'safe_version',
+    'get_platform',
+    'compatible_platforms',
+    'yield_lines',
+    'split_sections',
+    'safe_extra',
+    'to_filename',
+    'invalid_marker',
+    'evaluate_marker',
+    # filesystem utilities
+    'ensure_directory',
+    'normalize_path',
+    # Distribution "precedence" constants
+    'EGG_DIST',
+    'BINARY_DIST',
+    'SOURCE_DIST',
+    'CHECKOUT_DIST',
+    'DEVELOP_DIST',
+    # "Provider" interfaces, implementations, and registration/lookup APIs
+    'IMetadataProvider',
+    'IResourceProvider',
+    'FileMetadata',
+    'PathMetadata',
+    'EggMetadata',
+    'EmptyProvider',
+    'empty_provider',
+    'NullProvider',
+    'EggProvider',
+    'DefaultProvider',
+    'ZipProvider',
+    'register_finder',
+    'register_namespace_handler',
+    'register_loader_type',
+    'fixup_namespace_packages',
+    'get_importer',
+    # Warnings
+    'PkgResourcesDeprecationWarning',
+    # Deprecated/backward compatibility only
+    'run_main',
+    'AvailableDistributions',
+]
+
+
+class ResolutionError(Exception):
+    """Abstract base for dependency resolution errors"""
+
+    def __repr__(self):
+        return self.__class__.__name__ + repr(self.args)
+
+
+class VersionConflict(ResolutionError):
+    """
+    An already-installed version conflicts with the requested version.
+
+    Should be initialized with the installed Distribution and the requested
+    Requirement.
+    """
+
+    _template = "{self.dist} is installed but {self.req} is required"
+
+    @property
+    def dist(self) -> Distribution:
+        return self.args[0]
+
+    @property
+    def req(self) -> Requirement:
+        return self.args[1]
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def with_context(self, required_by: set[Distribution | str]):
+        """
+        If required_by is non-empty, return a version of self that is a
+        ContextualVersionConflict.
+        """
+        if not required_by:
+            return self
+        args = self.args + (required_by,)
+        return ContextualVersionConflict(*args)
+
+
+class ContextualVersionConflict(VersionConflict):
+    """
+    A VersionConflict that accepts a third parameter, the set of the
+    requirements that required the installed Distribution.
+    """
+
+    _template = VersionConflict._template + ' by {self.required_by}'
+
+    @property
+    def required_by(self) -> set[str]:
+        return self.args[2]
+
+
+class DistributionNotFound(ResolutionError):
+    """A requested distribution was not found"""
+
+    _template = (
+        "The '{self.req}' distribution was not found "
+        "and is required by {self.requirers_str}"
+    )
+
+    @property
+    def req(self) -> Requirement:
+        return self.args[0]
+
+    @property
+    def requirers(self) -> set[str] | None:
+        return self.args[1]
+
+    @property
+    def requirers_str(self):
+        if not self.requirers:
+            return 'the application'
+        return ', '.join(self.requirers)
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def __str__(self):
+        return self.report()
+
+
+class UnknownExtra(ResolutionError):
+    """Distribution doesn't have an "extra feature" of the given name"""
+
+
+_provider_factories: dict[type[_ModuleLike], _ProviderFactoryType] = {}
+
+PY_MAJOR = '{}.{}'.format(*sys.version_info)
+EGG_DIST = 3
+BINARY_DIST = 2
+SOURCE_DIST = 1
+CHECKOUT_DIST = 0
+DEVELOP_DIST = -1
+
+
+def register_loader_type(
+    loader_type: type[_ModuleLike], provider_factory: _ProviderFactoryType
+):
+    """Register `provider_factory` to make providers for `loader_type`
+
+    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
+    and `provider_factory` is a function that, passed a *module* object,
+    returns an ``IResourceProvider`` for that module.
+    """
+    _provider_factories[loader_type] = provider_factory
+
+
+@overload
+def get_provider(moduleOrReq: str) -> IResourceProvider: ...
+@overload
+def get_provider(moduleOrReq: Requirement) -> Distribution: ...
+def get_provider(moduleOrReq: str | Requirement) -> IResourceProvider | Distribution:
+    """Return an IResourceProvider for the named module or requirement"""
+    if isinstance(moduleOrReq, Requirement):
+        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
+    try:
+        module = sys.modules[moduleOrReq]
+    except KeyError:
+        __import__(moduleOrReq)
+        module = sys.modules[moduleOrReq]
+    loader = getattr(module, '__loader__', None)
+    return _find_adapter(_provider_factories, loader)(module)
+
+
+@functools.lru_cache(maxsize=None)
+def _macos_vers():
+    version = platform.mac_ver()[0]
+    # fallback for MacPorts
+    if version == '':
+        plist = '/System/Library/CoreServices/SystemVersion.plist'
+        if os.path.exists(plist):
+            with open(plist, 'rb') as fh:
+                plist_content = plistlib.load(fh)
+            if 'ProductVersion' in plist_content:
+                version = plist_content['ProductVersion']
+    return version.split('.')
+
+
+def _macos_arch(machine):
+    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
+
+
+def get_build_platform():
+    """Return this platform's string for platform-specific distributions
+
+    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
+    needs some hacks for Linux and macOS.
+    """
+    from sysconfig import get_platform
+
+    plat = get_platform()
+    if sys.platform == "darwin" and not plat.startswith('macosx-'):
+        try:
+            version = _macos_vers()
+            machine = os.uname()[4].replace(" ", "_")
+            return "macosx-%d.%d-%s" % (
+                int(version[0]),
+                int(version[1]),
+                _macos_arch(machine),
+            )
+        except ValueError:
+            # if someone is running a non-Mac darwin system, this will fall
+            # through to the default implementation
+            pass
+    return plat
+
+
+macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
+darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
+# XXX backward compat
+get_platform = get_build_platform
+
+
+def compatible_platforms(provided: str | None, required: str | None):
+    """Can code for the `provided` platform run on the `required` platform?
+
+    Returns true if either platform is ``None``, or the platforms are equal.
+
+    XXX Needs compatibility checks for Linux and other unixy OSes.
+    """
+    if provided is None or required is None or provided == required:
+        # easy case
+        return True
+
+    # macOS special cases
+    reqMac = macosVersionString.match(required)
+    if reqMac:
+        provMac = macosVersionString.match(provided)
+
+        # is this a Mac package?
+        if not provMac:
+            # this is backwards compatibility for packages built before
+            # setuptools 0.6. All packages built after this point will
+            # use the new macOS designation.
+            provDarwin = darwinVersionString.match(provided)
+            if provDarwin:
+                dversion = int(provDarwin.group(1))
+                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
+                if (
+                    dversion == 7
+                    and macosversion >= "10.3"
+                    or dversion == 8
+                    and macosversion >= "10.4"
+                ):
+                    return True
+            # egg isn't macOS or legacy darwin
+            return False
+
+        # are they the same major version and machine type?
+        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
+            return False
+
+        # is the required OS major update >= the provided one?
+        if int(provMac.group(2)) > int(reqMac.group(2)):
+            return False
+
+        return True
+
+    # XXX Linux and other platforms' special cases should go here
+    return False
+
+
+@overload
+def get_distribution(dist: _DistributionT) -> _DistributionT: ...
+@overload
+def get_distribution(dist: _PkgReqType) -> Distribution: ...
+def get_distribution(dist: Distribution | _PkgReqType) -> Distribution:
+    """Return a current distribution object for a Requirement or string"""
+    if isinstance(dist, str):
+        dist = Requirement.parse(dist)
+    if isinstance(dist, Requirement):
+        # Bad type narrowing, dist has to be a Requirement here, so get_provider has to return Distribution
+        dist = get_provider(dist)  # type: ignore[assignment]
+    if not isinstance(dist, Distribution):
+        raise TypeError("Expected str, Requirement, or Distribution", dist)
+    return dist
+
+
+def load_entry_point(dist: _EPDistType, group: str, name: str) -> _ResolvedEntryPoint:
+    """Return `name` entry point of `group` for `dist` or raise ImportError"""
+    return get_distribution(dist).load_entry_point(group, name)
+
+
+@overload
+def get_entry_map(
+    dist: _EPDistType, group: None = None
+) -> dict[str, dict[str, EntryPoint]]: ...
+@overload
+def get_entry_map(dist: _EPDistType, group: str) -> dict[str, EntryPoint]: ...
+def get_entry_map(dist: _EPDistType, group: str | None = None):
+    """Return the entry point map for `group`, or the full entry map"""
+    return get_distribution(dist).get_entry_map(group)
+
+
+def get_entry_info(dist: _EPDistType, group: str, name: str):
+    """Return the EntryPoint object for `group`+`name`, or ``None``"""
+    return get_distribution(dist).get_entry_info(group, name)
+
+
+class IMetadataProvider(Protocol):
+    def has_metadata(self, name: str) -> bool:
+        """Does the package's distribution contain the named metadata?"""
+
+    def get_metadata(self, name: str) -> str:
+        """The named metadata resource as a string"""
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        """Yield named metadata resource as list of non-blank non-comment lines
+
+        Leading and trailing whitespace is stripped from each line, and lines
+        with ``#`` as the first non-blank character are omitted."""
+
+    def metadata_isdir(self, name: str) -> bool:
+        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
+
+    def metadata_listdir(self, name: str) -> list[str]:
+        """List of metadata names in the directory (like ``os.listdir()``)"""
+
+    def run_script(self, script_name: str, namespace: dict[str, Any]) -> None:
+        """Execute the named script in the supplied namespace dictionary"""
+
+
+class IResourceProvider(IMetadataProvider, Protocol):
+    """An object that provides access to package resources"""
+
+    def get_resource_filename(
+        self, manager: ResourceManager, resource_name: str
+    ) -> str:
+        """Return a true filesystem path for `resource_name`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def get_resource_stream(
+        self, manager: ResourceManager, resource_name: str
+    ) -> _ResourceStream:
+        """Return a readable file-like object for `resource_name`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def get_resource_string(
+        self, manager: ResourceManager, resource_name: str
+    ) -> bytes:
+        """Return the contents of `resource_name` as :obj:`bytes`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def has_resource(self, resource_name: str) -> bool:
+        """Does the package contain the named resource?"""
+
+    def resource_isdir(self, resource_name: str) -> bool:
+        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
+
+    def resource_listdir(self, resource_name: str) -> list[str]:
+        """List of resource names in the directory (like ``os.listdir()``)"""
+
+
+class WorkingSet:
+    """A collection of active distributions on sys.path (or a similar list)"""
+
+    def __init__(self, entries: Iterable[str] | None = None):
+        """Create working set from list of path entries (default=sys.path)"""
+        self.entries: list[str] = []
+        self.entry_keys = {}
+        self.by_key = {}
+        self.normalized_to_canonical_keys = {}
+        self.callbacks = []
+
+        if entries is None:
+            entries = sys.path
+
+        for entry in entries:
+            self.add_entry(entry)
+
+    @classmethod
+    def _build_master(cls):
+        """
+        Prepare the master working set.
+        """
+        ws = cls()
+        try:
+            from __main__ import __requires__
+        except ImportError:
+            # The main program does not list any requirements
+            return ws
+
+        # ensure the requirements are met
+        try:
+            ws.require(__requires__)
+        except VersionConflict:
+            return cls._build_from_requirements(__requires__)
+
+        return ws
+
+    @classmethod
+    def _build_from_requirements(cls, req_spec):
+        """
+        Build a working set from a requirement spec. Rewrites sys.path.
+        """
+        # try it without defaults already on sys.path
+        # by starting with an empty path
+        ws = cls([])
+        reqs = parse_requirements(req_spec)
+        dists = ws.resolve(reqs, Environment())
+        for dist in dists:
+            ws.add(dist)
+
+        # add any missing entries from sys.path
+        for entry in sys.path:
+            if entry not in ws.entries:
+                ws.add_entry(entry)
+
+        # then copy back to sys.path
+        sys.path[:] = ws.entries
+        return ws
+
+    def add_entry(self, entry: str):
+        """Add a path item to ``.entries``, finding any distributions on it
+
+        ``find_distributions(entry, True)`` is used to find distributions
+        corresponding to the path entry, and they are added.  `entry` is
+        always appended to ``.entries``, even if it is already present.
+        (This is because ``sys.path`` can contain the same value more than
+        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
+        equal ``sys.path``.)
+        """
+        self.entry_keys.setdefault(entry, [])
+        self.entries.append(entry)
+        for dist in find_distributions(entry, True):
+            self.add(dist, entry, False)
+
+    def __contains__(self, dist: Distribution) -> bool:
+        """True if `dist` is the active distribution for its project"""
+        return self.by_key.get(dist.key) == dist
+
+    def find(self, req: Requirement) -> Distribution | None:
+        """Find a distribution matching requirement `req`
+
+        If there is an active distribution for the requested project, this
+        returns it as long as it meets the version requirement specified by
+        `req`.  But, if there is an active distribution for the project and it
+        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
+        If there is no active distribution for the requested project, ``None``
+        is returned.
+        """
+        dist = self.by_key.get(req.key)
+
+        if dist is None:
+            canonical_key = self.normalized_to_canonical_keys.get(req.key)
+
+            if canonical_key is not None:
+                req.key = canonical_key
+                dist = self.by_key.get(canonical_key)
+
+        if dist is not None and dist not in req:
+            # XXX add more info
+            raise VersionConflict(dist, req)
+        return dist
+
+    def iter_entry_points(self, group: str, name: str | None = None):
+        """Yield entry point objects from `group` matching `name`
+
+        If `name` is None, yields all entry points in `group` from all
+        distributions in the working set, otherwise only ones matching
+        both `group` and `name` are yielded (in distribution order).
+        """
+        return (
+            entry
+            for dist in self
+            for entry in dist.get_entry_map(group).values()
+            if name is None or name == entry.name
+        )
+
+    def run_script(self, requires: str, script_name: str):
+        """Locate distribution for `requires` and run `script_name` script"""
+        ns = sys._getframe(1).f_globals
+        name = ns['__name__']
+        ns.clear()
+        ns['__name__'] = name
+        self.require(requires)[0].run_script(script_name, ns)
+
+    def __iter__(self) -> Iterator[Distribution]:
+        """Yield distributions for non-duplicate projects in the working set
+
+        The yield order is the order in which the items' path entries were
+        added to the working set.
+        """
+        seen = set()
+        for item in self.entries:
+            if item not in self.entry_keys:
+                # workaround a cache issue
+                continue
+
+            for key in self.entry_keys[item]:
+                if key not in seen:
+                    seen.add(key)
+                    yield self.by_key[key]
+
+    def add(
+        self,
+        dist: Distribution,
+        entry: str | None = None,
+        insert: bool = True,
+        replace: bool = False,
+    ):
+        """Add `dist` to working set, associated with `entry`
+
+        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
+        On exit from this routine, `entry` is added to the end of the working
+        set's ``.entries`` (if it wasn't already present).
+
+        `dist` is only added to the working set if it's for a project that
+        doesn't already have a distribution in the set, unless `replace=True`.
+        If it's added, any callbacks registered with the ``subscribe()`` method
+        will be called.
+        """
+        if insert:
+            dist.insert_on(self.entries, entry, replace=replace)
+
+        if entry is None:
+            entry = dist.location
+        keys = self.entry_keys.setdefault(entry, [])
+        keys2 = self.entry_keys.setdefault(dist.location, [])
+        if not replace and dist.key in self.by_key:
+            # ignore hidden distros
+            return
+
+        self.by_key[dist.key] = dist
+        normalized_name = _packaging_utils.canonicalize_name(dist.key)
+        self.normalized_to_canonical_keys[normalized_name] = dist.key
+        if dist.key not in keys:
+            keys.append(dist.key)
+        if dist.key not in keys2:
+            keys2.append(dist.key)
+        self._added_new(dist)
+
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[_DistributionT]: ...
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        *,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[_DistributionT]: ...
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[Distribution]: ...
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[Distribution] | list[_DistributionT]:
+        """List all distributions needed to (recursively) meet `requirements`
+
+        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
+        if supplied, should be an ``Environment`` instance.  If
+        not supplied, it defaults to all distributions available within any
+        entry or distribution in the working set.  `installer`, if supplied,
+        will be invoked with each requirement that cannot be met by an
+        already-installed distribution; it should return a ``Distribution`` or
+        ``None``.
+
+        Unless `replace_conflicting=True`, raises a VersionConflict exception
+        if
+        any requirements are found on the path that have the correct name but
+        the wrong version.  Otherwise, if an `installer` is supplied it will be
+        invoked to obtain the correct version of the requirement and activate
+        it.
+
+        `extras` is a list of the extras to be used with these requirements.
+        This is important because extra requirements may look like `my_req;
+        extra = "my_extra"`, which would otherwise be interpreted as a purely
+        optional requirement.  Instead, we want to be able to assert that these
+        requirements are truly required.
+        """
+
+        # set up the stack
+        requirements = list(requirements)[::-1]
+        # set of processed requirements
+        processed = set()
+        # key -> dist
+        best = {}
+        to_activate = []
+
+        req_extras = _ReqExtras()
+
+        # Mapping of requirement to set of distributions that required it;
+        # useful for reporting info about conflicts.
+        required_by = collections.defaultdict(set)
+
+        while requirements:
+            # process dependencies breadth-first
+            req = requirements.pop(0)
+            if req in processed:
+                # Ignore cyclic or redundant dependencies
+                continue
+
+            if not req_extras.markers_pass(req, extras):
+                continue
+
+            dist = self._resolve_dist(
+                req, best, replace_conflicting, env, installer, required_by, to_activate
+            )
+
+            # push the new requirements onto the stack
+            new_requirements = dist.requires(req.extras)[::-1]
+            requirements.extend(new_requirements)
+
+            # Register the new requirements needed by req
+            for new_requirement in new_requirements:
+                required_by[new_requirement].add(req.project_name)
+                req_extras[new_requirement] = req.extras
+
+            processed.add(req)
+
+        # return list of distros to activate
+        return to_activate
+
+    def _resolve_dist(
+        self, req, best, replace_conflicting, env, installer, required_by, to_activate
+    ) -> Distribution:
+        dist = best.get(req.key)
+        if dist is None:
+            # Find the best distribution and add it to the map
+            dist = self.by_key.get(req.key)
+            if dist is None or (dist not in req and replace_conflicting):
+                ws = self
+                if env is None:
+                    if dist is None:
+                        env = Environment(self.entries)
+                    else:
+                        # Use an empty environment and workingset to avoid
+                        # any further conflicts with the conflicting
+                        # distribution
+                        env = Environment([])
+                        ws = WorkingSet([])
+                dist = best[req.key] = env.best_match(
+                    req, ws, installer, replace_conflicting=replace_conflicting
+                )
+                if dist is None:
+                    requirers = required_by.get(req, None)
+                    raise DistributionNotFound(req, requirers)
+            to_activate.append(dist)
+        if dist not in req:
+            # Oops, the "best" so far conflicts with a dependency
+            dependent_req = required_by[req]
+            raise VersionConflict(dist, req).with_context(dependent_req)
+        return dist
+
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None,
+        installer: _InstallerTypeT[_DistributionT],
+        fallback: bool = True,
+    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        *,
+        installer: _InstallerTypeT[_DistributionT],
+        fallback: bool = True,
+    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        installer: _InstallerType | None = None,
+        fallback: bool = True,
+    ) -> tuple[list[Distribution], dict[Distribution, Exception]]: ...
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        fallback: bool = True,
+    ) -> tuple[
+        list[Distribution] | list[_DistributionT],
+        dict[Distribution, Exception],
+    ]:
+        """Find all activatable distributions in `plugin_env`
+
+        Example usage::
+
+            distributions, errors = working_set.find_plugins(
+                Environment(plugin_dirlist)
+            )
+            # add plugins+libs to sys.path
+            map(working_set.add, distributions)
+            # display errors
+            print('Could not load', errors)
+
+        The `plugin_env` should be an ``Environment`` instance that contains
+        only distributions that are in the project's "plugin directory" or
+        directories. The `full_env`, if supplied, should be an ``Environment``
+        contains all currently-available distributions.  If `full_env` is not
+        supplied, one is created automatically from the ``WorkingSet`` this
+        method is called on, which will typically mean that every directory on
+        ``sys.path`` will be scanned for distributions.
+
+        `installer` is a standard installer callback as used by the
+        ``resolve()`` method. The `fallback` flag indicates whether we should
+        attempt to resolve older versions of a plugin if the newest version
+        cannot be resolved.
+
+        This method returns a 2-tuple: (`distributions`, `error_info`), where
+        `distributions` is a list of the distributions found in `plugin_env`
+        that were loadable, along with any other distributions that are needed
+        to resolve their dependencies.  `error_info` is a dictionary mapping
+        unloadable plugin distributions to an exception instance describing the
+        error that occurred. Usually this will be a ``DistributionNotFound`` or
+        ``VersionConflict`` instance.
+        """
+
+        plugin_projects = list(plugin_env)
+        # scan project names in alphabetic order
+        plugin_projects.sort()
+
+        error_info: dict[Distribution, Exception] = {}
+        distributions: dict[Distribution, Exception | None] = {}
+
+        if full_env is None:
+            env = Environment(self.entries)
+            env += plugin_env
+        else:
+            env = full_env + plugin_env
+
+        shadow_set = self.__class__([])
+        # put all our entries in shadow_set
+        list(map(shadow_set.add, self))
+
+        for project_name in plugin_projects:
+            for dist in plugin_env[project_name]:
+                req = [dist.as_requirement()]
+
+                try:
+                    resolvees = shadow_set.resolve(req, env, installer)
+
+                except ResolutionError as v:
+                    # save error info
+                    error_info[dist] = v
+                    if fallback:
+                        # try the next older version of project
+                        continue
+                    else:
+                        # give up on this project, keep going
+                        break
+
+                else:
+                    list(map(shadow_set.add, resolvees))
+                    distributions.update(dict.fromkeys(resolvees))
+
+                    # success, no need to try any more versions of this project
+                    break
+
+        sorted_distributions = list(distributions)
+        sorted_distributions.sort()
+
+        return sorted_distributions, error_info
+
+    def require(self, *requirements: _NestedStr):
+        """Ensure that distributions matching `requirements` are activated
+
+        `requirements` must be a string or a (possibly-nested) sequence
+        thereof, specifying the distributions and versions required.  The
+        return value is a sequence of the distributions that needed to be
+        activated to fulfill the requirements; all relevant distributions are
+        included, even if they were already activated in this working set.
+        """
+        needed = self.resolve(parse_requirements(requirements))
+
+        for dist in needed:
+            self.add(dist)
+
+        return needed
+
+    def subscribe(
+        self, callback: Callable[[Distribution], object], existing: bool = True
+    ):
+        """Invoke `callback` for all distributions
+
+        If `existing=True` (default),
+        call on all existing ones, as well.
+        """
+        if callback in self.callbacks:
+            return
+        self.callbacks.append(callback)
+        if not existing:
+            return
+        for dist in self:
+            callback(dist)
+
+    def _added_new(self, dist):
+        for callback in self.callbacks:
+            callback(dist)
+
+    def __getstate__(self):
+        return (
+            self.entries[:],
+            self.entry_keys.copy(),
+            self.by_key.copy(),
+            self.normalized_to_canonical_keys.copy(),
+            self.callbacks[:],
+        )
+
+    def __setstate__(self, e_k_b_n_c):
+        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
+        self.entries = entries[:]
+        self.entry_keys = keys.copy()
+        self.by_key = by_key.copy()
+        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
+        self.callbacks = callbacks[:]
+
+
+class _ReqExtras(Dict["Requirement", Tuple[str, ...]]):
+    """
+    Map each requirement to the extras that demanded it.
+    """
+
+    def markers_pass(self, req: Requirement, extras: tuple[str, ...] | None = None):
+        """
+        Evaluate markers for req against each extra that
+        demanded it.
+
+        Return False if the req has a marker and fails
+        evaluation. Otherwise, return True.
+        """
+        extra_evals = (
+            req.marker.evaluate({'extra': extra})
+            for extra in self.get(req, ()) + (extras or (None,))
+        )
+        return not req.marker or any(extra_evals)
+
+
+class Environment:
+    """Searchable snapshot of distributions on a search path"""
+
+    def __init__(
+        self,
+        search_path: Iterable[str] | None = None,
+        platform: str | None = get_supported_platform(),
+        python: str | None = PY_MAJOR,
+    ):
+        """Snapshot distributions available on a search path
+
+        Any distributions found on `search_path` are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.
+
+        `platform` is an optional string specifying the name of the platform
+        that platform-specific distributions must be compatible with.  If
+        unspecified, it defaults to the current platform.  `python` is an
+        optional string naming the desired version of Python (e.g. ``'3.6'``);
+        it defaults to the current version.
+
+        You may explicitly set `platform` (and/or `python`) to ``None`` if you
+        wish to map *all* distributions, not just those compatible with the
+        running platform or Python version.
+        """
+        self._distmap = {}
+        self.platform = platform
+        self.python = python
+        self.scan(search_path)
+
+    def can_add(self, dist: Distribution):
+        """Is distribution `dist` acceptable for this environment?
+
+        The distribution must match the platform and python version
+        requirements specified when this environment was created, or False
+        is returned.
+        """
+        py_compat = (
+            self.python is None
+            or dist.py_version is None
+            or dist.py_version == self.python
+        )
+        return py_compat and compatible_platforms(dist.platform, self.platform)
+
+    def remove(self, dist: Distribution):
+        """Remove `dist` from the environment"""
+        self._distmap[dist.key].remove(dist)
+
+    def scan(self, search_path: Iterable[str] | None = None):
+        """Scan `search_path` for distributions usable in this environment
+
+        Any distributions found are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.  Only distributions conforming to
+        the platform/python version defined at initialization are added.
+        """
+        if search_path is None:
+            search_path = sys.path
+
+        for item in search_path:
+            for dist in find_distributions(item):
+                self.add(dist)
+
+    def __getitem__(self, project_name: str) -> list[Distribution]:
+        """Return a newest-to-oldest list of distributions for `project_name`
+
+        Uses case-insensitive `project_name` comparison, assuming all the
+        project's distributions use their project's name converted to all
+        lowercase as their key.
+
+        """
+        distribution_key = project_name.lower()
+        return self._distmap.get(distribution_key, [])
+
+    def add(self, dist: Distribution):
+        """Add `dist` if we ``can_add()`` it and it has not already been added"""
+        if self.can_add(dist) and dist.has_version():
+            dists = self._distmap.setdefault(dist.key, [])
+            if dist not in dists:
+                dists.append(dist)
+                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
+
+    @overload
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+    ) -> _DistributionT: ...
+    @overload
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerType | None = None,
+        replace_conflicting: bool = False,
+    ) -> Distribution | None: ...
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        replace_conflicting: bool = False,
+    ) -> Distribution | None:
+        """Find distribution best matching `req` and usable on `working_set`
+
+        This calls the ``find(req)`` method of the `working_set` to see if a
+        suitable distribution is already active.  (This may raise
+        ``VersionConflict`` if an unsuitable version of the project is already
+        active in the specified `working_set`.)  If a suitable distribution
+        isn't active, this method returns the newest distribution in the
+        environment that meets the ``Requirement`` in `req`.  If no suitable
+        distribution is found, and `installer` is supplied, then the result of
+        calling the environment's ``obtain(req, installer)`` method will be
+        returned.
+        """
+        try:
+            dist = working_set.find(req)
+        except VersionConflict:
+            if not replace_conflicting:
+                raise
+            dist = None
+        if dist is not None:
+            return dist
+        for dist in self[req.key]:
+            if dist in req:
+                return dist
+        # try to download/install
+        return self.obtain(req, installer)
+
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: _InstallerTypeT[_DistributionT],
+    ) -> _DistributionT: ...
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: Callable[[Requirement], None] | None = None,
+    ) -> None: ...
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: _InstallerType | None = None,
+    ) -> Distribution | None: ...
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: Callable[[Requirement], None]
+        | _InstallerType
+        | None
+        | _InstallerTypeT[_DistributionT] = None,
+    ) -> Distribution | None:
+        """Obtain a distribution matching `requirement` (e.g. via download)
+
+        Obtain a distro that matches requirement (e.g. via download).  In the
+        base ``Environment`` class, this routine just returns
+        ``installer(requirement)``, unless `installer` is None, in which case
+        None is returned instead.  This method is a hook that allows subclasses
+        to attempt other ways of obtaining a distribution before falling back
+        to the `installer` argument."""
+        return installer(requirement) if installer else None
+
+    def __iter__(self) -> Iterator[str]:
+        """Yield the unique project names of the available distributions"""
+        for key in self._distmap.keys():
+            if self[key]:
+                yield key
+
+    def __iadd__(self, other: Distribution | Environment):
+        """In-place addition of a distribution or environment"""
+        if isinstance(other, Distribution):
+            self.add(other)
+        elif isinstance(other, Environment):
+            for project in other:
+                for dist in other[project]:
+                    self.add(dist)
+        else:
+            raise TypeError("Can't add %r to environment" % (other,))
+        return self
+
+    def __add__(self, other: Distribution | Environment):
+        """Add an environment or distribution to an environment"""
+        new = self.__class__([], platform=None, python=None)
+        for env in self, other:
+            new += env
+        return new
+
+
+# XXX backward compatibility
+AvailableDistributions = Environment
+
+
+class ExtractionError(RuntimeError):
+    """An error occurred extracting a resource
+
+    The following attributes are available from instances of this exception:
+
+    manager
+        The resource manager that raised this exception
+
+    cache_path
+        The base directory for resource extraction
+
+    original_error
+        The exception instance that caused extraction to fail
+    """
+
+    manager: ResourceManager
+    cache_path: str
+    original_error: BaseException | None
+
+
+class ResourceManager:
+    """Manage resource extraction and packages"""
+
+    extraction_path: str | None = None
+
+    def __init__(self):
+        self.cached_files = {}
+
+    def resource_exists(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Does the named resource exist?"""
+        return get_provider(package_or_requirement).has_resource(resource_name)
+
+    def resource_isdir(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Is the named resource an existing directory?"""
+        return get_provider(package_or_requirement).resource_isdir(resource_name)
+
+    def resource_filename(
+        self, package_or_requirement: _PkgReqType, resource_name: str
+    ):
+        """Return a true filesystem path for specified resource"""
+        return get_provider(package_or_requirement).get_resource_filename(
+            self, resource_name
+        )
+
+    def resource_stream(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Return a readable file-like object for specified resource"""
+        return get_provider(package_or_requirement).get_resource_stream(
+            self, resource_name
+        )
+
+    def resource_string(
+        self, package_or_requirement: _PkgReqType, resource_name: str
+    ) -> bytes:
+        """Return specified resource as :obj:`bytes`"""
+        return get_provider(package_or_requirement).get_resource_string(
+            self, resource_name
+        )
+
+    def resource_listdir(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """List the contents of the named resource directory"""
+        return get_provider(package_or_requirement).resource_listdir(resource_name)
+
+    def extraction_error(self) -> NoReturn:
+        """Give an error message for problems extracting file(s)"""
+
+        old_exc = sys.exc_info()[1]
+        cache_path = self.extraction_path or get_default_cache()
+
+        tmpl = textwrap.dedent(
+            """
+            Can't extract file(s) to egg cache
+
+            The following error occurred while trying to extract file(s)
+            to the Python egg cache:
+
+              {old_exc}
+
+            The Python egg cache directory is currently set to:
+
+              {cache_path}
+
+            Perhaps your account does not have write access to this directory?
+            You can change the cache directory by setting the PYTHON_EGG_CACHE
+            environment variable to point to an accessible directory.
+            """
+        ).lstrip()
+        err = ExtractionError(tmpl.format(**locals()))
+        err.manager = self
+        err.cache_path = cache_path
+        err.original_error = old_exc
+        raise err
+
+    def get_cache_path(self, archive_name: str, names: Iterable[StrPath] = ()):
+        """Return absolute location in cache for `archive_name` and `names`
+
+        The parent directory of the resulting path will be created if it does
+        not already exist.  `archive_name` should be the base filename of the
+        enclosing egg (which may not be the name of the enclosing zipfile!),
+        including its ".egg" extension.  `names`, if provided, should be a
+        sequence of path name parts "under" the egg's extraction location.
+
+        This method should only be called by resource providers that need to
+        obtain an extraction location, and only for names they intend to
+        extract, as it tracks the generated names for possible cleanup later.
+        """
+        extract_path = self.extraction_path or get_default_cache()
+        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
+        try:
+            _bypass_ensure_directory(target_path)
+        except Exception:
+            self.extraction_error()
+
+        self._warn_unsafe_extraction_path(extract_path)
+
+        self.cached_files[target_path] = True
+        return target_path
+
+    @staticmethod
+    def _warn_unsafe_extraction_path(path):
+        """
+        If the default extraction path is overridden and set to an insecure
+        location, such as /tmp, it opens up an opportunity for an attacker to
+        replace an extracted file with an unauthorized payload. Warn the user
+        if a known insecure location is used.
+
+        See Distribute #375 for more details.
+        """
+        if os.name == 'nt' and not path.startswith(os.environ['windir']):
+            # On Windows, permissions are generally restrictive by default
+            #  and temp directories are not writable by other users, so
+            #  bypass the warning.
+            return
+        mode = os.stat(path).st_mode
+        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
+            msg = (
+                "Extraction path is writable by group/others "
+                "and vulnerable to attack when "
+                "used with get_resource_filename ({path}). "
+                "Consider a more secure "
+                "location (set with .set_extraction_path or the "
+                "PYTHON_EGG_CACHE environment variable)."
+            ).format(**locals())
+            warnings.warn(msg, UserWarning)
+
+    def postprocess(self, tempname: StrOrBytesPath, filename: StrOrBytesPath):
+        """Perform any platform-specific postprocessing of `tempname`
+
+        This is where Mac header rewrites should be done; other platforms don't
+        have anything special they should do.
+
+        Resource providers should call this method ONLY after successfully
+        extracting a compressed resource.  They must NOT call it on resources
+        that are already in the filesystem.
+
+        `tempname` is the current (temporary) name of the file, and `filename`
+        is the name it will be renamed to by the caller after this routine
+        returns.
+        """
+
+        if os.name == 'posix':
+            # Make the resource executable
+            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
+            os.chmod(tempname, mode)
+
+    def set_extraction_path(self, path: str):
+        """Set the base path where resources will be extracted to, if needed.
+
+        If you do not call this routine before any extractions take place, the
+        path defaults to the return value of ``get_default_cache()``.  (Which
+        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
+        platform-specific fallbacks.  See that routine's documentation for more
+        details.)
+
+        Resources are extracted to subdirectories of this path based upon
+        information given by the ``IResourceProvider``.  You may set this to a
+        temporary directory, but then you must call ``cleanup_resources()`` to
+        delete the extracted files when done.  There is no guarantee that
+        ``cleanup_resources()`` will be able to remove all extracted files.
+
+        (Note: you may not change the extraction path for a given resource
+        manager once resources have been extracted, unless you first call
+        ``cleanup_resources()``.)
+        """
+        if self.cached_files:
+            raise ValueError("Can't change extraction path, files already extracted")
+
+        self.extraction_path = path
+
+    def cleanup_resources(self, force: bool = False) -> list[str]:
+        """
+        Delete all extracted resource files and directories, returning a list
+        of the file and directory names that could not be successfully removed.
+        This function does not have any concurrency protection, so it should
+        generally only be called when the extraction path is a temporary
+        directory exclusive to a single process.  This method is not
+        automatically called; you must call it explicitly or register it as an
+        ``atexit`` function if you wish to ensure cleanup of a temporary
+        directory used for extractions.
+        """
+        # XXX
+        return []
+
+
+def get_default_cache() -> str:
+    """
+    Return the ``PYTHON_EGG_CACHE`` environment variable
+    or a platform-relevant user cache dir for an app
+    named "Python-Eggs".
+    """
+    return os.environ.get('PYTHON_EGG_CACHE') or _user_cache_dir(appname='Python-Eggs')
+
+
+def safe_name(name: str):
+    """Convert an arbitrary string to a standard distribution name
+
+    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
+    """
+    return re.sub('[^A-Za-z0-9.]+', '-', name)
+
+
+def safe_version(version: str):
+    """
+    Convert an arbitrary string to a standard version string
+    """
+    try:
+        # normalize the version
+        return str(_packaging_version.Version(version))
+    except _packaging_version.InvalidVersion:
+        version = version.replace(' ', '.')
+        return re.sub('[^A-Za-z0-9.]+', '-', version)
+
+
+def _forgiving_version(version):
+    """Fallback when ``safe_version`` is not safe enough
+    >>> parse_version(_forgiving_version('0.23ubuntu1'))
+    
+    >>> parse_version(_forgiving_version('0.23-'))
+    
+    >>> parse_version(_forgiving_version('0.-_'))
+    
+    >>> parse_version(_forgiving_version('42.+?1'))
+    
+    >>> parse_version(_forgiving_version('hello world'))
+    
+    """
+    version = version.replace(' ', '.')
+    match = _PEP440_FALLBACK.search(version)
+    if match:
+        safe = match["safe"]
+        rest = version[len(safe) :]
+    else:
+        safe = "0"
+        rest = version
+    local = f"sanitized.{_safe_segment(rest)}".strip(".")
+    return f"{safe}.dev0+{local}"
+
+
+def _safe_segment(segment):
+    """Convert an arbitrary string into a safe segment"""
+    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
+    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
+    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
+
+
+def safe_extra(extra: str):
+    """Convert an arbitrary string to a standard 'extra' name
+
+    Any runs of non-alphanumeric characters are replaced with a single '_',
+    and the result is always lowercased.
+    """
+    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
+
+
+def to_filename(name: str):
+    """Convert a project or version name to its filename-escaped form
+
+    Any '-' characters are currently replaced with '_'.
+    """
+    return name.replace('-', '_')
+
+
+def invalid_marker(text: str):
+    """
+    Validate text as a PEP 508 environment marker; return an exception
+    if invalid or False otherwise.
+    """
+    try:
+        evaluate_marker(text)
+    except SyntaxError as e:
+        e.filename = None
+        e.lineno = None
+        return e
+    return False
+
+
+def evaluate_marker(text: str, extra: str | None = None) -> bool:
+    """
+    Evaluate a PEP 508 environment marker.
+    Return a boolean indicating the marker result in this environment.
+    Raise SyntaxError if marker is invalid.
+
+    This implementation uses the 'pyparsing' module.
+    """
+    try:
+        marker = _packaging_markers.Marker(text)
+        return marker.evaluate()
+    except _packaging_markers.InvalidMarker as e:
+        raise SyntaxError(e) from e
+
+
+class NullProvider:
+    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
+
+    egg_name: str | None = None
+    egg_info: str | None = None
+    loader: _LoaderProtocol | None = None
+
+    def __init__(self, module: _ModuleLike):
+        self.loader = getattr(module, '__loader__', None)
+        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
+
+    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
+        return self._fn(self.module_path, resource_name)
+
+    def get_resource_stream(self, manager: ResourceManager, resource_name: str):
+        return io.BytesIO(self.get_resource_string(manager, resource_name))
+
+    def get_resource_string(
+        self, manager: ResourceManager, resource_name: str
+    ) -> bytes:
+        return self._get(self._fn(self.module_path, resource_name))
+
+    def has_resource(self, resource_name: str):
+        return self._has(self._fn(self.module_path, resource_name))
+
+    def _get_metadata_path(self, name):
+        return self._fn(self.egg_info, name)
+
+    def has_metadata(self, name: str) -> bool:
+        if not self.egg_info:
+            return False
+
+        path = self._get_metadata_path(name)
+        return self._has(path)
+
+    def get_metadata(self, name: str):
+        if not self.egg_info:
+            return ""
+        path = self._get_metadata_path(name)
+        value = self._get(path)
+        try:
+            return value.decode('utf-8')
+        except UnicodeDecodeError as exc:
+            # Include the path in the error message to simplify
+            # troubleshooting, and without changing the exception type.
+            exc.reason += ' in {} file at path: {}'.format(name, path)
+            raise
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        return yield_lines(self.get_metadata(name))
+
+    def resource_isdir(self, resource_name: str):
+        return self._isdir(self._fn(self.module_path, resource_name))
+
+    def metadata_isdir(self, name: str) -> bool:
+        return bool(self.egg_info and self._isdir(self._fn(self.egg_info, name)))
+
+    def resource_listdir(self, resource_name: str):
+        return self._listdir(self._fn(self.module_path, resource_name))
+
+    def metadata_listdir(self, name: str) -> list[str]:
+        if self.egg_info:
+            return self._listdir(self._fn(self.egg_info, name))
+        return []
+
+    def run_script(self, script_name: str, namespace: dict[str, Any]):
+        script = 'scripts/' + script_name
+        if not self.has_metadata(script):
+            raise ResolutionError(
+                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
+                    **locals()
+                ),
+            )
+
+        script_text = self.get_metadata(script).replace('\r\n', '\n')
+        script_text = script_text.replace('\r', '\n')
+        script_filename = self._fn(self.egg_info, script)
+        namespace['__file__'] = script_filename
+        if os.path.exists(script_filename):
+            source = _read_utf8_with_fallback(script_filename)
+            code = compile(source, script_filename, 'exec')
+            exec(code, namespace, namespace)
+        else:
+            from linecache import cache
+
+            cache[script_filename] = (
+                len(script_text),
+                0,
+                script_text.split('\n'),
+                script_filename,
+            )
+            script_code = compile(script_text, script_filename, 'exec')
+            exec(script_code, namespace, namespace)
+
+    def _has(self, path) -> bool:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _isdir(self, path) -> bool:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _listdir(self, path) -> list[str]:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _fn(self, base: str | None, resource_name: str):
+        if base is None:
+            raise TypeError(
+                "`base` parameter in `_fn` is `None`. Either override this method or check the parameter first."
+            )
+        self._validate_resource_path(resource_name)
+        if resource_name:
+            return os.path.join(base, *resource_name.split('/'))
+        return base
+
+    @staticmethod
+    def _validate_resource_path(path):
+        """
+        Validate the resource paths according to the docs.
+        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
+
+        >>> warned = getfixture('recwarn')
+        >>> warnings.simplefilter('always')
+        >>> vrp = NullProvider._validate_resource_path
+        >>> vrp('foo/bar.txt')
+        >>> bool(warned)
+        False
+        >>> vrp('../foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('/foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> vrp('foo/../../bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('foo/f../bar.txt')
+        >>> bool(warned)
+        False
+
+        Windows path separators are straight-up disallowed.
+        >>> vrp(r'\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        >>> vrp(r'C:\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        Blank values are allowed
+
+        >>> vrp('')
+        >>> bool(warned)
+        False
+
+        Non-string values are not.
+
+        >>> vrp(None)
+        Traceback (most recent call last):
+        ...
+        AttributeError: ...
+        """
+        invalid = (
+            os.path.pardir in path.split(posixpath.sep)
+            or posixpath.isabs(path)
+            or ntpath.isabs(path)
+            or path.startswith("\\")
+        )
+        if not invalid:
+            return
+
+        msg = "Use of .. or absolute path in a resource path is not allowed."
+
+        # Aggressively disallow Windows absolute paths
+        if (path.startswith("\\") or ntpath.isabs(path)) and not posixpath.isabs(path):
+            raise ValueError(msg)
+
+        # for compatibility, warn; in future
+        # raise ValueError(msg)
+        issue_warning(
+            msg[:-1] + " and will raise exceptions in a future release.",
+            DeprecationWarning,
+        )
+
+    def _get(self, path) -> bytes:
+        if hasattr(self.loader, 'get_data') and self.loader:
+            # Already checked get_data exists
+            return self.loader.get_data(path)  # type: ignore[attr-defined]
+        raise NotImplementedError(
+            "Can't perform this operation for loaders without 'get_data()'"
+        )
+
+
+register_loader_type(object, NullProvider)
+
+
+def _parents(path):
+    """
+    yield all parents of path including path
+    """
+    last = None
+    while path != last:
+        yield path
+        last = path
+        path, _ = os.path.split(path)
+
+
+class EggProvider(NullProvider):
+    """Provider based on a virtual filesystem"""
+
+    def __init__(self, module: _ModuleLike):
+        super().__init__(module)
+        self._setup_prefix()
+
+    def _setup_prefix(self):
+        # Assume that metadata may be nested inside a "basket"
+        # of multiple eggs and use module_path instead of .archive.
+        eggs = filter(_is_egg_path, _parents(self.module_path))
+        egg = next(eggs, None)
+        egg and self._set_egg(egg)
+
+    def _set_egg(self, path: str):
+        self.egg_name = os.path.basename(path)
+        self.egg_info = os.path.join(path, 'EGG-INFO')
+        self.egg_root = path
+
+
+class DefaultProvider(EggProvider):
+    """Provides access to package resources in the filesystem"""
+
+    def _has(self, path) -> bool:
+        return os.path.exists(path)
+
+    def _isdir(self, path) -> bool:
+        return os.path.isdir(path)
+
+    def _listdir(self, path):
+        return os.listdir(path)
+
+    def get_resource_stream(self, manager: object, resource_name: str):
+        return open(self._fn(self.module_path, resource_name), 'rb')
+
+    def _get(self, path) -> bytes:
+        with open(path, 'rb') as stream:
+            return stream.read()
+
+    @classmethod
+    def _register(cls):
+        loader_names = (
+            'SourceFileLoader',
+            'SourcelessFileLoader',
+        )
+        for name in loader_names:
+            loader_cls = getattr(importlib.machinery, name, type(None))
+            register_loader_type(loader_cls, cls)
+
+
+DefaultProvider._register()
+
+
+class EmptyProvider(NullProvider):
+    """Provider that returns nothing for all requests"""
+
+    # A special case, we don't want all Providers inheriting from NullProvider to have a potentially None module_path
+    module_path: str | None = None  # type: ignore[assignment]
+
+    _isdir = _has = lambda self, path: False
+
+    def _get(self, path) -> bytes:
+        return b''
+
+    def _listdir(self, path):
+        return []
+
+    def __init__(self):
+        pass
+
+
+empty_provider = EmptyProvider()
+
+
+class ZipManifests(Dict[str, "MemoizedZipManifests.manifest_mod"]):
+    """
+    zip manifest builder
+    """
+
+    # `path` could be `StrPath | IO[bytes]` but that violates the LSP for `MemoizedZipManifests.load`
+    @classmethod
+    def build(cls, path: str):
+        """
+        Build a dictionary similar to the zipimport directory
+        caches, except instead of tuples, store ZipInfo objects.
+
+        Use a platform-specific path separator (os.sep) for the path keys
+        for compatibility with pypy on Windows.
+        """
+        with zipfile.ZipFile(path) as zfile:
+            items = (
+                (
+                    name.replace('/', os.sep),
+                    zfile.getinfo(name),
+                )
+                for name in zfile.namelist()
+            )
+            return dict(items)
+
+    load = build
+
+
+class MemoizedZipManifests(ZipManifests):
+    """
+    Memoized zipfile manifests.
+    """
+
+    class manifest_mod(NamedTuple):
+        manifest: dict[str, zipfile.ZipInfo]
+        mtime: float
+
+    def load(self, path: str) -> dict[str, zipfile.ZipInfo]:  # type: ignore[override] # ZipManifests.load is a classmethod
+        """
+        Load a manifest at path or return a suitable manifest already loaded.
+        """
+        path = os.path.normpath(path)
+        mtime = os.stat(path).st_mtime
+
+        if path not in self or self[path].mtime != mtime:
+            manifest = self.build(path)
+            self[path] = self.manifest_mod(manifest, mtime)
+
+        return self[path].manifest
+
+
+class ZipProvider(EggProvider):
+    """Resource support for zips and eggs"""
+
+    eagers: list[str] | None = None
+    _zip_manifests = MemoizedZipManifests()
+    # ZipProvider's loader should always be a zipimporter or equivalent
+    loader: zipimport.zipimporter
+
+    def __init__(self, module: _ZipLoaderModule):
+        super().__init__(module)
+        self.zip_pre = self.loader.archive + os.sep
+
+    def _zipinfo_name(self, fspath):
+        # Convert a virtual filename (full path to file) into a zipfile subpath
+        # usable with the zipimport directory cache for our target archive
+        fspath = fspath.rstrip(os.sep)
+        if fspath == self.loader.archive:
+            return ''
+        if fspath.startswith(self.zip_pre):
+            return fspath[len(self.zip_pre) :]
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
+
+    def _parts(self, zip_path):
+        # Convert a zipfile subpath into an egg-relative path part list.
+        # pseudo-fs path
+        fspath = self.zip_pre + zip_path
+        if fspath.startswith(self.egg_root + os.sep):
+            return fspath[len(self.egg_root) + 1 :].split(os.sep)
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
+
+    @property
+    def zipinfo(self):
+        return self._zip_manifests.load(self.loader.archive)
+
+    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
+        if not self.egg_name:
+            raise NotImplementedError(
+                "resource_filename() only supported for .egg, not .zip"
+            )
+        # no need to lock for extraction, since we use temp names
+        zip_path = self._resource_to_zip(resource_name)
+        eagers = self._get_eager_resources()
+        if '/'.join(self._parts(zip_path)) in eagers:
+            for name in eagers:
+                self._extract_resource(manager, self._eager_to_zip(name))
+        return self._extract_resource(manager, zip_path)
+
+    @staticmethod
+    def _get_date_and_size(zip_stat):
+        size = zip_stat.file_size
+        # ymdhms+wday, yday, dst
+        date_time = zip_stat.date_time + (0, 0, -1)
+        # 1980 offset already done
+        timestamp = time.mktime(date_time)
+        return timestamp, size
+
+    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
+    def _extract_resource(self, manager: ResourceManager, zip_path) -> str:  # noqa: C901
+        if zip_path in self._index():
+            for name in self._index()[zip_path]:
+                last = self._extract_resource(manager, os.path.join(zip_path, name))
+            # return the extracted directory name
+            return os.path.dirname(last)
+
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+
+        if not WRITE_SUPPORT:
+            raise OSError(
+                '"os.rename" and "os.unlink" are not supported on this platform'
+            )
+        try:
+            if not self.egg_name:
+                raise OSError(
+                    '"egg_name" is empty. This likely means no egg could be found from the "module_path".'
+                )
+            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
+
+            if self._is_current(real_path, zip_path):
+                return real_path
+
+            outf, tmpnam = _mkstemp(
+                ".$extract",
+                dir=os.path.dirname(real_path),
+            )
+            os.write(outf, self.loader.get_data(zip_path))
+            os.close(outf)
+            utime(tmpnam, (timestamp, timestamp))
+            manager.postprocess(tmpnam, real_path)
+
+            try:
+                rename(tmpnam, real_path)
+
+            except OSError:
+                if os.path.isfile(real_path):
+                    if self._is_current(real_path, zip_path):
+                        # the file became current since it was checked above,
+                        #  so proceed.
+                        return real_path
+                    # Windows, del old file and retry
+                    elif os.name == 'nt':
+                        unlink(real_path)
+                        rename(tmpnam, real_path)
+                        return real_path
+                raise
+
+        except OSError:
+            # report a user-friendly error
+            manager.extraction_error()
+
+        return real_path
+
+    def _is_current(self, file_path, zip_path):
+        """
+        Return True if the file_path is current for this zip_path
+        """
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+        if not os.path.isfile(file_path):
+            return False
+        stat = os.stat(file_path)
+        if stat.st_size != size or stat.st_mtime != timestamp:
+            return False
+        # check that the contents match
+        zip_contents = self.loader.get_data(zip_path)
+        with open(file_path, 'rb') as f:
+            file_contents = f.read()
+        return zip_contents == file_contents
+
+    def _get_eager_resources(self):
+        if self.eagers is None:
+            eagers = []
+            for name in ('native_libs.txt', 'eager_resources.txt'):
+                if self.has_metadata(name):
+                    eagers.extend(self.get_metadata_lines(name))
+            self.eagers = eagers
+        return self.eagers
+
+    def _index(self):
+        try:
+            return self._dirindex
+        except AttributeError:
+            ind = {}
+            for path in self.zipinfo:
+                parts = path.split(os.sep)
+                while parts:
+                    parent = os.sep.join(parts[:-1])
+                    if parent in ind:
+                        ind[parent].append(parts[-1])
+                        break
+                    else:
+                        ind[parent] = [parts.pop()]
+            self._dirindex = ind
+            return ind
+
+    def _has(self, fspath) -> bool:
+        zip_path = self._zipinfo_name(fspath)
+        return zip_path in self.zipinfo or zip_path in self._index()
+
+    def _isdir(self, fspath) -> bool:
+        return self._zipinfo_name(fspath) in self._index()
+
+    def _listdir(self, fspath):
+        return list(self._index().get(self._zipinfo_name(fspath), ()))
+
+    def _eager_to_zip(self, resource_name: str):
+        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
+
+    def _resource_to_zip(self, resource_name: str):
+        return self._zipinfo_name(self._fn(self.module_path, resource_name))
+
+
+register_loader_type(zipimport.zipimporter, ZipProvider)
+
+
+class FileMetadata(EmptyProvider):
+    """Metadata handler for standalone PKG-INFO files
+
+    Usage::
+
+        metadata = FileMetadata("/path/to/PKG-INFO")
+
+    This provider rejects all data and metadata requests except for PKG-INFO,
+    which is treated as existing, and will be the contents of the file at
+    the provided location.
+    """
+
+    def __init__(self, path: StrPath):
+        self.path = path
+
+    def _get_metadata_path(self, name):
+        return self.path
+
+    def has_metadata(self, name: str) -> bool:
+        return name == 'PKG-INFO' and os.path.isfile(self.path)
+
+    def get_metadata(self, name: str):
+        if name != 'PKG-INFO':
+            raise KeyError("No metadata except PKG-INFO is available")
+
+        with open(self.path, encoding='utf-8', errors="replace") as f:
+            metadata = f.read()
+        self._warn_on_replacement(metadata)
+        return metadata
+
+    def _warn_on_replacement(self, metadata):
+        replacement_char = '�'
+        if replacement_char in metadata:
+            tmpl = "{self.path} could not be properly decoded in UTF-8"
+            msg = tmpl.format(**locals())
+            warnings.warn(msg)
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        return yield_lines(self.get_metadata(name))
+
+
+class PathMetadata(DefaultProvider):
+    """Metadata provider for egg directories
+
+    Usage::
+
+        # Development eggs:
+
+        egg_info = "/path/to/PackageName.egg-info"
+        base_dir = os.path.dirname(egg_info)
+        metadata = PathMetadata(base_dir, egg_info)
+        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
+        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
+
+        # Unpacked egg directories:
+
+        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
+        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
+        dist = Distribution.from_filename(egg_path, metadata=metadata)
+    """
+
+    def __init__(self, path: str, egg_info: str):
+        self.module_path = path
+        self.egg_info = egg_info
+
+
+class EggMetadata(ZipProvider):
+    """Metadata provider for .egg files"""
+
+    def __init__(self, importer: zipimport.zipimporter):
+        """Create a metadata provider from a zipimporter"""
+
+        self.zip_pre = importer.archive + os.sep
+        self.loader = importer
+        if importer.prefix:
+            self.module_path = os.path.join(importer.archive, importer.prefix)
+        else:
+            self.module_path = importer.archive
+        self._setup_prefix()
+
+
+_distribution_finders: dict[type, _DistFinderType[Any]] = _declare_state(
+    'dict', '_distribution_finders', {}
+)
+
+
+def register_finder(importer_type: type[_T], distribution_finder: _DistFinderType[_T]):
+    """Register `distribution_finder` to find distributions in sys.path items
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `distribution_finder` is a callable that, passed a path
+    item and the importer instance, yields ``Distribution`` instances found on
+    that path item.  See ``pkg_resources.find_on_path`` for an example."""
+    _distribution_finders[importer_type] = distribution_finder
+
+
+def find_distributions(path_item: str, only: bool = False):
+    """Yield distributions accessible via `path_item`"""
+    importer = get_importer(path_item)
+    finder = _find_adapter(_distribution_finders, importer)
+    return finder(importer, path_item, only)
+
+
+def find_eggs_in_zip(
+    importer: zipimport.zipimporter, path_item: str, only: bool = False
+) -> Iterator[Distribution]:
+    """
+    Find eggs in zip files; possibly multiple nested eggs.
+    """
+    if importer.archive.endswith('.whl'):
+        # wheels are not supported with this finder
+        # they don't have PKG-INFO metadata, and won't ever contain eggs
+        return
+    metadata = EggMetadata(importer)
+    if metadata.has_metadata('PKG-INFO'):
+        yield Distribution.from_filename(path_item, metadata=metadata)
+    if only:
+        # don't yield nested distros
+        return
+    for subitem in metadata.resource_listdir(''):
+        if _is_egg_path(subitem):
+            subpath = os.path.join(path_item, subitem)
+            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
+            yield from dists
+        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
+            subpath = os.path.join(path_item, subitem)
+            submeta = EggMetadata(zipimport.zipimporter(subpath))
+            submeta.egg_info = subpath
+            yield Distribution.from_location(path_item, subitem, submeta)
+
+
+register_finder(zipimport.zipimporter, find_eggs_in_zip)
+
+
+def find_nothing(
+    importer: object | None, path_item: str | None, only: bool | None = False
+):
+    return ()
+
+
+register_finder(object, find_nothing)
+
+
+def find_on_path(importer: object | None, path_item, only=False):
+    """Yield distributions accessible on a sys.path directory"""
+    path_item = _normalize_cached(path_item)
+
+    if _is_unpacked_egg(path_item):
+        yield Distribution.from_filename(
+            path_item,
+            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
+        )
+        return
+
+    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
+
+    # scan for .egg and .egg-info in directory
+    for entry in sorted(entries):
+        fullpath = os.path.join(path_item, entry)
+        factory = dist_factory(path_item, entry, only)
+        yield from factory(fullpath)
+
+
+def dist_factory(path_item, entry, only):
+    """Return a dist_factory for the given entry."""
+    lower = entry.lower()
+    is_egg_info = lower.endswith('.egg-info')
+    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
+        os.path.join(path_item, entry)
+    )
+    is_meta = is_egg_info or is_dist_info
+    return (
+        distributions_from_metadata
+        if is_meta
+        else find_distributions
+        if not only and _is_egg_path(entry)
+        else resolve_egg_link
+        if not only and lower.endswith('.egg-link')
+        else NoDists()
+    )
+
+
+class NoDists:
+    """
+    >>> bool(NoDists())
+    False
+
+    >>> list(NoDists()('anything'))
+    []
+    """
+
+    def __bool__(self):
+        return False
+
+    def __call__(self, fullpath):
+        return iter(())
+
+
+def safe_listdir(path: StrOrBytesPath):
+    """
+    Attempt to list contents of path, but suppress some exceptions.
+    """
+    try:
+        return os.listdir(path)
+    except (PermissionError, NotADirectoryError):
+        pass
+    except OSError as e:
+        # Ignore the directory if does not exist, not a directory or
+        # permission denied
+        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
+            raise
+    return ()
+
+
+def distributions_from_metadata(path: str):
+    root = os.path.dirname(path)
+    if os.path.isdir(path):
+        if len(os.listdir(path)) == 0:
+            # empty metadata dir; skip
+            return
+        metadata: _MetadataType = PathMetadata(root, path)
+    else:
+        metadata = FileMetadata(path)
+    entry = os.path.basename(path)
+    yield Distribution.from_location(
+        root,
+        entry,
+        metadata,
+        precedence=DEVELOP_DIST,
+    )
+
+
+def non_empty_lines(path):
+    """
+    Yield non-empty lines from file at path
+    """
+    for line in _read_utf8_with_fallback(path).splitlines():
+        line = line.strip()
+        if line:
+            yield line
+
+
+def resolve_egg_link(path):
+    """
+    Given a path to an .egg-link, resolve distributions
+    present in the referenced path.
+    """
+    referenced_paths = non_empty_lines(path)
+    resolved_paths = (
+        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
+    )
+    dist_groups = map(find_distributions, resolved_paths)
+    return next(dist_groups, ())
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_finder(pkgutil.ImpImporter, find_on_path)
+
+register_finder(importlib.machinery.FileFinder, find_on_path)
+
+_namespace_handlers: dict[type, _NSHandlerType[Any]] = _declare_state(
+    'dict', '_namespace_handlers', {}
+)
+_namespace_packages: dict[str | None, list[str]] = _declare_state(
+    'dict', '_namespace_packages', {}
+)
+
+
+def register_namespace_handler(
+    importer_type: type[_T], namespace_handler: _NSHandlerType[_T]
+):
+    """Register `namespace_handler` to declare namespace packages
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `namespace_handler` is a callable like this::
+
+        def namespace_handler(importer, path_entry, moduleName, module):
+            # return a path_entry to use for child packages
+
+    Namespace handlers are only called if the importer object has already
+    agreed that it can handle the relevant path item, and they should only
+    return a subpath if the module __path__ does not already contain an
+    equivalent subpath.  For an example namespace handler, see
+    ``pkg_resources.file_ns_handler``.
+    """
+    _namespace_handlers[importer_type] = namespace_handler
+
+
+def _handle_ns(packageName, path_item):
+    """Ensure that named package includes a subpath of path_item (if needed)"""
+
+    importer = get_importer(path_item)
+    if importer is None:
+        return None
+
+    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
+    try:
+        spec = importer.find_spec(packageName)
+    except AttributeError:
+        # capture warnings due to #1111
+        with warnings.catch_warnings():
+            warnings.simplefilter("ignore")
+            loader = importer.find_module(packageName)
+    else:
+        loader = spec.loader if spec else None
+
+    if loader is None:
+        return None
+    module = sys.modules.get(packageName)
+    if module is None:
+        module = sys.modules[packageName] = types.ModuleType(packageName)
+        module.__path__ = []
+        _set_parent_ns(packageName)
+    elif not hasattr(module, '__path__'):
+        raise TypeError("Not a package:", packageName)
+    handler = _find_adapter(_namespace_handlers, importer)
+    subpath = handler(importer, path_item, packageName, module)
+    if subpath is not None:
+        path = module.__path__
+        path.append(subpath)
+        importlib.import_module(packageName)
+        _rebuild_mod_path(path, packageName, module)
+    return subpath
+
+
+def _rebuild_mod_path(orig_path, package_name, module: types.ModuleType):
+    """
+    Rebuild module.__path__ ensuring that all entries are ordered
+    corresponding to their sys.path order
+    """
+    sys_path = [_normalize_cached(p) for p in sys.path]
+
+    def safe_sys_path_index(entry):
+        """
+        Workaround for #520 and #513.
+        """
+        try:
+            return sys_path.index(entry)
+        except ValueError:
+            return float('inf')
+
+    def position_in_sys_path(path):
+        """
+        Return the ordinal of the path based on its position in sys.path
+        """
+        path_parts = path.split(os.sep)
+        module_parts = package_name.count('.') + 1
+        parts = path_parts[:-module_parts]
+        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
+
+    new_path = sorted(orig_path, key=position_in_sys_path)
+    new_path = [_normalize_cached(p) for p in new_path]
+
+    if isinstance(module.__path__, list):
+        module.__path__[:] = new_path
+    else:
+        module.__path__ = new_path
+
+
+def declare_namespace(packageName: str):
+    """Declare that package 'packageName' is a namespace package"""
+
+    msg = (
+        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
+        "Implementing implicit namespace packages (as specified in PEP 420) "
+        "is preferred to `pkg_resources.declare_namespace`. "
+        "See https://setuptools.pypa.io/en/latest/references/"
+        "keywords.html#keyword-namespace-packages"
+    )
+    warnings.warn(msg, DeprecationWarning, stacklevel=2)
+
+    _imp.acquire_lock()
+    try:
+        if packageName in _namespace_packages:
+            return
+
+        path: MutableSequence[str] = sys.path
+        parent, _, _ = packageName.rpartition('.')
+
+        if parent:
+            declare_namespace(parent)
+            if parent not in _namespace_packages:
+                __import__(parent)
+            try:
+                path = sys.modules[parent].__path__
+            except AttributeError as e:
+                raise TypeError("Not a package:", parent) from e
+
+        # Track what packages are namespaces, so when new path items are added,
+        # they can be updated
+        _namespace_packages.setdefault(parent or None, []).append(packageName)
+        _namespace_packages.setdefault(packageName, [])
+
+        for path_item in path:
+            # Ensure all the parent's path items are reflected in the child,
+            # if they apply
+            _handle_ns(packageName, path_item)
+
+    finally:
+        _imp.release_lock()
+
+
+def fixup_namespace_packages(path_item: str, parent: str | None = None):
+    """Ensure that previously-declared namespace packages include path_item"""
+    _imp.acquire_lock()
+    try:
+        for package in _namespace_packages.get(parent, ()):
+            subpath = _handle_ns(package, path_item)
+            if subpath:
+                fixup_namespace_packages(subpath, package)
+    finally:
+        _imp.release_lock()
+
+
+def file_ns_handler(
+    importer: object,
+    path_item: StrPath,
+    packageName: str,
+    module: types.ModuleType,
+):
+    """Compute an ns-package subpath for a filesystem or zipfile importer"""
+
+    subpath = os.path.join(path_item, packageName.split('.')[-1])
+    normalized = _normalize_cached(subpath)
+    for item in module.__path__:
+        if _normalize_cached(item) == normalized:
+            break
+    else:
+        # Only return the path if it's not already there
+        return subpath
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
+
+register_namespace_handler(zipimport.zipimporter, file_ns_handler)
+register_namespace_handler(importlib.machinery.FileFinder, file_ns_handler)
+
+
+def null_ns_handler(
+    importer: object,
+    path_item: str | None,
+    packageName: str | None,
+    module: _ModuleLike | None,
+):
+    return None
+
+
+register_namespace_handler(object, null_ns_handler)
+
+
+@overload
+def normalize_path(filename: StrPath) -> str: ...
+@overload
+def normalize_path(filename: BytesPath) -> bytes: ...
+def normalize_path(filename: StrOrBytesPath):
+    """Normalize a file/dir name for comparison purposes"""
+    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
+
+
+def _cygwin_patch(filename: StrOrBytesPath):  # pragma: nocover
+    """
+    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
+    symlink components. Using
+    os.path.abspath() works around this limitation. A fix in os.getcwd()
+    would probably better, in Cygwin even more so, except
+    that this seems to be by design...
+    """
+    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
+
+
+if TYPE_CHECKING:
+    # https://github.com/python/mypy/issues/16261
+    # https://github.com/python/typeshed/issues/6347
+    @overload
+    def _normalize_cached(filename: StrPath) -> str: ...
+    @overload
+    def _normalize_cached(filename: BytesPath) -> bytes: ...
+    def _normalize_cached(filename: StrOrBytesPath) -> str | bytes: ...
+else:
+
+    @functools.lru_cache(maxsize=None)
+    def _normalize_cached(filename):
+        return normalize_path(filename)
+
+
+def _is_egg_path(path):
+    """
+    Determine if given path appears to be an egg.
+    """
+    return _is_zip_egg(path) or _is_unpacked_egg(path)
+
+
+def _is_zip_egg(path):
+    return (
+        path.lower().endswith('.egg')
+        and os.path.isfile(path)
+        and zipfile.is_zipfile(path)
+    )
+
+
+def _is_unpacked_egg(path):
+    """
+    Determine if given path appears to be an unpacked egg.
+    """
+    return path.lower().endswith('.egg') and os.path.isfile(
+        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
+    )
+
+
+def _set_parent_ns(packageName):
+    parts = packageName.split('.')
+    name = parts.pop()
+    if parts:
+        parent = '.'.join(parts)
+        setattr(sys.modules[parent], name, sys.modules[packageName])
+
+
+MODULE = re.compile(r"\w+(\.\w+)*$").match
+EGG_NAME = re.compile(
+    r"""
+    (?P[^-]+) (
+        -(?P[^-]+) (
+            -py(?P[^-]+) (
+                -(?P.+)
+            )?
+        )?
+    )?
+    """,
+    re.VERBOSE | re.IGNORECASE,
+).match
+
+
+class EntryPoint:
+    """Object representing an advertised importable object"""
+
+    def __init__(
+        self,
+        name: str,
+        module_name: str,
+        attrs: Iterable[str] = (),
+        extras: Iterable[str] = (),
+        dist: Distribution | None = None,
+    ):
+        if not MODULE(module_name):
+            raise ValueError("Invalid module name", module_name)
+        self.name = name
+        self.module_name = module_name
+        self.attrs = tuple(attrs)
+        self.extras = tuple(extras)
+        self.dist = dist
+
+    def __str__(self):
+        s = "%s = %s" % (self.name, self.module_name)
+        if self.attrs:
+            s += ':' + '.'.join(self.attrs)
+        if self.extras:
+            s += ' [%s]' % ','.join(self.extras)
+        return s
+
+    def __repr__(self):
+        return "EntryPoint.parse(%r)" % str(self)
+
+    @overload
+    def load(
+        self,
+        require: Literal[True] = True,
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+    ) -> _ResolvedEntryPoint: ...
+    @overload
+    def load(
+        self,
+        require: Literal[False],
+        *args: Any,
+        **kwargs: Any,
+    ) -> _ResolvedEntryPoint: ...
+    def load(
+        self,
+        require: bool = True,
+        *args: Environment | _InstallerType | None,
+        **kwargs: Environment | _InstallerType | None,
+    ) -> _ResolvedEntryPoint:
+        """
+        Require packages for this EntryPoint, then resolve it.
+        """
+        if not require or args or kwargs:
+            warnings.warn(
+                "Parameters to load are deprecated.  Call .resolve and "
+                ".require separately.",
+                PkgResourcesDeprecationWarning,
+                stacklevel=2,
+            )
+        if require:
+            # We could pass `env` and `installer` directly,
+            # but keeping `*args` and `**kwargs` for backwards compatibility
+            self.require(*args, **kwargs)  # type: ignore
+        return self.resolve()
+
+    def resolve(self) -> _ResolvedEntryPoint:
+        """
+        Resolve the entry point from its module and attrs.
+        """
+        module = __import__(self.module_name, fromlist=['__name__'], level=0)
+        try:
+            return functools.reduce(getattr, self.attrs, module)
+        except AttributeError as exc:
+            raise ImportError(str(exc)) from exc
+
+    def require(
+        self,
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+    ):
+        if not self.dist:
+            error_cls = UnknownExtra if self.extras else AttributeError
+            raise error_cls("Can't require() without a distribution", self)
+
+        # Get the requirements for this entry point with all its extras and
+        # then resolve them. We have to pass `extras` along when resolving so
+        # that the working set knows what extras we want. Otherwise, for
+        # dist-info distributions, the working set will assume that the
+        # requirements for that extra are purely optional and skip over them.
+        reqs = self.dist.requires(self.extras)
+        items = working_set.resolve(reqs, env, installer, extras=self.extras)
+        list(map(working_set.add, items))
+
+    pattern = re.compile(
+        r'\s*'
+        r'(?P.+?)\s*'
+        r'=\s*'
+        r'(?P[\w.]+)\s*'
+        r'(:\s*(?P[\w.]+))?\s*'
+        r'(?P\[.*\])?\s*$'
+    )
+
+    @classmethod
+    def parse(cls, src: str, dist: Distribution | None = None):
+        """Parse a single entry point from string `src`
+
+        Entry point syntax follows the form::
+
+            name = some.module:some.attr [extra1, extra2]
+
+        The entry name and module name are required, but the ``:attrs`` and
+        ``[extras]`` parts are optional
+        """
+        m = cls.pattern.match(src)
+        if not m:
+            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
+            raise ValueError(msg, src)
+        res = m.groupdict()
+        extras = cls._parse_extras(res['extras'])
+        attrs = res['attr'].split('.') if res['attr'] else ()
+        return cls(res['name'], res['module'], attrs, extras, dist)
+
+    @classmethod
+    def _parse_extras(cls, extras_spec):
+        if not extras_spec:
+            return ()
+        req = Requirement.parse('x' + extras_spec)
+        if req.specs:
+            raise ValueError
+        return req.extras
+
+    @classmethod
+    def parse_group(
+        cls,
+        group: str,
+        lines: _NestedStr,
+        dist: Distribution | None = None,
+    ):
+        """Parse an entry point group"""
+        if not MODULE(group):
+            raise ValueError("Invalid group name", group)
+        this: dict[str, Self] = {}
+        for line in yield_lines(lines):
+            ep = cls.parse(line, dist)
+            if ep.name in this:
+                raise ValueError("Duplicate entry point", group, ep.name)
+            this[ep.name] = ep
+        return this
+
+    @classmethod
+    def parse_map(
+        cls,
+        data: str | Iterable[str] | dict[str, str | Iterable[str]],
+        dist: Distribution | None = None,
+    ):
+        """Parse a map of entry point groups"""
+        _data: Iterable[tuple[str | None, str | Iterable[str]]]
+        if isinstance(data, dict):
+            _data = data.items()
+        else:
+            _data = split_sections(data)
+        maps: dict[str, dict[str, Self]] = {}
+        for group, lines in _data:
+            if group is None:
+                if not lines:
+                    continue
+                raise ValueError("Entry points must be listed in groups")
+            group = group.strip()
+            if group in maps:
+                raise ValueError("Duplicate group name", group)
+            maps[group] = cls.parse_group(group, lines, dist)
+        return maps
+
+
+def _version_from_file(lines):
+    """
+    Given an iterable of lines from a Metadata file, return
+    the value of the Version field, if present, or None otherwise.
+    """
+
+    def is_version_line(line):
+        return line.lower().startswith('version:')
+
+    version_lines = filter(is_version_line, lines)
+    line = next(iter(version_lines), '')
+    _, _, value = line.partition(':')
+    return safe_version(value.strip()) or None
+
+
+class Distribution:
+    """Wrap an actual or potential sys.path entry w/metadata"""
+
+    PKG_INFO = 'PKG-INFO'
+
+    def __init__(
+        self,
+        location: str | None = None,
+        metadata: _MetadataType = None,
+        project_name: str | None = None,
+        version: str | None = None,
+        py_version: str | None = PY_MAJOR,
+        platform: str | None = None,
+        precedence: int = EGG_DIST,
+    ):
+        self.project_name = safe_name(project_name or 'Unknown')
+        if version is not None:
+            self._version = safe_version(version)
+        self.py_version = py_version
+        self.platform = platform
+        self.location = location
+        self.precedence = precedence
+        self._provider = metadata or empty_provider
+
+    @classmethod
+    def from_location(
+        cls,
+        location: str,
+        basename: StrPath,
+        metadata: _MetadataType = None,
+        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
+    ) -> Distribution:
+        project_name, version, py_version, platform = [None] * 4
+        basename, ext = os.path.splitext(basename)
+        if ext.lower() in _distributionImpl:
+            cls = _distributionImpl[ext.lower()]
+
+            match = EGG_NAME(basename)
+            if match:
+                project_name, version, py_version, platform = match.group(
+                    'name', 'ver', 'pyver', 'plat'
+                )
+        return cls(
+            location,
+            metadata,
+            project_name=project_name,
+            version=version,
+            py_version=py_version,
+            platform=platform,
+            **kw,
+        )._reload_version()
+
+    def _reload_version(self):
+        return self
+
+    @property
+    def hashcmp(self):
+        return (
+            self._forgiving_parsed_version,
+            self.precedence,
+            self.key,
+            self.location,
+            self.py_version or '',
+            self.platform or '',
+        )
+
+    def __hash__(self):
+        return hash(self.hashcmp)
+
+    def __lt__(self, other: Distribution):
+        return self.hashcmp < other.hashcmp
+
+    def __le__(self, other: Distribution):
+        return self.hashcmp <= other.hashcmp
+
+    def __gt__(self, other: Distribution):
+        return self.hashcmp > other.hashcmp
+
+    def __ge__(self, other: Distribution):
+        return self.hashcmp >= other.hashcmp
+
+    def __eq__(self, other: object):
+        if not isinstance(other, self.__class__):
+            # It's not a Distribution, so they are not equal
+            return False
+        return self.hashcmp == other.hashcmp
+
+    def __ne__(self, other: object):
+        return not self == other
+
+    # These properties have to be lazy so that we don't have to load any
+    # metadata until/unless it's actually needed.  (i.e., some distributions
+    # may not know their name or version without loading PKG-INFO)
+
+    @property
+    def key(self):
+        try:
+            return self._key
+        except AttributeError:
+            self._key = key = self.project_name.lower()
+            return key
+
+    @property
+    def parsed_version(self):
+        if not hasattr(self, "_parsed_version"):
+            try:
+                self._parsed_version = parse_version(self.version)
+            except _packaging_version.InvalidVersion as ex:
+                info = f"(package: {self.project_name})"
+                if hasattr(ex, "add_note"):
+                    ex.add_note(info)  # PEP 678
+                    raise
+                raise _packaging_version.InvalidVersion(f"{str(ex)} {info}") from None
+
+        return self._parsed_version
+
+    @property
+    def _forgiving_parsed_version(self):
+        try:
+            return self.parsed_version
+        except _packaging_version.InvalidVersion as ex:
+            self._parsed_version = parse_version(_forgiving_version(self.version))
+
+            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
+            msg = f"""!!\n\n
+            *************************************************************************
+            {str(ex)}\n{notes}
+
+            This is a long overdue deprecation.
+            For the time being, `pkg_resources` will use `{self._parsed_version}`
+            as a replacement to avoid breaking existing environments,
+            but no future compatibility is guaranteed.
+
+            If you maintain package {self.project_name} you should implement
+            the relevant changes to adequate the project to PEP 440 immediately.
+            *************************************************************************
+            \n\n!!
+            """
+            warnings.warn(msg, DeprecationWarning)
+
+            return self._parsed_version
+
+    @property
+    def version(self):
+        try:
+            return self._version
+        except AttributeError as e:
+            version = self._get_version()
+            if version is None:
+                path = self._get_metadata_path_for_display(self.PKG_INFO)
+                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
+                    self.PKG_INFO, path
+                )
+                raise ValueError(msg, self) from e
+
+            return version
+
+    @property
+    def _dep_map(self):
+        """
+        A map of extra to its list of (direct) requirements
+        for this distribution, including the null extra.
+        """
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._filter_extras(self._build_dep_map())
+        return self.__dep_map
+
+    @staticmethod
+    def _filter_extras(dm: dict[str | None, list[Requirement]]):
+        """
+        Given a mapping of extras to dependencies, strip off
+        environment markers and filter out any dependencies
+        not matching the markers.
+        """
+        for extra in list(filter(None, dm)):
+            new_extra: str | None = extra
+            reqs = dm.pop(extra)
+            new_extra, _, marker = extra.partition(':')
+            fails_marker = marker and (
+                invalid_marker(marker) or not evaluate_marker(marker)
+            )
+            if fails_marker:
+                reqs = []
+            new_extra = safe_extra(new_extra) or None
+
+            dm.setdefault(new_extra, []).extend(reqs)
+        return dm
+
+    def _build_dep_map(self):
+        dm = {}
+        for name in 'requires.txt', 'depends.txt':
+            for extra, reqs in split_sections(self._get_metadata(name)):
+                dm.setdefault(extra, []).extend(parse_requirements(reqs))
+        return dm
+
+    def requires(self, extras: Iterable[str] = ()):
+        """List of Requirements needed for this distro if `extras` are used"""
+        dm = self._dep_map
+        deps: list[Requirement] = []
+        deps.extend(dm.get(None, ()))
+        for ext in extras:
+            try:
+                deps.extend(dm[safe_extra(ext)])
+            except KeyError as e:
+                raise UnknownExtra(
+                    "%s has no such extra feature %r" % (self, ext)
+                ) from e
+        return deps
+
+    def _get_metadata_path_for_display(self, name):
+        """
+        Return the path to the given metadata file, if available.
+        """
+        try:
+            # We need to access _get_metadata_path() on the provider object
+            # directly rather than through this class's __getattr__()
+            # since _get_metadata_path() is marked private.
+            path = self._provider._get_metadata_path(name)
+
+        # Handle exceptions e.g. in case the distribution's metadata
+        # provider doesn't support _get_metadata_path().
+        except Exception:
+            return '[could not detect]'
+
+        return path
+
+    def _get_metadata(self, name):
+        if self.has_metadata(name):
+            yield from self.get_metadata_lines(name)
+
+    def _get_version(self):
+        lines = self._get_metadata(self.PKG_INFO)
+        return _version_from_file(lines)
+
+    def activate(self, path: list[str] | None = None, replace: bool = False):
+        """Ensure distribution is importable on `path` (default=sys.path)"""
+        if path is None:
+            path = sys.path
+        self.insert_on(path, replace=replace)
+        if path is sys.path and self.location is not None:
+            fixup_namespace_packages(self.location)
+            for pkg in self._get_metadata('namespace_packages.txt'):
+                if pkg in sys.modules:
+                    declare_namespace(pkg)
+
+    def egg_name(self):
+        """Return what this distribution's standard .egg filename should be"""
+        filename = "%s-%s-py%s" % (
+            to_filename(self.project_name),
+            to_filename(self.version),
+            self.py_version or PY_MAJOR,
+        )
+
+        if self.platform:
+            filename += '-' + self.platform
+        return filename
+
+    def __repr__(self):
+        if self.location:
+            return "%s (%s)" % (self, self.location)
+        else:
+            return str(self)
+
+    def __str__(self):
+        try:
+            version = getattr(self, 'version', None)
+        except ValueError:
+            version = None
+        version = version or "[unknown version]"
+        return "%s %s" % (self.project_name, version)
+
+    def __getattr__(self, attr):
+        """Delegate all unrecognized public attributes to .metadata provider"""
+        if attr.startswith('_'):
+            raise AttributeError(attr)
+        return getattr(self._provider, attr)
+
+    def __dir__(self):
+        return list(
+            set(super().__dir__())
+            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
+        )
+
+    @classmethod
+    def from_filename(
+        cls,
+        filename: StrPath,
+        metadata: _MetadataType = None,
+        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
+    ):
+        return cls.from_location(
+            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
+        )
+
+    def as_requirement(self):
+        """Return a ``Requirement`` that matches this distribution exactly"""
+        if isinstance(self.parsed_version, _packaging_version.Version):
+            spec = "%s==%s" % (self.project_name, self.parsed_version)
+        else:
+            spec = "%s===%s" % (self.project_name, self.parsed_version)
+
+        return Requirement.parse(spec)
+
+    def load_entry_point(self, group: str, name: str) -> _ResolvedEntryPoint:
+        """Return the `name` entry point of `group` or raise ImportError"""
+        ep = self.get_entry_info(group, name)
+        if ep is None:
+            raise ImportError("Entry point %r not found" % ((group, name),))
+        return ep.load()
+
+    @overload
+    def get_entry_map(self, group: None = None) -> dict[str, dict[str, EntryPoint]]: ...
+    @overload
+    def get_entry_map(self, group: str) -> dict[str, EntryPoint]: ...
+    def get_entry_map(self, group: str | None = None):
+        """Return the entry point map for `group`, or the full entry map"""
+        if not hasattr(self, "_ep_map"):
+            self._ep_map = EntryPoint.parse_map(
+                self._get_metadata('entry_points.txt'), self
+            )
+        if group is not None:
+            return self._ep_map.get(group, {})
+        return self._ep_map
+
+    def get_entry_info(self, group: str, name: str):
+        """Return the EntryPoint object for `group`+`name`, or ``None``"""
+        return self.get_entry_map(group).get(name)
+
+    # FIXME: 'Distribution.insert_on' is too complex (13)
+    def insert_on(  # noqa: C901
+        self,
+        path: list[str],
+        loc=None,
+        replace: bool = False,
+    ):
+        """Ensure self.location is on path
+
+        If replace=False (default):
+            - If location is already in path anywhere, do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent.
+              - Else: add to the end of path.
+        If replace=True:
+            - If location is already on path anywhere (not eggs)
+              or higher priority than its parent (eggs)
+              do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent,
+                removing any lower-priority entries.
+              - Else: add it to the front of path.
+        """
+
+        loc = loc or self.location
+        if not loc:
+            return
+
+        nloc = _normalize_cached(loc)
+        bdir = os.path.dirname(nloc)
+        npath = [(p and _normalize_cached(p) or p) for p in path]
+
+        for p, item in enumerate(npath):
+            if item == nloc:
+                if replace:
+                    break
+                else:
+                    # don't modify path (even removing duplicates) if
+                    # found and not replace
+                    return
+            elif item == bdir and self.precedence == EGG_DIST:
+                # if it's an .egg, give it precedence over its directory
+                # UNLESS it's already been added to sys.path and replace=False
+                if (not replace) and nloc in npath[p:]:
+                    return
+                if path is sys.path:
+                    self.check_version_conflict()
+                path.insert(p, loc)
+                npath.insert(p, nloc)
+                break
+        else:
+            if path is sys.path:
+                self.check_version_conflict()
+            if replace:
+                path.insert(0, loc)
+            else:
+                path.append(loc)
+            return
+
+        # p is the spot where we found or inserted loc; now remove duplicates
+        while True:
+            try:
+                np = npath.index(nloc, p + 1)
+            except ValueError:
+                break
+            else:
+                del npath[np], path[np]
+                # ha!
+                p = np
+
+        return
+
+    def check_version_conflict(self):
+        if self.key == 'setuptools':
+            # ignore the inevitable setuptools self-conflicts  :(
+            return
+
+        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
+        loc = normalize_path(self.location)
+        for modname in self._get_metadata('top_level.txt'):
+            if (
+                modname not in sys.modules
+                or modname in nsp
+                or modname in _namespace_packages
+            ):
+                continue
+            if modname in ('pkg_resources', 'setuptools', 'site'):
+                continue
+            fn = getattr(sys.modules[modname], '__file__', None)
+            if fn and (
+                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
+            ):
+                continue
+            issue_warning(
+                "Module %s was already imported from %s, but %s is being added"
+                " to sys.path" % (modname, fn, self.location),
+            )
+
+    def has_version(self):
+        try:
+            self.version
+        except ValueError:
+            issue_warning("Unbuilt egg for " + repr(self))
+            return False
+        except SystemError:
+            # TODO: remove this except clause when python/cpython#103632 is fixed.
+            return False
+        return True
+
+    def clone(self, **kw: str | int | IResourceProvider | None):
+        """Copy this distribution, substituting in any changed keyword args"""
+        names = 'project_name version py_version platform location precedence'
+        for attr in names.split():
+            kw.setdefault(attr, getattr(self, attr, None))
+        kw.setdefault('metadata', self._provider)
+        # Unsafely unpacking. But keeping **kw for backwards and subclassing compatibility
+        return self.__class__(**kw)  # type:ignore[arg-type]
+
+    @property
+    def extras(self):
+        return [dep for dep in self._dep_map if dep]
+
+
+class EggInfoDistribution(Distribution):
+    def _reload_version(self):
+        """
+        Packages installed by distutils (e.g. numpy or scipy),
+        which uses an old safe_version, and so
+        their version numbers can get mangled when
+        converted to filenames (e.g., 1.11.0.dev0+2329eae to
+        1.11.0.dev0_2329eae). These distributions will not be
+        parsed properly
+        downstream by Distribution and safe_version, so
+        take an extra step and try to get the version number from
+        the metadata file itself instead of the filename.
+        """
+        md_version = self._get_version()
+        if md_version:
+            self._version = md_version
+        return self
+
+
+class DistInfoDistribution(Distribution):
+    """
+    Wrap an actual or potential sys.path entry
+    w/metadata, .dist-info style.
+    """
+
+    PKG_INFO = 'METADATA'
+    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
+
+    @property
+    def _parsed_pkg_info(self):
+        """Parse and cache metadata"""
+        try:
+            return self._pkg_info
+        except AttributeError:
+            metadata = self.get_metadata(self.PKG_INFO)
+            self._pkg_info = email.parser.Parser().parsestr(metadata)
+            return self._pkg_info
+
+    @property
+    def _dep_map(self):
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._compute_dependencies()
+            return self.__dep_map
+
+    def _compute_dependencies(self) -> dict[str | None, list[Requirement]]:
+        """Recompute this distribution's dependencies."""
+        self.__dep_map: dict[str | None, list[Requirement]] = {None: []}
+
+        reqs: list[Requirement] = []
+        # Including any condition expressions
+        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
+            reqs.extend(parse_requirements(req))
+
+        def reqs_for_extra(extra):
+            for req in reqs:
+                if not req.marker or req.marker.evaluate({'extra': extra}):
+                    yield req
+
+        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
+        self.__dep_map[None].extend(common)
+
+        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
+            s_extra = safe_extra(extra.strip())
+            self.__dep_map[s_extra] = [
+                r for r in reqs_for_extra(extra) if r not in common
+            ]
+
+        return self.__dep_map
+
+
+_distributionImpl = {
+    '.egg': Distribution,
+    '.egg-info': EggInfoDistribution,
+    '.dist-info': DistInfoDistribution,
+}
+
+
+def issue_warning(*args, **kw):
+    level = 1
+    g = globals()
+    try:
+        # find the first stack frame that is *not* code in
+        # the pkg_resources module, to use for the warning
+        while sys._getframe(level).f_globals is g:
+            level += 1
+    except ValueError:
+        pass
+    warnings.warn(stacklevel=level + 1, *args, **kw)
+
+
+def parse_requirements(strs: _NestedStr):
+    """
+    Yield ``Requirement`` objects for each specification in `strs`.
+
+    `strs` must be a string, or a (possibly-nested) iterable thereof.
+    """
+    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
+
+
+class RequirementParseError(_packaging_requirements.InvalidRequirement):
+    "Compatibility wrapper for InvalidRequirement"
+
+
+class Requirement(_packaging_requirements.Requirement):
+    def __init__(self, requirement_string: str):
+        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
+        super().__init__(requirement_string)
+        self.unsafe_name = self.name
+        project_name = safe_name(self.name)
+        self.project_name, self.key = project_name, project_name.lower()
+        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
+        # packaging.requirements.Requirement uses a set for its extras. We use a variable-length tuple
+        self.extras: tuple[str] = tuple(map(safe_extra, self.extras))
+        self.hashCmp = (
+            self.key,
+            self.url,
+            self.specifier,
+            frozenset(self.extras),
+            str(self.marker) if self.marker else None,
+        )
+        self.__hash = hash(self.hashCmp)
+
+    def __eq__(self, other: object):
+        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
+
+    def __ne__(self, other):
+        return not self == other
+
+    def __contains__(self, item: Distribution | str | tuple[str, ...]) -> bool:
+        if isinstance(item, Distribution):
+            if item.key != self.key:
+                return False
+
+            item = item.version
+
+        # Allow prereleases always in order to match the previous behavior of
+        # this method. In the future this should be smarter and follow PEP 440
+        # more accurately.
+        return self.specifier.contains(item, prereleases=True)
+
+    def __hash__(self):
+        return self.__hash
+
+    def __repr__(self):
+        return "Requirement.parse(%r)" % str(self)
+
+    @staticmethod
+    def parse(s: str | Iterable[str]):
+        (req,) = parse_requirements(s)
+        return req
+
+
+def _always_object(classes):
+    """
+    Ensure object appears in the mro even
+    for old-style classes.
+    """
+    if object not in classes:
+        return classes + (object,)
+    return classes
+
+
+def _find_adapter(registry: Mapping[type, _AdapterT], ob: object) -> _AdapterT:
+    """Return an adapter factory for `ob` from `registry`"""
+    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
+    for t in types:
+        if t in registry:
+            return registry[t]
+    # _find_adapter would previously return None, and immediately be called.
+    # So we're raising a TypeError to keep backward compatibility if anyone depended on that behaviour.
+    raise TypeError(f"Could not find adapter for {registry} and {ob}")
+
+
+def ensure_directory(path: StrOrBytesPath):
+    """Ensure that the parent directory of `path` exists"""
+    dirname = os.path.dirname(path)
+    os.makedirs(dirname, exist_ok=True)
+
+
+def _bypass_ensure_directory(path):
+    """Sandbox-bypassing version of ensure_directory()"""
+    if not WRITE_SUPPORT:
+        raise OSError('"os.mkdir" not supported on this platform.')
+    dirname, filename = split(path)
+    if dirname and filename and not isdir(dirname):
+        _bypass_ensure_directory(dirname)
+        try:
+            mkdir(dirname, 0o755)
+        except FileExistsError:
+            pass
+
+
+def split_sections(s: _NestedStr) -> Iterator[tuple[str | None, list[str]]]:
+    """Split a string or iterable thereof into (section, content) pairs
+
+    Each ``section`` is a stripped version of the section header ("[section]")
+    and each ``content`` is a list of stripped lines excluding blank lines and
+    comment-only lines.  If there are any such lines before the first section
+    header, they're returned in a first ``section`` of ``None``.
+    """
+    section = None
+    content = []
+    for line in yield_lines(s):
+        if line.startswith("["):
+            if line.endswith("]"):
+                if section or content:
+                    yield section, content
+                section = line[1:-1].strip()
+                content = []
+            else:
+                raise ValueError("Invalid section heading", line)
+        else:
+            content.append(line)
+
+    # wrap up last segment
+    yield section, content
+
+
+def _mkstemp(*args, **kw):
+    old_open = os.open
+    try:
+        # temporarily bypass sandboxing
+        os.open = os_open
+        return tempfile.mkstemp(*args, **kw)
+    finally:
+        # and then put it back
+        os.open = old_open
+
+
+# Silence the PEP440Warning by default, so that end users don't get hit by it
+# randomly just because they use pkg_resources. We want to append the rule
+# because we want earlier uses of filterwarnings to take precedence over this
+# one.
+warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
+
+
+class PkgResourcesDeprecationWarning(Warning):
+    """
+    Base class for warning about deprecations in ``pkg_resources``
+
+    This class is not derived from ``DeprecationWarning``, and as such is
+    visible by default.
+    """
+
+
+# Ported from ``setuptools`` to avoid introducing an import inter-dependency:
+_LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None
+
+
+def _read_utf8_with_fallback(file: str, fallback_encoding=_LOCALE_ENCODING) -> str:
+    """See setuptools.unicode_utils._read_utf8_with_fallback"""
+    try:
+        with open(file, "r", encoding="utf-8") as f:
+            return f.read()
+    except UnicodeDecodeError:  # pragma: no cover
+        msg = f"""\
+        ********************************************************************************
+        `encoding="utf-8"` fails with {file!r}, trying `encoding={fallback_encoding!r}`.
+
+        This fallback behaviour is considered **deprecated** and future versions of
+        `setuptools/pkg_resources` may not implement it.
+
+        Please encode {file!r} with "utf-8" to ensure future builds will succeed.
+
+        If this file was produced by `setuptools` itself, cleaning up the cached files
+        and re-building/re-installing the package with a newer version of `setuptools`
+        (e.g. by updating `build-system.requires` in its `pyproject.toml`)
+        might solve the problem.
+        ********************************************************************************
+        """
+        # TODO: Add a deadline?
+        #       See comment in setuptools.unicode_utils._Utf8EncodingNeeded
+        warnings.warn(msg, PkgResourcesDeprecationWarning, stacklevel=2)
+        with open(file, "r", encoding=fallback_encoding) as f:
+            return f.read()
+
+
+# from jaraco.functools 1.3
+def _call_aside(f, *args, **kwargs):
+    f(*args, **kwargs)
+    return f
+
+
+@_call_aside
+def _initialize(g=globals()):
+    "Set up global resource manager (deliberately not state-saved)"
+    manager = ResourceManager()
+    g['_manager'] = manager
+    g.update(
+        (name, getattr(manager, name))
+        for name in dir(manager)
+        if not name.startswith('_')
+    )
+
+
+@_call_aside
+def _initialize_master_working_set():
+    """
+    Prepare the master working set and make the ``require()``
+    API available.
+
+    This function has explicit effects on the global state
+    of pkg_resources. It is intended to be invoked once at
+    the initialization of this module.
+
+    Invocation by other packages is unsupported and done
+    at their own risk.
+    """
+    working_set = _declare_state('object', 'working_set', WorkingSet._build_master())
+
+    require = working_set.require
+    iter_entry_points = working_set.iter_entry_points
+    add_activation_listener = working_set.subscribe
+    run_script = working_set.run_script
+    # backward compatibility
+    run_main = run_script
+    # Activate all distributions already on sys.path with replace=False and
+    # ensure that all distributions added to the working set in the future
+    # (e.g. by calling ``require()``) will get activated as well,
+    # with higher priority (replace=True).
+    tuple(dist.activate(replace=False) for dist in working_set)
+    add_activation_listener(
+        lambda dist: dist.activate(replace=True),
+        existing=False,
+    )
+    working_set.entries = []
+    # match order
+    list(map(working_set.add_entry, sys.path))
+    globals().update(locals())
+
+
+if TYPE_CHECKING:
+    # All of these are set by the @_call_aside methods above
+    __resource_manager = ResourceManager()  # Won't exist at runtime
+    resource_exists = __resource_manager.resource_exists
+    resource_isdir = __resource_manager.resource_isdir
+    resource_filename = __resource_manager.resource_filename
+    resource_stream = __resource_manager.resource_stream
+    resource_string = __resource_manager.resource_string
+    resource_listdir = __resource_manager.resource_listdir
+    set_extraction_path = __resource_manager.set_extraction_path
+    cleanup_resources = __resource_manager.cleanup_resources
+
+    working_set = WorkingSet()
+    require = working_set.require
+    iter_entry_points = working_set.iter_entry_points
+    add_activation_listener = working_set.subscribe
+    run_script = working_set.run_script
+    run_main = run_script
diff --git a/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2c879af141f98671ed0d6b6400c1d1a40c2ef933
GIT binary patch
literal 161254
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
GSpEa~aeog0

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py
new file mode 100644
index 0000000..d58dd2b
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py
@@ -0,0 +1,627 @@
+"""
+Utilities for determining application-specific dirs.
+
+See  for details and usage.
+
+"""
+
+from __future__ import annotations
+
+import os
+import sys
+from typing import TYPE_CHECKING
+
+from .api import PlatformDirsABC
+from .version import __version__
+from .version import __version_tuple__ as __version_info__
+
+if TYPE_CHECKING:
+    from pathlib import Path
+    from typing import Literal
+
+
+def _set_platform_dir_class() -> type[PlatformDirsABC]:
+    if sys.platform == "win32":
+        from pip._vendor.platformdirs.windows import Windows as Result  # noqa: PLC0415
+    elif sys.platform == "darwin":
+        from pip._vendor.platformdirs.macos import MacOS as Result  # noqa: PLC0415
+    else:
+        from pip._vendor.platformdirs.unix import Unix as Result  # noqa: PLC0415
+
+    if os.getenv("ANDROID_DATA") == "/data" and os.getenv("ANDROID_ROOT") == "/system":
+        if os.getenv("SHELL") or os.getenv("PREFIX"):
+            return Result
+
+        from pip._vendor.platformdirs.android import _android_folder  # noqa: PLC0415
+
+        if _android_folder() is not None:
+            from pip._vendor.platformdirs.android import Android  # noqa: PLC0415
+
+            return Android  # return to avoid redefinition of a result
+
+    return Result
+
+
+PlatformDirs = _set_platform_dir_class()  #: Currently active platform
+AppDirs = PlatformDirs  #: Backwards compatibility with appdirs
+
+
+def user_data_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_data_dir
+
+
+def site_data_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data directory shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_data_dir
+
+
+def user_config_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_config_dir
+
+
+def site_config_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config directory shared by the users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_config_dir
+
+
+def user_cache_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_cache_dir
+
+
+def site_cache_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_cache_dir
+
+
+def user_state_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: state directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_state_dir
+
+
+def user_log_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: log directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_log_dir
+
+
+def user_documents_dir() -> str:
+    """:returns: documents directory tied to the user"""
+    return PlatformDirs().user_documents_dir
+
+
+def user_downloads_dir() -> str:
+    """:returns: downloads directory tied to the user"""
+    return PlatformDirs().user_downloads_dir
+
+
+def user_pictures_dir() -> str:
+    """:returns: pictures directory tied to the user"""
+    return PlatformDirs().user_pictures_dir
+
+
+def user_videos_dir() -> str:
+    """:returns: videos directory tied to the user"""
+    return PlatformDirs().user_videos_dir
+
+
+def user_music_dir() -> str:
+    """:returns: music directory tied to the user"""
+    return PlatformDirs().user_music_dir
+
+
+def user_desktop_dir() -> str:
+    """:returns: desktop directory tied to the user"""
+    return PlatformDirs().user_desktop_dir
+
+
+def user_runtime_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_runtime_dir
+
+
+def site_runtime_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime directory shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_runtime_dir
+
+
+def user_data_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_data_path
+
+
+def site_data_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `multipath `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data path shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_data_path
+
+
+def user_config_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_config_path
+
+
+def site_config_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config path shared by the users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_config_path
+
+
+def site_cache_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_cache_path
+
+
+def user_cache_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_cache_path
+
+
+def user_state_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: state path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_state_path
+
+
+def user_log_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: log path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_log_path
+
+
+def user_documents_path() -> Path:
+    """:returns: documents a path tied to the user"""
+    return PlatformDirs().user_documents_path
+
+
+def user_downloads_path() -> Path:
+    """:returns: downloads path tied to the user"""
+    return PlatformDirs().user_downloads_path
+
+
+def user_pictures_path() -> Path:
+    """:returns: pictures path tied to the user"""
+    return PlatformDirs().user_pictures_path
+
+
+def user_videos_path() -> Path:
+    """:returns: videos path tied to the user"""
+    return PlatformDirs().user_videos_path
+
+
+def user_music_path() -> Path:
+    """:returns: music path tied to the user"""
+    return PlatformDirs().user_music_path
+
+
+def user_desktop_path() -> Path:
+    """:returns: desktop path tied to the user"""
+    return PlatformDirs().user_desktop_path
+
+
+def user_runtime_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_runtime_path
+
+
+def site_runtime_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime path shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_runtime_path
+
+
+__all__ = [
+    "AppDirs",
+    "PlatformDirs",
+    "PlatformDirsABC",
+    "__version__",
+    "__version_info__",
+    "site_cache_dir",
+    "site_cache_path",
+    "site_config_dir",
+    "site_config_path",
+    "site_data_dir",
+    "site_data_path",
+    "site_runtime_dir",
+    "site_runtime_path",
+    "user_cache_dir",
+    "user_cache_path",
+    "user_config_dir",
+    "user_config_path",
+    "user_data_dir",
+    "user_data_path",
+    "user_desktop_dir",
+    "user_desktop_path",
+    "user_documents_dir",
+    "user_documents_path",
+    "user_downloads_dir",
+    "user_downloads_path",
+    "user_log_dir",
+    "user_log_path",
+    "user_music_dir",
+    "user_music_path",
+    "user_pictures_dir",
+    "user_pictures_path",
+    "user_runtime_dir",
+    "user_runtime_path",
+    "user_state_dir",
+    "user_state_path",
+    "user_videos_dir",
+    "user_videos_path",
+]
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py
new file mode 100644
index 0000000..fa8a677
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py
@@ -0,0 +1,55 @@
+"""Main entry point."""
+
+from __future__ import annotations
+
+from pip._vendor.platformdirs import PlatformDirs, __version__
+
+PROPS = (
+    "user_data_dir",
+    "user_config_dir",
+    "user_cache_dir",
+    "user_state_dir",
+    "user_log_dir",
+    "user_documents_dir",
+    "user_downloads_dir",
+    "user_pictures_dir",
+    "user_videos_dir",
+    "user_music_dir",
+    "user_runtime_dir",
+    "site_data_dir",
+    "site_config_dir",
+    "site_cache_dir",
+    "site_runtime_dir",
+)
+
+
+def main() -> None:
+    """Run the main entry point."""
+    app_name = "MyApp"
+    app_author = "MyCompany"
+
+    print(f"-- platformdirs {__version__} --")  # noqa: T201
+
+    print("-- app dirs (with optional 'version')")  # noqa: T201
+    dirs = PlatformDirs(app_name, app_author, version="1.0")
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (without optional 'version')")  # noqa: T201
+    dirs = PlatformDirs(app_name, app_author)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (without optional 'appauthor')")  # noqa: T201
+    dirs = PlatformDirs(app_name)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (with disabled 'appauthor')")  # noqa: T201
+    dirs = PlatformDirs(app_name, appauthor=False)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+
+if __name__ == "__main__":
+    main()
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a7753e948b7a6016619b1437dc77a4473c582cc2
GIT binary patch
literal 19822
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

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8da43250b56185796c1fe6975787fd449131f805
GIT binary patch
literal 10690
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

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py
new file mode 100644
index 0000000..afd3141
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py
@@ -0,0 +1,249 @@
+"""Android."""
+
+from __future__ import annotations
+
+import os
+import re
+import sys
+from functools import lru_cache
+from typing import TYPE_CHECKING, cast
+
+from .api import PlatformDirsABC
+
+
+class Android(PlatformDirsABC):
+    """
+    Follows the guidance `from here `_.
+
+    Makes use of the `appname `, `version
+    `, `ensure_exists `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``/data/user///files/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "files")
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. \
+        ``/data/user///shared_prefs/``
+        """
+        return self._append_app_name_and_version(cast(str, _android_folder()), "shared_prefs")
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `user_config_dir`"""
+        return self.user_config_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g.,``/data/user///cache/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, same as `user_cache_dir`"""
+        return self.user_cache_dir
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """
+        :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it,
+          e.g. ``/data/user///cache//log``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``"""
+        return _android_documents_folder()
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``"""
+        return _android_downloads_folder()
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``"""
+        return _android_pictures_folder()
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``"""
+        return _android_videos_folder()
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``"""
+        return _android_music_folder()
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user e.g. ``/storage/emulated/0/Desktop``"""
+        return "/storage/emulated/0/Desktop"
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it,
+          e.g. ``/data/user///cache//tmp``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "tmp")  # noqa: PTH118
+        return path
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+@lru_cache(maxsize=1)
+def _android_folder() -> str | None:  # noqa: C901, PLR0912
+    """:return: base folder for the Android OS or None if it cannot be found"""
+    result: str | None = None
+    # type checker isn't happy with our "import android", just don't do this when type checking see
+    # https://stackoverflow.com/a/61394121
+    if not TYPE_CHECKING:
+        try:
+            # First try to get a path to android app using python4android (if available)...
+            from android import mActivity  # noqa: PLC0415
+
+            context = cast("android.content.Context", mActivity.getApplicationContext())  # noqa: F821
+            result = context.getFilesDir().getParentFile().getAbsolutePath()
+        except Exception:  # noqa: BLE001
+            result = None
+    if result is None:
+        try:
+            # ...and fall back to using plain pyjnius, if python4android isn't available or doesn't deliver any useful
+            # result...
+            from jnius import autoclass  # noqa: PLC0415
+
+            context = autoclass("android.content.Context")
+            result = context.getFilesDir().getParentFile().getAbsolutePath()
+        except Exception:  # noqa: BLE001
+            result = None
+    if result is None:
+        # and if that fails, too, find an android folder looking at path on the sys.path
+        # warning: only works for apps installed under /data, not adopted storage etc.
+        pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files")
+        for path in sys.path:
+            if pattern.match(path):
+                result = path.split("/files")[0]
+                break
+        else:
+            result = None
+    if result is None:
+        # one last try: find an android folder looking at path on the sys.path taking adopted storage paths into
+        # account
+        pattern = re.compile(r"/mnt/expand/[a-fA-F0-9-]{36}/(data|user/\d+)/(.+)/files")
+        for path in sys.path:
+            if pattern.match(path):
+                result = path.split("/files")[0]
+                break
+        else:
+            result = None
+    return result
+
+
+@lru_cache(maxsize=1)
+def _android_documents_folder() -> str:
+    """:return: documents folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        documents_dir = "/storage/emulated/0/Documents"
+
+    return documents_dir
+
+
+@lru_cache(maxsize=1)
+def _android_downloads_folder() -> str:
+    """:return: downloads folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        downloads_dir = "/storage/emulated/0/Downloads"
+
+    return downloads_dir
+
+
+@lru_cache(maxsize=1)
+def _android_pictures_folder() -> str:
+    """:return: pictures folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        pictures_dir = "/storage/emulated/0/Pictures"
+
+    return pictures_dir
+
+
+@lru_cache(maxsize=1)
+def _android_videos_folder() -> str:
+    """:return: videos folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        videos_dir = "/storage/emulated/0/DCIM/Camera"
+
+    return videos_dir
+
+
+@lru_cache(maxsize=1)
+def _android_music_folder() -> str:
+    """:return: music folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        music_dir = "/storage/emulated/0/Music"
+
+    return music_dir
+
+
+__all__ = [
+    "Android",
+]
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py
new file mode 100644
index 0000000..c50caa6
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py
@@ -0,0 +1,292 @@
+"""Base API."""
+
+from __future__ import annotations
+
+import os
+from abc import ABC, abstractmethod
+from pathlib import Path
+from typing import TYPE_CHECKING
+
+if TYPE_CHECKING:
+    from typing import Iterator, Literal
+
+
+class PlatformDirsABC(ABC):  # noqa: PLR0904
+    """Abstract base class for platform directories."""
+
+    def __init__(  # noqa: PLR0913, PLR0917
+        self,
+        appname: str | None = None,
+        appauthor: str | None | Literal[False] = None,
+        version: str | None = None,
+        roaming: bool = False,  # noqa: FBT001, FBT002
+        multipath: bool = False,  # noqa: FBT001, FBT002
+        opinion: bool = True,  # noqa: FBT001, FBT002
+        ensure_exists: bool = False,  # noqa: FBT001, FBT002
+    ) -> None:
+        """
+        Create a new platform directory.
+
+        :param appname: See `appname`.
+        :param appauthor: See `appauthor`.
+        :param version: See `version`.
+        :param roaming: See `roaming`.
+        :param multipath: See `multipath`.
+        :param opinion: See `opinion`.
+        :param ensure_exists: See `ensure_exists`.
+
+        """
+        self.appname = appname  #: The name of application.
+        self.appauthor = appauthor
+        """
+        The name of the app author or distributing body for this application.
+
+        Typically, it is the owning company name. Defaults to `appname`. You may pass ``False`` to disable it.
+
+        """
+        self.version = version
+        """
+        An optional version path element to append to the path.
+
+        You might want to use this if you want multiple versions of your app to be able to run independently. If used,
+        this would typically be ``.``.
+
+        """
+        self.roaming = roaming
+        """
+        Whether to use the roaming appdata directory on Windows.
+
+        That means that for users on a Windows network setup for roaming profiles, this user data will be synced on
+        login (see
+        `here `_).
+
+        """
+        self.multipath = multipath
+        """
+        An optional parameter which indicates that the entire list of data dirs should be returned.
+
+        By default, the first item would only be returned.
+
+        """
+        self.opinion = opinion  #: A flag to indicating to use opinionated values.
+        self.ensure_exists = ensure_exists
+        """
+        Optionally create the directory (and any missing parents) upon access if it does not exist.
+
+        By default, no directories are created.
+
+        """
+
+    def _append_app_name_and_version(self, *base: str) -> str:
+        params = list(base[1:])
+        if self.appname:
+            params.append(self.appname)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(base[0], *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    def _optionally_create_directory(self, path: str) -> None:
+        if self.ensure_exists:
+            Path(path).mkdir(parents=True, exist_ok=True)
+
+    @property
+    @abstractmethod
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users"""
+
+    @property
+    @abstractmethod
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users"""
+
+    @property
+    def user_data_path(self) -> Path:
+        """:return: data path tied to the user"""
+        return Path(self.user_data_dir)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users"""
+        return Path(self.site_data_dir)
+
+    @property
+    def user_config_path(self) -> Path:
+        """:return: config path tied to the user"""
+        return Path(self.user_config_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users"""
+        return Path(self.site_config_dir)
+
+    @property
+    def user_cache_path(self) -> Path:
+        """:return: cache path tied to the user"""
+        return Path(self.user_cache_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users"""
+        return Path(self.site_cache_dir)
+
+    @property
+    def user_state_path(self) -> Path:
+        """:return: state path tied to the user"""
+        return Path(self.user_state_dir)
+
+    @property
+    def user_log_path(self) -> Path:
+        """:return: log path tied to the user"""
+        return Path(self.user_log_dir)
+
+    @property
+    def user_documents_path(self) -> Path:
+        """:return: documents a path tied to the user"""
+        return Path(self.user_documents_dir)
+
+    @property
+    def user_downloads_path(self) -> Path:
+        """:return: downloads path tied to the user"""
+        return Path(self.user_downloads_dir)
+
+    @property
+    def user_pictures_path(self) -> Path:
+        """:return: pictures path tied to the user"""
+        return Path(self.user_pictures_dir)
+
+    @property
+    def user_videos_path(self) -> Path:
+        """:return: videos path tied to the user"""
+        return Path(self.user_videos_dir)
+
+    @property
+    def user_music_path(self) -> Path:
+        """:return: music path tied to the user"""
+        return Path(self.user_music_dir)
+
+    @property
+    def user_desktop_path(self) -> Path:
+        """:return: desktop path tied to the user"""
+        return Path(self.user_desktop_dir)
+
+    @property
+    def user_runtime_path(self) -> Path:
+        """:return: runtime path tied to the user"""
+        return Path(self.user_runtime_dir)
+
+    @property
+    def site_runtime_path(self) -> Path:
+        """:return: runtime path shared by users"""
+        return Path(self.site_runtime_dir)
+
+    def iter_config_dirs(self) -> Iterator[str]:
+        """:yield: all user and site configuration directories."""
+        yield self.user_config_dir
+        yield self.site_config_dir
+
+    def iter_data_dirs(self) -> Iterator[str]:
+        """:yield: all user and site data directories."""
+        yield self.user_data_dir
+        yield self.site_data_dir
+
+    def iter_cache_dirs(self) -> Iterator[str]:
+        """:yield: all user and site cache directories."""
+        yield self.user_cache_dir
+        yield self.site_cache_dir
+
+    def iter_runtime_dirs(self) -> Iterator[str]:
+        """:yield: all user and site runtime directories."""
+        yield self.user_runtime_dir
+        yield self.site_runtime_dir
+
+    def iter_config_paths(self) -> Iterator[Path]:
+        """:yield: all user and site configuration paths."""
+        for path in self.iter_config_dirs():
+            yield Path(path)
+
+    def iter_data_paths(self) -> Iterator[Path]:
+        """:yield: all user and site data paths."""
+        for path in self.iter_data_dirs():
+            yield Path(path)
+
+    def iter_cache_paths(self) -> Iterator[Path]:
+        """:yield: all user and site cache paths."""
+        for path in self.iter_cache_dirs():
+            yield Path(path)
+
+    def iter_runtime_paths(self) -> Iterator[Path]:
+        """:yield: all user and site runtime paths."""
+        for path in self.iter_runtime_dirs():
+            yield Path(path)
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py
new file mode 100644
index 0000000..eb1ba5d
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py
@@ -0,0 +1,130 @@
+"""macOS."""
+
+from __future__ import annotations
+
+import os.path
+import sys
+
+from .api import PlatformDirsABC
+
+
+class MacOS(PlatformDirsABC):
+    """
+    Platform directories for the macOS operating system.
+
+    Follows the guidance from
+    `Apple documentation `_.
+    Makes use of the `appname `,
+    `version `,
+    `ensure_exists `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support"))  # noqa: PTH111
+
+    @property
+    def site_data_dir(self) -> str:
+        """
+        :return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``.
+          If we're using a Python binary managed by `Homebrew `_, the directory
+          will be under the Homebrew prefix, e.g. ``/opt/homebrew/share/$appname/$version``.
+          If `multipath ` is enabled, and we're in Homebrew,
+          the response is a multi-path string separated by ":", e.g.
+          ``/opt/homebrew/share/$appname/$version:/Library/Application Support/$appname/$version``
+        """
+        is_homebrew = sys.prefix.startswith("/opt/homebrew")
+        path_list = [self._append_app_name_and_version("/opt/homebrew/share")] if is_homebrew else []
+        path_list.append(self._append_app_name_and_version("/Library/Application Support"))
+        if self.multipath:
+            return os.pathsep.join(path_list)
+        return path_list[0]
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches"))  # noqa: PTH111
+
+    @property
+    def site_cache_dir(self) -> str:
+        """
+        :return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``.
+          If we're using a Python binary managed by `Homebrew `_, the directory
+          will be under the Homebrew prefix, e.g. ``/opt/homebrew/var/cache/$appname/$version``.
+          If `multipath ` is enabled, and we're in Homebrew,
+          the response is a multi-path string separated by ":", e.g.
+          ``/opt/homebrew/var/cache/$appname/$version:/Library/Caches/$appname/$version``
+        """
+        is_homebrew = sys.prefix.startswith("/opt/homebrew")
+        path_list = [self._append_app_name_and_version("/opt/homebrew/var/cache")] if is_homebrew else []
+        path_list.append(self._append_app_name_and_version("/Library/Caches"))
+        if self.multipath:
+            return os.pathsep.join(path_list)
+        return path_list[0]
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs"))  # noqa: PTH111
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return os.path.expanduser("~/Documents")  # noqa: PTH111
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return os.path.expanduser("~/Downloads")  # noqa: PTH111
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return os.path.expanduser("~/Pictures")  # noqa: PTH111
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Movies``"""
+        return os.path.expanduser("~/Movies")  # noqa: PTH111
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return os.path.expanduser("~/Music")  # noqa: PTH111
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``~/Desktop``"""
+        return os.path.expanduser("~/Desktop")  # noqa: PTH111
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems"))  # noqa: PTH111
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+__all__ = [
+    "MacOS",
+]
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed b/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed
new file mode 100644
index 0000000..e69de29
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py
new file mode 100644
index 0000000..9500ade
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py
@@ -0,0 +1,275 @@
+"""Unix."""
+
+from __future__ import annotations
+
+import os
+import sys
+from configparser import ConfigParser
+from pathlib import Path
+from typing import Iterator, NoReturn
+
+from .api import PlatformDirsABC
+
+if sys.platform == "win32":
+
+    def getuid() -> NoReturn:
+        msg = "should only be used on Unix"
+        raise RuntimeError(msg)
+
+else:
+    from os import getuid
+
+
+class Unix(PlatformDirsABC):  # noqa: PLR0904
+    """
+    On Unix/Linux, we follow the `XDG Basedir Spec `_.
+
+    The spec allows overriding directories with environment variables. The examples shown are the default values,
+    alongside the name of the environment variable that overrides them. Makes use of the `appname
+    `, `version `, `multipath
+    `, `opinion `, `ensure_exists
+    `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
+         ``$XDG_DATA_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_DATA_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/share")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def _site_data_dirs(self) -> list[str]:
+        path = os.environ.get("XDG_DATA_DIRS", "")
+        if not path.strip():
+            path = f"/usr/local/share{os.pathsep}/usr/share"
+        return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)]
+
+    @property
+    def site_data_dir(self) -> str:
+        """
+        :return: data directories shared by users (if `multipath ` is
+         enabled and ``XDG_DATA_DIRS`` is set and a multi path the response is also a multi path separated by the
+         OS path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
+        """
+        # XDG default for $XDG_DATA_DIRS; only first, if multipath is False
+        dirs = self._site_data_dirs
+        if not self.multipath:
+            return dirs[0]
+        return os.pathsep.join(dirs)
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
+         ``$XDG_CONFIG_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CONFIG_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.config")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def _site_config_dirs(self) -> list[str]:
+        path = os.environ.get("XDG_CONFIG_DIRS", "")
+        if not path.strip():
+            path = "/etc/xdg"
+        return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)]
+
+    @property
+    def site_config_dir(self) -> str:
+        """
+        :return: config directories shared by users (if `multipath `
+         is enabled and ``XDG_CONFIG_DIRS`` is set and a multi path the response is also a multi path separated by
+         the OS path separator), e.g. ``/etc/xdg/$appname/$version``
+        """
+        # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False
+        dirs = self._site_config_dirs
+        if not self.multipath:
+            return dirs[0]
+        return os.pathsep.join(dirs)
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
+         ``~/$XDG_CACHE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CACHE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.cache")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``/var/cache/$appname/$version``"""
+        return self._append_app_name_and_version("/var/cache")
+
+    @property
+    def user_state_dir(self) -> str:
+        """
+        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
+         ``$XDG_STATE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_STATE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/state")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it"""
+        path = self.user_state_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+            self._optionally_create_directory(path)
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents")
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads")
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures")
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Videos``"""
+        return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos")
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music")
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``~/Desktop``"""
+        return _get_user_media_dir("XDG_DESKTOP_DIR", "~/Desktop")
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
+         ``$XDG_RUNTIME_DIR/$appname/$version``.
+
+         For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if
+         exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR``
+         is not set.
+        """
+        path = os.environ.get("XDG_RUNTIME_DIR", "")
+        if not path.strip():
+            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
+                path = f"/var/run/user/{getuid()}"
+                if not Path(path).exists():
+                    path = f"/tmp/runtime-{getuid()}"  # noqa: S108
+            else:
+                path = f"/run/user/{getuid()}"
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """
+        :return: runtime directory shared by users, e.g. ``/run/$appname/$version`` or \
+        ``$XDG_RUNTIME_DIR/$appname/$version``.
+
+        Note that this behaves almost exactly like `user_runtime_dir` if ``$XDG_RUNTIME_DIR`` is set, but will
+        fall back to paths associated to the root user instead of a regular logged-in user if it's not set.
+
+        If you wish to ensure that a logged-in root user path is returned e.g. ``/run/user/0``, use `user_runtime_dir`
+        instead.
+
+        For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/$appname/$version`` if ``$XDG_RUNTIME_DIR`` is not set.
+        """
+        path = os.environ.get("XDG_RUNTIME_DIR", "")
+        if not path.strip():
+            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
+                path = "/var/run"
+            else:
+                path = "/run"
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_data_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users, returns the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_config_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_cache_dir)
+
+    def _first_item_as_path_if_multipath(self, directory: str) -> Path:
+        if self.multipath:
+            # If multipath is True, the first path is returned.
+            directory = directory.split(os.pathsep)[0]
+        return Path(directory)
+
+    def iter_config_dirs(self) -> Iterator[str]:
+        """:yield: all user and site configuration directories."""
+        yield self.user_config_dir
+        yield from self._site_config_dirs
+
+    def iter_data_dirs(self) -> Iterator[str]:
+        """:yield: all user and site data directories."""
+        yield self.user_data_dir
+        yield from self._site_data_dirs
+
+
+def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str:
+    media_dir = _get_user_dirs_folder(env_var)
+    if media_dir is None:
+        media_dir = os.environ.get(env_var, "").strip()
+        if not media_dir:
+            media_dir = os.path.expanduser(fallback_tilde_path)  # noqa: PTH111
+
+    return media_dir
+
+
+def _get_user_dirs_folder(key: str) -> str | None:
+    """
+    Return directory from user-dirs.dirs config file.
+
+    See https://freedesktop.org/wiki/Software/xdg-user-dirs/.
+
+    """
+    user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs"
+    if user_dirs_config_path.exists():
+        parser = ConfigParser()
+
+        with user_dirs_config_path.open() as stream:
+            # Add fake section header, so ConfigParser doesn't complain
+            parser.read_string(f"[top]\n{stream.read()}")
+
+        if key not in parser["top"]:
+            return None
+
+        path = parser["top"][key].strip('"')
+        # Handle relative home paths
+        return path.replace("$HOME", os.path.expanduser("~"))  # noqa: PTH111
+
+    return None
+
+
+__all__ = [
+    "Unix",
+]
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py
new file mode 100644
index 0000000..6483ddc
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py
@@ -0,0 +1,16 @@
+# file generated by setuptools_scm
+# don't change, don't track in version control
+TYPE_CHECKING = False
+if TYPE_CHECKING:
+    from typing import Tuple, Union
+    VERSION_TUPLE = Tuple[Union[int, str], ...]
+else:
+    VERSION_TUPLE = object
+
+version: str
+__version__: str
+__version_tuple__: VERSION_TUPLE
+version_tuple: VERSION_TUPLE
+
+__version__ = version = '4.2.2'
+__version_tuple__ = version_tuple = (4, 2, 2)
diff --git a/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py b/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py
new file mode 100644
index 0000000..d7bc960
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py
@@ -0,0 +1,272 @@
+"""Windows."""
+
+from __future__ import annotations
+
+import os
+import sys
+from functools import lru_cache
+from typing import TYPE_CHECKING
+
+from .api import PlatformDirsABC
+
+if TYPE_CHECKING:
+    from collections.abc import Callable
+
+
+class Windows(PlatformDirsABC):
+    """
+    `MSDN on where to store app data files `_.
+
+    Makes use of the `appname `, `appauthor
+    `, `version `, `roaming
+    `, `opinion `, `ensure_exists
+    `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or
+         ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming)
+        """
+        const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA"
+        path = os.path.normpath(get_win_folder(const))
+        return self._append_parts(path)
+
+    def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str:
+        params = []
+        if self.appname:
+            if self.appauthor is not False:
+                author = self.appauthor or self.appname
+                params.append(author)
+            params.append(self.appname)
+            if opinion_value is not None and self.opinion:
+                params.append(opinion_value)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(path, *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path)
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version``
+        """
+        path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it"""
+        path = self.user_data_dir
+        if self.opinion:
+            path = os.path.join(path, "Logs")  # noqa: PTH118
+            self._optionally_create_directory(path)
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``"""
+        return os.path.normpath(get_win_folder("CSIDL_PERSONAL"))
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``"""
+        return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS"))
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYPICTURES"))
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYVIDEO"))
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYMUSIC"))
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``%USERPROFILE%\\Desktop``"""
+        return os.path.normpath(get_win_folder("CSIDL_DESKTOPDIRECTORY"))
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname``
+        """
+        path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp"))  # noqa: PTH118
+        return self._append_parts(path)
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+def get_win_folder_from_env_vars(csidl_name: str) -> str:
+    """Get folder from environment variables."""
+    result = get_win_folder_if_csidl_name_not_env_var(csidl_name)
+    if result is not None:
+        return result
+
+    env_var_name = {
+        "CSIDL_APPDATA": "APPDATA",
+        "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE",
+        "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA",
+    }.get(csidl_name)
+    if env_var_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    result = os.environ.get(env_var_name)
+    if result is None:
+        msg = f"Unset environment variable: {env_var_name}"
+        raise ValueError(msg)
+    return result
+
+
+def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None:
+    """Get a folder for a CSIDL name that does not exist as an environment variable."""
+    if csidl_name == "CSIDL_PERSONAL":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYPICTURES":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYVIDEO":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYMUSIC":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music")  # noqa: PTH118
+    return None
+
+
+def get_win_folder_from_registry(csidl_name: str) -> str:
+    """
+    Get folder from the registry.
+
+    This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer
+    for all CSIDL_* names.
+
+    """
+    shell_folder_name = {
+        "CSIDL_APPDATA": "AppData",
+        "CSIDL_COMMON_APPDATA": "Common AppData",
+        "CSIDL_LOCAL_APPDATA": "Local AppData",
+        "CSIDL_PERSONAL": "Personal",
+        "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}",
+        "CSIDL_MYPICTURES": "My Pictures",
+        "CSIDL_MYVIDEO": "My Video",
+        "CSIDL_MYMUSIC": "My Music",
+    }.get(csidl_name)
+    if shell_folder_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    if sys.platform != "win32":  # only needed for mypy type checker to know that this code runs only on Windows
+        raise NotImplementedError
+    import winreg  # noqa: PLC0415
+
+    key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders")
+    directory, _ = winreg.QueryValueEx(key, shell_folder_name)
+    return str(directory)
+
+
+def get_win_folder_via_ctypes(csidl_name: str) -> str:
+    """Get folder with ctypes."""
+    # There is no 'CSIDL_DOWNLOADS'.
+    # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead.
+    # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid
+
+    import ctypes  # noqa: PLC0415
+
+    csidl_const = {
+        "CSIDL_APPDATA": 26,
+        "CSIDL_COMMON_APPDATA": 35,
+        "CSIDL_LOCAL_APPDATA": 28,
+        "CSIDL_PERSONAL": 5,
+        "CSIDL_MYPICTURES": 39,
+        "CSIDL_MYVIDEO": 14,
+        "CSIDL_MYMUSIC": 13,
+        "CSIDL_DOWNLOADS": 40,
+        "CSIDL_DESKTOPDIRECTORY": 16,
+    }.get(csidl_name)
+    if csidl_const is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+
+    buf = ctypes.create_unicode_buffer(1024)
+    windll = getattr(ctypes, "windll")  # noqa: B009 # using getattr to avoid false positive with mypy type checker
+    windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
+
+    # Downgrade to short path name if it has high-bit chars.
+    if any(ord(c) > 255 for c in buf):  # noqa: PLR2004
+        buf2 = ctypes.create_unicode_buffer(1024)
+        if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
+            buf = buf2
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(buf.value, "Downloads")  # noqa: PTH118
+
+    return buf.value
+
+
+def _pick_get_win_folder() -> Callable[[str], str]:
+    try:
+        import ctypes  # noqa: PLC0415
+    except ImportError:
+        pass
+    else:
+        if hasattr(ctypes, "windll"):
+            return get_win_folder_via_ctypes
+    try:
+        import winreg  # noqa: PLC0415, F401
+    except ImportError:
+        return get_win_folder_from_env_vars
+    else:
+        return get_win_folder_from_registry
+
+
+get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder())
+
+__all__ = [
+    "Windows",
+]
diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py b/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py
new file mode 100644
index 0000000..60ae9bb
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py
@@ -0,0 +1,82 @@
+"""
+    Pygments
+    ~~~~~~~~
+
+    Pygments is a syntax highlighting package written in Python.
+
+    It is a generic syntax highlighter for general use in all kinds of software
+    such as forum systems, wikis or other applications that need to prettify
+    source code. Highlights are:
+
+    * a wide range of common languages and markup formats is supported
+    * special attention is paid to details, increasing quality by a fair amount
+    * support for new languages and formats are added easily
+    * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image
+      formats that PIL supports, and ANSI sequences
+    * it is usable as a command-line tool and as a library
+    * ... and it highlights even Brainfuck!
+
+    The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``.
+
+    .. _Pygments master branch:
+       https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
+
+    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+from io import StringIO, BytesIO
+
+__version__ = '2.18.0'
+__docformat__ = 'restructuredtext'
+
+__all__ = ['lex', 'format', 'highlight']
+
+
+def lex(code, lexer):
+    """
+    Lex `code` with the `lexer` (must be a `Lexer` instance)
+    and return an iterable of tokens. Currently, this only calls
+    `lexer.get_tokens()`.
+    """
+    try:
+        return lexer.get_tokens(code)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.lexer import RegexLexer
+        if isinstance(lexer, type) and issubclass(lexer, RegexLexer):
+            raise TypeError('lex() argument must be a lexer instance, '
+                            'not a class')
+        raise
+
+
+def format(tokens, formatter, outfile=None):  # pylint: disable=redefined-builtin
+    """
+    Format ``tokens`` (an iterable of tokens) with the formatter ``formatter``
+    (a `Formatter` instance).
+
+    If ``outfile`` is given and a valid file object (an object with a
+    ``write`` method), the result will be written to it, otherwise it
+    is returned as a string.
+    """
+    try:
+        if not outfile:
+            realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO()
+            formatter.format(tokens, realoutfile)
+            return realoutfile.getvalue()
+        else:
+            formatter.format(tokens, outfile)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.formatter import Formatter
+        if isinstance(formatter, type) and issubclass(formatter, Formatter):
+            raise TypeError('format() argument must be a formatter instance, '
+                            'not a class')
+        raise
+
+
+def highlight(code, lexer, formatter, outfile=None):
+    """
+    This is the most high-level highlighting function. It combines `lex` and
+    `format` in one function.
+    """
+    return format(lex(code, lexer), formatter, outfile)
diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py b/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py
new file mode 100644
index 0000000..dcc6e5a
--- /dev/null
+++ b/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py
@@ -0,0 +1,17 @@
+"""
+    pygments.__main__
+    ~~~~~~~~~~~~~~~~~
+
+    Main entry point for ``python -m pygments``.
+
+    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+
+import sys
+from pip._vendor.pygments.cmdline import main
+
+try:
+    sys.exit(main(sys.argv))
+except KeyboardInterrupt:
+    sys.exit(1)
diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d796bf6bf1ed8c3ec01d7d8e3cf220638a43faaf
GIT binary patch
literal 3482
zcmaJ@O>7&-72YK&i6ZsmO16tAu06JETeKxoR*l+GV*|3|#6lF?u+-FL59DfhM6R{m
zWoBkAQIHG4$f3s+4d5ISz$gMVg?q>`#{})I7duj6cj1H4qKDqxC_syx`n_2$>85H2
z(r|WW=goU>zwev($HBpzfj08~@!D_lhVfT=NLs2r*tvkgJ;O1|hGRM@&upa1sYbe-
zHVr3T&N!KJPt9<8er=X}o!)nia-WlPvhSMZEPng(+u!Od#bUY`%3DE
zpSN4?KbDv)nZ;zwSJoPHOlaKV-X!Su4_u~2d{VR;@~aeYU!V42BaS*==vYma1T*O?`0Q`mqtsdz(9uvK>j
zF2Yct>M&_Fo1SZ1$_;$URNYd{=iFf`U`@f5a+h1Nu^<#SXLjK5BD<1=g-`{biQPYm
zuvcA&Ghz9N65iNBqY?Pb!*hth@v`r*h9y?QCOOrxl%$Ad*lY$uaYr9?lF25wT?A-R
zmdG!9scE^|DTgb|^$>>Z+k#t?68lbQd9G@)r50RRwp;|&2tr>a_G0@wc|KqLmOqIj
z2!vUVgV4#U7e`Go`C(%Tc|trvsG6ZlT%Vu>NqFeB*p1A7;R<@(E^y>dAIc#Cz;stLOBjer%w
zV9U4b)e7a`^`!#Tv=^(csB%4@ariRnq48OJeW2hEls#?7!x$&gJ?P5p3k
zdTRO%K?JDpc*_*G8WYGlXR|+EymIZvLQ(rQ14?jT@)>q<;k9^ue(uucs|%MkirOG7
z=KfAHQ%FVG1toyQxoc71#g^i7?%I0qbn*1L;#9N;AWgaG5l8BFdnpL7mTBZ>R9-`Axh9V(md$hos?;)
z{$%ThskCy^^Mm#d@m)38UEfG`=JSfY(9KCFXWcdL8mq=y`lrUKS;(w^q?0z!*I1PV
zq6!@VLMYKyM9M{#jWI)1T2$+`5>MROvX%!Pb${9s>D0S3qT=>wxAFTW|X_ZYkWHk!oC~D_
zgAi|&QP@W_GF*!7rlSnyE$Zp+kd$>e|IN)(J!tTf^xS1mBq_D!(UqzMx`QKhh5Vp+
zdb%W$w#oJ_BTI0p)OM*$qzVY@s!9b;ie8+cyQ3J$8|XHT=L6ZEp(n$89}gdTG<@iO
zW^4G^!|bttJy9gJ_7gx&}39c!k@
z0mGgB5877NOiA-(OSfeHP8xjaOJ=*j8^%UD!M2I2ay(oV+fZS>vAz_;%tmchG`WSsZ_-t9}~Hq4DoXFjh`)5Oi`*_C&_)&V3-L;Q7p
zn?jRg=vP6wU0GDQdF
z2Pr^_A_R&bV$|2p
zc$7!oDb}>g-^<#?cEx?@a5S2
zAI|>%l`qH2+t+VyT`&LQ%_jr<9uFLNG;rX9x9|UKd*Jkw(SwgiPdpkuu{BzFI8b=@
z!tzi4G%)#sF1$**;C{S!JAeFlGoQMjzqEbo&HtwhM1;Gu+1Z1}7x@wD51zZYKW$Sk
zlScYPY2BGZchBf5LstdBW;0>TMheVs>%#){e!Zz-wn%pc{s>!*0GAM5x04>KAg@~$
zQ5Cry`ZiUYMTSBgWyliBE2%HADj_?@Z2UQh61abOcaL5zq~g?*UUyy@rW(BDJzv&^ff@}+}|4F5PmdlqU@`UzzIEm
zK^(^%>9Cwc_dIQy=08#|nVEl{G0elyhW2mfpX@oZIrx{{_-5Z%y+h{E&XN7*(AU#F
I<~eQd-+La(R{#J2

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..72712cc4ecb55aae4065a728227f4a7ccdf0af9f
GIT binary patch
literal 728
zcmZ`#OKTKC5boZYxa-7d6h#j?G)5!~?#yNt4~qzK4eSz)kBwmV;Oy*7Wwv!*bax)(
zLGZ|(d`#Le9A!#SxpLZ>c
z(9iUf+t?@=e2~E=a!?03*eQ6pgQZuzg0FNGj1Hp$0{pO)!}h(*E3%Sp*w3cXC%NmO
z$0#mLBRF&pu~YcJ^BgtDVYDm}>u5t+M(emd_V}Adq(!moLm;?rn!ZH?)6B9@{xvO2
z-;^ChcC(m7Aq@ms2^r~jqgeFAfK>dwY2B_qMAYptiWznLqD~rlNNUyUg*N62Rt;YOfdp@J!fUu~?b!|IU
zXt9hFH9clKm8@J$il*s=wrM5`k9jf`(MUJfAaFva@11Y^jz6+d9MnCky;2vE8!==LD5!lr7C>MrDd&W?fi~4NM;8Z{*
zvg}8e3*3+dj1d9ZG}Pb7^_P^A(iJ~+Rz0}Nj><*p6}%;%9R*|jt5Cw~;3UH1KTu^y
zRq*7NdgN*2Me|wn)zaJP&6#&IuOEC@r~Yge&-_OCK>6jJ=L_kG$z6U-PJ4597JWWF
LH?Dlquzddl^I5@&

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..946f8691d25035161ec209b28532cf621a683136
GIT binary patch
literal 26578
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
Q-AiY0UideGKehCK0k7ovjsO4v

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..929974c529687a0127ea15dbb52fa55fceeeb092
GIT binary patch
literal 4714
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

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b1a72bfa153a719fbb76a53fefaad6dbe60bf1a3
GIT binary patch
literal 38355
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
X0YCRUs>P~Ed#roU-wSwRJl6jYXup!e

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5b9f64750cca92374b8ad8f97f7b52cbc37d9ce6
GIT binary patch
literal 1553
zcmZWp&2Jk;6rb5$+Z)^YrlGNdGy)QN1GUreAz`(N(lioOm5b_tklWN+d&kbY>-BbL
z)7I7o1*wRHR7!-95^g!R%Adj|5LCh{2P958AQ{{f7kIPwCRKRSzIik6&HK&!+8=v+
zqX=l|`-#e*B0_)gO+ZptXx{^22WcpeG^_~*&SOoi;JhFpimTzk{A|@EIG4}%fwV7l
zq(XAHeWO-3{1TJCyBfAf?1g=}ttl&+c5gIUNfEtRkpF^By)dJyU0U`+6}!G-DT0R$57!uP
z3qt<+BE4L%(KIvkGEG->C(SHc(p5uePTJ6mX{+HZ*Uk4*m#5QAcjzTcE!|ful%*}*
zN*5kdQ>)ux)M=n}fSa-!-pK#6&wI;`1MmoZED3B49m~VN%88%k#O~!o`Hi)?-y-r+
z|G?IxjYr!LHk$|XXiG$LPaAAesoTn2Mm!%pbM2pj?I0IbU(Gh0aoX=JXjO0p4Kf)+
zn$U#d)9}~gDCn-ErD23tMd!2zt{CKWRdOYUpANcGNx&$FB;=gdz{N0>c)xoKyo`gF
zkQ;I$T|ndtfuH;EYVb4k3Wnf@IC@~wMSANDsUa#-^JbI}XRf50{%~|!*KhP7&5Wp~
zMr`V=*ydSR>SY*0N^}OcE2h>Nos)loY#u;Xk-R9g4Bg@7V17Nkkgb{(>WKz5m9QrQ
zme*5L9~XQRFVtBizIYh#dpb=E?Bc7znHZYz?(!)H|@1-N+us$JQ2(
z1}^4W!F51wB<9GYIA_xgv9UQc`%ZS|nOiB=rN2kc%z
zSMUiBSCPF)p`g`Eg@Px*IKW0V4A?|U^_m4g2QTvZ!tHCfatk(($WMnK#&hJm@q_c^
zE0FUQgU;9ljCiN9IbbajWBivOW2yZb!qMMj;|I}+wMZ+B`bXD`Th)zf3yBE{_F?&(
Y{8#yQMC>12i~SuJapGmXA9r5*ACYo`pa1{>

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ced40933e600c35686b23fa80faaf1dd0718bb3d
GIT binary patch
literal 2602
zcmd5;&u<$=6rQmi+i`xojhhNY77(-!iS34}s7_jxwvLDhP8A!}7!_;d9oq|Q?`md~
z#!*5m#32z#<$y?gqSq+!FYpg=vE(X>Ry`nbfm<32iE!f0?AnRlC~)jZ`}XadH}B2+
z-Zx|a+S3z2FoNH|UC8+m`kj9?hRadvH$d4!3d$e_D=rO}Tp1TeiaX<0JQD9MsWWJN6(B&Nx%=wQhzWm8@`yIU}GO4iVUkZiTDjcluDnuaF&$GvP6SNo5=L`f`%og>Fz9(dgF)R#eQ
zA+tHR1K)hCW0TK|v4$1A;~ZETT*IGtG-i(8Yv?D}juRz?zy}U|`&dH-)QFQpVRzE<
zGNO^32{m^VsJ>)`J(Op)d_|eT0il#@q1UIt3^D
z-iX@QLByz71K>=v$J;@>A>%vnu&W>*pl3bjzxnLJ^fO=Y#`1S7Pkqw97xjl8u5YeC
ziEpge`XW_-WZ%zCtDCEjMxHFz`odLzxDJa^j*G_Nb-xKu{SJr^5pL;<>7b8L1LIrh
z?pf#(T0G_51?YWs`+VW_+
ztZZW|APTnW$6G4VE|69bE&(NLgOjx{J_>t4@4>_P*8f0%10bObPcL5G4aGMCd%Z&s
z^-aCjJ6!V*KX;>Z6Niiw@2iU=xTSV(6tx?m{IA+2r*^)wZ2%%CaIb+#-sNEOMgtSt
z2LXV1ys_5c^xXVMQ|WX&GMsdD06b_A1UrUG=r}4z2a*nf-z4`P1#yJTwcXJ5CNhs!
zf4u+rer-5b?Tyv^F%HrDhjjtbRb~k{spb6eZ>F(

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ff27035ddd851d80ee49f78efb7545864eaea88d
GIT binary patch
literal 4071
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

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..82356b2b34c4f1fc2d34180d4910490da5365f15
GIT binary patch
literal 12092
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

literal 0
HcmV?d00001

diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6007bf232d00e4c702fd45655fc427beb62bc392
GIT binary patch
literal 8183
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

' : '\U0001d4ab', + '\\' : '\U0001d4ac', + '\\' : '\U0000211b', + '\\' : '\U0001d4ae', + '\\' : '\U0001d4af', + '\\' : '\U0001d4b0', + '\\' : '\U0001d4b1', + '\\' : '\U0001d4b2', + '\\' : '\U0001d4b3', + '\\' : '\U0001d4b4', + '\\' : '\U0001d4b5', + '\\' : '\U0001d5ba', + '\\' : '\U0001d5bb', + '\\' : '\U0001d5bc', + '\\' : '\U0001d5bd', + '\\' : '\U0001d5be', + '\\' : '\U0001d5bf', + '\\' : '\U0001d5c0', + '\\' : '\U0001d5c1', + '\\' : '\U0001d5c2', + '\\' : '\U0001d5c3', + '\\' : '\U0001d5c4', + '\\' : '\U0001d5c5', + '\\' : '\U0001d5c6', + '\\' : '\U0001d5c7', + '\\' : '\U0001d5c8', + '\\

' : '\U0001d5c9', + '\\' : '\U0001d5ca', + '\\' : '\U0001d5cb', + '\\' : '\U0001d5cc', + '\\' : '\U0001d5cd', + '\\' : '\U0001d5ce', + '\\' : '\U0001d5cf', + '\\' : '\U0001d5d0', + '\\' : '\U0001d5d1', + '\\' : '\U0001d5d2', + '\\' : '\U0001d5d3', + '\\' : '\U0001d504', + '\\' : '\U0001d505', + '\\' : '\U0000212d', + '\\

' : '\U0001d507', + '\\' : '\U0001d508', + '\\' : '\U0001d509', + '\\' : '\U0001d50a', + '\\' : '\U0000210c', + '\\' : '\U00002111', + '\\' : '\U0001d50d', + '\\' : '\U0001d50e', + '\\' : '\U0001d50f', + '\\' : '\U0001d510', + '\\' : '\U0001d511', + '\\' : '\U0001d512', + '\\' : '\U0001d513', + '\\' : '\U0001d514', + '\\' : '\U0000211c', + '\\' : '\U0001d516', + '\\' : '\U0001d517', + '\\' : '\U0001d518', + '\\' : '\U0001d519', + '\\' : '\U0001d51a', + '\\' : '\U0001d51b', + '\\' : '\U0001d51c', + '\\' : '\U00002128', + '\\' : '\U0001d51e', + '\\' : '\U0001d51f', + '\\' : '\U0001d520', + '\\
' : '\U0001d521', + '\\' : '\U0001d522', + '\\' : '\U0001d523', + '\\' : '\U0001d524', + '\\' : '\U0001d525', + '\\' : '\U0001d526', + '\\' : '\U0001d527', + '\\' : '\U0001d528', + '\\' : '\U0001d529', + '\\' : '\U0001d52a', + '\\' : '\U0001d52b', + '\\' : '\U0001d52c', + '\\' : '\U0001d52d', + '\\' : '\U0001d52e', + '\\' : '\U0001d52f', + '\\' : '\U0001d530', + '\\' : '\U0001d531', + '\\' : '\U0001d532', + '\\' : '\U0001d533', + '\\' : '\U0001d534', + '\\' : '\U0001d535', + '\\' : '\U0001d536', + '\\' : '\U0001d537', + '\\' : '\U000003b1', + '\\' : '\U000003b2', + '\\' : '\U000003b3', + '\\' : '\U000003b4', + '\\' : '\U000003b5', + '\\' : '\U000003b6', + '\\' : '\U000003b7', + '\\' : '\U000003b8', + '\\' : '\U000003b9', + '\\' : '\U000003ba', + '\\' : '\U000003bb', + '\\' : '\U000003bc', + '\\' : '\U000003bd', + '\\' : '\U000003be', + '\\' : '\U000003c0', + '\\' : '\U000003c1', + '\\' : '\U000003c3', + '\\' : '\U000003c4', + '\\' : '\U000003c5', + '\\' : '\U000003c6', + '\\' : '\U000003c7', + '\\' : '\U000003c8', + '\\' : '\U000003c9', + '\\' : '\U00000393', + '\\' : '\U00000394', + '\\' : '\U00000398', + '\\' : '\U0000039b', + '\\' : '\U0000039e', + '\\' : '\U000003a0', + '\\' : '\U000003a3', + '\\' : '\U000003a5', + '\\' : '\U000003a6', + '\\' : '\U000003a8', + '\\' : '\U000003a9', + '\\' : '\U0001d539', + '\\' : '\U00002102', + '\\' : '\U00002115', + '\\' : '\U0000211a', + '\\' : '\U0000211d', + '\\' : '\U00002124', + '\\' : '\U00002190', + '\\' : '\U000027f5', + '\\' : '\U00002192', + '\\' : '\U000027f6', + '\\' : '\U000021d0', + '\\' : '\U000027f8', + '\\' : '\U000021d2', + '\\' : '\U000027f9', + '\\' : '\U00002194', + '\\' : '\U000027f7', + '\\' : '\U000021d4', + '\\' : '\U000027fa', + '\\' : '\U000021a6', + '\\' : '\U000027fc', + '\\' : '\U00002500', + '\\' : '\U00002550', + '\\' : '\U000021a9', + '\\' : '\U000021aa', + '\\' : '\U000021bd', + '\\' : '\U000021c1', + '\\' : '\U000021bc', + '\\' : '\U000021c0', + '\\' : '\U000021cc', + '\\' : '\U0000219d', + '\\' : '\U000021c3', + '\\' : '\U000021c2', + '\\' : '\U000021bf', + '\\' : '\U000021be', + '\\' : '\U000021be', + '\\' : '\U00002237', + '\\' : '\U00002191', + '\\' : '\U000021d1', + '\\' : '\U00002193', + '\\' : '\U000021d3', + '\\' : '\U00002195', + '\\' : '\U000021d5', + '\\' : '\U000027e8', + '\\' : '\U000027e9', + '\\' : '\U00002308', + '\\' : '\U00002309', + '\\' : '\U0000230a', + '\\' : '\U0000230b', + '\\' : '\U00002987', + '\\' : '\U00002988', + '\\' : '\U000027e6', + '\\' : '\U000027e7', + '\\' : '\U00002983', + '\\' : '\U00002984', + '\\' : '\U000000ab', + '\\' : '\U000000bb', + '\\' : '\U000022a5', + '\\' : '\U000022a4', + '\\' : '\U00002227', + '\\' : '\U000022c0', + '\\' : '\U00002228', + '\\' : '\U000022c1', + '\\' : '\U00002200', + '\\' : '\U00002203', + '\\' : '\U00002204', + '\\' : '\U000000ac', + '\\' : '\U000025a1', + '\\' : '\U000025c7', + '\\' : '\U000022a2', + '\\' : '\U000022a8', + '\\' : '\U000022a9', + '\\' : '\U000022ab', + '\\' : '\U000022a3', + '\\' : '\U0000221a', + '\\' : '\U00002264', + '\\' : '\U00002265', + '\\' : '\U0000226a', + '\\' : '\U0000226b', + '\\' : '\U00002272', + '\\' : '\U00002273', + '\\' : '\U00002a85', + '\\' : '\U00002a86', + '\\' : '\U00002208', + '\\' : '\U00002209', + '\\' : '\U00002282', + '\\' : '\U00002283', + '\\' : '\U00002286', + '\\' : '\U00002287', + '\\' : '\U0000228f', + '\\' : '\U00002290', + '\\' : '\U00002291', + '\\' : '\U00002292', + '\\' : '\U00002229', + '\\' : '\U000022c2', + '\\' : '\U0000222a', + '\\' : '\U000022c3', + '\\' : '\U00002294', + '\\' : '\U00002a06', + '\\' : '\U00002293', + '\\' : '\U00002a05', + '\\' : '\U00002216', + '\\' : '\U0000221d', + '\\' : '\U0000228e', + '\\' : '\U00002a04', + '\\' : '\U00002260', + '\\' : '\U0000223c', + '\\' : '\U00002250', + '\\' : '\U00002243', + '\\' : '\U00002248', + '\\' : '\U0000224d', + '\\' : '\U00002245', + '\\' : '\U00002323', + '\\' : '\U00002261', + '\\' : '\U00002322', + '\\' : '\U000022c8', + '\\' : '\U00002a1d', + '\\' : '\U0000227a', + '\\' : '\U0000227b', + '\\' : '\U0000227c', + '\\' : '\U0000227d', + '\\' : '\U00002225', + '\\' : '\U000000a6', + '\\' : '\U000000b1', + '\\' : '\U00002213', + '\\' : '\U000000d7', + '\\
' : '\U000000f7', + '\\' : '\U000022c5', + '\\' : '\U000022c6', + '\\' : '\U00002219', + '\\' : '\U00002218', + '\\' : '\U00002020', + '\\' : '\U00002021', + '\\' : '\U000022b2', + '\\' : '\U000022b3', + '\\' : '\U000022b4', + '\\' : '\U000022b5', + '\\' : '\U000025c3', + '\\' : '\U000025b9', + '\\' : '\U000025b3', + '\\' : '\U0000225c', + '\\' : '\U00002295', + '\\' : '\U00002a01', + '\\' : '\U00002297', + '\\' : '\U00002a02', + '\\' : '\U00002299', + '\\' : '\U00002a00', + '\\' : '\U00002296', + '\\' : '\U00002298', + '\\' : '\U00002026', + '\\' : '\U000022ef', + '\\' : '\U00002211', + '\\' : '\U0000220f', + '\\' : '\U00002210', + '\\' : '\U0000221e', + '\\' : '\U0000222b', + '\\' : '\U0000222e', + '\\' : '\U00002663', + '\\' : '\U00002662', + '\\' : '\U00002661', + '\\' : '\U00002660', + '\\' : '\U00002135', + '\\' : '\U00002205', + '\\' : '\U00002207', + '\\' : '\U00002202', + '\\' : '\U0000266d', + '\\' : '\U0000266e', + '\\' : '\U0000266f', + '\\' : '\U00002220', + '\\' : '\U000000a9', + '\\' : '\U000000ae', + '\\' : '\U000000ad', + '\\' : '\U000000af', + '\\' : '\U000000bc', + '\\' : '\U000000bd', + '\\' : '\U000000be', + '\\' : '\U000000aa', + '\\' : '\U000000ba', + '\\
' : '\U000000a7', + '\\' : '\U000000b6', + '\\' : '\U000000a1', + '\\' : '\U000000bf', + '\\' : '\U000020ac', + '\\' : '\U000000a3', + '\\' : '\U000000a5', + '\\' : '\U000000a2', + '\\' : '\U000000a4', + '\\' : '\U000000b0', + '\\' : '\U00002a3f', + '\\' : '\U00002127', + '\\' : '\U000025ca', + '\\' : '\U00002118', + '\\' : '\U00002240', + '\\' : '\U000022c4', + '\\' : '\U000000b4', + '\\' : '\U00000131', + '\\' : '\U000000a8', + '\\' : '\U000000b8', + '\\' : '\U000002dd', + '\\' : '\U000003f5', + '\\' : '\U000023ce', + '\\' : '\U00002039', + '\\' : '\U0000203a', + '\\' : '\U00002302', + '\\<^sub>' : '\U000021e9', + '\\<^sup>' : '\U000021e7', + '\\<^bold>' : '\U00002759', + '\\<^bsub>' : '\U000021d8', + '\\<^esub>' : '\U000021d9', + '\\<^bsup>' : '\U000021d7', + '\\<^esup>' : '\U000021d6', + } + + lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} + + def __init__(self, **options): + Filter.__init__(self, **options) + lang = get_choice_opt(options, 'lang', + ['isabelle', 'latex'], 'isabelle') + self.symbols = self.lang_map[lang] + + def filter(self, lexer, stream): + for ttype, value in stream: + if value in self.symbols: + yield ttype, self.symbols[value] + else: + yield ttype, value + + +class KeywordCaseFilter(Filter): + """Convert keywords to lowercase or uppercase or capitalize them, which + means first letter uppercase, rest lowercase. + + This can be useful e.g. if you highlight Pascal code and want to adapt the + code to your styleguide. + + Options accepted: + + `case` : string + The casing to convert keywords to. Must be one of ``'lower'``, + ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + case = get_choice_opt(options, 'case', + ['lower', 'upper', 'capitalize'], 'lower') + self.convert = getattr(str, case) + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Keyword: + yield ttype, self.convert(value) + else: + yield ttype, value + + +class NameHighlightFilter(Filter): + """Highlight a normal Name (and Name.*) token with a different token type. + + Example:: + + filter = NameHighlightFilter( + names=['foo', 'bar', 'baz'], + tokentype=Name.Function, + ) + + This would highlight the names "foo", "bar" and "baz" + as functions. `Name.Function` is the default token type. + + Options accepted: + + `names` : list of strings + A list of names that should be given the different token type. + There is no default. + `tokentype` : TokenType or string + A token type or a string containing a token type name that is + used for highlighting the strings in `names`. The default is + `Name.Function`. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.names = set(get_list_opt(options, 'names', [])) + tokentype = options.get('tokentype') + if tokentype: + self.tokentype = string_to_tokentype(tokentype) + else: + self.tokentype = Name.Function + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Name and value in self.names: + yield self.tokentype, value + else: + yield ttype, value + + +class ErrorToken(Exception): + pass + + +class RaiseOnErrorTokenFilter(Filter): + """Raise an exception when the lexer generates an error token. + + Options accepted: + + `excclass` : Exception class + The exception class to raise. + The default is `pygments.filters.ErrorToken`. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.exception = options.get('excclass', ErrorToken) + try: + # issubclass() will raise TypeError if first argument is not a class + if not issubclass(self.exception, Exception): + raise TypeError + except TypeError: + raise OptionError('excclass option is not an exception class') + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype is Error: + raise self.exception(value) + yield ttype, value + + +class VisibleWhitespaceFilter(Filter): + """Convert tabs, newlines and/or spaces to visible characters. + + Options accepted: + + `spaces` : string or bool + If this is a one-character string, spaces will be replaces by this string. + If it is another true value, spaces will be replaced by ``·`` (unicode + MIDDLE DOT). If it is a false value, spaces will not be replaced. The + default is ``False``. + `tabs` : string or bool + The same as for `spaces`, but the default replacement character is ``»`` + (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value + is ``False``. Note: this will not work if the `tabsize` option for the + lexer is nonzero, as tabs will already have been expanded then. + `tabsize` : int + If tabs are to be replaced by this filter (see the `tabs` option), this + is the total number of characters that a tab should be expanded to. + The default is ``8``. + `newlines` : string or bool + The same as for `spaces`, but the default replacement character is ``¶`` + (unicode PILCROW SIGN). The default value is ``False``. + `wstokentype` : bool + If true, give whitespace the special `Whitespace` token type. This allows + styling the visible whitespace differently (e.g. greyed out), but it can + disrupt background colors. The default is ``True``. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + for name, default in [('spaces', '·'), + ('tabs', '»'), + ('newlines', '¶')]: + opt = options.get(name, False) + if isinstance(opt, str) and len(opt) == 1: + setattr(self, name, opt) + else: + setattr(self, name, (opt and default or '')) + tabsize = get_int_opt(options, 'tabsize', 8) + if self.tabs: + self.tabs += ' ' * (tabsize - 1) + if self.newlines: + self.newlines += '\n' + self.wstt = get_bool_opt(options, 'wstokentype', True) + + def filter(self, lexer, stream): + if self.wstt: + spaces = self.spaces or ' ' + tabs = self.tabs or '\t' + newlines = self.newlines or '\n' + regex = re.compile(r'\s') + + def replacefunc(wschar): + if wschar == ' ': + return spaces + elif wschar == '\t': + return tabs + elif wschar == '\n': + return newlines + return wschar + + for ttype, value in stream: + yield from _replace_special(ttype, value, regex, Whitespace, + replacefunc) + else: + spaces, tabs, newlines = self.spaces, self.tabs, self.newlines + # simpler processing + for ttype, value in stream: + if spaces: + value = value.replace(' ', spaces) + if tabs: + value = value.replace('\t', tabs) + if newlines: + value = value.replace('\n', newlines) + yield ttype, value + + +class GobbleFilter(Filter): + """Gobbles source code lines (eats initial characters). + + This filter drops the first ``n`` characters off every line of code. This + may be useful when the source code fed to the lexer is indented by a fixed + amount of space that isn't desired in the output. + + Options accepted: + + `n` : int + The number of characters to gobble. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + self.n = get_int_opt(options, 'n', 0) + + def gobble(self, value, left): + if left < len(value): + return value[left:], 0 + else: + return '', left - len(value) + + def filter(self, lexer, stream): + n = self.n + left = n # How many characters left to gobble. + for ttype, value in stream: + # Remove ``left`` tokens from first line, ``n`` from all others. + parts = value.split('\n') + (parts[0], left) = self.gobble(parts[0], left) + for i in range(1, len(parts)): + (parts[i], left) = self.gobble(parts[i], n) + value = '\n'.join(parts) + + if value != '': + yield ttype, value + + +class TokenMergeFilter(Filter): + """Merges consecutive tokens with the same token type in the output + stream of a lexer. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + current_type = None + current_value = None + for ttype, value in stream: + if ttype is current_type: + current_value += value + else: + if current_type is not None: + yield current_type, current_value + current_type = ttype + current_value = value + if current_type is not None: + yield current_type, current_value + + +FILTERS = { + 'codetagify': CodeTagFilter, + 'keywordcase': KeywordCaseFilter, + 'highlight': NameHighlightFilter, + 'raiseonerror': RaiseOnErrorTokenFilter, + 'whitespace': VisibleWhitespaceFilter, + 'gobble': GobbleFilter, + 'tokenmerge': TokenMergeFilter, + 'symbols': SymbolFilter, +} diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07b7a6f7a6b5d544301fc7cb5ecf0fda3a3b1b5f GIT binary patch literal 37905 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�o_!xIiela$YL9jJZ;g3NCSj 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, + the `arg` is then given by the ``-a`` option. + """ + return '' + + def format(self, tokensource, outfile): + """ + This method must format the tokens from the `tokensource` iterable and + write the formatted version to the file object `outfile`. + + Formatter options can control how exactly the tokens are converted. + """ + if self.encoding: + # wrap the outfile in a StreamWriter + outfile = codecs.lookup(self.encoding)[3](outfile) + return self.format_unencoded(tokensource, outfile) + + # Allow writing Formatter[str] or Formatter[bytes]. That's equivalent to + # Formatter. This helps when using third-party type stubs from typeshed. + def __class_getitem__(cls, name): + return cls diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 0000000..f19e993 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,157 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.formatters._mapping import FORMATTERS +from pip._vendor.pygments.plugin import find_plugin_formatters +from pip._vendor.pygments.util import ClassNotFound + +__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', + 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) + +_formatter_cache = {} # classes by name +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_formatters(module_name): + """Load a formatter (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for formatter_name in mod.__all__: + cls = getattr(mod, formatter_name) + _formatter_cache[cls.name] = cls + + +def get_all_formatters(): + """Return a generator for all formatter classes.""" + # NB: this returns formatter classes, not info like get_all_lexers(). + for info in FORMATTERS.values(): + if info[1] not in _formatter_cache: + _load_formatters(info[0]) + yield _formatter_cache[info[1]] + for _, formatter in find_plugin_formatters(): + yield formatter + + +def find_formatter_class(alias): + """Lookup a formatter by alias. + + Returns None if not found. + """ + for module_name, name, aliases, _, _ in FORMATTERS.values(): + if alias in aliases: + if name not in _formatter_cache: + _load_formatters(module_name) + return _formatter_cache[name] + for _, cls in find_plugin_formatters(): + if alias in cls.aliases: + return cls + + +def get_formatter_by_name(_alias, **options): + """ + Return an instance of a :class:`.Formatter` subclass that has `alias` in its + aliases list. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that + alias is found. + """ + cls = find_formatter_class(_alias) + if cls is None: + raise ClassNotFound(f"no formatter found for name {_alias!r}") + return cls(**options) + + +def load_formatter_from_file(filename, formattername="CustomFormatter", **options): + """ + Return a `Formatter` subclass instance loaded from the provided file, relative + to the current directory. + + The file is expected to contain a Formatter class named ``formattername`` + (by default, CustomFormatter). Users should be very careful with the input, because + this method is equivalent to running ``eval()`` on the input file. The formatter is + given the `options` at its instantiation. + + :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading + the formatter. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `formattername` from that namespace + if formattername not in custom_namespace: + raise ClassNotFound(f'no valid {formattername} class found in {filename}') + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound(f'cannot read {filename}: {err}') + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound(f'error when loading custom formatter: {err}') + + +def get_formatter_for_filename(fn, **options): + """ + Return a :class:`.Formatter` subclass instance that has a filename pattern + matching `fn`. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename + is found. + """ + fn = basename(fn) + for modname, name, _, filenames, _ in FORMATTERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _formatter_cache: + _load_formatters(modname) + return _formatter_cache[name](**options) + for _name, cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound(f"no formatter found for file name {fn!r}") + + +class _automodule(types.ModuleType): + """Automatically import formatters.""" + + def __getattr__(self, name): + info = FORMATTERS.get(name) + if info: + _load_formatters(info[0]) + cls = _formatter_cache[info[1]] + setattr(self, name, cls) + return cls + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10e292791293c6a3e4af13ec43e04af32986ef03 GIT binary patch literal 6896 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 ZweB#UwJX_|vg7%~`OsGUlLSG@{{YrZw&DN) literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17629abec12f0cc20e48349b8fdf3d776fa1c6f0 GIT binary patch literal 4209 zcmd5<&2JmW6<=~mS=N^=Tef7`j>mEAhJi!YY3oxEG*WF@hNK7*^MPE<;qL5mqUG*( zb|{HF6zJd30zDPzrHB3ABBfk9p`%@#(!=(`Qa3kzc|wI9l!FYieL3zj5WWGan8Slao)d-alv22 zxa2QmT=B19yy~xFyyjoWxaQx$c++3UxZ&Tzxar@@mv{HcST0<1y>WuovN9(~82*KzV}n*t5nav#!87f~83YMIn=#>7G!cnXhj3)7?G~ zr(J!$K9-wyRrbUD5{6gZehNojeBiCreV#TdqxuI;ER4>!mEc-1&g>48q?-jQ>6gYC zFUfhCk((JA!VZVJm&A+=A@lZRS8+82Y%CP9P*!6q&vBO3MMBnDt1n;Ok-<;>Q1b{O zYjY@rMkRO6hit`Uq$jrS>^^^MhOX?WBnWI=*uc6q3+<4&^1AsnT!k!g^13#QH5%0% zRz}Zf#Fr6aBJ+4k=qAkT@fddi$fN>VQKA@+eFR>tS*C{(qG0)j?nl!$ZOpQ%2d2FC zqP@QdENetHs-w9NnlvL&@g044(ITEP;%C2RozBNu%HvNu9j1AR@ZTCTUj%#*>BlAp zJlKQuVu%Y7dr?9ufS~6jnJQ5VK1S?jA_~}<;%Pd?;>**Lg}vV$z%yZ7W}P@8)(%Tj zEt9xm@{V*`fnQ{7`}ml75zjJ{QC$R<(3E@>V;wKc%-&eOnJ?`gZBIirJ6V*MyI`b5 zk;+r+xGj5Sk1hgaN&*5G`O55Qc9DUIhfRtHcXxj$chfku`G?6=OdlTX zytSBKeVK-{%{2w%n=~XG@X2f6q@pwzwCN{ zzJddFOS@RKfMYWH{Ni;Y-VOV7m5YV&ZJFx?JobjCs@pLc*fGi2K@uV#QQBF`y%Utn z3<-IFqCaKe>zM{72vIe<+!p7WC2=%_ku?~l^I8n?(#Uf?dh*#or^pG4Xxe9k*cJuf zw21^;)Mx_R*HD3*`Pw0hMzYV<$snDwV{~s;VL)DoN#F2}mW&{?l7yPs%onG4X4Wns zH!WELxT{T4!f>=d!IX%7v@M^?8oJ-{7dz-+NBpc!{dLMr^@ytD0(Q#QOYx`pSw3ew zv4sW;qu*Mol8wO%&ajS?P;)ZWBTiL=pusgIin^0g0ScY2kE>cb(ih74%zB`7kh@3i z=hTESFVEM(=$~(#4=(h5!ktPLsv*v{j}XQO8Zc|=@hBQHTpKPG`?zaHQhwqM%nQXf ze_QHhY~{%dD*Gm8sPjS$P7H#e$qt1Igr|*{+etb!jE6i!BbPCt-j|+AvLw*&A2ryQ ziSp??ISmjTpN7^C+tFr1ke!CPiyI>dFt-q3GWz}v2<+9e5OupJJ$NY5q}Wf<05o{b zz;|(;3MI*N9yQrB?)6wCW5JTZL=klq(?uxssYi%N5VJ)I!jbgwAnJ6^u}2VfIz!C7 z1dhrWH2{qPy@|`1ZXcaPj~iL3sC?K_cF7oRMfw9CO~M2X7E!X+7OD?z(MP{|ItA71 znfU}1$GrLClwiZn7pM0YU{{tz0y=XSgH5b&FXCxB%%=y(yYPZ~|D?q{Hur6#$aY$& z_|P(qPhk)!55WcO$rEysb;dSLJR!I)C^yg8Qj12ya?N6KM%Q8=u)2qp)IRqJxYCTX zM4b@aN+BMjA+r08qwo~JGph)VP0r`XB1roA$?B!j4U5rVe>O&@eoi3S{@-}LId-9~ z2Ev>%LAp^_PpSD&fSIsNN5_+={d^o9GNy z`l6LZG7zm$>QXlCe${;PQ7e;Ld^qm#tyHG1SEp!ai2{@TVc81C zl|E~|!cU!)I&nJ8=RfWz{vZ;csFygig8%Fx#=@;sD#iTumFjbu%H zsLik4q7JH0+6Pm6Eyb z7FUSAS}Oa(Emn!XR_^O+ah>S3QrU5}xIy$yr+ypC@19qSb)q*)`ChfSMf4^P!~TtS zt+-9}os!nI;x5tel=3g?#XX`~DgV1#ai8dSo%(&qKlr>}JRthLa{p!ZzYjtGaY4NR GTt5Q1x~?Sv literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0069c20feb70e9240069c316d327aa8080191a81 GIT binary patch literal 4216 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..602a37725463992e57148f9d28edce477f5b2d6c GIT binary patch literal 7287 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6662ec8a94b4a5f666d69a778f1cdac10c9fc8d9 GIT binary patch literal 41020 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 F{{hS#*JuC$ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64d918c4a63fb5bbc7f0264c2153f7e67fdad2b9 GIT binary patch literal 28542 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 z z`BDgmUjQ9}(BFabp-2<&fd#MGvuYDQP1uW&%j`+y7k$HuTxQSzS+gR;XCXRRzwKx( z=H4>3)^gt~wzgIozgNkVUu!V*mgE literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..860e87455853871a91131d5024842f6f59f8d903 GIT binary patch literal 6049 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 Q&;_x-bm30|blgAx3L<;R4*&oF literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51152a4082e8bfcfdf99f9590cbcea60ab01b824 GIT binary patch literal 20119 zcmdsfYj9l0mEOJc!eB4}25%70ix+_*K~MlGiUc1LMSyQoqDXm{5F}tQ_W~SnFazCt zK@z}>&2=dWsA5*2?U-PRUJheb1V!Emu6WCIr7B@+t2XP+9}GtphIhFo?yD;PM~d=h z?H@_L)Aunm;Lx;F`IRf7r*HS^)2F*npFZdGx%}_N#U2h%`S&(XOdjL7zo!@TaT=K? z-$&*;Cvroa$cwfxKV=)T@sziR?Ng2+2g^Ic&MDWBYpP(VfW14z?y16|!YR*?hrPSP zMN{4(?^N+nG2RO%_@NTf{T??|Di#j;M9)x}ScJE78+V8kz3%}+a(rsnDHy6?rNt;M zkz7`3eR*DKOP7D3T=XfAh@Y*WNhY!#eB_hk{Z>k@|&KPY>wz$B!HsJb8MMQ6NfcAQV=5 zJinyz`+3cMT9reQi6gHeUuaS5w`tDf(j`gOipA(i2>4_*6pbiUekOWeifARL&+I=r zu>XyLkuzssA3Ti;?}Vg|j76j2k?6Fl713KLqOzBg<1}9u_MlCle3rV9(qcUM&nUgl z#kfg6tJcU8b9`#F%3E(29ly2SDY|}Zy-nm}{D)wTAJ~5@oWp=~KL^fbz!g3R&SSt8 zJqONfz!g6SuEc;VeGZ(@fGc|rT)6>P@f^5H1Fq^haMcD}&2!*t4Y&=@fvYp%>YoGG zV8As#2d>G0Ykm%#V8FFx;7)V?){`1Ptnr-2&ucud@o|l}%{hn0l=(P*qGRkQh#!rA z2L-_Z{)Uw zji-t_zVy{xD_F8GeIw;-e>(3<^d{a;yteYvs<1od+oJ>g?uGUQpV*RUUMW~@+?n$2 zGVuTZUihf3%-R2hgzMa2dWOYlaE6Y!U^t*C^BrAyXIZ}z_YBV{lCie)=E0R)8jOac za!%1(9bHl+7!`4@_?5TkLlK;ED2RJHy1-4v$F_p~$>R zOdKVO6r^Kk6KGOHDz!psM;A~Nf?+UO7I@%qaEy3{rvm4t0AT5$#?YkkVKkWbE3e3s zBB}Gks4+`I>fT{l3I{F;*`;ISMrlU}J5jUiX2SVesKIBq7&Gf~`WQF+z`SLVs7BAX z_0A6ml}KPp5)8Ug_)1$Z4OTCIs)^FpyLo;%G=51R48cxKtFyyWSdq*zWN^*5^~Q&# zOVil#fpN@{IT`3i86FSiVi%)CkI{H6Xl2z*b|yT(u9FaE*=#ayWyi;2zR4mUv33ty;0GYTLIB;RCILY z*5D{GYT9!va55MbTXHLKP#6`RxfM7!jEdIW3LGOw#W%5`JD6696J$D|hQ>nSkUA?| z45{Y?DIkYKk}O<+x=fm5&h!P;`B!qWhR5dL$}N${=HEt%zMZ2`ePvHDTQek`k?D

g=?nImc<=Yt8`uC^R^j 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 GdjCHI8uKRr literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e383b53686f11e56f822a363c2ca9fbd93876088 GIT binary patch literal 6871 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 D{O~YB literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3de695b8247d832db165ba0f8172ac42c0c048a2 GIT binary patch literal 2952 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5baaa31d46b6304c01c58fe58dc04bf9137b74a5 GIT binary patch literal 5813 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 T`u8dJ49kkQeP1y+nz#91!a<9l literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9874c08531555749c95f5741f4a625c418c5c24d GIT binary patch literal 15112 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 tags. By default, the content is enclosed in a ``

`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). The ``
``'s CSS class can be set by the `cssclass` option."), + 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), + 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), + 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), + 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), + 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), + 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), + 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), + 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), +} diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 0000000..5a05bd9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py @@ -0,0 +1,108 @@ +""" + pygments.formatters.bbcode + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + BBcode formatter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt + +__all__ = ['BBCodeFormatter'] + + +class BBCodeFormatter(Formatter): + """ + Format tokens with BBcodes. These formatting codes are used by many + bulletin boards, so you can highlight your sourcecode with pygments before + posting it there. + + This formatter has no support for background colors and borders, as there + are no common BBcode tags for that. + + Some board systems (e.g. phpBB) don't support colors in their [code] tag, + so you can't use the highlighting together with that tag. + Text in a [code] tag usually is shown with a monospace font (which this + formatter can do with the ``monofont`` option) and no spaces (which you + need for indentation) are removed. + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `codetag` + If set to true, put the output into ``[code]`` tags (default: + ``false``) + + `monofont` + If set to true, add a tag to show the code with a monospace font + (default: ``false``). + """ + name = 'BBCode' + aliases = ['bbcode', 'bb'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + self._code = get_bool_opt(options, 'codetag', False) + self._mono = get_bool_opt(options, 'monofont', False) + + self.styles = {} + self._make_styles() + + def _make_styles(self): + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '[color=#{}]'.format(ndef['color']) + end = '[/color]' + end + if ndef['bold']: + start += '[b]' + end = '[/b]' + end + if ndef['italic']: + start += '[i]' + end = '[/i]' + end + if ndef['underline']: + start += '[u]' + end = '[/u]' + end + # there are no common BBcodes for background-color and border + + self.styles[ttype] = start, end + + def format_unencoded(self, tokensource, outfile): + if self._code: + outfile.write('[code]') + if self._mono: + outfile.write('[font=monospace]') + + lastval = '' + lasttype = None + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + if ttype == lasttype: + lastval += value + else: + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + lastval = value + lasttype = ttype + + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + + if self._mono: + outfile.write('[/font]') + if self._code: + outfile.write('[/code]') + if self._code or self._mono: + outfile.write('\n') diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 0000000..5c8a958 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -0,0 +1,170 @@ +""" + pygments.formatters.groff + ~~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for groff output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import math +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt, get_int_opt + +__all__ = ['GroffFormatter'] + + +class GroffFormatter(Formatter): + """ + Format tokens with groff escapes to change their color and font style. + + .. versionadded:: 2.11 + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `monospaced` + If set to true, monospace font will be used (default: ``true``). + + `linenos` + If set to true, print the line numbers (default: ``false``). + + `wrap` + Wrap lines to the specified number of characters. Disabled if set to 0 + (default: ``0``). + """ + + name = 'groff' + aliases = ['groff','troff','roff'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + + self.monospaced = get_bool_opt(options, 'monospaced', True) + self.linenos = get_bool_opt(options, 'linenos', False) + self._lineno = 0 + self.wrap = get_int_opt(options, 'wrap', 0) + self._linelen = 0 + + self.styles = {} + self._make_styles() + + + def _make_styles(self): + regular = '\\f[CR]' if self.monospaced else '\\f[R]' + bold = '\\f[CB]' if self.monospaced else '\\f[B]' + italic = '\\f[CI]' if self.monospaced else '\\f[I]' + + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '\\m[{}]'.format(ndef['color']) + end = '\\m[]' + end + if ndef['bold']: + start += bold + end = regular + end + if ndef['italic']: + start += italic + end = regular + end + if ndef['bgcolor']: + start += '\\M[{}]'.format(ndef['bgcolor']) + end = '\\M[]' + end + + self.styles[ttype] = start, end + + + def _define_colors(self, outfile): + colors = set() + for _, ndef in self.style: + if ndef['color'] is not None: + colors.add(ndef['color']) + + for color in sorted(colors): + outfile.write('.defcolor ' + color + ' rgb #' + color + '\n') + + + def _write_lineno(self, outfile): + self._lineno += 1 + outfile.write("%s% 4d " % (self._lineno != 1 and '\n' or '', self._lineno)) + + + def _wrap_line(self, line): + length = len(line.rstrip('\n')) + space = ' ' if self.linenos else '' + newline = '' + + if length > self.wrap: + for i in range(0, math.floor(length / self.wrap)): + chunk = line[i*self.wrap:i*self.wrap+self.wrap] + newline += (chunk + '\n' + space) + remainder = length % self.wrap + if remainder > 0: + newline += line[-remainder-1:] + self._linelen = remainder + elif self._linelen + length > self.wrap: + newline = ('\n' + space) + line + self._linelen = length + else: + newline = line + self._linelen += length + + return newline + + + def _escape_chars(self, text): + text = text.replace('\\', '\\[u005C]'). \ + replace('.', '\\[char46]'). \ + replace('\'', '\\[u0027]'). \ + replace('`', '\\[u0060]'). \ + replace('~', '\\[u007E]') + copy = text + + for char in copy: + if len(char) != len(char.encode()): + uni = char.encode('unicode_escape') \ + .decode()[1:] \ + .replace('x', 'u00') \ + .upper() + text = text.replace(char, '\\[u' + uni[1:] + ']') + + return text + + + def format_unencoded(self, tokensource, outfile): + self._define_colors(outfile) + + outfile.write('.nf\n\\f[CR]\n') + + if self.linenos: + self._write_lineno(outfile) + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + start, end = self.styles[ttype] + + for line in value.splitlines(True): + if self.wrap > 0: + line = self._wrap_line(line) + + if start and end: + text = self._escape_chars(line.rstrip('\n')) + if text != '': + outfile.write(''.join((start, text, end))) + else: + outfile.write(self._escape_chars(line.rstrip('\n'))) + + if line.endswith('\n'): + if self.linenos: + self._write_lineno(outfile) + self._linelen = 0 + else: + outfile.write('\n') + self._linelen = 0 + + outfile.write('\n.fi') diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 0000000..7aa938f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py @@ -0,0 +1,987 @@ +""" + pygments.formatters.html + ~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for HTML output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import functools +import os +import sys +import os.path +from io import StringIO + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.token import Token, Text, STANDARD_TYPES +from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt + +try: + import ctags +except ImportError: + ctags = None + +__all__ = ['HtmlFormatter'] + + +_escape_html_table = { + ord('&'): '&', + ord('<'): '<', + ord('>'): '>', + ord('"'): '"', + ord("'"): ''', +} + + +def escape_html(text, table=_escape_html_table): + """Escape &, <, > as well as single and double quotes for HTML.""" + return text.translate(table) + + +def webify(color): + if color.startswith('calc') or color.startswith('var'): + return color + else: + return '#' + color + + +def _get_ttype_class(ttype): + fname = STANDARD_TYPES.get(ttype) + if fname: + return fname + aname = '' + while fname is None: + aname = '-' + ttype[-1] + aname + ttype = ttype.parent + fname = STANDARD_TYPES.get(ttype) + return fname + aname + + +CSSFILE_TEMPLATE = '''\ +/* +generated by Pygments +Copyright 2006-2024 by the Pygments team. +Licensed under the BSD license, see LICENSE for details. +*/ +%(styledefs)s +''' + +DOC_HEADER = '''\ + + + + + %(title)s + + + + +

%(title)s

+ +''' + +DOC_HEADER_EXTERNALCSS = '''\ + + + + + %(title)s + + + + +

%(title)s

+ +''' + +DOC_FOOTER = '''\ + + +''' + + +class HtmlFormatter(Formatter): + r""" + Format tokens as HTML 4 ```` tags. By default, the content is enclosed + in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). + The ``
``'s CSS class can be set by the `cssclass` option. + + If the `linenos` option is set to ``"table"``, the ``
`` is
+    additionally wrapped inside a ```` which has one row and two
+    cells: one containing the line numbers and one containing the code.
+    Example:
+
+    .. sourcecode:: html
+
+        
+
+ + +
+
1
+            2
+
+
def foo(bar):
+              pass
+            
+
+ + (whitespace added to improve clarity). + + A list of lines can be specified using the `hl_lines` option to make these + lines highlighted (as of Pygments 0.11). + + With the `full` option, a complete HTML 4 document is output, including + the style definitions inside a `` + + +
{code}
+ + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py b/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 0000000..cbd6da9 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py @@ -0,0 +1,10 @@ +from typing import Any + + +def load_ipython_extension(ip: Any) -> None: # pragma: no cover + # prevent circular import + from pip._vendor.rich.pretty import install + from pip._vendor.rich.traceback import install as tr_install + + install() + tr_install() diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py b/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 0000000..b17ee65 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from typing import IO, Callable + + +def get_fileno(file_like: IO[str]) -> int | None: + """Get fileno() from a file, accounting for poorly implemented file-like objects. + + Args: + file_like (IO): A file-like object. + + Returns: + int | None: The result of fileno if available, or None if operation failed. + """ + fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) + if fileno is not None: + try: + return fileno() + except Exception: + # `fileno` is documented as potentially raising a OSError + # Alas, from the issues, there are so many poorly implemented file-like objects, + # that `fileno()` can raise just about anything. + return None + return None diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py b/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 0000000..30446ce --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py @@ -0,0 +1,270 @@ +from __future__ import absolute_import + +import inspect +from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature +from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union + +from .console import Group, RenderableType +from .control import escape_control_codes +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + + +def _first_paragraph(doc: str) -> str: + """Get the first paragraph from a docstring.""" + paragraph, _, _ = doc.partition("\n\n") + return paragraph + + +class Inspect(JupyterMixin): + """A renderable to inspect any Python Object. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value of object. Defaults to True. + """ + + def __init__( + self, + obj: Any, + *, + title: Optional[TextType] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = True, + value: bool = True, + ) -> None: + self.highlighter = ReprHighlighter() + self.obj = obj + self.title = title or self._make_title(obj) + if all: + methods = private = dunder = True + self.help = help + self.methods = methods + self.docs = docs or help + self.private = private or dunder + self.dunder = dunder + self.sort = sort + self.value = value + + def _make_title(self, obj: Any) -> Text: + """Make a default title.""" + title_str = ( + str(obj) + if (isclass(obj) or callable(obj) or ismodule(obj)) + else str(type(obj)) + ) + title_text = self.highlighter(title_str) + return title_text + + def __rich__(self) -> Panel: + return Panel.fit( + Group(*self._render()), + title=self.title, + border_style="scope.border", + padding=(0, 1), + ) + + def _get_signature(self, name: str, obj: Any) -> Optional[Text]: + """Get a signature for a callable.""" + try: + _signature = str(signature(obj)) + ":" + except ValueError: + _signature = "(...)" + except TypeError: + return None + + source_filename: Optional[str] = None + try: + source_filename = getfile(obj) + except (OSError, TypeError): + # OSError is raised if obj has no source file, e.g. when defined in REPL. + pass + + callable_name = Text(name, style="inspect.callable") + if source_filename: + callable_name.stylize(f"link file://{source_filename}") + signature_text = self.highlighter(_signature) + + qualname = name or getattr(obj, "__qualname__", name) + + # If obj is a module, there may be classes (which are callable) to display + if inspect.isclass(obj): + prefix = "class" + elif inspect.iscoroutinefunction(obj): + prefix = "async def" + else: + prefix = "def" + + qual_signature = Text.assemble( + (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), + (qualname, "inspect.callable"), + signature_text, + ) + + return qual_signature + + def _render(self) -> Iterable[RenderableType]: + """Render object.""" + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + key, (_error, value) = item + return (callable(value), key.strip("_").lower()) + + def safe_getattr(attr_name: str) -> Tuple[Any, Any]: + """Get attribute or any exception.""" + try: + return (None, getattr(obj, attr_name)) + except Exception as error: + return (error, None) + + obj = self.obj + keys = dir(obj) + total_items = len(keys) + if not self.dunder: + keys = [key for key in keys if not key.startswith("__")] + if not self.private: + keys = [key for key in keys if not key.startswith("_")] + not_shown_count = total_items - len(keys) + items = [(key, safe_getattr(key)) for key in keys] + if self.sort: + items.sort(key=sort_items) + + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + add_row = items_table.add_row + highlighter = self.highlighter + + if callable(obj): + signature = self._get_signature("", obj) + if signature is not None: + yield signature + yield "" + + if self.docs: + _doc = self._get_formatted_doc(obj) + if _doc is not None: + doc_text = Text(_doc, style="inspect.help") + doc_text = highlighter(doc_text) + yield doc_text + yield "" + + if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): + yield Panel( + Pretty(obj, indent_guides=True, max_length=10, max_string=60), + border_style="inspect.value.border", + ) + yield "" + + for key, (error, value) in items: + key_text = Text.assemble( + ( + key, + "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", + ), + (" =", "inspect.equals"), + ) + if error is not None: + warning = key_text.copy() + warning.stylize("inspect.error") + add_row(warning, highlighter(repr(error))) + continue + + if callable(value): + if not self.methods: + continue + + _signature_text = self._get_signature(key, value) + if _signature_text is None: + add_row(key_text, Pretty(value, highlighter=highlighter)) + else: + if self.docs: + docs = self._get_formatted_doc(value) + if docs is not None: + _signature_text.append("\n" if "\n" in docs else " ") + doc = highlighter(docs) + doc.stylize("inspect.doc") + _signature_text.append(doc) + + add_row(key_text, _signature_text) + else: + add_row(key_text, Pretty(value, highlighter=highlighter)) + if items_table.row_count: + yield items_table + elif not_shown_count: + yield Text.from_markup( + f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " + f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." + ) + + def _get_formatted_doc(self, object_: Any) -> Optional[str]: + """ + Extract the docstring of an object, process it and returns it. + The processing consists in cleaning up the doctring's indentation, + taking only its 1st paragraph if `self.help` is not True, + and escape its control codes. + + Args: + object_ (Any): the object to get the docstring from. + + Returns: + Optional[str]: the processed docstring, or None if no docstring was found. + """ + docs = getdoc(object_) + if docs is None: + return None + docs = cleandoc(docs).strip() + if not self.help: + docs = _first_paragraph(docs) + return escape_control_codes(docs) + + +def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: + """Returns the MRO of an object's class, or of the object itself if it's a class.""" + if not hasattr(obj, "__mro__"): + # N.B. we cannot use `if type(obj) is type` here because it doesn't work with + # some types of classes, such as the ones that use abc.ABCMeta. + obj = type(obj) + return getattr(obj, "__mro__", ()) + + +def get_object_types_mro_as_strings(obj: object) -> Collection[str]: + """ + Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. + + Examples: + `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` + """ + return [ + f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' + for type_ in get_object_types_mro(obj) + ] + + +def is_object_one_of_types( + obj: object, fully_qualified_types_names: Collection[str] +) -> bool: + """ + Returns `True` if the given object's class (or the object itself, if it's a class) has one of the + fully qualified names in its MRO. + """ + for type_name in get_object_types_mro_as_strings(obj): + if type_name in fully_qualified_types_names: + return True + return False diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py b/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 0000000..fc16c84 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py @@ -0,0 +1,94 @@ +from datetime import datetime +from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable + + +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleRenderable, RenderableType + from .table import Table + +FormatTimeCallable = Callable[[datetime], Text] + + +class LogRender: + def __init__( + self, + show_time: bool = True, + show_level: bool = False, + show_path: bool = True, + time_format: Union[str, FormatTimeCallable] = "[%x %X]", + omit_repeated_times: bool = True, + level_width: Optional[int] = 8, + ) -> None: + self.show_time = show_time + self.show_level = show_level + self.show_path = show_path + self.time_format = time_format + self.omit_repeated_times = omit_repeated_times + self.level_width = level_width + self._last_time: Optional[Text] = None + + def __call__( + self, + console: "Console", + renderables: Iterable["ConsoleRenderable"], + log_time: Optional[datetime] = None, + time_format: Optional[Union[str, FormatTimeCallable]] = None, + level: TextType = "", + path: Optional[str] = None, + line_no: Optional[int] = None, + link_path: Optional[str] = None, + ) -> "Table": + from .containers import Renderables + from .table import Table + + output = Table.grid(padding=(0, 1)) + output.expand = True + if self.show_time: + output.add_column(style="log.time") + if self.show_level: + output.add_column(style="log.level", width=self.level_width) + output.add_column(ratio=1, style="log.message", overflow="fold") + if self.show_path and path: + output.add_column(style="log.path") + row: List["RenderableType"] = [] + if self.show_time: + log_time = log_time or console.get_datetime() + time_format = time_format or self.time_format + if callable(time_format): + log_time_display = time_format(log_time) + else: + log_time_display = Text(log_time.strftime(time_format)) + if log_time_display == self._last_time and self.omit_repeated_times: + row.append(Text(" " * len(log_time_display))) + else: + row.append(log_time_display) + self._last_time = log_time_display + if self.show_level: + row.append(level) + + row.append(Renderables(renderables)) + if self.show_path and path: + path_text = Text() + path_text.append( + path, style=f"link file://{link_path}" if link_path else "" + ) + if line_no: + path_text.append(":") + path_text.append( + f"{line_no}", + style=f"link file://{link_path}#{line_no}" if link_path else "", + ) + row.append(path_text) + + output.add_row(*row) + return output + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + c = Console() + c.print("[on blue]Hello", justify="right") + c.log("[on blue]hello", justify="right") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py b/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 0000000..01c6caf --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py @@ -0,0 +1,43 @@ +from typing import Iterable, Tuple, TypeVar + +T = TypeVar("T") + + +def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for first value.""" + iter_values = iter(values) + try: + value = next(iter_values) + except StopIteration: + return + yield True, value + for value in iter_values: + yield False, value + + +def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value + + +def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: + """Iterate and generate a tuple with a flag for first and last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + first = True + for value in iter_values: + yield first, False, previous_value + first = False + previous_value = value + yield first, True, previous_value diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py b/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 0000000..b659673 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py @@ -0,0 +1,69 @@ +from types import TracebackType +from typing import IO, Iterable, Iterator, List, Optional, Type + + +class NullFile(IO[str]): + def close(self) -> None: + pass + + def isatty(self) -> bool: + return False + + def read(self, __n: int = 1) -> str: + return "" + + def readable(self) -> bool: + return False + + def readline(self, __limit: int = 1) -> str: + return "" + + def readlines(self, __hint: int = 1) -> List[str]: + return [] + + def seek(self, __offset: int, __whence: int = 1) -> int: + return 0 + + def seekable(self) -> bool: + return False + + def tell(self) -> int: + return 0 + + def truncate(self, __size: Optional[int] = 1) -> int: + return 0 + + def writable(self) -> bool: + return False + + def writelines(self, __lines: Iterable[str]) -> None: + pass + + def __next__(self) -> str: + return "" + + def __iter__(self) -> Iterator[str]: + return iter([""]) + + def __enter__(self) -> IO[str]: + pass + + def __exit__( + self, + __t: Optional[Type[BaseException]], + __value: Optional[BaseException], + __traceback: Optional[TracebackType], + ) -> None: + pass + + def write(self, text: str) -> int: + return 0 + + def flush(self) -> None: + pass + + def fileno(self) -> int: + return -1 + + +NULL_FILE = NullFile() diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py b/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 0000000..3c748d3 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py @@ -0,0 +1,309 @@ +from .palette import Palette + + +# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) +WINDOWS_PALETTE = Palette( + [ + (12, 12, 12), + (197, 15, 31), + (19, 161, 14), + (193, 156, 0), + (0, 55, 218), + (136, 23, 152), + (58, 150, 221), + (204, 204, 204), + (118, 118, 118), + (231, 72, 86), + (22, 198, 12), + (249, 241, 165), + (59, 120, 255), + (180, 0, 158), + (97, 214, 214), + (242, 242, 242), + ] +) + +# # The standard ansi colors (including bright variants) +STANDARD_PALETTE = Palette( + [ + (0, 0, 0), + (170, 0, 0), + (0, 170, 0), + (170, 85, 0), + (0, 0, 170), + (170, 0, 170), + (0, 170, 170), + (170, 170, 170), + (85, 85, 85), + (255, 85, 85), + (85, 255, 85), + (255, 255, 85), + (85, 85, 255), + (255, 85, 255), + (85, 255, 255), + (255, 255, 255), + ] +) + + +# The 256 color palette +EIGHT_BIT_PALETTE = Palette( + [ + (0, 0, 0), + (128, 0, 0), + (0, 128, 0), + (128, 128, 0), + (0, 0, 128), + (128, 0, 128), + (0, 128, 128), + (192, 192, 192), + (128, 128, 128), + (255, 0, 0), + (0, 255, 0), + (255, 255, 0), + (0, 0, 255), + (255, 0, 255), + (0, 255, 255), + (255, 255, 255), + (0, 0, 0), + (0, 0, 95), + (0, 0, 135), + (0, 0, 175), + (0, 0, 215), + (0, 0, 255), + (0, 95, 0), + (0, 95, 95), + (0, 95, 135), + (0, 95, 175), + (0, 95, 215), + (0, 95, 255), + (0, 135, 0), + (0, 135, 95), + (0, 135, 135), + (0, 135, 175), + (0, 135, 215), + (0, 135, 255), + (0, 175, 0), + (0, 175, 95), + (0, 175, 135), + (0, 175, 175), + (0, 175, 215), + (0, 175, 255), + (0, 215, 0), + (0, 215, 95), + (0, 215, 135), + (0, 215, 175), + (0, 215, 215), + (0, 215, 255), + (0, 255, 0), + (0, 255, 95), + (0, 255, 135), + (0, 255, 175), + (0, 255, 215), + (0, 255, 255), + (95, 0, 0), + (95, 0, 95), + (95, 0, 135), + (95, 0, 175), + (95, 0, 215), + (95, 0, 255), + (95, 95, 0), + (95, 95, 95), + (95, 95, 135), + (95, 95, 175), + (95, 95, 215), + (95, 95, 255), + (95, 135, 0), + (95, 135, 95), + (95, 135, 135), + (95, 135, 175), + (95, 135, 215), + (95, 135, 255), + (95, 175, 0), + (95, 175, 95), + (95, 175, 135), + (95, 175, 175), + (95, 175, 215), + (95, 175, 255), + (95, 215, 0), + (95, 215, 95), + (95, 215, 135), + (95, 215, 175), + (95, 215, 215), + (95, 215, 255), + (95, 255, 0), + (95, 255, 95), + (95, 255, 135), + (95, 255, 175), + (95, 255, 215), + (95, 255, 255), + (135, 0, 0), + (135, 0, 95), + (135, 0, 135), + (135, 0, 175), + (135, 0, 215), + (135, 0, 255), + (135, 95, 0), + (135, 95, 95), + (135, 95, 135), + (135, 95, 175), + (135, 95, 215), + (135, 95, 255), + (135, 135, 0), + (135, 135, 95), + (135, 135, 135), + (135, 135, 175), + (135, 135, 215), + (135, 135, 255), + (135, 175, 0), + (135, 175, 95), + (135, 175, 135), + (135, 175, 175), + (135, 175, 215), + (135, 175, 255), + (135, 215, 0), + (135, 215, 95), + (135, 215, 135), + (135, 215, 175), + (135, 215, 215), + (135, 215, 255), + (135, 255, 0), + (135, 255, 95), + (135, 255, 135), + (135, 255, 175), + (135, 255, 215), + (135, 255, 255), + (175, 0, 0), + (175, 0, 95), + (175, 0, 135), + (175, 0, 175), + (175, 0, 215), + (175, 0, 255), + (175, 95, 0), + (175, 95, 95), + (175, 95, 135), + (175, 95, 175), + (175, 95, 215), + (175, 95, 255), + (175, 135, 0), + (175, 135, 95), + (175, 135, 135), + (175, 135, 175), + (175, 135, 215), + (175, 135, 255), + (175, 175, 0), + (175, 175, 95), + (175, 175, 135), + (175, 175, 175), + (175, 175, 215), + (175, 175, 255), + (175, 215, 0), + (175, 215, 95), + (175, 215, 135), + (175, 215, 175), + (175, 215, 215), + (175, 215, 255), + (175, 255, 0), + (175, 255, 95), + (175, 255, 135), + (175, 255, 175), + (175, 255, 215), + (175, 255, 255), + (215, 0, 0), + (215, 0, 95), + (215, 0, 135), + (215, 0, 175), + (215, 0, 215), + (215, 0, 255), + (215, 95, 0), + (215, 95, 95), + (215, 95, 135), + (215, 95, 175), + (215, 95, 215), + (215, 95, 255), + (215, 135, 0), + (215, 135, 95), + (215, 135, 135), + (215, 135, 175), + (215, 135, 215), + (215, 135, 255), + (215, 175, 0), + (215, 175, 95), + (215, 175, 135), + (215, 175, 175), + (215, 175, 215), + (215, 175, 255), + (215, 215, 0), + (215, 215, 95), + (215, 215, 135), + (215, 215, 175), + (215, 215, 215), + (215, 215, 255), + (215, 255, 0), + (215, 255, 95), + (215, 255, 135), + (215, 255, 175), + (215, 255, 215), + (215, 255, 255), + (255, 0, 0), + (255, 0, 95), + (255, 0, 135), + (255, 0, 175), + (255, 0, 215), + (255, 0, 255), + (255, 95, 0), + (255, 95, 95), + (255, 95, 135), + (255, 95, 175), + (255, 95, 215), + (255, 95, 255), + (255, 135, 0), + (255, 135, 95), + (255, 135, 135), + (255, 135, 175), + (255, 135, 215), + (255, 135, 255), + (255, 175, 0), + (255, 175, 95), + (255, 175, 135), + (255, 175, 175), + (255, 175, 215), + (255, 175, 255), + (255, 215, 0), + (255, 215, 95), + (255, 215, 135), + (255, 215, 175), + (255, 215, 215), + (255, 215, 255), + (255, 255, 0), + (255, 255, 95), + (255, 255, 135), + (255, 255, 175), + (255, 255, 215), + (255, 255, 255), + (8, 8, 8), + (18, 18, 18), + (28, 28, 28), + (38, 38, 38), + (48, 48, 48), + (58, 58, 58), + (68, 68, 68), + (78, 78, 78), + (88, 88, 88), + (98, 98, 98), + (108, 108, 108), + (118, 118, 118), + (128, 128, 128), + (138, 138, 138), + (148, 148, 148), + (158, 158, 158), + (168, 168, 168), + (178, 178, 178), + (188, 188, 188), + (198, 198, 198), + (208, 208, 208), + (218, 218, 218), + (228, 228, 228), + (238, 238, 238), + ] +) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py b/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 0000000..4f6d8b2 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py @@ -0,0 +1,17 @@ +from typing import Optional + + +def pick_bool(*values: Optional[bool]) -> bool: + """Pick the first non-none bool or return the last value. + + Args: + *values (bool): Any number of boolean or None values. + + Returns: + bool: First non-none boolean. + """ + assert values, "1 or more values required" + for value in values: + if value is not None: + return value + return bool(value) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py b/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 0000000..95267b0 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,159 @@ +import sys +from fractions import Fraction +from math import ceil +from typing import cast, List, Optional, Sequence + +if sys.version_info >= (3, 8): + from typing import Protocol +else: + from pip._vendor.typing_extensions import Protocol # pragma: no cover + + +class Edge(Protocol): + """Any object that defines an edge (such as Layout).""" + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + +def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: + """Divide total space to satisfy size, ratio, and minimum_size, constraints. + + The returned list of integers should add up to total in most cases, unless it is + impossible to satisfy all the constraints. For instance, if there are two edges + with a minimum size of 20 each and `total` is 30 then the returned list will be + greater than total. In practice, this would mean that a Layout object would + clip the rows that would overflow the screen height. + + Args: + total (int): Total number of characters. + edges (List[Edge]): Edges within total space. + + Returns: + List[int]: Number of characters for each edge. + """ + # Size of edge or None for yet to be determined + sizes = [(edge.size or None) for edge in edges] + + _Fraction = Fraction + + # While any edges haven't been calculated + while None in sizes: + # Get flexible edges and index to map these back on to sizes list + flexible_edges = [ + (index, edge) + for index, (size, edge) in enumerate(zip(sizes, edges)) + if size is None + ] + # Remaining space in total + remaining = total - sum(size or 0 for size in sizes) + if remaining <= 0: + # No room for flexible edges + return [ + ((edge.minimum_size or 1) if size is None else size) + for size, edge in zip(sizes, edges) + ] + # Calculate number of characters in a ratio portion + portion = _Fraction( + remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) + ) + + # If any edges will be less than their minimum, replace size with the minimum + for index, edge in flexible_edges: + if portion * edge.ratio <= edge.minimum_size: + sizes[index] = edge.minimum_size + # New fixed size will invalidate calculations, so we need to repeat the process + break + else: + # Distribute flexible space and compensate for rounding error + # Since edge sizes can only be integers we need to add the remainder + # to the following line + remainder = _Fraction(0) + for index, edge in flexible_edges: + size, remainder = divmod(portion * edge.ratio + remainder, 1) + sizes[index] = size + break + # Sizes now contains integers only + return cast(List[int], sizes) + + +def ratio_reduce( + total: int, ratios: List[int], maximums: List[int], values: List[int] +) -> List[int]: + """Divide an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + maximums (List[int]): List of maximums values for each slot. + values (List[int]): List of values + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] + total_ratio = sum(ratios) + if not total_ratio: + return values[:] + total_remaining = total + result: List[int] = [] + append = result.append + for ratio, maximum, value in zip(ratios, maximums, values): + if ratio and total_ratio > 0: + distributed = min(maximum, round(ratio * total_remaining / total_ratio)) + append(value - distributed) + total_remaining -= distributed + total_ratio -= ratio + else: + append(value) + return result + + +def ratio_distribute( + total: int, ratios: List[int], minimums: Optional[List[int]] = None +) -> List[int]: + """Distribute an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + minimums (List[int]): List of minimum values for each slot. + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + if minimums: + ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] + total_ratio = sum(ratios) + assert total_ratio > 0, "Sum of ratios must be > 0" + + total_remaining = total + distributed_total: List[int] = [] + append = distributed_total.append + if minimums is None: + _minimums = [0] * len(ratios) + else: + _minimums = minimums + for ratio, minimum in zip(ratios, _minimums): + if total_ratio > 0: + distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) + else: + distributed = total_remaining + append(distributed) + total_ratio -= ratio + total_remaining -= distributed + return distributed_total + + +if __name__ == "__main__": + from dataclasses import dataclass + + @dataclass + class E: + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) + print(sum(resolved)) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py b/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 0000000..d0bb1fe --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py @@ -0,0 +1,482 @@ +""" +Spinners are from: +* cli-spinners: + MIT License + Copyright (c) Sindre Sorhus (sindresorhus.com) + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE + FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +""" + +SPINNERS = { + "dots": { + "interval": 80, + "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", + }, + "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, + "dots3": { + "interval": 80, + "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", + }, + "dots4": { + "interval": 80, + "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", + }, + "dots5": { + "interval": 80, + "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", + }, + "dots6": { + "interval": 80, + "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", + }, + "dots7": { + "interval": 80, + "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", + }, + "dots8": { + "interval": 80, + "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", + }, + "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, + "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, + "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, + "dots12": { + "interval": 80, + "frames": [ + "⢀⠀", + "⡀⠀", + "⠄⠀", + "⢂⠀", + "⡂⠀", + "⠅⠀", + "⢃⠀", + "⡃⠀", + "⠍⠀", + "⢋⠀", + "⡋⠀", + "⠍⠁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⢈⠩", + "⡀⢙", + "⠄⡙", + "⢂⠩", + "⡂⢘", + "⠅⡘", + "⢃⠨", + "⡃⢐", + "⠍⡐", + "⢋⠠", + "⡋⢀", + "⠍⡁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⠈⠩", + "⠀⢙", + "⠀⡙", + "⠀⠩", + "⠀⢘", + "⠀⡘", + "⠀⠨", + "⠀⢐", + "⠀⡐", + "⠀⠠", + "⠀⢀", + "⠀⡀", + ], + }, + "dots8Bit": { + "interval": 80, + "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" + "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" + "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" + "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" + "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", + }, + "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, + "line2": {"interval": 100, "frames": "⠂-–—–-"}, + "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, + "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, + "simpleDotsScrolling": { + "interval": 200, + "frames": [". ", ".. ", "...", " ..", " .", " "], + }, + "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, + "star2": {"interval": 80, "frames": "+x*"}, + "flip": { + "interval": 70, + "frames": "___-``'´-___", + }, + "hamburger": {"interval": 100, "frames": "☱☲☴"}, + "growVertical": { + "interval": 120, + "frames": "▁▃▄▅▆▇▆▅▄▃", + }, + "growHorizontal": { + "interval": 120, + "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", + }, + "balloon": {"interval": 140, "frames": " .oO@* "}, + "balloon2": {"interval": 120, "frames": ".oO°Oo."}, + "noise": {"interval": 100, "frames": "▓▒░"}, + "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, + "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, + "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, + "triangle": {"interval": 50, "frames": "◢◣◤◥"}, + "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, + "circle": {"interval": 120, "frames": "◡⊙◠"}, + "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, + "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, + "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, + "squish": {"interval": 100, "frames": "╫╪"}, + "toggle": {"interval": 250, "frames": "⊶⊷"}, + "toggle2": {"interval": 80, "frames": "▫▪"}, + "toggle3": {"interval": 120, "frames": "□■"}, + "toggle4": {"interval": 100, "frames": "■□▪▫"}, + "toggle5": {"interval": 100, "frames": "▮▯"}, + "toggle6": {"interval": 300, "frames": "ဝ၀"}, + "toggle7": {"interval": 80, "frames": "⦾⦿"}, + "toggle8": {"interval": 100, "frames": "◍◌"}, + "toggle9": {"interval": 100, "frames": "◉◎"}, + "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, + "toggle11": {"interval": 50, "frames": "⧇⧆"}, + "toggle12": {"interval": 120, "frames": "☗☖"}, + "toggle13": {"interval": 80, "frames": "=*-"}, + "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, + "arrow2": { + "interval": 80, + "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], + }, + "arrow3": { + "interval": 120, + "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], + }, + "bouncingBar": { + "interval": 80, + "frames": [ + "[ ]", + "[= ]", + "[== ]", + "[=== ]", + "[ ===]", + "[ ==]", + "[ =]", + "[ ]", + "[ =]", + "[ ==]", + "[ ===]", + "[====]", + "[=== ]", + "[== ]", + "[= ]", + ], + }, + "bouncingBall": { + "interval": 80, + "frames": [ + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "( ●)", + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "(● )", + ], + }, + "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, + "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, + "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, + "clock": { + "interval": 100, + "frames": [ + "🕛 ", + "🕐 ", + "🕑 ", + "🕒 ", + "🕓 ", + "🕔 ", + "🕕 ", + "🕖 ", + "🕗 ", + "🕘 ", + "🕙 ", + "🕚 ", + ], + }, + "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, + "material": { + "interval": 17, + "frames": [ + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "██████████▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "█████████████▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁██████████████▁▁▁▁", + "▁▁▁██████████████▁▁▁", + "▁▁▁▁█████████████▁▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁▁▁████████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁▁█████████████▁▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁▁███████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁▁█████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + ], + }, + "moon": { + "interval": 80, + "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], + }, + "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, + "pong": { + "interval": 80, + "frames": [ + "▐⠂ ▌", + "▐⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂▌", + "▐ ⠠▌", + "▐ ⡀▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐⠠ ▌", + ], + }, + "shark": { + "interval": 120, + "frames": [ + "▐|\\____________▌", + "▐_|\\___________▌", + "▐__|\\__________▌", + "▐___|\\_________▌", + "▐____|\\________▌", + "▐_____|\\_______▌", + "▐______|\\______▌", + "▐_______|\\_____▌", + "▐________|\\____▌", + "▐_________|\\___▌", + "▐__________|\\__▌", + "▐___________|\\_▌", + "▐____________|\\▌", + "▐____________/|▌", + "▐___________/|_▌", + "▐__________/|__▌", + "▐_________/|___▌", + "▐________/|____▌", + "▐_______/|_____▌", + "▐______/|______▌", + "▐_____/|_______▌", + "▐____/|________▌", + "▐___/|_________▌", + "▐__/|__________▌", + "▐_/|___________▌", + "▐/|____________▌", + ], + }, + "dqpb": {"interval": 100, "frames": "dqpb"}, + "weather": { + "interval": 100, + "frames": [ + "☀️ ", + "☀️ ", + "☀️ ", + "🌤 ", + "⛅️ ", + "🌥 ", + "☁️ ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "⛈ ", + "🌨 ", + "🌧 ", + "🌨 ", + "☁️ ", + "🌥 ", + "⛅️ ", + "🌤 ", + "☀️ ", + "☀️ ", + ], + }, + "christmas": {"interval": 400, "frames": "🌲🎄"}, + "grenade": { + "interval": 80, + "frames": [ + "، ", + "′ ", + " ´ ", + " ‾ ", + " ⸌", + " ⸊", + " |", + " ⁎", + " ⁕", + " ෴ ", + " ⁓", + " ", + " ", + " ", + ], + }, + "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, + "layer": {"interval": 150, "frames": "-=≡"}, + "betaWave": { + "interval": 80, + "frames": [ + "ρββββββ", + "βρβββββ", + "ββρββββ", + "βββρβββ", + "ββββρββ", + "βββββρβ", + "ββββββρ", + ], + }, + "aesthetic": { + "interval": 80, + "frames": [ + "▰▱▱▱▱▱▱", + "▰▰▱▱▱▱▱", + "▰▰▰▱▱▱▱", + "▰▰▰▰▱▱▱", + "▰▰▰▰▰▱▱", + "▰▰▰▰▰▰▱", + "▰▰▰▰▰▰▰", + "▰▱▱▱▱▱▱", + ], + }, +} diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py b/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 0000000..194564e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py @@ -0,0 +1,16 @@ +from typing import List, TypeVar + +T = TypeVar("T") + + +class Stack(List[T]): + """A small shim over builtin list.""" + + @property + def top(self) -> T: + """Get top of stack.""" + return self[-1] + + def push(self, item: T) -> None: + """Push an item on to the stack (append in stack nomenclature).""" + self.append(item) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py b/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 0000000..a2ca6be --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py @@ -0,0 +1,19 @@ +""" +Timer context manager, only used in debug. + +""" + +from time import time + +import contextlib +from typing import Generator + + +@contextlib.contextmanager +def timer(subject: str = "time") -> Generator[None, None, None]: + """print the elapsed time. (only used in debugging)""" + start = time() + yield + elapsed = time() - start + elapsed_ms = elapsed * 1000 + print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py b/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 0000000..81b1082 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py @@ -0,0 +1,662 @@ +"""Light wrapper around the Win32 Console API - this module should only be imported on Windows + +The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions +""" +import ctypes +import sys +from typing import Any + +windll: Any = None +if sys.platform == "win32": + windll = ctypes.LibraryLoader(ctypes.WinDLL) +else: + raise ImportError(f"{__name__} can only be imported on Windows") + +import time +from ctypes import Structure, byref, wintypes +from typing import IO, NamedTuple, Type, cast + +from pip._vendor.rich.color import ColorSystem +from pip._vendor.rich.style import Style + +STDOUT = -11 +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + +COORD = wintypes._COORD + + +class LegacyWindowsError(Exception): + pass + + +class WindowsCoordinates(NamedTuple): + """Coordinates in the Windows Console API are (y, x), not (x, y). + This class is intended to prevent that confusion. + Rows and columns are indexed from 0. + This class can be used in place of wintypes._COORD in arguments and argtypes. + """ + + row: int + col: int + + @classmethod + def from_param(cls, value: "WindowsCoordinates") -> COORD: + """Converts a WindowsCoordinates into a wintypes _COORD structure. + This classmethod is internally called by ctypes to perform the conversion. + + Args: + value (WindowsCoordinates): The input coordinates to convert. + + Returns: + wintypes._COORD: The converted coordinates struct. + """ + return COORD(value.col, value.row) + + +class CONSOLE_SCREEN_BUFFER_INFO(Structure): + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + + +class CONSOLE_CURSOR_INFO(ctypes.Structure): + _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] + + +_GetStdHandle = windll.kernel32.GetStdHandle +_GetStdHandle.argtypes = [ + wintypes.DWORD, +] +_GetStdHandle.restype = wintypes.HANDLE + + +def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: + """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). + + Args: + handle (int): Integer identifier for the handle. Defaults to -11 (stdout). + + Returns: + wintypes.HANDLE: The handle + """ + return cast(wintypes.HANDLE, _GetStdHandle(handle)) + + +_GetConsoleMode = windll.kernel32.GetConsoleMode +_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] +_GetConsoleMode.restype = wintypes.BOOL + + +def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: + """Retrieves the current input mode of a console's input buffer + or the current output mode of a console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Raises: + LegacyWindowsError: If any error occurs while calling the Windows console API. + + Returns: + int: Value representing the current console mode as documented at + https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters + """ + + console_mode = wintypes.DWORD() + success = bool(_GetConsoleMode(std_handle, console_mode)) + if not success: + raise LegacyWindowsError("Unable to get legacy Windows Console Mode") + return console_mode.value + + +_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW +_FillConsoleOutputCharacterW.argtypes = [ + wintypes.HANDLE, + ctypes.c_char, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputCharacterW.restype = wintypes.BOOL + + +def FillConsoleOutputCharacter( + std_handle: wintypes.HANDLE, + char: str, + length: int, + start: WindowsCoordinates, +) -> int: + """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + char (str): The character to write. Must be a string of length 1. + length (int): The number of times to write the character. + start (WindowsCoordinates): The coordinates to start writing at. + + Returns: + int: The number of characters written. + """ + character = ctypes.c_char(char.encode()) + num_characters = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + _FillConsoleOutputCharacterW( + std_handle, + character, + num_characters, + start, + byref(num_written), + ) + return num_written.value + + +_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute +_FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputAttribute.restype = wintypes.BOOL + + +def FillConsoleOutputAttribute( + std_handle: wintypes.HANDLE, + attributes: int, + length: int, + start: WindowsCoordinates, +) -> int: + """Sets the character attributes for a specified number of character cells, + beginning at the specified coordinates in a screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours of the cells. + length (int): The number of cells to set the output attribute of. + start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. + + Returns: + int: The number of cells whose attributes were actually set. + """ + num_cells = wintypes.DWORD(length) + style_attrs = wintypes.WORD(attributes) + num_written = wintypes.DWORD(0) + _FillConsoleOutputAttribute( + std_handle, style_attrs, num_cells, start, byref(num_written) + ) + return num_written.value + + +_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute +_SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, +] +_SetConsoleTextAttribute.restype = wintypes.BOOL + + +def SetConsoleTextAttribute( + std_handle: wintypes.HANDLE, attributes: wintypes.WORD +) -> bool: + """Set the colour attributes for all text written after this function is called. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours. + + + Returns: + bool: True if the attribute was set successfully, otherwise False. + """ + return bool(_SetConsoleTextAttribute(std_handle, attributes)) + + +_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo +_GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), +] +_GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + +def GetConsoleScreenBufferInfo( + std_handle: wintypes.HANDLE, +) -> CONSOLE_SCREEN_BUFFER_INFO: + """Retrieves information about the specified console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Returns: + CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about + screen size, cursor position, colour attributes, and more.""" + console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() + _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) + return console_screen_buffer_info + + +_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition +_SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + cast(Type[COORD], WindowsCoordinates), +] +_SetConsoleCursorPosition.restype = wintypes.BOOL + + +def SetConsoleCursorPosition( + std_handle: wintypes.HANDLE, coords: WindowsCoordinates +) -> bool: + """Set the position of the cursor in the console screen + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + coords (WindowsCoordinates): The coordinates to move the cursor to. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorPosition(std_handle, coords)) + + +_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo +_GetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_GetConsoleCursorInfo.restype = wintypes.BOOL + + +def GetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Get the cursor info - used to get cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information + about the console's cursor. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo +_SetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_SetConsoleCursorInfo.restype = wintypes.BOOL + + +def SetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Set the cursor info - used for adjusting cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleTitle = windll.kernel32.SetConsoleTitleW +_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] +_SetConsoleTitle.restype = wintypes.BOOL + + +def SetConsoleTitle(title: str) -> bool: + """Sets the title of the current console window + + Args: + title (str): The new title of the console window. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleTitle(title)) + + +class LegacyWindowsTerm: + """This class allows interaction with the legacy Windows Console API. It should only be used in the context + of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, + the entire API should work. + + Args: + file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. + """ + + BRIGHT_BIT = 8 + + # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers + ANSI_TO_WINDOWS = [ + 0, # black The Windows colours are defined in wincon.h as follows: + 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 + 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 + 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 + 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 + 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 + 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 + 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 + 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 + 12, # bright red + 10, # bright green + 14, # bright yellow + 9, # bright blue + 13, # bright magenta + 11, # bright cyan + 15, # bright white + ] + + def __init__(self, file: "IO[str]") -> None: + handle = GetStdHandle(STDOUT) + self._handle = handle + default_text = GetConsoleScreenBufferInfo(handle).wAttributes + self._default_text = default_text + + self._default_fore = default_text & 7 + self._default_back = (default_text >> 4) & 7 + self._default_attrs = self._default_fore | (self._default_back << 4) + + self._file = file + self.write = file.write + self.flush = file.flush + + @property + def cursor_position(self) -> WindowsCoordinates: + """Returns the current position of the cursor (0-based) + + Returns: + WindowsCoordinates: The current cursor position. + """ + coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition + return WindowsCoordinates(row=cast(int, coord.Y), col=cast(int, coord.X)) + + @property + def screen_size(self) -> WindowsCoordinates: + """Returns the current size of the console screen buffer, in character columns and rows + + Returns: + WindowsCoordinates: The width and height of the screen as WindowsCoordinates. + """ + screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize + return WindowsCoordinates( + row=cast(int, screen_size.Y), col=cast(int, screen_size.X) + ) + + def write_text(self, text: str) -> None: + """Write text directly to the terminal without any modification of styles + + Args: + text (str): The text to write to the console + """ + self.write(text) + self.flush() + + def write_styled(self, text: str, style: Style) -> None: + """Write styled text to the terminal. + + Args: + text (str): The text to write + style (Style): The style of the text + """ + color = style.color + bgcolor = style.bgcolor + if style.reverse: + color, bgcolor = bgcolor, color + + if color: + fore = color.downgrade(ColorSystem.WINDOWS).number + fore = fore if fore is not None else 7 # Default to ANSI 7: White + if style.bold: + fore = fore | self.BRIGHT_BIT + if style.dim: + fore = fore & ~self.BRIGHT_BIT + fore = self.ANSI_TO_WINDOWS[fore] + else: + fore = self._default_fore + + if bgcolor: + back = bgcolor.downgrade(ColorSystem.WINDOWS).number + back = back if back is not None else 0 # Default to ANSI 0: Black + back = self.ANSI_TO_WINDOWS[back] + else: + back = self._default_back + + assert fore is not None + assert back is not None + + SetConsoleTextAttribute( + self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) + ) + self.write_text(text) + SetConsoleTextAttribute(self._handle, attributes=self._default_text) + + def move_cursor_to(self, new_position: WindowsCoordinates) -> None: + """Set the position of the cursor + + Args: + new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. + """ + if new_position.col < 0 or new_position.row < 0: + return + SetConsoleCursorPosition(self._handle, coords=new_position) + + def erase_line(self) -> None: + """Erase all content on the line the cursor is currently located at""" + screen_size = self.screen_size + cursor_position = self.cursor_position + cells_to_erase = screen_size.col + start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=start_coordinates + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=start_coordinates, + ) + + def erase_end_of_line(self) -> None: + """Erase all content from the cursor position to the end of that line""" + cursor_position = self.cursor_position + cells_to_erase = self.screen_size.col - cursor_position.col + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=cursor_position + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=cursor_position, + ) + + def erase_start_of_line(self) -> None: + """Erase all content from the cursor position to the start of that line""" + row, col = self.cursor_position + start = WindowsCoordinates(row, 0) + FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) + FillConsoleOutputAttribute( + self._handle, self._default_attrs, length=col, start=start + ) + + def move_cursor_up(self) -> None: + """Move the cursor up a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row - 1, col=cursor_position.col + ), + ) + + def move_cursor_down(self) -> None: + """Move the cursor down a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row + 1, + col=cursor_position.col, + ), + ) + + def move_cursor_forward(self) -> None: + """Move the cursor forward a single cell. Wrap to the next line if required.""" + row, col = self.cursor_position + if col == self.screen_size.col - 1: + row += 1 + col = 0 + else: + col += 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def move_cursor_to_column(self, column: int) -> None: + """Move cursor to the column specified by the zero-based column index, staying on the same row + + Args: + column (int): The zero-based column index to move the cursor to. + """ + row, _ = self.cursor_position + SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) + + def move_cursor_backward(self) -> None: + """Move the cursor backward a single cell. Wrap to the previous line if required.""" + row, col = self.cursor_position + if col == 0: + row -= 1 + col = self.screen_size.col - 1 + else: + col -= 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def hide_cursor(self) -> None: + """Hide the cursor""" + current_cursor_size = self._get_cursor_size() + invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) + SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) + + def show_cursor(self) -> None: + """Show the cursor""" + current_cursor_size = self._get_cursor_size() + visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) + SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) + + def set_title(self, title: str) -> None: + """Set the title of the terminal window + + Args: + title (str): The new title of the console window + """ + assert len(title) < 255, "Console title must be less than 255 characters" + SetConsoleTitle(title) + + def _get_cursor_size(self) -> int: + """Get the percentage of the character cell that is filled by the cursor""" + cursor_info = CONSOLE_CURSOR_INFO() + GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) + return int(cursor_info.dwSize) + + +if __name__ == "__main__": + handle = GetStdHandle() + + from pip._vendor.rich.console import Console + + console = Console() + + term = LegacyWindowsTerm(sys.stdout) + term.set_title("Win32 Console Examples") + + style = Style(color="black", bgcolor="red") + + heading = Style.parse("black on green") + + # Check colour output + console.rule("Checking colour output") + console.print("[on red]on red!") + console.print("[blue]blue!") + console.print("[yellow]yellow!") + console.print("[bold yellow]bold yellow!") + console.print("[bright_yellow]bright_yellow!") + console.print("[dim bright_yellow]dim bright_yellow!") + console.print("[italic cyan]italic cyan!") + console.print("[bold white on blue]bold white on blue!") + console.print("[reverse bold white on blue]reverse bold white on blue!") + console.print("[bold black on cyan]bold black on cyan!") + console.print("[black on green]black on green!") + console.print("[blue on green]blue on green!") + console.print("[white on black]white on black!") + console.print("[black on white]black on white!") + console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") + + # Check cursor movement + console.rule("Checking cursor movement") + console.print() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("went back and wrapped to prev line") + time.sleep(1) + term.move_cursor_up() + term.write_text("we go up") + time.sleep(1) + term.move_cursor_down() + term.write_text("and down") + time.sleep(1) + term.move_cursor_up() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went up and back 2") + time.sleep(1) + term.move_cursor_down() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went down and back 2") + time.sleep(1) + + # Check erasing of lines + term.hide_cursor() + console.print() + console.rule("Checking line erasing") + console.print("\n...Deleting to the start of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + term.move_cursor_to_column(16) + term.write_styled("<", Style.parse("black on red")) + term.move_cursor_backward() + time.sleep(1) + term.erase_start_of_line() + time.sleep(1) + + console.print("\n\n...And to the end of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + + term.move_cursor_to_column(16) + term.write_styled(">", Style.parse("black on red")) + time.sleep(1) + term.erase_end_of_line() + time.sleep(1) + + console.print("\n\n...Now the whole line will be erased...") + term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) + time.sleep(1) + term.erase_line() + + term.show_cursor() + print("\n") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py b/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 0000000..7520a9f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,71 @@ +import sys +from dataclasses import dataclass + + +@dataclass +class WindowsConsoleFeatures: + """Windows features available.""" + + vt: bool = False + """The console supports VT codes.""" + truecolor: bool = False + """The console supports truecolor.""" + + +try: + import ctypes + from ctypes import LibraryLoader + + if sys.platform == "win32": + windll = LibraryLoader(ctypes.WinDLL) + else: + windll = None + raise ImportError("Not windows") + + from pip._vendor.rich._win32_console import ( + ENABLE_VIRTUAL_TERMINAL_PROCESSING, + GetConsoleMode, + GetStdHandle, + LegacyWindowsError, + ) + +except (AttributeError, ImportError, ValueError): + # Fallback if we can't load the Windows DLL + def get_windows_console_features() -> WindowsConsoleFeatures: + features = WindowsConsoleFeatures() + return features + +else: + + def get_windows_console_features() -> WindowsConsoleFeatures: + """Get windows console features. + + Returns: + WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. + """ + handle = GetStdHandle() + try: + console_mode = GetConsoleMode(handle) + success = True + except LegacyWindowsError: + console_mode = 0 + success = False + vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) + truecolor = False + if vt: + win_version = sys.getwindowsversion() + truecolor = win_version.major > 10 or ( + win_version.major == 10 and win_version.build >= 15063 + ) + features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) + return features + + +if __name__ == "__main__": + import platform + + features = get_windows_console_features() + from pip._vendor.rich import print + + print(f'platform="{platform.system()}"') + print(repr(features)) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py b/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 0000000..5ece056 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py @@ -0,0 +1,56 @@ +from typing import Iterable, Sequence, Tuple, cast + +from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates +from pip._vendor.rich.segment import ControlCode, ControlType, Segment + + +def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: + """Makes appropriate Windows Console API calls based on the segments in the buffer. + + Args: + buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. + term (LegacyWindowsTerm): Used to call the Windows Console API. + """ + for text, style, control in buffer: + if not control: + if style: + term.write_styled(text, style) + else: + term.write_text(text) + else: + control_codes: Sequence[ControlCode] = control + for control_code in control_codes: + control_type = control_code[0] + if control_type == ControlType.CURSOR_MOVE_TO: + _, x, y = cast(Tuple[ControlType, int, int], control_code) + term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) + elif control_type == ControlType.CARRIAGE_RETURN: + term.write_text("\r") + elif control_type == ControlType.HOME: + term.move_cursor_to(WindowsCoordinates(0, 0)) + elif control_type == ControlType.CURSOR_UP: + term.move_cursor_up() + elif control_type == ControlType.CURSOR_DOWN: + term.move_cursor_down() + elif control_type == ControlType.CURSOR_FORWARD: + term.move_cursor_forward() + elif control_type == ControlType.CURSOR_BACKWARD: + term.move_cursor_backward() + elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: + _, column = cast(Tuple[ControlType, int], control_code) + term.move_cursor_to_column(column - 1) + elif control_type == ControlType.HIDE_CURSOR: + term.hide_cursor() + elif control_type == ControlType.SHOW_CURSOR: + term.show_cursor() + elif control_type == ControlType.ERASE_IN_LINE: + _, mode = cast(Tuple[ControlType, int], control_code) + if mode == 0: + term.erase_end_of_line() + elif mode == 1: + term.erase_start_of_line() + elif mode == 2: + term.erase_line() + elif control_type == ControlType.SET_WINDOW_TITLE: + _, title = cast(Tuple[ControlType, str], control_code) + term.set_title(title) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py b/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 0000000..2e94ff6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,93 @@ +from __future__ import annotations + +import re +from typing import Iterable + +from ._loop import loop_last +from .cells import cell_len, chop_cells + +re_word = re.compile(r"\s*\S+\s*") + + +def words(text: str) -> Iterable[tuple[int, int, str]]: + """Yields each word from the text as a tuple + containing (start_index, end_index, word). A "word" in this context may + include the actual word and any whitespace to the right. + """ + position = 0 + word_match = re_word.match(text, position) + while word_match is not None: + start, end = word_match.span() + word = word_match.group(0) + yield start, end, word + word_match = re_word.match(text, end) + + +def divide_line(text: str, width: int, fold: bool = True) -> list[int]: + """Given a string of text, and a width (measured in cells), return a list + of cell offsets which the string should be split at in order for it to fit + within the given width. + + Args: + text: The text to examine. + width: The available cell width. + fold: If True, words longer than `width` will be folded onto a new line. + + Returns: + A list of indices to break the line at. + """ + break_positions: list[int] = [] # offsets to insert the breaks at + append = break_positions.append + cell_offset = 0 + _cell_len = cell_len + + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + remaining_space = width - cell_offset + word_fits_remaining_space = remaining_space >= word_length + + if word_fits_remaining_space: + # Simplest case - the word fits within the remaining width for this line. + cell_offset += _cell_len(word) + else: + # Not enough space remaining for this word on the current line. + if word_length > width: + # The word doesn't fit on any line, so we can't simply + # place it on the next line... + if fold: + # Fold the word across multiple lines. + folded_word = chop_cells(word, width=width) + for last, line in loop_last(folded_word): + if start: + append(start) + if last: + cell_offset = _cell_len(line) + else: + start += len(line) + else: + # Folding isn't allowed, so crop the word. + if start: + append(start) + cell_offset = _cell_len(word) + elif cell_offset and start: + # The word doesn't fit within the remaining space on the current + # line, but it *can* fit on to the next (empty) line. + append(start) + cell_offset = _cell_len(word) + + return break_positions + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10)) + + console = Console(width=20) + console.rule() + console.print("TextualはPythonの高速アプリケーション開発フレームワークです") + + console.rule() + console.print("アプリケーションは1670万色を使用でき") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/abc.py b/lib/python3.12/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 0000000..e6e498e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/abc.py @@ -0,0 +1,33 @@ +from abc import ABC + + +class RichRenderable(ABC): + """An abstract base class for Rich renderables. + + Note that there is no need to extend this class, the intended use is to check if an + object supports the Rich renderable protocol. For example:: + + if isinstance(my_object, RichRenderable): + console.print(my_object) + + """ + + @classmethod + def __subclasshook__(cls, other: type) -> bool: + """Check if this class supports the rich render protocol.""" + return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.text import Text + + t = Text() + print(isinstance(Text, RichRenderable)) + print(isinstance(t, RichRenderable)) + + class Foo: + pass + + f = Foo() + print(isinstance(f, RichRenderable)) + print(isinstance("", RichRenderable)) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/align.py b/lib/python3.12/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 0000000..f7b734f --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/align.py @@ -0,0 +1,311 @@ +import sys +from itertools import chain +from typing import TYPE_CHECKING, Iterable, Optional + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + +from .constrain import Constrain +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + +AlignMethod = Literal["left", "center", "right"] +VerticalAlignMethod = Literal["top", "middle", "bottom"] + + +class Align(JupyterMixin): + """Align a renderable by adding spaces if necessary. + + Args: + renderable (RenderableType): A console renderable. + align (AlignMethod): One of "left", "center", or "right"" + style (StyleType, optional): An optional style to apply to the background. + vertical (Optional[VerticalAlignMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. + pad (bool, optional): Pad the right with spaces. Defaults to True. + width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. + height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. + + Raises: + ValueError: if ``align`` is not one of the expected values. + """ + + def __init__( + self, + renderable: "RenderableType", + align: AlignMethod = "left", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> None: + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", or "right" (not {align!r})' + ) + if vertical is not None and vertical not in ("top", "middle", "bottom"): + raise ValueError( + f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' + ) + self.renderable = renderable + self.align = align + self.style = style + self.vertical = vertical + self.pad = pad + self.width = width + self.height = height + + def __repr__(self) -> str: + return f"Align({self.renderable!r}, {self.align!r})" + + @classmethod + def left( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the left.""" + return cls( + renderable, + "left", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def center( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the center.""" + return cls( + renderable, + "center", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def right( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the right.""" + return cls( + renderable, + "right", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + align = self.align + width = console.measure(self.renderable, options=options).maximum + rendered = console.render( + Constrain( + self.renderable, width if self.width is None else min(width, self.width) + ), + options.update(height=None), + ) + lines = list(Segment.split_lines(rendered)) + width, height = Segment.get_shape(lines) + lines = Segment.set_shape(lines, width, height) + new_line = Segment.line() + excess_space = options.max_width - width + style = console.get_style(self.style) if self.style is not None else None + + def generate_segments() -> Iterable[Segment]: + if excess_space <= 0: + # Exact fit + for line in lines: + yield from line + yield new_line + + elif align == "left": + # Pad on the right + pad = Segment(" " * excess_space, style) if self.pad else None + for line in lines: + yield from line + if pad: + yield pad + yield new_line + + elif align == "center": + # Pad left and right + left = excess_space // 2 + pad = Segment(" " * left, style) + pad_right = ( + Segment(" " * (excess_space - left), style) if self.pad else None + ) + for line in lines: + if left: + yield pad + yield from line + if pad_right: + yield pad_right + yield new_line + + elif align == "right": + # Padding on left + pad = Segment(" " * excess_space, style) + for line in lines: + yield pad + yield from line + yield new_line + + blank_line = ( + Segment(f"{' ' * (self.width or options.max_width)}\n", style) + if self.pad + else Segment("\n") + ) + + def blank_lines(count: int) -> Iterable[Segment]: + if count > 0: + for _ in range(count): + yield blank_line + + vertical_height = self.height or options.height + iter_segments: Iterable[Segment] + if self.vertical and vertical_height is not None: + if self.vertical == "top": + bottom_space = vertical_height - height + iter_segments = chain(generate_segments(), blank_lines(bottom_space)) + elif self.vertical == "middle": + top_space = (vertical_height - height) // 2 + bottom_space = vertical_height - top_space - height + iter_segments = chain( + blank_lines(top_space), + generate_segments(), + blank_lines(bottom_space), + ) + else: # self.vertical == "bottom": + top_space = vertical_height - height + iter_segments = chain(blank_lines(top_space), generate_segments()) + else: + iter_segments = generate_segments() + if self.style: + style = console.get_style(self.style) + iter_segments = Segment.apply_style(iter_segments, style) + yield from iter_segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +class VerticalCenter(JupyterMixin): + """Vertically aligns a renderable. + + Warn: + This class is deprecated and may be removed in a future version. Use Align class with + `vertical="middle"`. + + Args: + renderable (RenderableType): A renderable object. + """ + + def __init__( + self, + renderable: "RenderableType", + style: Optional[StyleType] = None, + ) -> None: + self.renderable = renderable + self.style = style + + def __repr__(self) -> str: + return f"VerticalCenter({self.renderable!r})" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) if self.style is not None else None + lines = console.render_lines( + self.renderable, options.update(height=None), pad=False + ) + width, _height = Segment.get_shape(lines) + new_line = Segment.line() + height = options.height or options.size.height + top_space = (height - len(lines)) // 2 + bottom_space = height - top_space - len(lines) + blank_line = Segment(f"{' ' * width}", style) + + def blank_lines(count: int) -> Iterable[Segment]: + for _ in range(count): + yield blank_line + yield new_line + + if top_space > 0: + yield from blank_lines(top_space) + for line in lines: + yield from line + yield new_line + if bottom_space > 0: + yield from blank_lines(bottom_space) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console, Group + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.panel import Panel + + highlighter = ReprHighlighter() + console = Console() + + panel = Panel( + Group( + Align.left(highlighter("align='left'")), + Align.center(highlighter("align='center'")), + Align.right(highlighter("align='right'")), + ), + width=60, + style="on dark_blue", + title="Align", + ) + + console.print( + Align.center(panel, vertical="middle", style="on red", height=console.height) + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py b/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 0000000..66365e6 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py @@ -0,0 +1,240 @@ +import re +import sys +from contextlib import suppress +from typing import Iterable, NamedTuple, Optional + +from .color import Color +from .style import Style +from .text import Text + +re_ansi = re.compile( + r""" +(?:\x1b\](.*?)\x1b\\)| +(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) +""", + re.VERBOSE, +) + + +class _AnsiToken(NamedTuple): + """Result of ansi tokenized string.""" + + plain: str = "" + sgr: Optional[str] = "" + osc: Optional[str] = "" + + +def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: + """Tokenize a string in to plain text and ANSI codes. + + Args: + ansi_text (str): A String containing ANSI codes. + + Yields: + AnsiToken: A named tuple of (plain, sgr, osc) + """ + + position = 0 + sgr: Optional[str] + osc: Optional[str] + for match in re_ansi.finditer(ansi_text): + start, end = match.span(0) + osc, sgr = match.groups() + if start > position: + yield _AnsiToken(ansi_text[position:start]) + if sgr: + if sgr == "(": + position = end + 1 + continue + if sgr.endswith("m"): + yield _AnsiToken("", sgr[1:-1], osc) + else: + yield _AnsiToken("", sgr, osc) + position = end + if position < len(ansi_text): + yield _AnsiToken(ansi_text[position:]) + + +SGR_STYLE_MAP = { + 1: "bold", + 2: "dim", + 3: "italic", + 4: "underline", + 5: "blink", + 6: "blink2", + 7: "reverse", + 8: "conceal", + 9: "strike", + 21: "underline2", + 22: "not dim not bold", + 23: "not italic", + 24: "not underline", + 25: "not blink", + 26: "not blink2", + 27: "not reverse", + 28: "not conceal", + 29: "not strike", + 30: "color(0)", + 31: "color(1)", + 32: "color(2)", + 33: "color(3)", + 34: "color(4)", + 35: "color(5)", + 36: "color(6)", + 37: "color(7)", + 39: "default", + 40: "on color(0)", + 41: "on color(1)", + 42: "on color(2)", + 43: "on color(3)", + 44: "on color(4)", + 45: "on color(5)", + 46: "on color(6)", + 47: "on color(7)", + 49: "on default", + 51: "frame", + 52: "encircle", + 53: "overline", + 54: "not frame not encircle", + 55: "not overline", + 90: "color(8)", + 91: "color(9)", + 92: "color(10)", + 93: "color(11)", + 94: "color(12)", + 95: "color(13)", + 96: "color(14)", + 97: "color(15)", + 100: "on color(8)", + 101: "on color(9)", + 102: "on color(10)", + 103: "on color(11)", + 104: "on color(12)", + 105: "on color(13)", + 106: "on color(14)", + 107: "on color(15)", +} + + +class AnsiDecoder: + """Translate ANSI code in to styled Text.""" + + def __init__(self) -> None: + self.style = Style.null() + + def decode(self, terminal_text: str) -> Iterable[Text]: + """Decode ANSI codes in an iterable of lines. + + Args: + lines (Iterable[str]): An iterable of lines of terminal output. + + Yields: + Text: Marked up Text. + """ + for line in terminal_text.splitlines(): + yield self.decode_line(line) + + def decode_line(self, line: str) -> Text: + """Decode a line containing ansi codes. + + Args: + line (str): A line of terminal output. + + Returns: + Text: A Text instance marked up according to ansi codes. + """ + from_ansi = Color.from_ansi + from_rgb = Color.from_rgb + _Style = Style + text = Text() + append = text.append + line = line.rsplit("\r", 1)[-1] + for plain_text, sgr, osc in _ansi_tokenize(line): + if plain_text: + append(plain_text, self.style or None) + elif osc is not None: + if osc.startswith("8;"): + _params, semicolon, link = osc[2:].partition(";") + if semicolon: + self.style = self.style.update_link(link or None) + elif sgr is not None: + # Translate in to semi-colon separated codes + # Ignore invalid codes, because we want to be lenient + codes = [ + min(255, int(_code) if _code else 0) + for _code in sgr.split(";") + if _code.isdigit() or _code == "" + ] + iter_codes = iter(codes) + for code in iter_codes: + if code == 0: + # reset + self.style = _Style.null() + elif code in SGR_STYLE_MAP: + # styles + self.style += _Style.parse(SGR_STYLE_MAP[code]) + elif code == 38: + #  Foreground + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ) + ) + elif code == 48: + # Background + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + None, from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + None, + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ), + ) + + return text + + +if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover + import io + import os + import pty + import sys + + decoder = AnsiDecoder() + + stdout = io.BytesIO() + + def read(fd: int) -> bytes: + data = os.read(fd, 1024) + stdout.write(data) + return data + + pty.spawn(sys.argv[1:], read) + + from .console import Console + + console = Console(record=True) + + stdout_result = stdout.getvalue().decode("utf-8") + print(stdout_result) + + for line in decoder.decode(stdout_result): + console.print(line) + + console.save_html("stdout.html") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/bar.py b/lib/python3.12/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 0000000..022284b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,93 @@ +from typing import Optional, Union + +from .color import Color +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style + +# There are left-aligned characters for 1/8 to 7/8, but +# the right-aligned characters exist only for 1/8 and 4/8. +BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] +END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] +FULL_BLOCK = "█" + + +class Bar(JupyterMixin): + """Renders a solid block bar. + + Args: + size (float): Value for the end of the bar. + begin (float): Begin point (between 0 and size, inclusive). + end (float): End point (between 0 and size, inclusive). + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + color (Union[Color, str], optional): Color of the bar. Defaults to "default". + bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". + """ + + def __init__( + self, + size: float, + begin: float, + end: float, + *, + width: Optional[int] = None, + color: Union[Color, str] = "default", + bgcolor: Union[Color, str] = "default", + ): + self.size = size + self.begin = max(begin, 0) + self.end = min(end, size) + self.width = width + self.style = Style(color=color, bgcolor=bgcolor) + + def __repr__(self) -> str: + return f"Bar({self.size}, {self.begin}, {self.end})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = min( + self.width if self.width is not None else options.max_width, + options.max_width, + ) + + if self.begin >= self.end: + yield Segment(" " * width, self.style) + yield Segment.line() + return + + prefix_complete_eights = int(width * 8 * self.begin / self.size) + prefix_bar_count = prefix_complete_eights // 8 + prefix_eights_count = prefix_complete_eights % 8 + + body_complete_eights = int(width * 8 * self.end / self.size) + body_bar_count = body_complete_eights // 8 + body_eights_count = body_complete_eights % 8 + + # When start and end fall into the same cell, we ideally should render + # a symbol that's "center-aligned", but there is no good symbol in Unicode. + # In this case, we fall back to right-aligned block symbol for simplicity. + + prefix = " " * prefix_bar_count + if prefix_eights_count: + prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] + + body = FULL_BLOCK * body_bar_count + if body_eights_count: + body += END_BLOCK_ELEMENTS[body_eights_count] + + suffix = " " * (width - len(body)) + + yield Segment(prefix + body[len(prefix) :] + suffix, self.style) + yield Segment.line() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return ( + Measurement(self.width, self.width) + if self.width is not None + else Measurement(4, options.max_width) + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/box.py b/lib/python3.12/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 0000000..0511a9e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,480 @@ +import sys +from typing import TYPE_CHECKING, Iterable, List + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +from ._loop import loop_last + +if TYPE_CHECKING: + from pip._vendor.rich.console import ConsoleOptions + + +class Box: + """Defines characters to render boxes. + + ┌─┬┐ top + │ ││ head + ├─┼┤ head_row + │ ││ mid + ├─┼┤ row + ├─┼┤ foot_row + │ ││ foot + └─┴┘ bottom + + Args: + box (str): Characters making up box. + ascii (bool, optional): True if this box uses ascii characters only. Default is False. + """ + + def __init__(self, box: str, *, ascii: bool = False) -> None: + self._box = box + self.ascii = ascii + line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() + # top + self.top_left, self.top, self.top_divider, self.top_right = iter(line1) + # head + self.head_left, _, self.head_vertical, self.head_right = iter(line2) + # head_row + ( + self.head_row_left, + self.head_row_horizontal, + self.head_row_cross, + self.head_row_right, + ) = iter(line3) + + # mid + self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) + # row + self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) + # foot_row + ( + self.foot_row_left, + self.foot_row_horizontal, + self.foot_row_cross, + self.foot_row_right, + ) = iter(line6) + # foot + self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) + # bottom + self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( + line8 + ) + + def __repr__(self) -> str: + return "Box(...)" + + def __str__(self) -> str: + return self._box + + def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": + """Substitute this box for another if it won't render due to platform issues. + + Args: + options (ConsoleOptions): Console options used in rendering. + safe (bool, optional): Substitute this for another Box if there are known problems + displaying on the platform (currently only relevant on Windows). Default is True. + + Returns: + Box: A different Box or the same Box. + """ + box = self + if options.legacy_windows and safe: + box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) + if options.ascii_only and not box.ascii: + box = ASCII + return box + + def get_plain_headed_box(self) -> "Box": + """If this box uses special characters for the borders of the header, then + return the equivalent box that does not. + + Returns: + Box: The most similar Box that doesn't use header-specific box characters. + If the current Box already satisfies this criterion, then it's returned. + """ + return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) + + def get_top(self, widths: Iterable[int]) -> str: + """Get the top of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.top_left) + for last, width in loop_last(widths): + append(self.top * width) + if not last: + append(self.top_divider) + append(self.top_right) + return "".join(parts) + + def get_row( + self, + widths: Iterable[int], + level: Literal["head", "row", "foot", "mid"] = "row", + edge: bool = True, + ) -> str: + """Get the top of a simple box. + + Args: + width (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + if level == "head": + left = self.head_row_left + horizontal = self.head_row_horizontal + cross = self.head_row_cross + right = self.head_row_right + elif level == "row": + left = self.row_left + horizontal = self.row_horizontal + cross = self.row_cross + right = self.row_right + elif level == "mid": + left = self.mid_left + horizontal = " " + cross = self.mid_vertical + right = self.mid_right + elif level == "foot": + left = self.foot_row_left + horizontal = self.foot_row_horizontal + cross = self.foot_row_cross + right = self.foot_row_right + else: + raise ValueError("level must be 'head', 'row' or 'foot'") + + parts: List[str] = [] + append = parts.append + if edge: + append(left) + for last, width in loop_last(widths): + append(horizontal * width) + if not last: + append(cross) + if edge: + append(right) + return "".join(parts) + + def get_bottom(self, widths: Iterable[int]) -> str: + """Get the bottom of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.bottom_left) + for last, width in loop_last(widths): + append(self.bottom * width) + if not last: + append(self.bottom_divider) + append(self.bottom_right) + return "".join(parts) + + +# fmt: off +ASCII: Box = Box( + "+--+\n" + "| ||\n" + "|-+|\n" + "| ||\n" + "|-+|\n" + "|-+|\n" + "| ||\n" + "+--+\n", + ascii=True, +) + +ASCII2: Box = Box( + "+-++\n" + "| ||\n" + "+-++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + "+-++\n" + "| ||\n" + "+=++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +SQUARE: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "╞═╪╡\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +MINIMAL: Box = Box( + " ╷ \n" + " │ \n" + "╶─┼╴\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + " ╷ \n" + " │ \n" + "╺━┿╸\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + " ╷ \n" + " │ \n" + " ═╪ \n" + " │ \n" + " ─┼ \n" + " ─┼ \n" + " │ \n" + " ╵ \n" +) + + +SIMPLE: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " ── \n" + " \n" + " \n" +) + +SIMPLE_HEAD: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " \n" + " \n" + " \n" +) + + +SIMPLE_HEAVY: Box = Box( + " \n" + " \n" + " ━━ \n" + " \n" + " \n" + " ━━ \n" + " \n" + " \n" +) + + +HORIZONTALS: Box = Box( + " ── \n" + " \n" + " ── \n" + " \n" + " ── \n" + " ── \n" + " \n" + " ── \n" +) + +ROUNDED: Box = Box( + "╭─┬╮\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "╰─┴╯\n" +) + +HEAVY: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┗━┻┛\n" +) + +HEAVY_EDGE: Box = Box( + "┏━┯┓\n" + "┃ │┃\n" + "┠─┼┨\n" + "┃ │┃\n" + "┠─┼┨\n" + "┠─┼┨\n" + "┃ │┃\n" + "┗━┷┛\n" +) + +HEAVY_HEAD: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┡━╇┩\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +DOUBLE: Box = Box( + "╔═╦╗\n" + "║ ║║\n" + "╠═╬╣\n" + "║ ║║\n" + "╠═╬╣\n" + "╠═╬╣\n" + "║ ║║\n" + "╚═╩╝\n" +) + +DOUBLE_EDGE: Box = Box( + "╔═╤╗\n" + "║ │║\n" + "╟─┼╢\n" + "║ │║\n" + "╟─┼╢\n" + "╟─┼╢\n" + "║ │║\n" + "╚═╧╝\n" +) + +MARKDOWN: Box = Box( + " \n" + "| ||\n" + "|-||\n" + "| ||\n" + "|-||\n" + "|-||\n" + "| ||\n" + " \n", + ascii=True, +) +# fmt: on + +# Map Boxes that don't render with raster fonts on to equivalent that do +LEGACY_WINDOWS_SUBSTITUTIONS = { + ROUNDED: SQUARE, + MINIMAL_HEAVY_HEAD: MINIMAL, + SIMPLE_HEAVY: SIMPLE, + HEAVY: SQUARE, + HEAVY_EDGE: SQUARE, + HEAVY_HEAD: SQUARE, +} + +# Map headed boxes to their headerless equivalents +PLAIN_HEADED_SUBSTITUTIONS = { + HEAVY_HEAD: SQUARE, + SQUARE_DOUBLE_HEAD: SQUARE, + MINIMAL_DOUBLE_HEAD: MINIMAL, + MINIMAL_HEAVY_HEAD: MINIMAL, + ASCII_DOUBLE_HEAD: ASCII2, +} + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.panel import Panel + + from . import box as box + from .console import Console + from .table import Table + from .text import Text + + console = Console(record=True) + + BOXES = [ + "ASCII", + "ASCII2", + "ASCII_DOUBLE_HEAD", + "SQUARE", + "SQUARE_DOUBLE_HEAD", + "MINIMAL", + "MINIMAL_HEAVY_HEAD", + "MINIMAL_DOUBLE_HEAD", + "SIMPLE", + "SIMPLE_HEAD", + "SIMPLE_HEAVY", + "HORIZONTALS", + "ROUNDED", + "HEAVY", + "HEAVY_EDGE", + "HEAVY_HEAD", + "DOUBLE", + "DOUBLE_EDGE", + "MARKDOWN", + ] + + console.print(Panel("[bold green]Box Constants", style="green"), justify="center") + console.print() + + columns = Columns(expand=True, padding=2) + for box_name in sorted(BOXES): + table = Table( + show_footer=True, style="dim", border_style="not dim", expand=True + ) + table.add_column("Header 1", "Footer 1") + table.add_column("Header 2", "Footer 2") + table.add_row("Cell", "Cell") + table.add_row("Cell", "Cell") + table.box = getattr(box, box_name) + table.title = Text(f"box.{box_name}", style="magenta") + columns.add_renderable(table) + console.print(columns) + + # console.save_svg("box.svg") diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/cells.py b/lib/python3.12/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 0000000..f85f928 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,167 @@ +from __future__ import annotations + +import re +from functools import lru_cache +from typing import Callable + +from ._cell_widths import CELL_WIDTHS + +# Regex to match sequence of the most common character ranges +_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match + + +@lru_cache(4096) +def cached_cell_len(text: str) -> int: + """Get the number of cells required to display text. + + This method always caches, which may use up a lot of memory. It is recommended to use + `cell_len` over this method. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: + """Get the number of cells required to display text. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if len(text) < 512: + return _cell_len(text) + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +@lru_cache(maxsize=4096) +def get_character_cell_size(character: str) -> int: + """Get the cell size of a character. + + Args: + character (str): A single character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + return _get_codepoint_cell_size(ord(character)) + + +@lru_cache(maxsize=4096) +def _get_codepoint_cell_size(codepoint: int) -> int: + """Get the cell size of a character. + + Args: + codepoint (int): Codepoint of a character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + + _table = CELL_WIDTHS + lower_bound = 0 + upper_bound = len(_table) - 1 + index = (lower_bound + upper_bound) // 2 + while True: + start, end, width = _table[index] + if codepoint < start: + upper_bound = index - 1 + elif codepoint > end: + lower_bound = index + 1 + else: + return 0 if width == -1 else width + if upper_bound < lower_bound: + break + index = (lower_bound + upper_bound) // 2 + return 1 + + +def set_cell_size(text: str, total: int) -> str: + """Set the length of a string to fit within given number of cells.""" + + if _is_single_cell_widths(text): + size = len(text) + if size < total: + return text + " " * (total - size) + return text[:total] + + if total <= 0: + return "" + cell_size = cell_len(text) + if cell_size == total: + return text + if cell_size < total: + return text + " " * (total - cell_size) + + start = 0 + end = len(text) + + # Binary search until we find the right size + while True: + pos = (start + end) // 2 + before = text[: pos + 1] + before_len = cell_len(before) + if before_len == total + 1 and cell_len(before[-1]) == 2: + return before[:-1] + " " + if before_len == total: + return before + if before_len > total: + end = pos + else: + start = pos + + +def chop_cells( + text: str, + width: int, +) -> list[str]: + """Split text into lines such that each line fits within the available (cell) width. + + Args: + text: The text to fold such that it fits in the given width. + width: The width available (number of cells). + + Returns: + A list of strings such that each string in the list has cell width + less than or equal to the available width. + """ + _get_character_cell_size = get_character_cell_size + lines: list[list[str]] = [[]] + + append_new_line = lines.append + append_to_last_line = lines[-1].append + + total_width = 0 + + for character in text: + cell_width = _get_character_cell_size(character) + char_doesnt_fit = total_width + cell_width > width + + if char_doesnt_fit: + append_new_line([character]) + append_to_last_line = lines[-1].append + total_width = cell_width + else: + append_to_last_line(character) + total_width += cell_width + + return ["".join(line) for line in lines] + + +if __name__ == "__main__": # pragma: no cover + print(get_character_cell_size("😽")) + for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): + print(line) + for n in range(80, 1, -1): + print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") + print("x" * n) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/color.py b/lib/python3.12/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 0000000..4270a27 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,621 @@ +import platform +import re +from colorsys import rgb_to_hls +from enum import IntEnum +from functools import lru_cache +from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple + +from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE +from .color_triplet import ColorTriplet +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME + +if TYPE_CHECKING: # pragma: no cover + from .terminal_theme import TerminalTheme + from .text import Text + + +WINDOWS = platform.system() == "Windows" + + +class ColorSystem(IntEnum): + """One of the 3 color system supported by terminals.""" + + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorSystem.{self.name}" + + def __str__(self) -> str: + return repr(self) + + +class ColorType(IntEnum): + """Type of color stored in Color class.""" + + DEFAULT = 0 + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorType.{self.name}" + + +ANSI_COLOR_NAMES = { + "black": 0, + "red": 1, + "green": 2, + "yellow": 3, + "blue": 4, + "magenta": 5, + "cyan": 6, + "white": 7, + "bright_black": 8, + "bright_red": 9, + "bright_green": 10, + "bright_yellow": 11, + "bright_blue": 12, + "bright_magenta": 13, + "bright_cyan": 14, + "bright_white": 15, + "grey0": 16, + "gray0": 16, + "navy_blue": 17, + "dark_blue": 18, + "blue3": 20, + "blue1": 21, + "dark_green": 22, + "deep_sky_blue4": 25, + "dodger_blue3": 26, + "dodger_blue2": 27, + "green4": 28, + "spring_green4": 29, + "turquoise4": 30, + "deep_sky_blue3": 32, + "dodger_blue1": 33, + "green3": 40, + "spring_green3": 41, + "dark_cyan": 36, + "light_sea_green": 37, + "deep_sky_blue2": 38, + "deep_sky_blue1": 39, + "spring_green2": 47, + "cyan3": 43, + "dark_turquoise": 44, + "turquoise2": 45, + "green1": 46, + "spring_green1": 48, + "medium_spring_green": 49, + "cyan2": 50, + "cyan1": 51, + "dark_red": 88, + "deep_pink4": 125, + "purple4": 55, + "purple3": 56, + "blue_violet": 57, + "orange4": 94, + "grey37": 59, + "gray37": 59, + "medium_purple4": 60, + "slate_blue3": 62, + "royal_blue1": 63, + "chartreuse4": 64, + "dark_sea_green4": 71, + "pale_turquoise4": 66, + "steel_blue": 67, + "steel_blue3": 68, + "cornflower_blue": 69, + "chartreuse3": 76, + "cadet_blue": 73, + "sky_blue3": 74, + "steel_blue1": 81, + "pale_green3": 114, + "sea_green3": 78, + "aquamarine3": 79, + "medium_turquoise": 80, + "chartreuse2": 112, + "sea_green2": 83, + "sea_green1": 85, + "aquamarine1": 122, + "dark_slate_gray2": 87, + "dark_magenta": 91, + "dark_violet": 128, + "purple": 129, + "light_pink4": 95, + "plum4": 96, + "medium_purple3": 98, + "slate_blue1": 99, + "yellow4": 106, + "wheat4": 101, + "grey53": 102, + "gray53": 102, + "light_slate_grey": 103, + "light_slate_gray": 103, + "medium_purple": 104, + "light_slate_blue": 105, + "dark_olive_green3": 149, + "dark_sea_green": 108, + "light_sky_blue3": 110, + "sky_blue2": 111, + "dark_sea_green3": 150, + "dark_slate_gray3": 116, + "sky_blue1": 117, + "chartreuse1": 118, + "light_green": 120, + "pale_green1": 156, + "dark_slate_gray1": 123, + "red3": 160, + "medium_violet_red": 126, + "magenta3": 164, + "dark_orange3": 166, + "indian_red": 167, + "hot_pink3": 168, + "medium_orchid3": 133, + "medium_orchid": 134, + "medium_purple2": 140, + "dark_goldenrod": 136, + "light_salmon3": 173, + "rosy_brown": 138, + "grey63": 139, + "gray63": 139, + "medium_purple1": 141, + "gold3": 178, + "dark_khaki": 143, + "navajo_white3": 144, + "grey69": 145, + "gray69": 145, + "light_steel_blue3": 146, + "light_steel_blue": 147, + "yellow3": 184, + "dark_sea_green2": 157, + "light_cyan3": 152, + "light_sky_blue1": 153, + "green_yellow": 154, + "dark_olive_green2": 155, + "dark_sea_green1": 193, + "pale_turquoise1": 159, + "deep_pink3": 162, + "magenta2": 200, + "hot_pink2": 169, + "orchid": 170, + "medium_orchid1": 207, + "orange3": 172, + "light_pink3": 174, + "pink3": 175, + "plum3": 176, + "violet": 177, + "light_goldenrod3": 179, + "tan": 180, + "misty_rose3": 181, + "thistle3": 182, + "plum2": 183, + "khaki3": 185, + "light_goldenrod2": 222, + "light_yellow3": 187, + "grey84": 188, + "gray84": 188, + "light_steel_blue1": 189, + "yellow2": 190, + "dark_olive_green1": 192, + "honeydew2": 194, + "light_cyan1": 195, + "red1": 196, + "deep_pink2": 197, + "deep_pink1": 199, + "magenta1": 201, + "orange_red1": 202, + "indian_red1": 204, + "hot_pink": 206, + "dark_orange": 208, + "salmon1": 209, + "light_coral": 210, + "pale_violet_red1": 211, + "orchid2": 212, + "orchid1": 213, + "orange1": 214, + "sandy_brown": 215, + "light_salmon1": 216, + "light_pink1": 217, + "pink1": 218, + "plum1": 219, + "gold1": 220, + "navajo_white1": 223, + "misty_rose1": 224, + "thistle1": 225, + "yellow1": 226, + "light_goldenrod1": 227, + "khaki1": 228, + "wheat1": 229, + "cornsilk1": 230, + "grey100": 231, + "gray100": 231, + "grey3": 232, + "gray3": 232, + "grey7": 233, + "gray7": 233, + "grey11": 234, + "gray11": 234, + "grey15": 235, + "gray15": 235, + "grey19": 236, + "gray19": 236, + "grey23": 237, + "gray23": 237, + "grey27": 238, + "gray27": 238, + "grey30": 239, + "gray30": 239, + "grey35": 240, + "gray35": 240, + "grey39": 241, + "gray39": 241, + "grey42": 242, + "gray42": 242, + "grey46": 243, + "gray46": 243, + "grey50": 244, + "gray50": 244, + "grey54": 245, + "gray54": 245, + "grey58": 246, + "gray58": 246, + "grey62": 247, + "gray62": 247, + "grey66": 248, + "gray66": 248, + "grey70": 249, + "gray70": 249, + "grey74": 250, + "gray74": 250, + "grey78": 251, + "gray78": 251, + "grey82": 252, + "gray82": 252, + "grey85": 253, + "gray85": 253, + "grey89": 254, + "gray89": 254, + "grey93": 255, + "gray93": 255, +} + + +class ColorParseError(Exception): + """The color could not be parsed.""" + + +RE_COLOR = re.compile( + r"""^ +\#([0-9a-f]{6})$| +color\(([0-9]{1,3})\)$| +rgb\(([\d\s,]+)\)$ +""", + re.VERBOSE, +) + + +@rich_repr +class Color(NamedTuple): + """Terminal color definition.""" + + name: str + """The name of the color (typically the input to Color.parse).""" + type: ColorType + """The type of the color.""" + number: Optional[int] = None + """The color number, if a standard color, or None.""" + triplet: Optional[ColorTriplet] = None + """A triplet of color components, if an RGB color.""" + + def __rich__(self) -> "Text": + """Displays the actual color if Rich printed.""" + from .style import Style + from .text import Text + + return Text.assemble( + f"", + ) + + def __rich_repr__(self) -> Result: + yield self.name + yield self.type + yield "number", self.number, None + yield "triplet", self.triplet, None + + @property + def system(self) -> ColorSystem: + """Get the native color system for this color.""" + if self.type == ColorType.DEFAULT: + return ColorSystem.STANDARD + return ColorSystem(int(self.type)) + + @property + def is_system_defined(self) -> bool: + """Check if the color is ultimately defined by the system.""" + return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) + + @property + def is_default(self) -> bool: + """Check if the color is a default color.""" + return self.type == ColorType.DEFAULT + + def get_truecolor( + self, theme: Optional["TerminalTheme"] = None, foreground: bool = True + ) -> ColorTriplet: + """Get an equivalent color triplet for this color. + + Args: + theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. + foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. + + Returns: + ColorTriplet: A color triplet containing RGB components. + """ + + if theme is None: + theme = DEFAULT_TERMINAL_THEME + if self.type == ColorType.TRUECOLOR: + assert self.triplet is not None + return self.triplet + elif self.type == ColorType.EIGHT_BIT: + assert self.number is not None + return EIGHT_BIT_PALETTE[self.number] + elif self.type == ColorType.STANDARD: + assert self.number is not None + return theme.ansi_colors[self.number] + elif self.type == ColorType.WINDOWS: + assert self.number is not None + return WINDOWS_PALETTE[self.number] + else: # self.type == ColorType.DEFAULT: + assert self.number is None + return theme.foreground_color if foreground else theme.background_color + + @classmethod + def from_ansi(cls, number: int) -> "Color": + """Create a Color number from it's 8-bit ansi number. + + Args: + number (int): A number between 0-255 inclusive. + + Returns: + Color: A new Color instance. + """ + return cls( + name=f"color({number})", + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + @classmethod + def from_triplet(cls, triplet: "ColorTriplet") -> "Color": + """Create a truecolor RGB color from a triplet of values. + + Args: + triplet (ColorTriplet): A color triplet containing red, green and blue components. + + Returns: + Color: A new color object. + """ + return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) + + @classmethod + def from_rgb(cls, red: float, green: float, blue: float) -> "Color": + """Create a truecolor from three color components in the range(0->255). + + Args: + red (float): Red component in range 0-255. + green (float): Green component in range 0-255. + blue (float): Blue component in range 0-255. + + Returns: + Color: A new color object. + """ + return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) + + @classmethod + def default(cls) -> "Color": + """Get a Color instance representing the default color. + + Returns: + Color: Default color. + """ + return cls(name="default", type=ColorType.DEFAULT) + + @classmethod + @lru_cache(maxsize=1024) + def parse(cls, color: str) -> "Color": + """Parse a color definition.""" + original_color = color + color = color.lower().strip() + + if color == "default": + return cls(color, type=ColorType.DEFAULT) + + color_number = ANSI_COLOR_NAMES.get(color) + if color_number is not None: + return cls( + color, + type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), + number=color_number, + ) + + color_match = RE_COLOR.match(color) + if color_match is None: + raise ColorParseError(f"{original_color!r} is not a valid color") + + color_24, color_8, color_rgb = color_match.groups() + if color_24: + triplet = ColorTriplet( + int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + elif color_8: + number = int(color_8) + if number > 255: + raise ColorParseError(f"color number must be <= 255 in {color!r}") + return cls( + color, + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + else: # color_rgb: + components = color_rgb.split(",") + if len(components) != 3: + raise ColorParseError( + f"expected three components in {original_color!r}" + ) + red, green, blue = components + triplet = ColorTriplet(int(red), int(green), int(blue)) + if not all(component <= 255 for component in triplet): + raise ColorParseError( + f"color components must be <= 255 in {original_color!r}" + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + @lru_cache(maxsize=1024) + def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: + """Get the ANSI escape codes for this color.""" + _type = self.type + if _type == ColorType.DEFAULT: + return ("39" if foreground else "49",) + + elif _type == ColorType.WINDOWS: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.STANDARD: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.EIGHT_BIT: + assert self.number is not None + return ("38" if foreground else "48", "5", str(self.number)) + + else: # self.standard == ColorStandard.TRUECOLOR: + assert self.triplet is not None + red, green, blue = self.triplet + return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) + + @lru_cache(maxsize=1024) + def downgrade(self, system: ColorSystem) -> "Color": + """Downgrade a color system to a system with fewer colors.""" + + if self.type in (ColorType.DEFAULT, system): + return self + # Convert to 8-bit color from truecolor color + if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + _h, l, s = rgb_to_hls(*self.triplet.normalized) + # If saturation is under 15% assume it is grayscale + if s < 0.15: + gray = round(l * 25.0) + if gray == 0: + color_number = 16 + elif gray == 25: + color_number = 231 + else: + color_number = 231 + gray + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + red, green, blue = self.triplet + six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 + six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 + six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 + + color_number = ( + 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) + ) + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + # Convert to standard from truecolor or 8-bit + elif system == ColorSystem.STANDARD: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = STANDARD_PALETTE.match(triplet) + return Color(self.name, ColorType.STANDARD, number=color_number) + + elif system == ColorSystem.WINDOWS: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + if self.number < 16: + return Color(self.name, ColorType.WINDOWS, number=self.number) + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = WINDOWS_PALETTE.match(triplet) + return Color(self.name, ColorType.WINDOWS, number=color_number) + + return self + + +def parse_rgb_hex(hex_color: str) -> ColorTriplet: + """Parse six hex characters in to RGB triplet.""" + assert len(hex_color) == 6, "must be 6 characters" + color = ColorTriplet( + int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) + ) + return color + + +def blend_rgb( + color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 +) -> ColorTriplet: + """Blend one RGB color in to another.""" + r1, g1, b1 = color1 + r2, g2, b2 = color2 + new_color = ColorTriplet( + int(r1 + (r2 - r1) * cross_fade), + int(g1 + (g2 - g1) * cross_fade), + int(b1 + (b2 - b1) * cross_fade), + ) + return new_color + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + from .table import Table + from .text import Text + + console = Console() + + table = Table(show_footer=False, show_edge=True) + table.add_column("Color", width=10, overflow="ellipsis") + table.add_column("Number", justify="right", style="yellow") + table.add_column("Name", style="green") + table.add_column("Hex", style="blue") + table.add_column("RGB", style="magenta") + + colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) + for color_number, name in colors: + if "grey" in name: + continue + color_cell = Text(" " * 10, style=f"on {name}") + if color_number < 16: + table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) + else: + color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] + table.add_row( + color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb + ) + + console.print(table) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py b/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 0000000..02cab32 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py @@ -0,0 +1,38 @@ +from typing import NamedTuple, Tuple + + +class ColorTriplet(NamedTuple): + """The red, green, and blue components of a color.""" + + red: int + """Red component in 0 to 255 range.""" + green: int + """Green component in 0 to 255 range.""" + blue: int + """Blue component in 0 to 255 range.""" + + @property + def hex(self) -> str: + """get the color triplet in CSS style.""" + red, green, blue = self + return f"#{red:02x}{green:02x}{blue:02x}" + + @property + def rgb(self) -> str: + """The color in RGB format. + + Returns: + str: An rgb color, e.g. ``"rgb(100,23,255)"``. + """ + red, green, blue = self + return f"rgb({red},{green},{blue})" + + @property + def normalized(self) -> Tuple[float, float, float]: + """Convert components into floats between 0 and 1. + + Returns: + Tuple[float, float, float]: A tuple of three normalized colour components. + """ + red, green, blue = self + return red / 255.0, green / 255.0, blue / 255.0 diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/columns.py b/lib/python3.12/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 0000000..669a3a7 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/columns.py @@ -0,0 +1,187 @@ +from collections import defaultdict +from itertools import chain +from operator import itemgetter +from typing import Dict, Iterable, List, Optional, Tuple + +from .align import Align, AlignMethod +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .constrain import Constrain +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .table import Table +from .text import TextType +from .jupyter import JupyterMixin + + +class Columns(JupyterMixin): + """Display renderables in neat columns. + + Args: + renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). + width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. + padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). + expand (bool, optional): Expand columns to full width. Defaults to False. + equal (bool, optional): Arrange in to equal sized columns. Defaults to False. + column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. + right_to_left (bool, optional): Start column from right hand side. Defaults to False. + align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. + title (TextType, optional): Optional title for Columns. + """ + + def __init__( + self, + renderables: Optional[Iterable[RenderableType]] = None, + padding: PaddingDimensions = (0, 1), + *, + width: Optional[int] = None, + expand: bool = False, + equal: bool = False, + column_first: bool = False, + right_to_left: bool = False, + align: Optional[AlignMethod] = None, + title: Optional[TextType] = None, + ) -> None: + self.renderables = list(renderables or []) + self.width = width + self.padding = padding + self.expand = expand + self.equal = equal + self.column_first = column_first + self.right_to_left = right_to_left + self.align: Optional[AlignMethod] = align + self.title = title + + def add_renderable(self, renderable: RenderableType) -> None: + """Add a renderable to the columns. + + Args: + renderable (RenderableType): Any renderable object. + """ + self.renderables.append(renderable) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + render_str = console.render_str + renderables = [ + render_str(renderable) if isinstance(renderable, str) else renderable + for renderable in self.renderables + ] + if not renderables: + return + _top, right, _bottom, left = Padding.unpack(self.padding) + width_padding = max(left, right) + max_width = options.max_width + widths: Dict[int, int] = defaultdict(int) + column_count = len(renderables) + + get_measurement = Measurement.get + renderable_widths = [ + get_measurement(console, options, renderable).maximum + for renderable in renderables + ] + if self.equal: + renderable_widths = [max(renderable_widths)] * len(renderable_widths) + + def iter_renderables( + column_count: int, + ) -> Iterable[Tuple[int, Optional[RenderableType]]]: + item_count = len(renderables) + if self.column_first: + width_renderables = list(zip(renderable_widths, renderables)) + + column_lengths: List[int] = [item_count // column_count] * column_count + for col_no in range(item_count % column_count): + column_lengths[col_no] += 1 + + row_count = (item_count + column_count - 1) // column_count + cells = [[-1] * column_count for _ in range(row_count)] + row = col = 0 + for index in range(item_count): + cells[row][col] = index + column_lengths[col] -= 1 + if column_lengths[col]: + row += 1 + else: + col += 1 + row = 0 + for index in chain.from_iterable(cells): + if index == -1: + break + yield width_renderables[index] + else: + yield from zip(renderable_widths, renderables) + # Pad odd elements with spaces + if item_count % column_count: + for _ in range(column_count - (item_count % column_count)): + yield 0, None + + table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) + table.expand = self.expand + table.title = self.title + + if self.width is not None: + column_count = (max_width) // (self.width + width_padding) + for _ in range(column_count): + table.add_column(width=self.width) + else: + while column_count > 1: + widths.clear() + column_no = 0 + for renderable_width, _ in iter_renderables(column_count): + widths[column_no] = max(widths[column_no], renderable_width) + total_width = sum(widths.values()) + width_padding * ( + len(widths) - 1 + ) + if total_width > max_width: + column_count = len(widths) - 1 + break + else: + column_no = (column_no + 1) % column_count + else: + break + + get_renderable = itemgetter(1) + _renderables = [ + get_renderable(_renderable) + for _renderable in iter_renderables(column_count) + ] + if self.equal: + _renderables = [ + None + if renderable is None + else Constrain(renderable, renderable_widths[0]) + for renderable in _renderables + ] + if self.align: + align = self.align + _Align = Align + _renderables = [ + None if renderable is None else _Align(renderable, align) + for renderable in _renderables + ] + + right_to_left = self.right_to_left + add_row = table.add_row + for start in range(0, len(_renderables), column_count): + row = _renderables[start : start + column_count] + if right_to_left: + row = row[::-1] + add_row(*row) + yield table + + +if __name__ == "__main__": # pragma: no cover + import os + + console = Console() + + files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] + columns = Columns(files, padding=(0, 1), expand=False, equal=False) + console.print(columns) + console.rule() + columns.column_first = True + console.print(columns) + columns.right_to_left = True + console.rule() + console.print(columns) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/console.py b/lib/python3.12/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 0000000..a11c7c1 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/console.py @@ -0,0 +1,2633 @@ +import inspect +import os +import platform +import sys +import threading +import zlib +from abc import ABC, abstractmethod +from dataclasses import dataclass, field +from datetime import datetime +from functools import wraps +from getpass import getpass +from html import escape +from inspect import isclass +from itertools import islice +from math import ceil +from time import monotonic +from types import FrameType, ModuleType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + Mapping, + NamedTuple, + Optional, + TextIO, + Tuple, + Type, + Union, + cast, +) + +from pip._vendor.rich._null_file import NULL_FILE + +if sys.version_info >= (3, 8): + from typing import Literal, Protocol, runtime_checkable +else: + from pip._vendor.typing_extensions import ( + Literal, + Protocol, + runtime_checkable, + ) # pragma: no cover + +from . import errors, themes +from ._emoji_replace import _emoji_replace +from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT +from ._fileno import get_fileno +from ._log_render import FormatTimeCallable, LogRender +from .align import Align, AlignMethod +from .color import ColorSystem, blend_rgb +from .control import Control +from .emoji import EmojiVariant +from .highlighter import NullHighlighter, ReprHighlighter +from .markup import render as render_markup +from .measure import Measurement, measure_renderables +from .pager import Pager, SystemPager +from .pretty import Pretty, is_expandable +from .protocol import rich_cast +from .region import Region +from .scope import render_scope +from .screen import Screen +from .segment import Segment +from .style import Style, StyleType +from .styled import Styled +from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme +from .text import Text, TextType +from .theme import Theme, ThemeStack + +if TYPE_CHECKING: + from ._windows import WindowsConsoleFeatures + from .live import Live + from .status import Status + +JUPYTER_DEFAULT_COLUMNS = 115 +JUPYTER_DEFAULT_LINES = 100 +WINDOWS = platform.system() == "Windows" + +HighlighterType = Callable[[Union[str, "Text"]], "Text"] +JustifyMethod = Literal["default", "left", "center", "right", "full"] +OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] + + +class NoChange: + pass + + +NO_CHANGE = NoChange() + +try: + _STDIN_FILENO = sys.__stdin__.fileno() +except Exception: + _STDIN_FILENO = 0 +try: + _STDOUT_FILENO = sys.__stdout__.fileno() +except Exception: + _STDOUT_FILENO = 1 +try: + _STDERR_FILENO = sys.__stderr__.fileno() +except Exception: + _STDERR_FILENO = 2 + +_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) +_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) + + +_TERM_COLORS = { + "kitty": ColorSystem.EIGHT_BIT, + "256color": ColorSystem.EIGHT_BIT, + "16color": ColorSystem.STANDARD, +} + + +class ConsoleDimensions(NamedTuple): + """Size of the terminal.""" + + width: int + """The width of the console in 'cells'.""" + height: int + """The height of the console in lines.""" + + +@dataclass +class ConsoleOptions: + """Options for __rich_console__ method.""" + + size: ConsoleDimensions + """Size of console.""" + legacy_windows: bool + """legacy_windows: flag for legacy windows.""" + min_width: int + """Minimum width of renderable.""" + max_width: int + """Maximum width of renderable.""" + is_terminal: bool + """True if the target is a terminal, otherwise False.""" + encoding: str + """Encoding of terminal.""" + max_height: int + """Height of container (starts as terminal)""" + justify: Optional[JustifyMethod] = None + """Justify value override for renderable.""" + overflow: Optional[OverflowMethod] = None + """Overflow value override for renderable.""" + no_wrap: Optional[bool] = False + """Disable wrapping for text.""" + highlight: Optional[bool] = None + """Highlight override for render_str.""" + markup: Optional[bool] = None + """Enable markup when rendering strings.""" + height: Optional[int] = None + + @property + def ascii_only(self) -> bool: + """Check if renderables should use ascii only.""" + return not self.encoding.startswith("utf") + + def copy(self) -> "ConsoleOptions": + """Return a copy of the options. + + Returns: + ConsoleOptions: a copy of self. + """ + options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) + options.__dict__ = self.__dict__.copy() + return options + + def update( + self, + *, + width: Union[int, NoChange] = NO_CHANGE, + min_width: Union[int, NoChange] = NO_CHANGE, + max_width: Union[int, NoChange] = NO_CHANGE, + justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, + overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, + no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, + highlight: Union[Optional[bool], NoChange] = NO_CHANGE, + markup: Union[Optional[bool], NoChange] = NO_CHANGE, + height: Union[Optional[int], NoChange] = NO_CHANGE, + ) -> "ConsoleOptions": + """Update values, return a copy.""" + options = self.copy() + if not isinstance(width, NoChange): + options.min_width = options.max_width = max(0, width) + if not isinstance(min_width, NoChange): + options.min_width = min_width + if not isinstance(max_width, NoChange): + options.max_width = max_width + if not isinstance(justify, NoChange): + options.justify = justify + if not isinstance(overflow, NoChange): + options.overflow = overflow + if not isinstance(no_wrap, NoChange): + options.no_wrap = no_wrap + if not isinstance(highlight, NoChange): + options.highlight = highlight + if not isinstance(markup, NoChange): + options.markup = markup + if not isinstance(height, NoChange): + if height is not None: + options.max_height = height + options.height = None if height is None else max(0, height) + return options + + def update_width(self, width: int) -> "ConsoleOptions": + """Update just the width, return a copy. + + Args: + width (int): New width (sets both min_width and max_width) + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + return options + + def update_height(self, height: int) -> "ConsoleOptions": + """Update the height, and return a copy. + + Args: + height (int): New height + + Returns: + ~ConsoleOptions: New Console options instance. + """ + options = self.copy() + options.max_height = options.height = height + return options + + def reset_height(self) -> "ConsoleOptions": + """Return a copy of the options with height set to ``None``. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.height = None + return options + + def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": + """Update the width and height, and return a copy. + + Args: + width (int): New width (sets both min_width and max_width). + height (int): New height. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + options.height = options.max_height = height + return options + + +@runtime_checkable +class RichCast(Protocol): + """An object that may be 'cast' to a console renderable.""" + + def __rich__( + self, + ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover + ... + + +@runtime_checkable +class ConsoleRenderable(Protocol): + """An object that supports the console protocol.""" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": # pragma: no cover + ... + + +# A type that may be rendered by Console. +RenderableType = Union[ConsoleRenderable, RichCast, str] +"""A string or any object that may be rendered by Rich.""" + +# The result of calling a __rich_console__ method. +RenderResult = Iterable[Union[RenderableType, Segment]] + +_null_highlighter = NullHighlighter() + + +class CaptureError(Exception): + """An error in the Capture context manager.""" + + +class NewLine: + """A renderable to generate new line(s)""" + + def __init__(self, count: int = 1) -> None: + self.count = count + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + yield Segment("\n" * self.count) + + +class ScreenUpdate: + """Render a list of lines at a given offset.""" + + def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: + self._lines = lines + self.x = x + self.y = y + + def __rich_console__( + self, console: "Console", options: ConsoleOptions + ) -> RenderResult: + x = self.x + move_to = Control.move_to + for offset, line in enumerate(self._lines, self.y): + yield move_to(x, offset) + yield from line + + +class Capture: + """Context manager to capture the result of printing to the console. + See :meth:`~rich.console.Console.capture` for how to use. + + Args: + console (Console): A console instance to capture output. + """ + + def __init__(self, console: "Console") -> None: + self._console = console + self._result: Optional[str] = None + + def __enter__(self) -> "Capture": + self._console.begin_capture() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self._result = self._console.end_capture() + + def get(self) -> str: + """Get the result of the capture.""" + if self._result is None: + raise CaptureError( + "Capture result is not available until context manager exits." + ) + return self._result + + +class ThemeContext: + """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" + + def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: + self.console = console + self.theme = theme + self.inherit = inherit + + def __enter__(self) -> "ThemeContext": + self.console.push_theme(self.theme) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.console.pop_theme() + + +class PagerContext: + """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" + + def __init__( + self, + console: "Console", + pager: Optional[Pager] = None, + styles: bool = False, + links: bool = False, + ) -> None: + self._console = console + self.pager = SystemPager() if pager is None else pager + self.styles = styles + self.links = links + + def __enter__(self) -> "PagerContext": + self._console._enter_buffer() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if exc_type is None: + with self._console._lock: + buffer: List[Segment] = self._console._buffer[:] + del self._console._buffer[:] + segments: Iterable[Segment] = buffer + if not self.styles: + segments = Segment.strip_styles(segments) + elif not self.links: + segments = Segment.strip_links(segments) + content = self._console._render_buffer(segments) + self.pager.show(content) + self._console._exit_buffer() + + +class ScreenContext: + """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" + + def __init__( + self, console: "Console", hide_cursor: bool, style: StyleType = "" + ) -> None: + self.console = console + self.hide_cursor = hide_cursor + self.screen = Screen(style=style) + self._changed = False + + def update( + self, *renderables: RenderableType, style: Optional[StyleType] = None + ) -> None: + """Update the screen. + + Args: + renderable (RenderableType, optional): Optional renderable to replace current renderable, + or None for no change. Defaults to None. + style: (Style, optional): Replacement style, or None for no change. Defaults to None. + """ + if renderables: + self.screen.renderable = ( + Group(*renderables) if len(renderables) > 1 else renderables[0] + ) + if style is not None: + self.screen.style = style + self.console.print(self.screen, end="") + + def __enter__(self) -> "ScreenContext": + self._changed = self.console.set_alt_screen(True) + if self._changed and self.hide_cursor: + self.console.show_cursor(False) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if self._changed: + self.console.set_alt_screen(False) + if self.hide_cursor: + self.console.show_cursor(True) + + +class Group: + """Takes a group of renderables and returns a renderable object that renders the group. + + Args: + renderables (Iterable[RenderableType]): An iterable of renderable objects. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: + self._renderables = renderables + self.fit = fit + self._render: Optional[List[RenderableType]] = None + + @property + def renderables(self) -> List["RenderableType"]: + if self._render is None: + self._render = list(self._renderables) + return self._render + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.fit: + return measure_renderables(console, options, self.renderables) + else: + return Measurement(options.max_width, options.max_width) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> RenderResult: + yield from self.renderables + + +def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: + """A decorator that turns an iterable of renderables in to a group. + + Args: + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def decorator( + method: Callable[..., Iterable[RenderableType]] + ) -> Callable[..., Group]: + """Convert a method that returns an iterable of renderables in to a Group.""" + + @wraps(method) + def _replace(*args: Any, **kwargs: Any) -> Group: + renderables = method(*args, **kwargs) + return Group(*renderables, fit=fit) + + return _replace + + return decorator + + +def _is_jupyter() -> bool: # pragma: no cover + """Check if we're running in a Jupyter notebook.""" + try: + get_ipython # type: ignore[name-defined] + except NameError: + return False + ipython = get_ipython() # type: ignore[name-defined] + shell = ipython.__class__.__name__ + if ( + "google.colab" in str(ipython.__class__) + or os.getenv("DATABRICKS_RUNTIME_VERSION") + or shell == "ZMQInteractiveShell" + ): + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + + +COLOR_SYSTEMS = { + "standard": ColorSystem.STANDARD, + "256": ColorSystem.EIGHT_BIT, + "truecolor": ColorSystem.TRUECOLOR, + "windows": ColorSystem.WINDOWS, +} + +_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} + + +@dataclass +class ConsoleThreadLocals(threading.local): + """Thread local values for Console context.""" + + theme_stack: ThemeStack + buffer: List[Segment] = field(default_factory=list) + buffer_index: int = 0 + + +class RenderHook(ABC): + """Provides hooks in to the render process.""" + + @abstractmethod + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Called with a list of objects to render. + + This method can return a new list of renderables, or modify and return the same list. + + Args: + renderables (List[ConsoleRenderable]): A number of renderable objects. + + Returns: + List[ConsoleRenderable]: A replacement list of renderables. + """ + + +_windows_console_features: Optional["WindowsConsoleFeatures"] = None + + +def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover + global _windows_console_features + if _windows_console_features is not None: + return _windows_console_features + from ._windows import get_windows_console_features + + _windows_console_features = get_windows_console_features() + return _windows_console_features + + +def detect_legacy_windows() -> bool: + """Detect legacy Windows.""" + return WINDOWS and not get_windows_console_features().vt + + +class Console: + """A high level console interface. + + Args: + color_system (str, optional): The color system supported by your terminal, + either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. + force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. + force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. + force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. + soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. + theme (Theme, optional): An optional style theme object, or ``None`` for default theme. + stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. + file (IO, optional): A file object where the console should write to. Defaults to stdout. + quiet (bool, Optional): Boolean to suppress all output. Defaults to False. + width (int, optional): The width of the terminal. Leave as default to auto-detect width. + height (int, optional): The height of the terminal. Leave as default to auto-detect height. + style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. + no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. + tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. + record (bool, optional): Boolean to enable recording of terminal output, + required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. + markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. + emoji (bool, optional): Enable emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + highlight (bool, optional): Enable automatic highlighting. Defaults to True. + log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. + log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. + log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". + highlighter (HighlighterType, optional): Default highlighter. + legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. + safe_box (bool, optional): Restrict box options that don't render on legacy Windows. + get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), + or None for datetime.now. + get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. + """ + + _environ: Mapping[str, str] = os.environ + + def __init__( + self, + *, + color_system: Optional[ + Literal["auto", "standard", "256", "truecolor", "windows"] + ] = "auto", + force_terminal: Optional[bool] = None, + force_jupyter: Optional[bool] = None, + force_interactive: Optional[bool] = None, + soft_wrap: bool = False, + theme: Optional[Theme] = None, + stderr: bool = False, + file: Optional[IO[str]] = None, + quiet: bool = False, + width: Optional[int] = None, + height: Optional[int] = None, + style: Optional[StyleType] = None, + no_color: Optional[bool] = None, + tab_size: int = 8, + record: bool = False, + markup: bool = True, + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + highlight: bool = True, + log_time: bool = True, + log_path: bool = True, + log_time_format: Union[str, FormatTimeCallable] = "[%X]", + highlighter: Optional["HighlighterType"] = ReprHighlighter(), + legacy_windows: Optional[bool] = None, + safe_box: bool = True, + get_datetime: Optional[Callable[[], datetime]] = None, + get_time: Optional[Callable[[], float]] = None, + _environ: Optional[Mapping[str, str]] = None, + ): + # Copy of os.environ allows us to replace it for testing + if _environ is not None: + self._environ = _environ + + self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter + if self.is_jupyter: + if width is None: + jupyter_columns = self._environ.get("JUPYTER_COLUMNS") + if jupyter_columns is not None and jupyter_columns.isdigit(): + width = int(jupyter_columns) + else: + width = JUPYTER_DEFAULT_COLUMNS + if height is None: + jupyter_lines = self._environ.get("JUPYTER_LINES") + if jupyter_lines is not None and jupyter_lines.isdigit(): + height = int(jupyter_lines) + else: + height = JUPYTER_DEFAULT_LINES + + self.tab_size = tab_size + self.record = record + self._markup = markup + self._emoji = emoji + self._emoji_variant: Optional[EmojiVariant] = emoji_variant + self._highlight = highlight + self.legacy_windows: bool = ( + (detect_legacy_windows() and not self.is_jupyter) + if legacy_windows is None + else legacy_windows + ) + + if width is None: + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) - self.legacy_windows + if height is None: + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + self.soft_wrap = soft_wrap + self._width = width + self._height = height + + self._color_system: Optional[ColorSystem] + + self._force_terminal = None + if force_terminal is not None: + self._force_terminal = force_terminal + + self._file = file + self.quiet = quiet + self.stderr = stderr + + if color_system is None: + self._color_system = None + elif color_system == "auto": + self._color_system = self._detect_color_system() + else: + self._color_system = COLOR_SYSTEMS[color_system] + + self._lock = threading.RLock() + self._log_render = LogRender( + show_time=log_time, + show_path=log_path, + time_format=log_time_format, + ) + self.highlighter: HighlighterType = highlighter or _null_highlighter + self.safe_box = safe_box + self.get_datetime = get_datetime or datetime.now + self.get_time = get_time or monotonic + self.style = style + self.no_color = ( + no_color if no_color is not None else "NO_COLOR" in self._environ + ) + self.is_interactive = ( + (self.is_terminal and not self.is_dumb_terminal) + if force_interactive is None + else force_interactive + ) + + self._record_buffer_lock = threading.RLock() + self._thread_locals = ConsoleThreadLocals( + theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) + ) + self._record_buffer: List[Segment] = [] + self._render_hooks: List[RenderHook] = [] + self._live: Optional["Live"] = None + self._is_alt_screen = False + + def __repr__(self) -> str: + return f"" + + @property + def file(self) -> IO[str]: + """Get the file object to write to.""" + file = self._file or (sys.stderr if self.stderr else sys.stdout) + file = getattr(file, "rich_proxied_file", file) + if file is None: + file = NULL_FILE + return file + + @file.setter + def file(self, new_file: IO[str]) -> None: + """Set a new file object.""" + self._file = new_file + + @property + def _buffer(self) -> List[Segment]: + """Get a thread local buffer.""" + return self._thread_locals.buffer + + @property + def _buffer_index(self) -> int: + """Get a thread local buffer.""" + return self._thread_locals.buffer_index + + @_buffer_index.setter + def _buffer_index(self, value: int) -> None: + self._thread_locals.buffer_index = value + + @property + def _theme_stack(self) -> ThemeStack: + """Get the thread local theme stack.""" + return self._thread_locals.theme_stack + + def _detect_color_system(self) -> Optional[ColorSystem]: + """Detect color system from env vars.""" + if self.is_jupyter: + return ColorSystem.TRUECOLOR + if not self.is_terminal or self.is_dumb_terminal: + return None + if WINDOWS: # pragma: no cover + if self.legacy_windows: # pragma: no cover + return ColorSystem.WINDOWS + windows_console_features = get_windows_console_features() + return ( + ColorSystem.TRUECOLOR + if windows_console_features.truecolor + else ColorSystem.EIGHT_BIT + ) + else: + color_term = self._environ.get("COLORTERM", "").strip().lower() + if color_term in ("truecolor", "24bit"): + return ColorSystem.TRUECOLOR + term = self._environ.get("TERM", "").strip().lower() + _term_name, _hyphen, colors = term.rpartition("-") + color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) + return color_system + + def _enter_buffer(self) -> None: + """Enter in to a buffer context, and buffer all output.""" + self._buffer_index += 1 + + def _exit_buffer(self) -> None: + """Leave buffer context, and render content if required.""" + self._buffer_index -= 1 + self._check_buffer() + + def set_live(self, live: "Live") -> None: + """Set Live instance. Used by Live context manager. + + Args: + live (Live): Live instance using this Console. + + Raises: + errors.LiveError: If this Console has a Live context currently active. + """ + with self._lock: + if self._live is not None: + raise errors.LiveError("Only one live display may be active at once") + self._live = live + + def clear_live(self) -> None: + """Clear the Live instance.""" + with self._lock: + self._live = None + + def push_render_hook(self, hook: RenderHook) -> None: + """Add a new render hook to the stack. + + Args: + hook (RenderHook): Render hook instance. + """ + with self._lock: + self._render_hooks.append(hook) + + def pop_render_hook(self) -> None: + """Pop the last renderhook from the stack.""" + with self._lock: + self._render_hooks.pop() + + def __enter__(self) -> "Console": + """Own context manager to enter buffer context.""" + self._enter_buffer() + return self + + def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: + """Exit buffer context.""" + self._exit_buffer() + + def begin_capture(self) -> None: + """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" + self._enter_buffer() + + def end_capture(self) -> str: + """End capture mode and return captured string. + + Returns: + str: Console output. + """ + render_result = self._render_buffer(self._buffer) + del self._buffer[:] + self._exit_buffer() + return render_result + + def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: + """Push a new theme on to the top of the stack, replacing the styles from the previous theme. + Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather + than calling this method directly. + + Args: + theme (Theme): A theme instance. + inherit (bool, optional): Inherit existing styles. Defaults to True. + """ + self._theme_stack.push_theme(theme, inherit=inherit) + + def pop_theme(self) -> None: + """Remove theme from top of stack, restoring previous theme.""" + self._theme_stack.pop_theme() + + def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: + """Use a different theme for the duration of the context manager. + + Args: + theme (Theme): Theme instance to user. + inherit (bool, optional): Inherit existing console styles. Defaults to True. + + Returns: + ThemeContext: [description] + """ + return ThemeContext(self, theme, inherit) + + @property + def color_system(self) -> Optional[str]: + """Get color system string. + + Returns: + Optional[str]: "standard", "256" or "truecolor". + """ + + if self._color_system is not None: + return _COLOR_SYSTEMS_NAMES[self._color_system] + else: + return None + + @property + def encoding(self) -> str: + """Get the encoding of the console file, e.g. ``"utf-8"``. + + Returns: + str: A standard encoding string. + """ + return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() + + @property + def is_terminal(self) -> bool: + """Check if the console is writing to a terminal. + + Returns: + bool: True if the console writing to a device capable of + understanding terminal codes, otherwise False. + """ + if self._force_terminal is not None: + return self._force_terminal + + if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( + "idlelib" + ): + # Return False for Idle which claims to be a tty but can't handle ansi codes + return False + + if self.is_jupyter: + # return False for Jupyter, which may have FORCE_COLOR set + return False + + # If FORCE_COLOR env var has any value at all, we assume a terminal. + force_color = self._environ.get("FORCE_COLOR") + if force_color is not None: + self._force_terminal = True + return True + + isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) + try: + return False if isatty is None else isatty() + except ValueError: + # in some situation (at the end of a pytest run for example) isatty() can raise + # ValueError: I/O operation on closed file + # return False because we aren't in a terminal anymore + return False + + @property + def is_dumb_terminal(self) -> bool: + """Detect dumb terminal. + + Returns: + bool: True if writing to a dumb terminal, otherwise False. + + """ + _term = self._environ.get("TERM", "") + is_dumb = _term.lower() in ("dumb", "unknown") + return self.is_terminal and is_dumb + + @property + def options(self) -> ConsoleOptions: + """Get default console options.""" + return ConsoleOptions( + max_height=self.size.height, + size=self.size, + legacy_windows=self.legacy_windows, + min_width=1, + max_width=self.width, + encoding=self.encoding, + is_terminal=self.is_terminal, + ) + + @property + def size(self) -> ConsoleDimensions: + """Get the size of the console. + + Returns: + ConsoleDimensions: A named tuple containing the dimensions. + """ + + if self._width is not None and self._height is not None: + return ConsoleDimensions(self._width - self.legacy_windows, self._height) + + if self.is_dumb_terminal: + return ConsoleDimensions(80, 25) + + width: Optional[int] = None + height: Optional[int] = None + + if WINDOWS: # pragma: no cover + try: + width, height = os.get_terminal_size() + except (AttributeError, ValueError, OSError): # Probably not a terminal + pass + else: + for file_descriptor in _STD_STREAMS: + try: + width, height = os.get_terminal_size(file_descriptor) + except (AttributeError, ValueError, OSError): + pass + else: + break + + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + # get_terminal_size can report 0, 0 if run from pseudo-terminal + width = width or 80 + height = height or 25 + return ConsoleDimensions( + width - self.legacy_windows if self._width is None else self._width, + height if self._height is None else self._height, + ) + + @size.setter + def size(self, new_size: Tuple[int, int]) -> None: + """Set a new size for the terminal. + + Args: + new_size (Tuple[int, int]): New width and height. + """ + width, height = new_size + self._width = width + self._height = height + + @property + def width(self) -> int: + """Get the width of the console. + + Returns: + int: The width (in characters) of the console. + """ + return self.size.width + + @width.setter + def width(self, width: int) -> None: + """Set width. + + Args: + width (int): New width. + """ + self._width = width + + @property + def height(self) -> int: + """Get the height of the console. + + Returns: + int: The height (in lines) of the console. + """ + return self.size.height + + @height.setter + def height(self, height: int) -> None: + """Set height. + + Args: + height (int): new height. + """ + self._height = height + + def bell(self) -> None: + """Play a 'bell' sound (if supported by the terminal).""" + self.control(Control.bell()) + + def capture(self) -> Capture: + """A context manager to *capture* the result of print() or log() in a string, + rather than writing it to the console. + + Example: + >>> from rich.console import Console + >>> console = Console() + >>> with console.capture() as capture: + ... console.print("[bold magenta]Hello World[/]") + >>> print(capture.get()) + + Returns: + Capture: Context manager with disables writing to the terminal. + """ + capture = Capture(self) + return capture + + def pager( + self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False + ) -> PagerContext: + """A context manager to display anything printed within a "pager". The pager application + is defined by the system and will typically support at least pressing a key to scroll. + + Args: + pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. + styles (bool, optional): Show styles in pager. Defaults to False. + links (bool, optional): Show links in pager. Defaults to False. + + Example: + >>> from rich.console import Console + >>> from rich.__main__ import make_test_card + >>> console = Console() + >>> with console.pager(): + console.print(make_test_card()) + + Returns: + PagerContext: A context manager. + """ + return PagerContext(self, pager=pager, styles=styles, links=links) + + def line(self, count: int = 1) -> None: + """Write new line(s). + + Args: + count (int, optional): Number of new lines. Defaults to 1. + """ + + assert count >= 0, "count must be >= 0" + self.print(NewLine(count)) + + def clear(self, home: bool = True) -> None: + """Clear the screen. + + Args: + home (bool, optional): Also move the cursor to 'home' position. Defaults to True. + """ + if home: + self.control(Control.clear(), Control.home()) + else: + self.control(Control.clear()) + + def status( + self, + status: RenderableType, + *, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ) -> "Status": + """Display a status and spinner. + + Args: + status (RenderableType): A status renderable (str or Text typically). + spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". + spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". + speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. + refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. + + Returns: + Status: A Status object that may be used as a context manager. + """ + from .status import Status + + status_renderable = Status( + status, + console=self, + spinner=spinner, + spinner_style=spinner_style, + speed=speed, + refresh_per_second=refresh_per_second, + ) + return status_renderable + + def show_cursor(self, show: bool = True) -> bool: + """Show or hide the cursor. + + Args: + show (bool, optional): Set visibility of the cursor. + """ + if self.is_terminal: + self.control(Control.show_cursor(show)) + return True + return False + + def set_alt_screen(self, enable: bool = True) -> bool: + """Enables alternative screen mode. + + Note, if you enable this mode, you should ensure that is disabled before + the application exits. See :meth:`~rich.Console.screen` for a context manager + that handles this for you. + + Args: + enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. + + Returns: + bool: True if the control codes were written. + + """ + changed = False + if self.is_terminal and not self.legacy_windows: + self.control(Control.alt_screen(enable)) + changed = True + self._is_alt_screen = enable + return changed + + @property + def is_alt_screen(self) -> bool: + """Check if the alt screen was enabled. + + Returns: + bool: True if the alt screen was enabled, otherwise False. + """ + return self._is_alt_screen + + def set_window_title(self, title: str) -> bool: + """Set the title of the console terminal window. + + Warning: There is no means within Rich of "resetting" the window title to its + previous value, meaning the title you set will persist even after your application + exits. + + ``fish`` shell resets the window title before and after each command by default, + negating this issue. Windows Terminal and command prompt will also reset the title for you. + Most other shells and terminals, however, do not do this. + + Some terminals may require configuration changes before you can set the title. + Some terminals may not support setting the title at all. + + Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) + may also set the terminal window title. This could result in whatever value you write + using this method being overwritten. + + Args: + title (str): The new title of the terminal window. + + Returns: + bool: True if the control code to change the terminal title was + written, otherwise False. Note that a return value of True + does not guarantee that the window title has actually changed, + since the feature may be unsupported/disabled in some terminals. + """ + if self.is_terminal: + self.control(Control.title(title)) + return True + return False + + def screen( + self, hide_cursor: bool = True, style: Optional[StyleType] = None + ) -> "ScreenContext": + """Context manager to enable and disable 'alternative screen' mode. + + Args: + hide_cursor (bool, optional): Also hide the cursor. Defaults to False. + style (Style, optional): Optional style for screen. Defaults to None. + + Returns: + ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. + """ + return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") + + def measure( + self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None + ) -> Measurement: + """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains + information regarding the number of characters required to print the renderable. + + Args: + renderable (RenderableType): Any renderable or string. + options (Optional[ConsoleOptions], optional): Options to use when measuring, or None + to use default options. Defaults to None. + + Returns: + Measurement: A measurement of the renderable. + """ + measurement = Measurement.get(self, options or self.options, renderable) + return measurement + + def render( + self, renderable: RenderableType, options: Optional[ConsoleOptions] = None + ) -> Iterable[Segment]: + """Render an object in to an iterable of `Segment` instances. + + This method contains the logic for rendering objects with the console protocol. + You are unlikely to need to use it directly, unless you are extending the library. + + Args: + renderable (RenderableType): An object supporting the console protocol, or + an object that may be converted to a string. + options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. + + Returns: + Iterable[Segment]: An iterable of segments that may be rendered. + """ + + _options = options or self.options + if _options.max_width < 1: + # No space to render anything. This prevents potential recursion errors. + return + render_iterable: RenderResult + + renderable = rich_cast(renderable) + if hasattr(renderable, "__rich_console__") and not isclass(renderable): + render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr] + elif isinstance(renderable, str): + text_renderable = self.render_str( + renderable, highlight=_options.highlight, markup=_options.markup + ) + render_iterable = text_renderable.__rich_console__(self, _options) + else: + raise errors.NotRenderableError( + f"Unable to render {renderable!r}; " + "A str, Segment or object with __rich_console__ method is required" + ) + + try: + iter_render = iter(render_iterable) + except TypeError: + raise errors.NotRenderableError( + f"object {render_iterable!r} is not renderable" + ) + _Segment = Segment + _options = _options.reset_height() + for render_output in iter_render: + if isinstance(render_output, _Segment): + yield render_output + else: + yield from self.render(render_output, _options) + + def render_lines( + self, + renderable: RenderableType, + options: Optional[ConsoleOptions] = None, + *, + style: Optional[Style] = None, + pad: bool = True, + new_lines: bool = False, + ) -> List[List[Segment]]: + """Render objects in to a list of lines. + + The output of render_lines is useful when further formatting of rendered console text + is required, such as the Panel class which draws a border around any renderable object. + + Args: + renderable (RenderableType): Any object renderable in the console. + options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. + style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. + pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. + new_lines (bool, optional): Include "\n" characters at end of lines. + + Returns: + List[List[Segment]]: A list of lines, where a line is a list of Segment objects. + """ + with self._lock: + render_options = options or self.options + _rendered = self.render(renderable, render_options) + if style: + _rendered = Segment.apply_style(_rendered, style) + + render_height = render_options.height + if render_height is not None: + render_height = max(0, render_height) + + lines = list( + islice( + Segment.split_and_crop_lines( + _rendered, + render_options.max_width, + include_new_lines=new_lines, + pad=pad, + style=style, + ), + None, + render_height, + ) + ) + if render_options.height is not None: + extra_lines = render_options.height - len(lines) + if extra_lines > 0: + pad_line = [ + [Segment(" " * render_options.max_width, style), Segment("\n")] + if new_lines + else [Segment(" " * render_options.max_width, style)] + ] + lines.extend(pad_line * extra_lines) + + return lines + + def render_str( + self, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + highlighter: Optional[HighlighterType] = None, + ) -> "Text": + """Convert a string to a Text instance. This is called automatically if + you print or log a string. + + Args: + text (str): Text to render. + style (Union[str, Style], optional): Style to apply to rendered text. + justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. + highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. + highlighter (HighlighterType, optional): Optional highlighter to apply. + Returns: + ConsoleRenderable: Renderable object. + + """ + emoji_enabled = emoji or (emoji is None and self._emoji) + markup_enabled = markup or (markup is None and self._markup) + highlight_enabled = highlight or (highlight is None and self._highlight) + + if markup_enabled: + rich_text = render_markup( + text, + style=style, + emoji=emoji_enabled, + emoji_variant=self._emoji_variant, + ) + rich_text.justify = justify + rich_text.overflow = overflow + else: + rich_text = Text( + _emoji_replace(text, default_variant=self._emoji_variant) + if emoji_enabled + else text, + justify=justify, + overflow=overflow, + style=style, + ) + + _highlighter = (highlighter or self.highlighter) if highlight_enabled else None + if _highlighter is not None: + highlight_text = _highlighter(str(rich_text)) + highlight_text.copy_styles(rich_text) + return highlight_text + + return rich_text + + def get_style( + self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None + ) -> Style: + """Get a Style instance by its theme name or parse a definition. + + Args: + name (str): The name of a style or a style definition. + + Returns: + Style: A Style object. + + Raises: + MissingStyle: If no style could be parsed from name. + + """ + if isinstance(name, Style): + return name + + try: + style = self._theme_stack.get(name) + if style is None: + style = Style.parse(name) + return style.copy() if style.link else style + except errors.StyleSyntaxError as error: + if default is not None: + return self.get_style(default) + raise errors.MissingStyle( + f"Failed to get style {name!r}; {error}" + ) from None + + def _collect_renderables( + self, + objects: Iterable[Any], + sep: str, + end: str, + *, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + ) -> List[ConsoleRenderable]: + """Combine a number of renderables and text into one renderable. + + Args: + objects (Iterable[Any]): Anything that Rich can render. + sep (str): String to write between print data. + end (str): String to write at end of print data. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. + + Returns: + List[ConsoleRenderable]: A list of things to render. + """ + renderables: List[ConsoleRenderable] = [] + _append = renderables.append + text: List[Text] = [] + append_text = text.append + + append = _append + if justify in ("left", "center", "right"): + + def align_append(renderable: RenderableType) -> None: + _append(Align(renderable, cast(AlignMethod, justify))) + + append = align_append + + _highlighter: HighlighterType = _null_highlighter + if highlight or (highlight is None and self._highlight): + _highlighter = self.highlighter + + def check_text() -> None: + if text: + sep_text = Text(sep, justify=justify, end=end) + append(sep_text.join(text)) + text.clear() + + for renderable in objects: + renderable = rich_cast(renderable) + if isinstance(renderable, str): + append_text( + self.render_str( + renderable, emoji=emoji, markup=markup, highlighter=_highlighter + ) + ) + elif isinstance(renderable, Text): + append_text(renderable) + elif isinstance(renderable, ConsoleRenderable): + check_text() + append(renderable) + elif is_expandable(renderable): + check_text() + append(Pretty(renderable, highlighter=_highlighter)) + else: + append_text(_highlighter(str(renderable))) + + check_text() + + if self.style is not None: + style = self.get_style(self.style) + renderables = [Styled(renderable, style) for renderable in renderables] + + return renderables + + def rule( + self, + title: TextType = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + align: AlignMethod = "center", + ) -> None: + """Draw a line with optional centered title. + + Args: + title (str, optional): Text to render over the rule. Defaults to "". + characters (str, optional): Character(s) to form the line. Defaults to "─". + style (str, optional): Style of line. Defaults to "rule.line". + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + from .rule import Rule + + rule = Rule(title=title, characters=characters, style=style, align=align) + self.print(rule) + + def control(self, *control: Control) -> None: + """Insert non-printing control codes. + + Args: + control_codes (str): Control codes, such as those that may move the cursor. + """ + if not self.is_dumb_terminal: + with self: + self._buffer.extend(_control.segment for _control in control) + + def out( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + highlight: Optional[bool] = None, + ) -> None: + """Output to the terminal. This is a low-level way of writing to the terminal which unlike + :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will + optionally apply highlighting and a basic style. + + Args: + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use + console default. Defaults to ``None``. + """ + raw_output: str = sep.join(str(_object) for _object in objects) + self.print( + raw_output, + style=style, + highlight=highlight, + emoji=False, + markup=False, + no_wrap=True, + overflow="ignore", + crop=False, + end=end, + ) + + def print( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + no_wrap: Optional[bool] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + width: Optional[int] = None, + height: Optional[int] = None, + crop: bool = True, + soft_wrap: Optional[bool] = None, + new_line_start: bool = False, + ) -> None: + """Print to the console. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. + width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. + crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. + soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for + Console default. Defaults to ``None``. + new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. + """ + if not objects: + objects = (NewLine(),) + + if soft_wrap is None: + soft_wrap = self.soft_wrap + if soft_wrap: + if no_wrap is None: + no_wrap = True + if overflow is None: + overflow = "ignore" + crop = False + render_hooks = self._render_hooks[:] + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + render_options = self.options.update( + justify=justify, + overflow=overflow, + width=min(width, self.width) if width is not None else NO_CHANGE, + height=height, + no_wrap=no_wrap, + markup=markup, + highlight=highlight, + ) + + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + if style is None: + for renderable in renderables: + extend(render(renderable, render_options)) + else: + for renderable in renderables: + extend( + Segment.apply_style( + render(renderable, render_options), self.get_style(style) + ) + ) + if new_line_start: + if ( + len("".join(segment.text for segment in new_segments).splitlines()) + > 1 + ): + new_segments.insert(0, Segment.line()) + if crop: + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + else: + self._buffer.extend(new_segments) + + def print_json( + self, + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, + ) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (Optional[str]): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + from pip._vendor.rich.json import JSON + + if json is None: + json_renderable = JSON.from_data( + data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + else: + if not isinstance(json, str): + raise TypeError( + f"json must be str. Did you mean print_json(data={json!r}) ?" + ) + json_renderable = JSON( + json, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + self.print(json_renderable, soft_wrap=True) + + def update_screen( + self, + renderable: RenderableType, + *, + region: Optional[Region] = None, + options: Optional[ConsoleOptions] = None, + ) -> None: + """Update the screen at a given offset. + + Args: + renderable (RenderableType): A Rich renderable. + region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. + x (int, optional): x offset. Defaults to 0. + y (int, optional): y offset. Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + render_options = options or self.options + if region is None: + x = y = 0 + render_options = render_options.update_dimensions( + render_options.max_width, render_options.height or self.height + ) + else: + x, y, width, height = region + render_options = render_options.update_dimensions(width, height) + + lines = self.render_lines(renderable, options=render_options) + self.update_screen_lines(lines, x, y) + + def update_screen_lines( + self, lines: List[List[Segment]], x: int = 0, y: int = 0 + ) -> None: + """Update lines of the screen at a given offset. + + Args: + lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). + x (int, optional): x offset (column no). Defaults to 0. + y (int, optional): y offset (column no). Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + screen_update = ScreenUpdate(lines, x, y) + segments = self.render(screen_update) + self._buffer.extend(segments) + self._check_buffer() + + def print_exception( + self, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> None: + """Prints a rich render of the last exception and traceback. + + Args: + width (Optional[int], optional): Number of characters used to render code. Defaults to 100. + extra_lines (int, optional): Additional lines of code to render. Defaults to 3. + theme (str, optional): Override pygments theme used in traceback + word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from .traceback import Traceback + + traceback = Traceback( + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + suppress=suppress, + max_frames=max_frames, + ) + self.print(traceback) + + @staticmethod + def _caller_frame_info( + offset: int, + currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, + ) -> Tuple[str, int, Dict[str, Any]]: + """Get caller frame information. + + Args: + offset (int): the caller offset within the current frame stack. + currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to + retrieve the current frame. Defaults to ``inspect.currentframe``. + + Returns: + Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and + the dictionary of local variables associated with the caller frame. + + Raises: + RuntimeError: If the stack offset is invalid. + """ + # Ignore the frame of this local helper + offset += 1 + + frame = currentframe() + if frame is not None: + # Use the faster currentframe where implemented + while offset and frame is not None: + frame = frame.f_back + offset -= 1 + assert frame is not None + return frame.f_code.co_filename, frame.f_lineno, frame.f_locals + else: + # Fallback to the slower stack + frame_info = inspect.stack()[offset] + return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals + + def log( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + log_locals: bool = False, + _stack_offset: int = 1, + ) -> None: + """Log rich content to the terminal. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. + log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` + was called. Defaults to False. + _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. + """ + if not objects: + objects = (NewLine(),) + + render_hooks = self._render_hooks[:] + + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + if style is not None: + renderables = [Styled(renderable, style) for renderable in renderables] + + filename, line_no, locals = self._caller_frame_info(_stack_offset) + link_path = None if filename.startswith("<") else os.path.abspath(filename) + path = filename.rpartition(os.sep)[-1] + if log_locals: + locals_map = { + key: value + for key, value in locals.items() + if not key.startswith("__") + } + renderables.append(render_scope(locals_map, title="[i]locals")) + + renderables = [ + self._log_render( + self, + renderables, + log_time=self.get_datetime(), + path=path, + line_no=line_no, + link_path=link_path, + ) + ] + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + render_options = self.options + for renderable in renderables: + extend(render(renderable, render_options)) + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + + def _check_buffer(self) -> None: + """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) + Rendering is supported on Windows, Unix and Jupyter environments. For + legacy Windows consoles, the win32 API is called directly. + This method will also record what it renders if recording is enabled via Console.record. + """ + if self.quiet: + del self._buffer[:] + return + with self._lock: + if self.record: + with self._record_buffer_lock: + self._record_buffer.extend(self._buffer[:]) + + if self._buffer_index == 0: + if self.is_jupyter: # pragma: no cover + from .jupyter import display + + display(self._buffer, self._render_buffer(self._buffer[:])) + del self._buffer[:] + else: + if WINDOWS: + use_legacy_windows_render = False + if self.legacy_windows: + fileno = get_fileno(self.file) + if fileno is not None: + use_legacy_windows_render = ( + fileno in _STD_STREAMS_OUTPUT + ) + + if use_legacy_windows_render: + from pip._vendor.rich._win32_console import LegacyWindowsTerm + from pip._vendor.rich._windows_renderer import legacy_windows_render + + buffer = self._buffer[:] + if self.no_color and self._color_system: + buffer = list(Segment.remove_color(buffer)) + + legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) + else: + # Either a non-std stream on legacy Windows, or modern Windows. + text = self._render_buffer(self._buffer[:]) + # https://bugs.python.org/issue37871 + # https://github.com/python/cpython/issues/82052 + # We need to avoid writing more than 32Kb in a single write, due to the above bug + write = self.file.write + # Worse case scenario, every character is 4 bytes of utf-8 + MAX_WRITE = 32 * 1024 // 4 + try: + if len(text) <= MAX_WRITE: + write(text) + else: + batch: List[str] = [] + batch_append = batch.append + size = 0 + for line in text.splitlines(True): + if size + len(line) > MAX_WRITE and batch: + write("".join(batch)) + batch.clear() + size = 0 + batch_append(line) + size += len(line) + if batch: + write("".join(batch)) + batch.clear() + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + else: + text = self._render_buffer(self._buffer[:]) + try: + self.file.write(text) + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + + self.file.flush() + del self._buffer[:] + + def _render_buffer(self, buffer: Iterable[Segment]) -> str: + """Render buffered output, and clear buffer.""" + output: List[str] = [] + append = output.append + color_system = self._color_system + legacy_windows = self.legacy_windows + not_terminal = not self.is_terminal + if self.no_color and color_system: + buffer = Segment.remove_color(buffer) + for text, style, control in buffer: + if style: + append( + style.render( + text, + color_system=color_system, + legacy_windows=legacy_windows, + ) + ) + elif not (not_terminal and control): + append(text) + + rendered = "".join(output) + return rendered + + def input( + self, + prompt: TextType = "", + *, + markup: bool = True, + emoji: bool = True, + password: bool = False, + stream: Optional[TextIO] = None, + ) -> str: + """Displays a prompt and waits for input from the user. The prompt may contain color / style. + + It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. + + Args: + prompt (Union[str, Text]): Text to render in the prompt. + markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. + emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. + password: (bool, optional): Hide typed text. Defaults to False. + stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. + + Returns: + str: Text read from stdin. + """ + if prompt: + self.print(prompt, markup=markup, emoji=emoji, end="") + if password: + result = getpass("", stream=stream) + else: + if stream: + result = stream.readline() + else: + result = input() + return result + + def export_text(self, *, clear: bool = True, styles: bool = False) -> str: + """Generate text from console contents (requires record=True argument in constructor). + + Args: + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. + Defaults to ``False``. + + Returns: + str: String containing console contents. + + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + + with self._record_buffer_lock: + if styles: + text = "".join( + (style.render(text) if style else text) + for text, style, _ in self._record_buffer + ) + else: + text = "".join( + segment.text + for segment in self._record_buffer + if not segment.control + ) + if clear: + del self._record_buffer[:] + return text + + def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: + """Generate text from console and save to a given location (requires record=True argument in constructor). + + Args: + path (str): Path to write text files. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. + Defaults to ``False``. + + """ + text = self.export_text(clear=clear, styles=styles) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(text) + + def export_html( + self, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: Optional[str] = None, + inline_styles: bool = False, + ) -> str: + """Generate HTML from console contents (requires record=True argument in constructor). + + Args: + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + Returns: + str: String containing console contents as HTML. + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + fragments: List[str] = [] + append = fragments.append + _theme = theme or DEFAULT_TERMINAL_THEME + stylesheet = "" + + render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format + + with self._record_buffer_lock: + if inline_styles: + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + if style.link: + text = f'
{text}' + text = f'{text}' if rule else text + append(text) + else: + styles: Dict[str, int] = {} + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + style_number = styles.setdefault(rule, len(styles) + 1) + if style.link: + text = f'{text}' + else: + text = f'{text}' + append(text) + stylesheet_rules: List[str] = [] + stylesheet_append = stylesheet_rules.append + for style_rule, style_number in styles.items(): + if style_rule: + stylesheet_append(f".r{style_number} {{{style_rule}}}") + stylesheet = "\n".join(stylesheet_rules) + + rendered_code = render_code_format.format( + code="".join(fragments), + stylesheet=stylesheet, + foreground=_theme.foreground_color.hex, + background=_theme.background_color.hex, + ) + if clear: + del self._record_buffer[:] + return rendered_code + + def save_html( + self, + path: str, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_HTML_FORMAT, + inline_styles: bool = False, + ) -> None: + """Generate HTML from console contents and write to a file (requires record=True argument in constructor). + + Args: + path (str): Path to write html file. + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + """ + html = self.export_html( + theme=theme, + clear=clear, + code_format=code_format, + inline_styles=inline_styles, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(html) + + def export_svg( + self, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> str: + """ + Generate an SVG from the console contents (requires record=True in Console constructor). + + Args: + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + + from pip._vendor.rich.cells import cell_len + + style_cache: Dict[Style, str] = {} + + def get_svg_style(style: Style) -> str: + """Convert a Style to CSS rules for SVG.""" + if style in style_cache: + return style_cache[style] + css_rules = [] + color = ( + _theme.foreground_color + if (style.color is None or style.color.is_default) + else style.color.get_truecolor(_theme) + ) + bgcolor = ( + _theme.background_color + if (style.bgcolor is None or style.bgcolor.is_default) + else style.bgcolor.get_truecolor(_theme) + ) + if style.reverse: + color, bgcolor = bgcolor, color + if style.dim: + color = blend_rgb(color, bgcolor, 0.4) + css_rules.append(f"fill: {color.hex}") + if style.bold: + css_rules.append("font-weight: bold") + if style.italic: + css_rules.append("font-style: italic;") + if style.underline: + css_rules.append("text-decoration: underline;") + if style.strike: + css_rules.append("text-decoration: line-through;") + + css = ";".join(css_rules) + style_cache[style] = css + return css + + _theme = theme or SVG_EXPORT_THEME + + width = self.width + char_height = 20 + char_width = char_height * font_aspect_ratio + line_height = char_height * 1.22 + + margin_top = 1 + margin_right = 1 + margin_bottom = 1 + margin_left = 1 + + padding_top = 40 + padding_right = 8 + padding_bottom = 8 + padding_left = 8 + + padding_width = padding_left + padding_right + padding_height = padding_top + padding_bottom + margin_width = margin_left + margin_right + margin_height = margin_top + margin_bottom + + text_backgrounds: List[str] = [] + text_group: List[str] = [] + classes: Dict[str, int] = {} + style_no = 1 + + def escape_text(text: str) -> str: + """HTML escape text and replace spaces with nbsp.""" + return escape(text).replace(" ", " ") + + def make_tag( + name: str, content: Optional[str] = None, **attribs: object + ) -> str: + """Make a tag from name, content, and attributes.""" + + def stringify(value: object) -> str: + if isinstance(value, (float)): + return format(value, "g") + return str(value) + + tag_attribs = " ".join( + f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' + for k, v in attribs.items() + ) + return ( + f"<{name} {tag_attribs}>{content}" + if content + else f"<{name} {tag_attribs}/>" + ) + + with self._record_buffer_lock: + segments = list(Segment.filter_control(self._record_buffer)) + if clear: + self._record_buffer.clear() + + if unique_id is None: + unique_id = "terminal-" + str( + zlib.adler32( + ("".join(repr(segment) for segment in segments)).encode( + "utf-8", + "ignore", + ) + + title.encode("utf-8", "ignore") + ) + ) + y = 0 + for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): + x = 0 + for text, style, _control in line: + style = style or Style() + rules = get_svg_style(style) + if rules not in classes: + classes[rules] = style_no + style_no += 1 + class_name = f"r{classes[rules]}" + + if style.reverse: + has_background = True + background = ( + _theme.foreground_color.hex + if style.color is None + else style.color.get_truecolor(_theme).hex + ) + else: + bgcolor = style.bgcolor + has_background = bgcolor is not None and not bgcolor.is_default + background = ( + _theme.background_color.hex + if style.bgcolor is None + else style.bgcolor.get_truecolor(_theme).hex + ) + + text_length = cell_len(text) + if has_background: + text_backgrounds.append( + make_tag( + "rect", + fill=background, + x=x * char_width, + y=y * line_height + 1.5, + width=char_width * text_length, + height=line_height + 0.25, + shape_rendering="crispEdges", + ) + ) + + if text != " " * len(text): + text_group.append( + make_tag( + "text", + escape_text(text), + _class=f"{unique_id}-{class_name}", + x=x * char_width, + y=y * line_height + char_height, + textLength=char_width * len(text), + clip_path=f"url(#{unique_id}-line-{y})", + ) + ) + x += cell_len(text) + + line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] + lines = "\n".join( + f""" + {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} + """ + for line_no, offset in enumerate(line_offsets) + ) + + styles = "\n".join( + f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() + ) + backgrounds = "".join(text_backgrounds) + matrix = "".join(text_group) + + terminal_width = ceil(width * char_width + padding_width) + terminal_height = (y + 1) * line_height + padding_height + chrome = make_tag( + "rect", + fill=_theme.background_color.hex, + stroke="rgba(255,255,255,0.35)", + stroke_width="1", + x=margin_left, + y=margin_top, + width=terminal_width, + height=terminal_height, + rx=8, + ) + + title_color = _theme.foreground_color.hex + if title: + chrome += make_tag( + "text", + escape_text(title), + _class=f"{unique_id}-title", + fill=title_color, + text_anchor="middle", + x=terminal_width // 2, + y=margin_top + char_height + 6, + ) + chrome += f""" + + + + + + """ + + svg = code_format.format( + unique_id=unique_id, + char_width=char_width, + char_height=char_height, + line_height=line_height, + terminal_width=char_width * width - 1, + terminal_height=(y + 1) * line_height - 1, + width=terminal_width + margin_width, + height=terminal_height + margin_height, + terminal_x=margin_left + padding_left, + terminal_y=margin_top + padding_top, + styles=styles, + chrome=chrome, + backgrounds=backgrounds, + matrix=matrix, + lines=lines, + ) + return svg + + def save_svg( + self, + path: str, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> None: + """Generate an SVG file from the console contents (requires record=True in Console constructor). + + Args: + path (str): The path to write the SVG to. + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + svg = self.export_svg( + title=title, + theme=theme, + clear=clear, + code_format=code_format, + font_aspect_ratio=font_aspect_ratio, + unique_id=unique_id, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(svg) + + +def _svg_hash(svg_main_code: str) -> str: + """Returns a unique hash for the given SVG main code. + + Args: + svg_main_code (str): The content we're going to inject in the SVG envelope. + + Returns: + str: a hash of the given content + """ + return str(zlib.adler32(svg_main_code.encode())) + + +if __name__ == "__main__": # pragma: no cover + console = Console(record=True) + + console.log( + "JSONRPC [i]request[/i]", + 5, + 1.3, + True, + False, + None, + { + "jsonrpc": "2.0", + "method": "subtract", + "params": {"minuend": 42, "subtrahend": 23}, + "id": 3, + }, + ) + + console.log("Hello, World!", "{'a': 1}", repr(console)) + + console.print( + { + "name": None, + "empty": [], + "quiz": { + "sport": { + "answered": True, + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriors", + "Huston Rocket", + ], + "answer": "Huston Rocket", + }, + }, + "maths": { + "answered": False, + "q1": { + "question": "5 + 7 = ?", + "options": [10, 11, 12, 13], + "answer": 12, + }, + "q2": { + "question": "12 - 8 = ?", + "options": [1, 2, 3, 4], + "answer": 4, + }, + }, + }, + } + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py b/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 0000000..65fdf56 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py @@ -0,0 +1,37 @@ +from typing import Optional, TYPE_CHECKING + +from .jupyter import JupyterMixin +from .measure import Measurement + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Constrain(JupyterMixin): + """Constrain the width of a renderable to a given number of characters. + + Args: + renderable (RenderableType): A renderable object. + width (int, optional): The maximum width (in characters) to render. Defaults to 80. + """ + + def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: + self.renderable = renderable + self.width = width + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.width is None: + yield self.renderable + else: + child_options = options.update_width(min(self.width, options.max_width)) + yield from console.render(self.renderable, child_options) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.width is not None: + options = options.update_width(self.width) + measurement = Measurement.get(console, options, self.renderable) + return measurement diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/containers.py b/lib/python3.12/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 0000000..901ff8b --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + TYPE_CHECKING, + Iterable, + Iterator, + List, + Optional, + TypeVar, + Union, + overload, +) + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderResult, + RenderableType, + ) + from .text import Text + +from .cells import cell_len +from .measure import Measurement + +T = TypeVar("T") + + +class Renderables: + """A list subclass which renders its contents to the console.""" + + def __init__( + self, renderables: Optional[Iterable["RenderableType"]] = None + ) -> None: + self._renderables: List["RenderableType"] = ( + list(renderables) if renderables is not None else [] + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._renderables + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + dimensions = [ + Measurement.get(console, options, renderable) + for renderable in self._renderables + ] + if not dimensions: + return Measurement(1, 1) + _min = max(dimension.minimum for dimension in dimensions) + _max = max(dimension.maximum for dimension in dimensions) + return Measurement(_min, _max) + + def append(self, renderable: "RenderableType") -> None: + self._renderables.append(renderable) + + def __iter__(self) -> Iterable["RenderableType"]: + return iter(self._renderables) + + +class Lines: + """A list subclass which can render to the console.""" + + def __init__(self, lines: Iterable["Text"] = ()) -> None: + self._lines: List["Text"] = list(lines) + + def __repr__(self) -> str: + return f"Lines({self._lines!r})" + + def __iter__(self) -> Iterator["Text"]: + return iter(self._lines) + + @overload + def __getitem__(self, index: int) -> "Text": + ... + + @overload + def __getitem__(self, index: slice) -> List["Text"]: + ... + + def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: + return self._lines[index] + + def __setitem__(self, index: int, value: "Text") -> "Lines": + self._lines[index] = value + return self + + def __len__(self) -> int: + return self._lines.__len__() + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._lines + + def append(self, line: "Text") -> None: + self._lines.append(line) + + def extend(self, lines: Iterable["Text"]) -> None: + self._lines.extend(lines) + + def pop(self, index: int = -1) -> "Text": + return self._lines.pop(index) + + def justify( + self, + console: "Console", + width: int, + justify: "JustifyMethod" = "left", + overflow: "OverflowMethod" = "fold", + ) -> None: + """Justify and overflow text to a given width. + + Args: + console (Console): Console instance. + width (int): Number of cells available per line. + justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". + overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". + + """ + from .text import Text + + if justify == "left": + for line in self._lines: + line.truncate(width, overflow=overflow, pad=True) + elif justify == "center": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left((width - cell_len(line.plain)) // 2) + line.pad_right(width - cell_len(line.plain)) + elif justify == "right": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left(width - cell_len(line.plain)) + elif justify == "full": + for line_index, line in enumerate(self._lines): + if line_index == len(self._lines) - 1: + break + words = line.split(" ") + words_size = sum(cell_len(word.plain) for word in words) + num_spaces = len(words) - 1 + spaces = [1 for _ in range(num_spaces)] + index = 0 + if spaces: + while words_size + num_spaces < width: + spaces[len(spaces) - index - 1] += 1 + num_spaces += 1 + index = (index + 1) % len(spaces) + tokens: List[Text] = [] + for index, (word, next_word) in enumerate( + zip_longest(words, words[1:]) + ): + tokens.append(word) + if index < len(spaces): + style = word.get_style_at_offset(console, -1) + next_style = next_word.get_style_at_offset(console, 0) + space_style = style if style == next_style else line.style + tokens.append(Text(" " * spaces[index], style=space_style)) + self[line_index] = Text("").join(tokens) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/control.py b/lib/python3.12/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 0000000..88fcb92 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/control.py @@ -0,0 +1,225 @@ +import sys +import time +from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union + +if sys.version_info >= (3, 8): + from typing import Final +else: + from pip._vendor.typing_extensions import Final # pragma: no cover + +from .segment import ControlCode, ControlType, Segment + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +STRIP_CONTROL_CODES: Final = [ + 7, # Bell + 8, # Backspace + 11, # Vertical tab + 12, # Form feed + 13, # Carriage return +] +_CONTROL_STRIP_TRANSLATE: Final = { + _codepoint: None for _codepoint in STRIP_CONTROL_CODES +} + +CONTROL_ESCAPE: Final = { + 7: "\\a", + 8: "\\b", + 11: "\\v", + 12: "\\f", + 13: "\\r", +} + +CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { + ControlType.BELL: lambda: "\x07", + ControlType.CARRIAGE_RETURN: lambda: "\r", + ControlType.HOME: lambda: "\x1b[H", + ControlType.CLEAR: lambda: "\x1b[2J", + ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", + ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", + ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", + ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", + ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", + ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", + ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", + ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", + ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", + ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", + ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", + ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", +} + + +class Control: + """A renderable that inserts a control code (non printable but may move cursor). + + Args: + *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a + tuple of ControlType and an integer parameter + """ + + __slots__ = ["segment"] + + def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: + control_codes: List[ControlCode] = [ + (code,) if isinstance(code, ControlType) else code for code in codes + ] + _format_map = CONTROL_CODES_FORMAT + rendered_codes = "".join( + _format_map[code](*parameters) for code, *parameters in control_codes + ) + self.segment = Segment(rendered_codes, None, control_codes) + + @classmethod + def bell(cls) -> "Control": + """Ring the 'bell'.""" + return cls(ControlType.BELL) + + @classmethod + def home(cls) -> "Control": + """Move cursor to 'home' position.""" + return cls(ControlType.HOME) + + @classmethod + def move(cls, x: int = 0, y: int = 0) -> "Control": + """Move cursor relative to current position. + + Args: + x (int): X offset. + y (int): Y offset. + + Returns: + ~Control: Control object. + + """ + + def get_codes() -> Iterable[ControlCode]: + control = ControlType + if x: + yield ( + control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, + abs(x), + ) + if y: + yield ( + control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, + abs(y), + ) + + control = cls(*get_codes()) + return control + + @classmethod + def move_to_column(cls, x: int, y: int = 0) -> "Control": + """Move to the given column, optionally add offset to row. + + Returns: + x (int): absolute x (column) + y (int): optional y offset (row) + + Returns: + ~Control: Control object. + """ + + return ( + cls( + (ControlType.CURSOR_MOVE_TO_COLUMN, x), + ( + ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, + abs(y), + ), + ) + if y + else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) + ) + + @classmethod + def move_to(cls, x: int, y: int) -> "Control": + """Move cursor to absolute position. + + Args: + x (int): x offset (column) + y (int): y offset (row) + + Returns: + ~Control: Control object. + """ + return cls((ControlType.CURSOR_MOVE_TO, x, y)) + + @classmethod + def clear(cls) -> "Control": + """Clear the screen.""" + return cls(ControlType.CLEAR) + + @classmethod + def show_cursor(cls, show: bool) -> "Control": + """Show or hide the cursor.""" + return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) + + @classmethod + def alt_screen(cls, enable: bool) -> "Control": + """Enable or disable alt screen.""" + if enable: + return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) + else: + return cls(ControlType.DISABLE_ALT_SCREEN) + + @classmethod + def title(cls, title: str) -> "Control": + """Set the terminal window title + + Args: + title (str): The new terminal window title + """ + return cls((ControlType.SET_WINDOW_TITLE, title)) + + def __str__(self) -> str: + return self.segment.text + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.segment.text: + yield self.segment + + +def strip_control_codes( + text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE +) -> str: + """Remove control codes from text. + + Args: + text (str): A string possibly contain control codes. + + Returns: + str: String with control codes removed. + """ + return text.translate(_translate_table) + + +def escape_control_codes( + text: str, + _translate_table: Dict[int, str] = CONTROL_ESCAPE, +) -> str: + """Replace control codes with their "escaped" equivalent in the given text. + (e.g. "\b" becomes "\\b") + + Args: + text (str): A string possibly containing control codes. + + Returns: + str: String with control codes replaced with their escaped version. + """ + return text.translate(_translate_table) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + console = Console() + console.print("Look at the title of your terminal window ^") + # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) + for i in range(10): + console.set_window_title("🚀 Loading" + "." * i) + time.sleep(0.5) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py b/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 0000000..dca3719 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py @@ -0,0 +1,190 @@ +from typing import Dict + +from .style import Style + +DEFAULT_STYLES: Dict[str, Style] = { + "none": Style.null(), + "reset": Style( + color="default", + bgcolor="default", + dim=False, + bold=False, + italic=False, + underline=False, + blink=False, + blink2=False, + reverse=False, + conceal=False, + strike=False, + ), + "dim": Style(dim=True), + "bright": Style(dim=False), + "bold": Style(bold=True), + "strong": Style(bold=True), + "code": Style(reverse=True, bold=True), + "italic": Style(italic=True), + "emphasize": Style(italic=True), + "underline": Style(underline=True), + "blink": Style(blink=True), + "blink2": Style(blink2=True), + "reverse": Style(reverse=True), + "strike": Style(strike=True), + "black": Style(color="black"), + "red": Style(color="red"), + "green": Style(color="green"), + "yellow": Style(color="yellow"), + "magenta": Style(color="magenta"), + "cyan": Style(color="cyan"), + "white": Style(color="white"), + "inspect.attr": Style(color="yellow", italic=True), + "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), + "inspect.callable": Style(bold=True, color="red"), + "inspect.async_def": Style(italic=True, color="bright_cyan"), + "inspect.def": Style(italic=True, color="bright_cyan"), + "inspect.class": Style(italic=True, color="bright_cyan"), + "inspect.error": Style(bold=True, color="red"), + "inspect.equals": Style(), + "inspect.help": Style(color="cyan"), + "inspect.doc": Style(dim=True), + "inspect.value.border": Style(color="green"), + "live.ellipsis": Style(bold=True, color="red"), + "layout.tree.row": Style(dim=False, color="red"), + "layout.tree.column": Style(dim=False, color="blue"), + "logging.keyword": Style(bold=True, color="yellow"), + "logging.level.notset": Style(dim=True), + "logging.level.debug": Style(color="green"), + "logging.level.info": Style(color="blue"), + "logging.level.warning": Style(color="red"), + "logging.level.error": Style(color="red", bold=True), + "logging.level.critical": Style(color="red", bold=True, reverse=True), + "log.level": Style.null(), + "log.time": Style(color="cyan", dim=True), + "log.message": Style.null(), + "log.path": Style(dim=True), + "repr.ellipsis": Style(color="yellow"), + "repr.indent": Style(color="green", dim=True), + "repr.error": Style(color="red", bold=True), + "repr.str": Style(color="green", italic=False, bold=False), + "repr.brace": Style(bold=True), + "repr.comma": Style(bold=True), + "repr.ipv4": Style(bold=True, color="bright_green"), + "repr.ipv6": Style(bold=True, color="bright_green"), + "repr.eui48": Style(bold=True, color="bright_green"), + "repr.eui64": Style(bold=True, color="bright_green"), + "repr.tag_start": Style(bold=True), + "repr.tag_name": Style(color="bright_magenta", bold=True), + "repr.tag_contents": Style(color="default"), + "repr.tag_end": Style(bold=True), + "repr.attrib_name": Style(color="yellow", italic=False), + "repr.attrib_equal": Style(bold=True), + "repr.attrib_value": Style(color="magenta", italic=False), + "repr.number": Style(color="cyan", bold=True, italic=False), + "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same + "repr.bool_true": Style(color="bright_green", italic=True), + "repr.bool_false": Style(color="bright_red", italic=True), + "repr.none": Style(color="magenta", italic=True), + "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), + "repr.uuid": Style(color="bright_yellow", bold=False), + "repr.call": Style(color="magenta", bold=True), + "repr.path": Style(color="magenta"), + "repr.filename": Style(color="bright_magenta"), + "rule.line": Style(color="bright_green"), + "rule.text": Style.null(), + "json.brace": Style(bold=True), + "json.bool_true": Style(color="bright_green", italic=True), + "json.bool_false": Style(color="bright_red", italic=True), + "json.null": Style(color="magenta", italic=True), + "json.number": Style(color="cyan", bold=True, italic=False), + "json.str": Style(color="green", italic=False, bold=False), + "json.key": Style(color="blue", bold=True), + "prompt": Style.null(), + "prompt.choices": Style(color="magenta", bold=True), + "prompt.default": Style(color="cyan", bold=True), + "prompt.invalid": Style(color="red"), + "prompt.invalid.choice": Style(color="red"), + "pretty": Style.null(), + "scope.border": Style(color="blue"), + "scope.key": Style(color="yellow", italic=True), + "scope.key.special": Style(color="yellow", italic=True, dim=True), + "scope.equals": Style(color="red"), + "table.header": Style(bold=True), + "table.footer": Style(bold=True), + "table.cell": Style.null(), + "table.title": Style(italic=True), + "table.caption": Style(italic=True, dim=True), + "traceback.error": Style(color="red", italic=True), + "traceback.border.syntax_error": Style(color="bright_red"), + "traceback.border": Style(color="red"), + "traceback.text": Style.null(), + "traceback.title": Style(color="red", bold=True), + "traceback.exc_type": Style(color="bright_red", bold=True), + "traceback.exc_value": Style.null(), + "traceback.offset": Style(color="bright_red", bold=True), + "bar.back": Style(color="grey23"), + "bar.complete": Style(color="rgb(249,38,114)"), + "bar.finished": Style(color="rgb(114,156,31)"), + "bar.pulse": Style(color="rgb(249,38,114)"), + "progress.description": Style.null(), + "progress.filesize": Style(color="green"), + "progress.filesize.total": Style(color="green"), + "progress.download": Style(color="green"), + "progress.elapsed": Style(color="yellow"), + "progress.percentage": Style(color="magenta"), + "progress.remaining": Style(color="cyan"), + "progress.data.speed": Style(color="red"), + "progress.spinner": Style(color="green"), + "status.spinner": Style(color="green"), + "tree": Style(), + "tree.line": Style(), + "markdown.paragraph": Style(), + "markdown.text": Style(), + "markdown.em": Style(italic=True), + "markdown.emph": Style(italic=True), # For commonmark backwards compatibility + "markdown.strong": Style(bold=True), + "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), + "markdown.code_block": Style(color="cyan", bgcolor="black"), + "markdown.block_quote": Style(color="magenta"), + "markdown.list": Style(color="cyan"), + "markdown.item": Style(), + "markdown.item.bullet": Style(color="yellow", bold=True), + "markdown.item.number": Style(color="yellow", bold=True), + "markdown.hr": Style(color="yellow"), + "markdown.h1.border": Style(), + "markdown.h1": Style(bold=True), + "markdown.h2": Style(bold=True, underline=True), + "markdown.h3": Style(bold=True), + "markdown.h4": Style(bold=True, dim=True), + "markdown.h5": Style(underline=True), + "markdown.h6": Style(italic=True), + "markdown.h7": Style(italic=True, dim=True), + "markdown.link": Style(color="bright_blue"), + "markdown.link_url": Style(color="blue", underline=True), + "markdown.s": Style(strike=True), + "iso8601.date": Style(color="blue"), + "iso8601.time": Style(color="magenta"), + "iso8601.timezone": Style(color="yellow"), +} + + +if __name__ == "__main__": # pragma: no cover + import argparse + import io + + from pip._vendor.rich.console import Console + from pip._vendor.rich.table import Table + from pip._vendor.rich.text import Text + + parser = argparse.ArgumentParser() + parser.add_argument("--html", action="store_true", help="Export as HTML table") + args = parser.parse_args() + html: bool = args.html + console = Console(record=True, width=70, file=io.StringIO()) if html else Console() + + table = Table("Name", "Styling") + + for style_name, style in DEFAULT_STYLES.items(): + table.add_row(Text(style_name, style=style), str(style)) + + console.print(table) + if html: + print(console.export_html(inline_styles=True)) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py b/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 0000000..ad36183 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py @@ -0,0 +1,37 @@ +import os +import platform + +from pip._vendor.rich import inspect +from pip._vendor.rich.console import Console, get_windows_console_features +from pip._vendor.rich.panel import Panel +from pip._vendor.rich.pretty import Pretty + + +def report() -> None: # pragma: no cover + """Print a report to the terminal with debugging information""" + console = Console() + inspect(console) + features = get_windows_console_features() + inspect(features) + + env_names = ( + "TERM", + "COLORTERM", + "CLICOLOR", + "NO_COLOR", + "TERM_PROGRAM", + "COLUMNS", + "LINES", + "JUPYTER_COLUMNS", + "JUPYTER_LINES", + "JPY_PARENT_PID", + "VSCODE_VERBOSE_LOGGING", + ) + env = {name: os.getenv(name) for name in env_names} + console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) + + console.print(f'platform="{platform.system()}"') + + +if __name__ == "__main__": # pragma: no cover + report() diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py b/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 0000000..791f046 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py @@ -0,0 +1,96 @@ +import sys +from typing import TYPE_CHECKING, Optional, Union + +from .jupyter import JupyterMixin +from .segment import Segment +from .style import Style +from ._emoji_codes import EMOJI +from ._emoji_replace import _emoji_replace + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + + +EmojiVariant = Literal["emoji", "text"] + + +class NoEmoji(Exception): + """No emoji by that name.""" + + +class Emoji(JupyterMixin): + __slots__ = ["name", "style", "_char", "variant"] + + VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} + + def __init__( + self, + name: str, + style: Union[str, Style] = "none", + variant: Optional[EmojiVariant] = None, + ) -> None: + """A single emoji character. + + Args: + name (str): Name of emoji. + style (Union[str, Style], optional): Optional style. Defaults to None. + + Raises: + NoEmoji: If the emoji doesn't exist. + """ + self.name = name + self.style = style + self.variant = variant + try: + self._char = EMOJI[name] + except KeyError: + raise NoEmoji(f"No emoji called {name!r}") + if variant is not None: + self._char += self.VARIANTS.get(variant, "") + + @classmethod + def replace(cls, text: str) -> str: + """Replace emoji markup with corresponding unicode characters. + + Args: + text (str): A string with emojis codes, e.g. "Hello :smiley:!" + + Returns: + str: A string with emoji codes replaces with actual emoji. + """ + return _emoji_replace(text) + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self._char + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield Segment(self._char, console.get_style(self.style)) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.console import Console + + console = Console(record=True) + + columns = Columns( + (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), + column_first=True, + ) + + console.print(columns) + if len(sys.argv) > 1: + console.save_html(sys.argv[1]) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/errors.py b/lib/python3.12/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 0000000..0bcbe53 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/errors.py @@ -0,0 +1,34 @@ +class ConsoleError(Exception): + """An error in console operation.""" + + +class StyleError(Exception): + """An error in styles.""" + + +class StyleSyntaxError(ConsoleError): + """Style was badly formatted.""" + + +class MissingStyle(StyleError): + """No such style.""" + + +class StyleStackError(ConsoleError): + """Style stack is invalid.""" + + +class NotRenderableError(ConsoleError): + """Object is not renderable.""" + + +class MarkupError(ConsoleError): + """Markup was badly formatted.""" + + +class LiveError(ConsoleError): + """Error related to Live display.""" + + +class NoAltScreen(ConsoleError): + """Alt screen mode was required.""" diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py b/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 0000000..4b0b0da --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py @@ -0,0 +1,57 @@ +import io +from typing import IO, TYPE_CHECKING, Any, List + +from .ansi import AnsiDecoder +from .text import Text + +if TYPE_CHECKING: + from .console import Console + + +class FileProxy(io.TextIOBase): + """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" + + def __init__(self, console: "Console", file: IO[str]) -> None: + self.__console = console + self.__file = file + self.__buffer: List[str] = [] + self.__ansi_decoder = AnsiDecoder() + + @property + def rich_proxied_file(self) -> IO[str]: + """Get proxied file.""" + return self.__file + + def __getattr__(self, name: str) -> Any: + return getattr(self.__file, name) + + def write(self, text: str) -> int: + if not isinstance(text, str): + raise TypeError(f"write() argument must be str, not {type(text).__name__}") + buffer = self.__buffer + lines: List[str] = [] + while text: + line, new_line, text = text.partition("\n") + if new_line: + lines.append("".join(buffer) + line) + buffer.clear() + else: + buffer.append(line) + break + if lines: + console = self.__console + with console: + output = Text("\n").join( + self.__ansi_decoder.decode_line(line) for line in lines + ) + console.print(output) + return len(text) + + def flush(self) -> None: + output = "".join(self.__buffer) + if output: + self.__console.print(output) + del self.__buffer[:] + + def fileno(self) -> int: + return self.__file.fileno() diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py b/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 0000000..99f118e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py @@ -0,0 +1,89 @@ +# coding: utf-8 +"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 + +The functions declared in this module should cover the different +use cases needed to generate a string representation of a file size +using several different units. Since there are many standards regarding +file size units, three different functions have been implemented. + +See Also: + * `Wikipedia: Binary prefix `_ + +""" + +__all__ = ["decimal"] + +from typing import Iterable, List, Optional, Tuple + + +def _to_str( + size: int, + suffixes: Iterable[str], + base: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + if size == 1: + return "1 byte" + elif size < base: + return "{:,} bytes".format(size) + + for i, suffix in enumerate(suffixes, 2): # noqa: B007 + unit = base**i + if size < unit: + break + return "{:,.{precision}f}{separator}{}".format( + (base * size / unit), + suffix, + precision=precision, + separator=separator, + ) + + +def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: + """Pick a suffix and base for the given size.""" + for i, suffix in enumerate(suffixes): + unit = base**i + if size < unit * base: + break + return unit, suffix + + +def decimal( + size: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + """Convert a filesize in to a string (powers of 1000, SI prefixes). + + In this convention, ``1000 B = 1 kB``. + + This is typically the format used to advertise the storage + capacity of USB flash drives and the like (*256 MB* meaning + actually a storage capacity of more than *256 000 000 B*), + or used by **Mac OS X** since v10.6 to report file sizes. + + Arguments: + int (size): A file size. + int (precision): The number of decimal places to include (default = 1). + str (separator): The string to separate the value from the units (default = " "). + + Returns: + `str`: A string containing a abbreviated file size and units. + + Example: + >>> filesize.decimal(30000) + '30.0 kB' + >>> filesize.decimal(30000, precision=2, separator="") + '30.00kB' + + """ + return _to_str( + size, + ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), + 1000, + precision=precision, + separator=separator, + ) diff --git a/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py b/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 0000000..27714b2 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py @@ -0,0 +1,232 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Union + +from .text import Span, Text + + +def _combine_regex(*regexes: str) -> str: + """Combine a number of regexes in to a single regex. + + Returns: + str: New regex with all regexes ORed together. + """ + return "|".join(regexes) + + +class Highlighter(ABC): + """Abstract base class for highlighters.""" + + def __call__(self, text: Union[str, Text]) -> Text: + """Highlight a str or Text instance. + + Args: + text (Union[str, ~Text]): Text to highlight. + + Raises: + TypeError: If not called with text or str. + + Returns: + Text: A test instance with highlighting applied. + """ + if isinstance(text, str): + highlight_text = Text(text) + elif isinstance(text, Text): + highlight_text = text.copy() + else: + raise TypeError(f"str or Text instance required, not {text!r}") + self.highlight(highlight_text) + return highlight_text + + @abstractmethod + def highlight(self, text: Text) -> None: + """Apply highlighting in place to text. + + Args: + text (~Text): A text object highlight. + """ + + +class NullHighlighter(Highlighter): + """A highlighter object that doesn't highlight. + + May be used to disable highlighting entirely. + + """ + + def highlight(self, text: Text) -> None: + """Nothing to do""" + + +class RegexHighlighter(Highlighter): + """Applies highlighting from a list of regular expressions.""" + + highlights: List[str] = [] + base_style: str = "" + + def highlight(self, text: Text) -> None: + """Highlight :class:`rich.text.Text` using regular expressions. + + Args: + text (~Text): Text to highlighted. + + """ + + highlight_regex = text.highlight_regex + for re_highlight in self.highlights: + highlight_regex(re_highlight, style_prefix=self.base_style) + + +class ReprHighlighter(RegexHighlighter): + """Highlights the text typically produced from ``__repr__`` methods.""" + + base_style = "repr." + highlights = [ + r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", + r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', + r"(?P[][{}()])", + _combine_regex( + r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", + r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", + r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", + r"(?P[\w.]*?)\(", + r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", + r"(?P\.\.\.)", + r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", + r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#~]*)", + ), + ] + + +class JSONHighlighter(RegexHighlighter): + """Highlights JSON""" + + # Captures the start and end of JSON strings, handling escaped quotes + JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", + r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", + r"(?P(? None: + super().highlight(text) + + # Additional work to handle highlighting JSON keys + plain = text.plain + append = text.spans.append + whitespace = self.JSON_WHITESPACE + for match in re.finditer(self.JSON_STR, plain): + start, end = match.span() + cursor = end + while cursor < len(plain): + char = plain[cursor] + cursor += 1 + if char == ":": + append(Span(start, end, "json.key")) + elif char in whitespace: + continue + break + + +class ISO8601Highlighter(RegexHighlighter): + """Highlights the ISO8601 date time strings. + Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html + """ + + base_style = "iso8601." + highlights = [ + # + # Dates + # + # Calendar month (e.g. 2008-08). The hyphen is required + r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", + # Calendar date w/o hyphens (e.g. 20080830) + r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", + # Ordinal date (e.g. 2008-243). The hyphen is optional + r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", + # + # Weeks + # + # Week of the year (e.g., 2008-W35). The hyphen is optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", + # Week date (e.g., 2008-W35-6). The hyphens are optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", + # + # Times + # + # Hours and minutes (e.g., 17:21). The colon is optional + r"^(?P

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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py b/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py new file mode 100644 index 0000000..0a7072e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py @@ -0,0 +1,668 @@ +""" + pygments.cmdline + ~~~~~~~~~~~~~~~~ + + Command line interface. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import os +import sys +import shutil +import argparse +from textwrap import dedent + +from pip._vendor.pygments import __version__, highlight +from pip._vendor.pygments.util import ClassNotFound, OptionError, docstring_headline, \ + guess_decode, guess_decode_from_terminal, terminal_encoding, \ + UnclosingTextIOWrapper +from pip._vendor.pygments.lexers import get_all_lexers, get_lexer_by_name, guess_lexer, \ + load_lexer_from_file, get_lexer_for_filename, find_lexer_class_for_filename +from pip._vendor.pygments.lexers.special import TextLexer +from pip._vendor.pygments.formatters.latex import LatexEmbeddedLexer, LatexFormatter +from pip._vendor.pygments.formatters import get_all_formatters, get_formatter_by_name, \ + load_formatter_from_file, get_formatter_for_filename, find_formatter_class +from pip._vendor.pygments.formatters.terminal import TerminalFormatter +from pip._vendor.pygments.formatters.terminal256 import Terminal256Formatter, TerminalTrueColorFormatter +from pip._vendor.pygments.filters import get_all_filters, find_filter_class +from pip._vendor.pygments.styles import get_all_styles, get_style_by_name + + +def _parse_options(o_strs): + opts = {} + if not o_strs: + return opts + for o_str in o_strs: + if not o_str.strip(): + continue + o_args = o_str.split(',') + for o_arg in o_args: + o_arg = o_arg.strip() + try: + o_key, o_val = o_arg.split('=', 1) + o_key = o_key.strip() + o_val = o_val.strip() + except ValueError: + opts[o_arg] = True + else: + opts[o_key] = o_val + return opts + + +def _parse_filters(f_strs): + filters = [] + if not f_strs: + return filters + for f_str in f_strs: + if ':' in f_str: + fname, fopts = f_str.split(':', 1) + filters.append((fname, _parse_options([fopts]))) + else: + filters.append((f_str, {})) + return filters + + +def _print_help(what, name): + try: + if what == 'lexer': + cls = get_lexer_by_name(name) + print(f"Help on the {cls.name} lexer:") + print(dedent(cls.__doc__)) + elif what == 'formatter': + cls = find_formatter_class(name) + print(f"Help on the {cls.name} formatter:") + print(dedent(cls.__doc__)) + elif what == 'filter': + cls = find_filter_class(name) + print(f"Help on the {name} filter:") + print(dedent(cls.__doc__)) + return 0 + except (AttributeError, ValueError): + print(f"{what} not found!", file=sys.stderr) + return 1 + + +def _print_list(what): + if what == 'lexer': + print() + print("Lexers:") + print("~~~~~~~") + + info = [] + for fullname, names, exts, _ in get_all_lexers(): + tup = (', '.join(names)+':', fullname, + exts and '(filenames ' + ', '.join(exts) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'formatter': + print() + print("Formatters:") + print("~~~~~~~~~~~") + + info = [] + for cls in get_all_formatters(): + doc = docstring_headline(cls) + tup = (', '.join(cls.aliases) + ':', doc, cls.filenames and + '(filenames ' + ', '.join(cls.filenames) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'filter': + print() + print("Filters:") + print("~~~~~~~~") + + for name in get_all_filters(): + cls = find_filter_class(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + elif what == 'style': + print() + print("Styles:") + print("~~~~~~~") + + for name in get_all_styles(): + cls = get_style_by_name(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + +def _print_list_as_json(requested_items): + import json + result = {} + if 'lexer' in requested_items: + info = {} + for fullname, names, filenames, mimetypes in get_all_lexers(): + info[fullname] = { + 'aliases': names, + 'filenames': filenames, + 'mimetypes': mimetypes + } + result['lexers'] = info + + if 'formatter' in requested_items: + info = {} + for cls in get_all_formatters(): + doc = docstring_headline(cls) + info[cls.name] = { + 'aliases': cls.aliases, + 'filenames': cls.filenames, + 'doc': doc + } + result['formatters'] = info + + if 'filter' in requested_items: + info = {} + for name in get_all_filters(): + cls = find_filter_class(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['filters'] = info + + if 'style' in requested_items: + info = {} + for name in get_all_styles(): + cls = get_style_by_name(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['styles'] = info + + json.dump(result, sys.stdout) + +def main_inner(parser, argns): + if argns.help: + parser.print_help() + return 0 + + if argns.V: + print(f'Pygments version {__version__}, (c) 2006-2024 by Georg Brandl, Matthäus ' + 'Chajdas and contributors.') + return 0 + + def is_only_option(opt): + return not any(v for (k, v) in vars(argns).items() if k != opt) + + # handle ``pygmentize -L`` + if argns.L is not None: + arg_set = set() + for k, v in vars(argns).items(): + if v: + arg_set.add(k) + + arg_set.discard('L') + arg_set.discard('json') + + if arg_set: + parser.print_help(sys.stderr) + return 2 + + # print version + if not argns.json: + main(['', '-V']) + allowed_types = {'lexer', 'formatter', 'filter', 'style'} + largs = [arg.rstrip('s') for arg in argns.L] + if any(arg not in allowed_types for arg in largs): + parser.print_help(sys.stderr) + return 0 + if not largs: + largs = allowed_types + if not argns.json: + for arg in largs: + _print_list(arg) + else: + _print_list_as_json(largs) + return 0 + + # handle ``pygmentize -H`` + if argns.H: + if not is_only_option('H'): + parser.print_help(sys.stderr) + return 2 + what, name = argns.H + if what not in ('lexer', 'formatter', 'filter'): + parser.print_help(sys.stderr) + return 2 + return _print_help(what, name) + + # parse -O options + parsed_opts = _parse_options(argns.O or []) + + # parse -P options + for p_opt in argns.P or []: + try: + name, value = p_opt.split('=', 1) + except ValueError: + parsed_opts[p_opt] = True + else: + parsed_opts[name] = value + + # encodings + inencoding = parsed_opts.get('inencoding', parsed_opts.get('encoding')) + outencoding = parsed_opts.get('outencoding', parsed_opts.get('encoding')) + + # handle ``pygmentize -N`` + if argns.N: + lexer = find_lexer_class_for_filename(argns.N) + if lexer is None: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -C`` + if argns.C: + inp = sys.stdin.buffer.read() + try: + lexer = guess_lexer(inp, inencoding=inencoding) + except ClassNotFound: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -S`` + S_opt = argns.S + a_opt = argns.a + if S_opt is not None: + f_opt = argns.f + if not f_opt: + parser.print_help(sys.stderr) + return 2 + if argns.l or argns.INPUTFILE: + parser.print_help(sys.stderr) + return 2 + + try: + parsed_opts['style'] = S_opt + fmter = get_formatter_by_name(f_opt, **parsed_opts) + except ClassNotFound as err: + print(err, file=sys.stderr) + return 1 + + print(fmter.get_style_defs(a_opt or '')) + return 0 + + # if no -S is given, -a is not allowed + if argns.a is not None: + parser.print_help(sys.stderr) + return 2 + + # parse -F options + F_opts = _parse_filters(argns.F or []) + + # -x: allow custom (eXternal) lexers and formatters + allow_custom_lexer_formatter = bool(argns.x) + + # select lexer + lexer = None + + # given by name? + lexername = argns.l + if lexername: + # custom lexer, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in lexername: + try: + filename = None + name = None + if ':' in lexername: + filename, name = lexername.rsplit(':', 1) + + if '.py' in name: + # This can happen on Windows: If the lexername is + # C:\lexer.py -- return to normal load path in that case + name = None + + if filename and name: + lexer = load_lexer_from_file(filename, name, + **parsed_opts) + else: + lexer = load_lexer_from_file(lexername, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + lexer = get_lexer_by_name(lexername, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + # read input code + code = None + + if argns.INPUTFILE: + if argns.s: + print('Error: -s option not usable when input file specified', + file=sys.stderr) + return 2 + + infn = argns.INPUTFILE + try: + with open(infn, 'rb') as infp: + code = infp.read() + except Exception as err: + print('Error: cannot read infile:', err, file=sys.stderr) + return 1 + if not inencoding: + code, inencoding = guess_decode(code) + + # do we have to guess the lexer? + if not lexer: + try: + lexer = get_lexer_for_filename(infn, code, **parsed_opts) + except ClassNotFound as err: + if argns.g: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + else: + print('Error:', err, file=sys.stderr) + return 1 + except OptionError as err: + print('Error:', err, file=sys.stderr) + return 1 + + elif not argns.s: # treat stdin as full file (-s support is later) + # read code from terminal, always in binary mode since we want to + # decode ourselves and be tolerant with it + code = sys.stdin.buffer.read() # use .buffer to get a binary stream + if not inencoding: + code, inencoding = guess_decode_from_terminal(code, sys.stdin) + # else the lexer will do the decoding + if not lexer: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + + else: # -s option needs a lexer with -l + if not lexer: + print('Error: when using -s a lexer has to be selected with -l', + file=sys.stderr) + return 2 + + # process filters + for fname, fopts in F_opts: + try: + lexer.add_filter(fname, **fopts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + + # select formatter + outfn = argns.o + fmter = argns.f + if fmter: + # custom formatter, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in fmter: + try: + filename = None + name = None + if ':' in fmter: + # Same logic as above for custom lexer + filename, name = fmter.rsplit(':', 1) + + if '.py' in name: + name = None + + if filename and name: + fmter = load_formatter_from_file(filename, name, + **parsed_opts) + else: + fmter = load_formatter_from_file(fmter, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + fmter = get_formatter_by_name(fmter, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + if outfn: + if not fmter: + try: + fmter = get_formatter_for_filename(outfn, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + try: + outfile = open(outfn, 'wb') + except Exception as err: + print('Error: cannot open outfile:', err, file=sys.stderr) + return 1 + else: + if not fmter: + if os.environ.get('COLORTERM','') in ('truecolor', '24bit'): + fmter = TerminalTrueColorFormatter(**parsed_opts) + elif '256' in os.environ.get('TERM', ''): + fmter = Terminal256Formatter(**parsed_opts) + else: + fmter = TerminalFormatter(**parsed_opts) + outfile = sys.stdout.buffer + + # determine output encoding if not explicitly selected + if not outencoding: + if outfn: + # output file? use lexer encoding for now (can still be None) + fmter.encoding = inencoding + else: + # else use terminal encoding + fmter.encoding = terminal_encoding(sys.stdout) + + # provide coloring under Windows, if possible + if not outfn and sys.platform in ('win32', 'cygwin') and \ + fmter.name in ('Terminal', 'Terminal256'): # pragma: no cover + # unfortunately colorama doesn't support binary streams on Py3 + outfile = UnclosingTextIOWrapper(outfile, encoding=fmter.encoding) + fmter.encoding = None + try: + import colorama.initialise + except ImportError: + pass + else: + outfile = colorama.initialise.wrap_stream( + outfile, convert=None, strip=None, autoreset=False, wrap=True) + + # When using the LaTeX formatter and the option `escapeinside` is + # specified, we need a special lexer which collects escaped text + # before running the chosen language lexer. + escapeinside = parsed_opts.get('escapeinside', '') + if len(escapeinside) == 2 and isinstance(fmter, LatexFormatter): + left = escapeinside[0] + right = escapeinside[1] + lexer = LatexEmbeddedLexer(left, right, lexer) + + # ... and do it! + if not argns.s: + # process whole input as per normal... + try: + highlight(code, lexer, fmter, outfile) + finally: + if outfn: + outfile.close() + return 0 + else: + # line by line processing of stdin (eg: for 'tail -f')... + try: + while 1: + line = sys.stdin.buffer.readline() + if not line: + break + if not inencoding: + line = guess_decode_from_terminal(line, sys.stdin)[0] + highlight(line, lexer, fmter, outfile) + if hasattr(outfile, 'flush'): + outfile.flush() + return 0 + except KeyboardInterrupt: # pragma: no cover + return 0 + finally: + if outfn: + outfile.close() + + +class HelpFormatter(argparse.HelpFormatter): + def __init__(self, prog, indent_increment=2, max_help_position=16, width=None): + if width is None: + try: + width = shutil.get_terminal_size().columns - 2 + except Exception: + pass + argparse.HelpFormatter.__init__(self, prog, indent_increment, + max_help_position, width) + + +def main(args=sys.argv): + """ + Main command line entry point. + """ + desc = "Highlight an input file and write the result to an output file." + parser = argparse.ArgumentParser(description=desc, add_help=False, + formatter_class=HelpFormatter) + + operation = parser.add_argument_group('Main operation') + lexersel = operation.add_mutually_exclusive_group() + lexersel.add_argument( + '-l', metavar='LEXER', + help='Specify the lexer to use. (Query names with -L.) If not ' + 'given and -g is not present, the lexer is guessed from the filename.') + lexersel.add_argument( + '-g', action='store_true', + help='Guess the lexer from the file contents, or pass through ' + 'as plain text if nothing can be guessed.') + operation.add_argument( + '-F', metavar='FILTER[:options]', action='append', + help='Add a filter to the token stream. (Query names with -L.) ' + 'Filter options are given after a colon if necessary.') + operation.add_argument( + '-f', metavar='FORMATTER', + help='Specify the formatter to use. (Query names with -L.) ' + 'If not given, the formatter is guessed from the output filename, ' + 'and defaults to the terminal formatter if the output is to the ' + 'terminal or an unknown file extension.') + operation.add_argument( + '-O', metavar='OPTION=value[,OPTION=value,...]', action='append', + help='Give options to the lexer and formatter as a comma-separated ' + 'list of key-value pairs. ' + 'Example: `-O bg=light,python=cool`.') + operation.add_argument( + '-P', metavar='OPTION=value', action='append', + help='Give a single option to the lexer and formatter - with this ' + 'you can pass options whose value contains commas and equal signs. ' + 'Example: `-P "heading=Pygments, the Python highlighter"`.') + operation.add_argument( + '-o', metavar='OUTPUTFILE', + help='Where to write the output. Defaults to standard output.') + + operation.add_argument( + 'INPUTFILE', nargs='?', + help='Where to read the input. Defaults to standard input.') + + flags = parser.add_argument_group('Operation flags') + flags.add_argument( + '-v', action='store_true', + help='Print a detailed traceback on unhandled exceptions, which ' + 'is useful for debugging and bug reports.') + flags.add_argument( + '-s', action='store_true', + help='Process lines one at a time until EOF, rather than waiting to ' + 'process the entire file. This only works for stdin, only for lexers ' + 'with no line-spanning constructs, and is intended for streaming ' + 'input such as you get from `tail -f`. ' + 'Example usage: `tail -f sql.log | pygmentize -s -l sql`.') + flags.add_argument( + '-x', action='store_true', + help='Allow custom lexers and formatters to be loaded from a .py file ' + 'relative to the current working directory. For example, ' + '`-l ./customlexer.py -x`. By default, this option expects a file ' + 'with a class named CustomLexer or CustomFormatter; you can also ' + 'specify your own class name with a colon (`-l ./lexer.py:MyLexer`). ' + 'Users should be very careful not to use this option with untrusted ' + 'files, because it will import and run them.') + flags.add_argument('--json', help='Output as JSON. This can ' + 'be only used in conjunction with -L.', + default=False, + action='store_true') + + special_modes_group = parser.add_argument_group( + 'Special modes - do not do any highlighting') + special_modes = special_modes_group.add_mutually_exclusive_group() + special_modes.add_argument( + '-S', metavar='STYLE -f formatter', + help='Print style definitions for STYLE for a formatter ' + 'given with -f. The argument given by -a is formatter ' + 'dependent.') + special_modes.add_argument( + '-L', nargs='*', metavar='WHAT', + help='List lexers, formatters, styles or filters -- ' + 'give additional arguments for the thing(s) you want to list ' + '(e.g. "styles"), or omit them to list everything.') + special_modes.add_argument( + '-N', metavar='FILENAME', + help='Guess and print out a lexer name based solely on the given ' + 'filename. Does not take input or highlight anything. If no specific ' + 'lexer can be determined, "text" is printed.') + special_modes.add_argument( + '-C', action='store_true', + help='Like -N, but print out a lexer name based solely on ' + 'a given content from standard input.') + special_modes.add_argument( + '-H', action='store', nargs=2, metavar=('NAME', 'TYPE'), + help='Print detailed help for the object of type , ' + 'where is one of "lexer", "formatter" or "filter".') + special_modes.add_argument( + '-V', action='store_true', + help='Print the package version.') + special_modes.add_argument( + '-h', '--help', action='store_true', + help='Print this help.') + special_modes_group.add_argument( + '-a', metavar='ARG', + help='Formatter-specific additional argument for the -S (print ' + 'style sheet) mode.') + + argns = parser.parse_args(args[1:]) + + try: + return main_inner(parser, argns) + except BrokenPipeError: + # someone closed our stdout, e.g. by quitting a pager. + return 0 + except Exception: + if argns.v: + print(file=sys.stderr) + print('*' * 65, file=sys.stderr) + print('An unhandled exception occurred while highlighting.', + file=sys.stderr) + print('Please report the whole traceback to the issue tracker at', + file=sys.stderr) + print('.', + file=sys.stderr) + print('*' * 65, file=sys.stderr) + print(file=sys.stderr) + raise + import traceback + info = traceback.format_exception(*sys.exc_info()) + msg = info[-1].strip() + if len(info) >= 3: + # extract relevant file and position info + msg += '\n (f{})'.format(info[-2].split('\n')[0].strip()[1:]) + print(file=sys.stderr) + print('*** Error while highlighting:', file=sys.stderr) + print(msg, file=sys.stderr) + print('*** If this is a bug you want to report, please rerun with -v.', + file=sys.stderr) + return 1 diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/console.py b/lib/python3.12/site-packages/pip/_vendor/pygments/console.py new file mode 100644 index 0000000..4c1a062 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/console.py @@ -0,0 +1,70 @@ +""" + pygments.console + ~~~~~~~~~~~~~~~~ + + Format colored console output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +esc = "\x1b[" + +codes = {} +codes[""] = "" +codes["reset"] = esc + "39;49;00m" + +codes["bold"] = esc + "01m" +codes["faint"] = esc + "02m" +codes["standout"] = esc + "03m" +codes["underline"] = esc + "04m" +codes["blink"] = esc + "05m" +codes["overline"] = esc + "06m" + +dark_colors = ["black", "red", "green", "yellow", "blue", + "magenta", "cyan", "gray"] +light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue", + "brightmagenta", "brightcyan", "white"] + +x = 30 +for dark, light in zip(dark_colors, light_colors): + codes[dark] = esc + "%im" % x + codes[light] = esc + "%im" % (60 + x) + x += 1 + +del dark, light, x + +codes["white"] = codes["bold"] + + +def reset_color(): + return codes["reset"] + + +def colorize(color_key, text): + return codes[color_key] + text + codes["reset"] + + +def ansiformat(attr, text): + """ + Format ``text`` with a color and/or some attributes:: + + color normal color + *color* bold color + _color_ underlined color + +color+ blinking color + """ + result = [] + if attr[:1] == attr[-1:] == '+': + result.append(codes['blink']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '*': + result.append(codes['bold']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '_': + result.append(codes['underline']) + attr = attr[1:-1] + result.append(codes[attr]) + result.append(text) + result.append(codes['reset']) + return ''.join(result) diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py b/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py new file mode 100644 index 0000000..aa6f760 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py @@ -0,0 +1,70 @@ +""" + pygments.filter + ~~~~~~~~~~~~~~~ + + Module that implements the default filter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +def apply_filters(stream, filters, lexer=None): + """ + Use this method to apply an iterable of filters to + a stream. If lexer is given it's forwarded to the + filter, otherwise the filter receives `None`. + """ + def _apply(filter_, stream): + yield from filter_.filter(lexer, stream) + for filter_ in filters: + stream = _apply(filter_, stream) + return stream + + +def simplefilter(f): + """ + Decorator that converts a function into a filter:: + + @simplefilter + def lowercase(self, lexer, stream, options): + for ttype, value in stream: + yield ttype, value.lower() + """ + return type(f.__name__, (FunctionFilter,), { + '__module__': getattr(f, '__module__'), + '__doc__': f.__doc__, + 'function': f, + }) + + +class Filter: + """ + Default filter. Subclass this class or use the `simplefilter` + decorator to create own filters. + """ + + def __init__(self, **options): + self.options = options + + def filter(self, lexer, stream): + raise NotImplementedError() + + +class FunctionFilter(Filter): + """ + Abstract class used by `simplefilter` to create simple + function filters on the fly. The `simplefilter` decorator + automatically creates subclasses of this class for + functions passed to it. + """ + function = None + + def __init__(self, **options): + if not hasattr(self, 'function'): + raise TypeError(f'{self.__class__.__name__!r} used without bound function') + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + # pylint: disable=not-callable + yield from self.function(lexer, stream, self.options) diff --git a/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py b/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py new file mode 100644 index 0000000..9255ca2 --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py @@ -0,0 +1,940 @@ +""" + pygments.filters + ~~~~~~~~~~~~~~~~ + + Module containing filter lookup functions and default + filters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re + +from pip._vendor.pygments.token import String, Comment, Keyword, Name, Error, Whitespace, \ + string_to_tokentype +from pip._vendor.pygments.filter import Filter +from pip._vendor.pygments.util import get_list_opt, get_int_opt, get_bool_opt, \ + get_choice_opt, ClassNotFound, OptionError +from pip._vendor.pygments.plugin import find_plugin_filters + + +def find_filter_class(filtername): + """Lookup a filter by name. Return None if not found.""" + if filtername in FILTERS: + return FILTERS[filtername] + for name, cls in find_plugin_filters(): + if name == filtername: + return cls + return None + + +def get_filter_by_name(filtername, **options): + """Return an instantiated filter. + + Options are passed to the filter initializer if wanted. + Raise a ClassNotFound if not found. + """ + cls = find_filter_class(filtername) + if cls: + return cls(**options) + else: + raise ClassNotFound(f'filter {filtername!r} not found') + + +def get_all_filters(): + """Return a generator of all filter names.""" + yield from FILTERS + for name, _ in find_plugin_filters(): + yield name + + +def _replace_special(ttype, value, regex, specialttype, + replacefunc=lambda x: x): + last = 0 + for match in regex.finditer(value): + start, end = match.start(), match.end() + if start != last: + yield ttype, value[last:start] + yield specialttype, replacefunc(value[start:end]) + last = end + if last != len(value): + yield ttype, value[last:] + + +class CodeTagFilter(Filter): + """Highlight special code tags in comments and docstrings. + + Options accepted: + + `codetags` : list of strings + A list of strings that are flagged as code tags. The default is to + highlight ``XXX``, ``TODO``, ``FIXME``, ``BUG`` and ``NOTE``. + + .. versionchanged:: 2.13 + Now recognizes ``FIXME`` by default. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + tags = get_list_opt(options, 'codetags', + ['XXX', 'TODO', 'FIXME', 'BUG', 'NOTE']) + self.tag_re = re.compile(r'\b({})\b'.format('|'.join([ + re.escape(tag) for tag in tags if tag + ]))) + + def filter(self, lexer, stream): + regex = self.tag_re + for ttype, value in stream: + if ttype in String.Doc or \ + ttype in Comment and \ + ttype not in Comment.Preproc: + yield from _replace_special(ttype, value, regex, Comment.Special) + else: + yield ttype, value + + +class SymbolFilter(Filter): + """Convert mathematical symbols such as \\ in Isabelle + or \\longrightarrow in LaTeX into Unicode characters. + + This is mostly useful for HTML or console output when you want to + approximate the source rendering you'd see in an IDE. + + Options accepted: + + `lang` : string + The symbol language. Must be one of ``'isabelle'`` or + ``'latex'``. The default is ``'isabelle'``. + """ + + latex_symbols = { + '\\alpha' : '\U000003b1', + '\\beta' : '\U000003b2', + '\\gamma' : '\U000003b3', + '\\delta' : '\U000003b4', + '\\varepsilon' : '\U000003b5', + '\\zeta' : '\U000003b6', + '\\eta' : '\U000003b7', + '\\vartheta' : '\U000003b8', + '\\iota' : '\U000003b9', + '\\kappa' : '\U000003ba', + '\\lambda' : '\U000003bb', + '\\mu' : '\U000003bc', + '\\nu' : '\U000003bd', + '\\xi' : '\U000003be', + '\\pi' : '\U000003c0', + '\\varrho' : '\U000003c1', + '\\sigma' : '\U000003c3', + '\\tau' : '\U000003c4', + '\\upsilon' : '\U000003c5', + '\\varphi' : '\U000003c6', + '\\chi' : '\U000003c7', + '\\psi' : '\U000003c8', + '\\omega' : '\U000003c9', + '\\Gamma' : '\U00000393', + '\\Delta' : '\U00000394', + '\\Theta' : '\U00000398', + '\\Lambda' : '\U0000039b', + '\\Xi' : '\U0000039e', + '\\Pi' : '\U000003a0', + '\\Sigma' : '\U000003a3', + '\\Upsilon' : '\U000003a5', + '\\Phi' : '\U000003a6', + '\\Psi' : '\U000003a8', + '\\Omega' : '\U000003a9', + '\\leftarrow' : '\U00002190', + '\\longleftarrow' : '\U000027f5', + '\\rightarrow' : '\U00002192', + '\\longrightarrow' : '\U000027f6', + '\\Leftarrow' : '\U000021d0', + '\\Longleftarrow' : '\U000027f8', + '\\Rightarrow' : '\U000021d2', + '\\Longrightarrow' : '\U000027f9', + '\\leftrightarrow' : '\U00002194', + '\\longleftrightarrow' : '\U000027f7', + '\\Leftrightarrow' : '\U000021d4', + '\\Longleftrightarrow' : '\U000027fa', + '\\mapsto' : '\U000021a6', + '\\longmapsto' : '\U000027fc', + '\\relbar' : '\U00002500', + '\\Relbar' : '\U00002550', + '\\hookleftarrow' : '\U000021a9', + '\\hookrightarrow' : '\U000021aa', + '\\leftharpoondown' : '\U000021bd', + '\\rightharpoondown' : '\U000021c1', + '\\leftharpoonup' : '\U000021bc', + '\\rightharpoonup' : '\U000021c0', + '\\rightleftharpoons' : '\U000021cc', + '\\leadsto' : '\U0000219d', + '\\downharpoonleft' : '\U000021c3', + '\\downharpoonright' : '\U000021c2', + '\\upharpoonleft' : '\U000021bf', + '\\upharpoonright' : '\U000021be', + '\\restriction' : '\U000021be', + '\\uparrow' : '\U00002191', + '\\Uparrow' : '\U000021d1', + '\\downarrow' : '\U00002193', + '\\Downarrow' : '\U000021d3', + '\\updownarrow' : '\U00002195', + '\\Updownarrow' : '\U000021d5', + '\\langle' : '\U000027e8', + '\\rangle' : '\U000027e9', + '\\lceil' : '\U00002308', + '\\rceil' : '\U00002309', + '\\lfloor' : '\U0000230a', + '\\rfloor' : '\U0000230b', + '\\flqq' : '\U000000ab', + '\\frqq' : '\U000000bb', + '\\bot' : '\U000022a5', + '\\top' : '\U000022a4', + '\\wedge' : '\U00002227', + '\\bigwedge' : '\U000022c0', + '\\vee' : '\U00002228', + '\\bigvee' : '\U000022c1', + '\\forall' : '\U00002200', + '\\exists' : '\U00002203', + '\\nexists' : '\U00002204', + '\\neg' : '\U000000ac', + '\\Box' : '\U000025a1', + '\\Diamond' : '\U000025c7', + '\\vdash' : '\U000022a2', + '\\models' : '\U000022a8', + '\\dashv' : '\U000022a3', + '\\surd' : '\U0000221a', + '\\le' : '\U00002264', + '\\ge' : '\U00002265', + '\\ll' : '\U0000226a', + '\\gg' : '\U0000226b', + '\\lesssim' : '\U00002272', + '\\gtrsim' : '\U00002273', + '\\lessapprox' : '\U00002a85', + '\\gtrapprox' : '\U00002a86', + '\\in' : '\U00002208', + '\\notin' : '\U00002209', + '\\subset' : '\U00002282', + '\\supset' : '\U00002283', + '\\subseteq' : '\U00002286', + '\\supseteq' : '\U00002287', + '\\sqsubset' : '\U0000228f', + '\\sqsupset' : '\U00002290', + '\\sqsubseteq' : '\U00002291', + '\\sqsupseteq' : '\U00002292', + '\\cap' : '\U00002229', + '\\bigcap' : '\U000022c2', + '\\cup' : '\U0000222a', + '\\bigcup' : '\U000022c3', + '\\sqcup' : '\U00002294', + '\\bigsqcup' : '\U00002a06', + '\\sqcap' : '\U00002293', + '\\Bigsqcap' : '\U00002a05', + '\\setminus' : '\U00002216', + '\\propto' : '\U0000221d', + '\\uplus' : '\U0000228e', + '\\bigplus' : '\U00002a04', + '\\sim' : '\U0000223c', + '\\doteq' : '\U00002250', + '\\simeq' : '\U00002243', + '\\approx' : '\U00002248', + '\\asymp' : '\U0000224d', + '\\cong' : '\U00002245', + '\\equiv' : '\U00002261', + '\\Join' : '\U000022c8', + '\\bowtie' : '\U00002a1d', + '\\prec' : '\U0000227a', + '\\succ' : '\U0000227b', + '\\preceq' : '\U0000227c', + '\\succeq' : '\U0000227d', + '\\parallel' : '\U00002225', + '\\mid' : '\U000000a6', + '\\pm' : '\U000000b1', + '\\mp' : '\U00002213', + '\\times' : '\U000000d7', + '\\div' : '\U000000f7', + '\\cdot' : '\U000022c5', + '\\star' : '\U000022c6', + '\\circ' : '\U00002218', + '\\dagger' : '\U00002020', + '\\ddagger' : '\U00002021', + '\\lhd' : '\U000022b2', + '\\rhd' : '\U000022b3', + '\\unlhd' : '\U000022b4', + '\\unrhd' : '\U000022b5', + '\\triangleleft' : '\U000025c3', + '\\triangleright' : '\U000025b9', + '\\triangle' : '\U000025b3', + '\\triangleq' : '\U0000225c', + '\\oplus' : '\U00002295', + '\\bigoplus' : '\U00002a01', + '\\otimes' : '\U00002297', + '\\bigotimes' : '\U00002a02', + '\\odot' : '\U00002299', + '\\bigodot' : '\U00002a00', + '\\ominus' : '\U00002296', + '\\oslash' : '\U00002298', + '\\dots' : '\U00002026', + '\\cdots' : '\U000022ef', + '\\sum' : '\U00002211', + '\\prod' : '\U0000220f', + '\\coprod' : '\U00002210', + '\\infty' : '\U0000221e', + '\\int' : '\U0000222b', + '\\oint' : '\U0000222e', + '\\clubsuit' : '\U00002663', + '\\diamondsuit' : '\U00002662', + '\\heartsuit' : '\U00002661', + '\\spadesuit' : '\U00002660', + '\\aleph' : '\U00002135', + '\\emptyset' : '\U00002205', + '\\nabla' : '\U00002207', + '\\partial' : '\U00002202', + '\\flat' : '\U0000266d', + '\\natural' : '\U0000266e', + '\\sharp' : '\U0000266f', + '\\angle' : '\U00002220', + '\\copyright' : '\U000000a9', + '\\textregistered' : '\U000000ae', + '\\textonequarter' : '\U000000bc', + '\\textonehalf' : '\U000000bd', + '\\textthreequarters' : '\U000000be', + '\\textordfeminine' : '\U000000aa', + '\\textordmasculine' : '\U000000ba', + '\\euro' : '\U000020ac', + '\\pounds' : '\U000000a3', + '\\yen' : '\U000000a5', + '\\textcent' : '\U000000a2', + '\\textcurrency' : '\U000000a4', + '\\textdegree' : '\U000000b0', + } + + isabelle_symbols = { + '\\' : '\U0001d7ec', + '\\' : '\U0001d7ed', + '\\' : '\U0001d7ee', + '\\' : '\U0001d7ef', + '\\' : '\U0001d7f0', + '\\' : '\U0001d7f1', + '\\' : '\U0001d7f2', + '\\' : '\U0001d7f3', + '\\' : '\U0001d7f4', + '\\' : '\U0001d7f5', + '\\' : '\U0001d49c', + '\\' : '\U0000212c', + '\\' : '\U0001d49e', + '\\' : '\U0001d49f', + '\\' : '\U00002130', + '\\' : '\U00002131', + '\\' : '\U0001d4a2', + '\\' : '\U0000210b', + '\\' : '\U00002110', + '\\' : '\U0001d4a5', + '\\' : '\U0001d4a6', + '\\' : '\U00002112', + '\\' : '\U00002133', + '\\' : '\U0001d4a9', + '\\' : '\U0001d4aa', + '\\

!I7S{BS4i1|@R7s@ zBh>dJ`X=v~Z#j7L7qym3O>1w@`}Ib;lHEs;SuB-d~dOAuxs6o zj(1yQZ!1o$-ceA_ip^cMNbJHAzA zF5#OchBvm%$mo|fg`L0}NG*Gu^P*QrkQ=_&+t1jl8hJX@o2ho?5x?BcbwBFM#siz|d;E%O<^m>3KE=JyzULbu z!9rpT0nW-V=64D0ba8!}-!$&ST-WlG@kRyLYJMUoQLfGWF5rHDnyWqgUbko8>-Ow> zX>TX(w@rvt?c(R7d>7ZJ`3VoUQRgmx(%%Zws`-VH(WuxbeV)7Zy&mWrRQR#2e9Q4u zyf?`&I8M$dwp{Xj8oYi-^R5+}NamrKQk`Gs_Z5C$<;T2V=N5ij`R($k&fWZAd)14b zk#V3iZ*4s*_w#0%zwaks7#?uWjt_FC`!YFG*#0)KE(g3$J??cPygRE7;bGQZ>oe#b z8!7rOI)oSNyQ{+AHTwIOBfldcb*2MX262l@&YrL3>{@f?{_UJS|D*-01nD#~1loCCNM{vKql!)eY^z7ZXSKF&3X z-^={Fk2=8buIQ`JEyNEj!CuDhs>Q6m4+0nKpKpM^yFP8>!`*lB_an6H$3EVNEh>m`j@YD1eU|hR z;wsYL8p=r?!DXQff70d%oRi1Fp}P&qM_eRdU}zWxhKG4~6Yrjb)`AlUA3CNz%2~JW zb7)NU<`(((;|lZ=dU6Z4U7y8l`u1%vCH;QzRrDFpj^1(pIC`p|*if}UOEne3Zn!zW8COJkrrg7Uc71-$!*e@A^1Twq51l0y&|xd@pWn#Yn1e?9 zQT$0~>?|;f{dw(6W$n{|TkMhet0Fh7Y2D2kE<@uS>DLAHOUCb)1Ivc76Pu(?sn4=y zIq?f9i_OsAW$(o|5V>9Zh)PIV6TUgdbH(2q9kLfu*4oOq5kwz+ls-s2(P}-`cZYhHj4t*Pua$G%o@CMJ8|n?uZrujTn^9aF&PCoVE_ zd~3$VN1)$TpYY@3;ZJ>vJY_bHcL0ZsIqqYOx`BFLz~(%UUm#;fr(6x?Ldcsu%Q#{V zYu5#jk5e{Ej3N5w;BJ9UY?8cpci9c&Yb$LE z55qgViAQH=>bf~+lRl%1befDw1UKp%e6!{&_ySfx4{f1c;it{|dam!pSh&^gZy9bs zmpXrTj<#eQy~^1T4T)o>gw zQ^x=aX2kAIO>c@C`a4V-cQvH_k+GlPZZ0w;xRZK&!JYX5&bH^=#?j((a_0U5$}Y3< zXvt50`~Y<&8?~I|HG=AsO85@zsJaoo7bcV${dGW6Ri|A#1k6kOY&d3Wo^*j%K z+`3~8<%e}gZoH6nyVAFI>IlO-Cc1-XeKv^b*#}7HIa})t^z4bH?(>b|1$&-Q`eJ^A zz9{CVh{@H!+ssqyez|${tJLSlZ4=Mh2A=iZs9{}e-uKS+vOsY}z1YpO>vipW(YO~K z4!*$0?lAf?j2;tQh~E6M#Gc{dt=O#^ELHHoGea){c4_de)>IH{tqVQe_v8x-SC`*E|Kkw@9Coh+qwGuIlIsDeI2LIk?rzb zf|36C+M#}*trtZ00xItSXR0yJyXf#9kJ0}c--#8u`4s#>VCSh_UknZGLTB}^C`-Hy zkI6SoBl!K|_wl`ieghv=+Dz6@$#z(DhRjXNcU^_wzDC{asQcH{-KFcc##=Imis0)= zKB-&yTk3bObyNIVcyrF`w!Q-;V|_m{+^1!&I8T@syAQ%1`-hXG6A1U7=lcyNF zv`xFJq&H2?E23R!u-WX9@4vT1B|Z^_uNZT&hE2`uVs1#rIZGJh;InNG?38ahrR%;` z>haTo?JtXd6j@_DDR{H}HSs47$=FHiS7m8>ZzN;xx<-6PowhSAb`N{eqjr1y!H3ji z^kl|1arH0HjNJ>}by{JTm1bncz9ebLhQKIg0`#G6T53s@v(u$NKH@qWmoD9K5qr!9 zAJjET=Jw=UG%{9Px#sq6jVCRKKhbN9pkeUHmpnx)uyfM3Sthu7u1oqO->hs!r~8f#1%@c?}}6;^t!QP zWHLAx`pH@);?gC(tZV9HF0mJXvv0b$y@LK!^6PuRTXdAU#3K*jziwna$2mpyBE$K5 z&uHQo|588ts9C>TZhb>m(&U|+UwQwOu`{6kW}#icoTMk~No+vWljQdwJ?iYEGak+2if$f|(_2fNvJB=Re+viem z*sjO1P2K4A`dDfy$P=0;BWJDYJ|+pG39+OXk>eSL^$zp7Uxzhip=08gt@E`kC*JI?u!U-Wd;j z<9uLF>*L3Ks(FvdFm2{Gz9)79-TVxEBj4kUVsjlIWdDZrSQworWAaw$wwGt*C;n0V zo*Mk>HRR>oh5S}@`p>B|dFoYb3(eOctK3`PI$*6qH}D^2 zOyKZw^HFO(Lpn4w`9`0N^W^(6W}8>9jW+Syo&+Zq$9)~$tWgo%JFy0*U+N2Gn)j{# zSUwkVd>w1(aaoTC9RKO`$WsC@~kko{2GtZo{FU$@4Vf<*#`A&>KP0UMt2C;p=Aih$K&$f;;>gB!U zlNihaSDv4cCzo}oUm2UzBrv{)419TP9xip{(97Pj@it@ZkRK*+_2P$hp}SWzZhG+x zYJhc5IuuR6XwcW{+;Zq4aZlT8>qwlNu z@rds}zcJnY4J{S#qRkB2L!XIXufN;*JLq{W{ir2f=vNCpzXA+5&ia)_Phzd5S?ZB$ zo-0_(m|!e>8vGA{+a2h;=4tAntnHO~wkY)%7#H;8D_8rd>l^5k@XE5pT*^9jQ*7pb z@=2RBXj9q>b4@3|#MnPX-aYJzkmn`b*BBppy_@*&X>S(uOr`pC?*ZC=&#<2+ZS&nQ^sDu4GF^9Ly2Lv-2ac!c zIV-nbbNcwK_;S);Y!~M>Z}Z#u8HU5sgZI2S@}1kileTi`hu9L&5$jvFw;-GH{BQR4 z2gDuZ`6ry)@3i68zm6Rh`uz6)pv#$;ciTtzI1Zm|^QyP5Oo+~vcxeTCx82se0es0C z-aQRW(em-o(CimJA(%k?cYG}TmW2zg|J~zkw>_f%nqyZczDt>gV<`z~ujZvI6A#Gq zOZM}ltbvo~NBJJDy#GNcu|uAJFl^gL>t7V#RFxIQ43!c)j8B~0PX`aO{uR0u3vSI* z*CZ;?Rbv=u3GT#iao2NvlzQCs*+@J(hjWU>mrWisiA);QHw_yh{OYt1?+>k0^)ZHV z?Cg)&uPgpyE@f80+vF=5xlXljVIWT}3Gr)Tvedbr(md+dmb3i7# zPV|NNIrH&v>nT5xc3&cp z`ZGH9Hu4A#TYjMGdOZbmPG?6a%e}-7!9jJ)zglD0nUpD}jO6d-oxrvZc=nVtABBGA z8)5Nix&1vU=EK62jqX!7hz}h7oM(bQ+x=EM{hy2*^t|I+!|BogkG(gKkNT?j|39A@ z0y7CvvI4<630&IA&_#BlUNeDK2jWIZ>vq2q%GFMidao(8mew{2xJ(+CPC=`nvbiLw z)mA`>y-J|!4aKEEOZ6@`0c$6u)gq-$T4{dI*ZF)t$s~l@yZrvUc|7v?eCB-4`abXT zKJWA1&hM?2%PAvXiLwh~=rG_x@;*?|xeZtfjuGH^6L3=7G3{&n!(veC#4K2cb)Gk?ba*0|6e z&5goOhVa40uDfpGXtJRN=n5}STR)$`<`!Jb(fp|X`|QA?*H{08M%Vv3^X5#Z{`axAUi24KsGZkS z4&Dqt^^w-GVk%s0{YiF}0M5Ga^A>mg_1V^zC%}t*@aAj4@}F%h@5{ijYmD`GJv{kW zDKDM%e1CKUvHXm!h3d@3wvN3gl3)(dQB=N#x}xkCt*kZZb^U&DF8)1hWt;Bju!FUd z6M5xS=Be9f+^l{y<#Es2A*=oo?$&8IZPi2ns^YA#j{~FN$?cU5zF^(SiG15Qy?!_M zGBvbMck*nUzVb%$G#r{ye@fp^&v47mSh+^&TW8l}%Sqj{o%F46fo$U68+|es`wQOWgF5mG3d>bLvlFYtnFNj+;J5>zVvl*3UBOSGws}u3To)=hm+! z{(Zxtxo-O0m9pP!*gC(Sy^i$xZuV8^o1*hs|`y_>t`vww$w>q zTDo$MNq2ApR73k)o%D@wT`68G7}#iF_z3)DEU0&E z;em00^tdljQJ_43b@J@ing6_#NAnOMUA8!ZSHGsbj;*a|Ahajo+f*rkp5>>UIWqZ~ zFWnI*S|geuTbB5E$M&-3Gxo|h>MVm+iXJGB^m*}()=H(tH$tQS(^{#ufd0H*bn*l^ zWbA3cH^oqe*WQqcO*3-Ff%qCH?rNv{LSB_o{ur@JgkPK|pdZNVklj_2=SuKiIRDgB zjx8MdlB@Wxa>^eB7f<9g8#;OY5S=^$oh+E~fB5--`03%N@OpCg^|zk{rv}}9PS4T% z+)FbH%swZYx5S~j~^fAM{8jJ#%_ zdq4Z!Oa7@B-RDM^)Bb$1eJ;WIIIH~1r0j~`d1v%^;>?}LgEe*gLsqa(JQMao*{k5%c0eC=Rt!AvTPc}+Cch7}-lNH8bBBF1^$=$_SyU6>Fa9>2&zBtS zFW6c#H~YFcX9Nz8Gxqp_dpNtY|K-|N$G^c(C?EFJ!}%U^^EFyYS(??xG{l_3|A{&*#=_QLmS8^#1=!NOB5K4rWF6U=!>5U_=@+9lt5rsk1+HJi{{# zJOaF50gU!whs!vh58yYYy<(>9ckzRmiY)ms=}V9+Pe-OaLw;R%e4@W()(j(4KJBv> z2_9E+&crU`-Vxuxw_l~T)9JRYGuKJ@8b>~r8{zz82mh0q%{J-JRZR=@+(-nP2w#S|rooj?VNPW0ws426&`4%9hn&Ujm=gicYm`p;a&1 zRfA33InGOOrJj&o(07B`n}^$34xYu39s1M`&wOHVsLY%At#S^`GmKncwjz=bNtYvg zE!lAk_EGFMq$dl=e#0G`#uW$>bC$lZwga_M+C9CD`==S7_WoAdjnj^UllUR_TBW(P znIey1Q0=RF8J@8!Mn2gcx%#7fyZwa`Y>DqvKEY6VJISa1>$g|0^vVZ-(Xy8YtFrhu z)DHc*+j`UD7&3FgQSgoVoxZ3{wJ)#2;O{K(w{BV6unh9&MxXQFop1T?IrBX+ZNA}! z=)d^zi_Z6WXTH6;*1T_oS8l^zM)Tbbzsos2eZDtn-mYa_!}C4dj^;bz&bQ{>o$n2$ zy;WJigj>bYg)nnj9F|-$C5ADua4+w!OJm&Z0V@JLY$_CrT&So1Yj|KhXE zx90B%dvV;(NR|+r?F#A)9`0RIf}F61wC&lz@80*nyc=ALzq)$K=h&CShf}g=TktXJ zQMoqCWl@HD7QUUn#a#b8`j_(->W@<s;qa&G);Q&pOu8 z_8{j+@~Qtd$PA=^Fk@hTw@-5J=DXkXVWpLM=z6{pyT zhzWsxzPp0hwe}Uh63|g(WLRM}ap4h97087#N8e+ah zp!2MQ%0Tw^LhLOfHRl}LhKtSd>)F?3W3K(o+t+*PgZA|^Jj390fcFKAaZiTX*Wq8> zeVsF8+P?nSMfY{?DU`hL0K5SBQgzg=|93nkzZ4It{rYNrQe?O3&_0(ZVBh~uT0aiC zWu1MWdy>#MsjR#2!?Wf_)>04qeuRGK{m{+-)3iGNS#oUJdF_3FEWM2*`^VoV(gT0= z6nxNipNt;wVN73h+xcc%I~c>}-C8^hv!@vU$s((&%Uw5b79YgAnZ~+Ve#eIXNvxa9 z%O`EC07vf+jfB~!-1(IPj0W6MF*9-6`lC_F&dE(Uxi(BuqSA|%E&EVRCxrsvYQC~-& z1CQDc?2hSv7Cq0RXL*Eo&LI0fLcIwWU*6AqfcJ-~&)o~98;ty(^q4!=;H*j8il(Ed z;kU-EbqTkEe_C$4)~VL$4sa~i>+G?gDvaJ%%_ps*=l|PeKp7i)d%A2y#1dVetzGge% zFH9ZGYj9Q&y4_itIgWVuTJt^Qlik?!%l<(2JK{@<=(8EuGOJYcb`bhhL*6iW;^j3w z&06f|nIFaGG4?XhOjBnX9YH^L-`T0rfqwx0y}Or|EXW9CW%DkZB2(wVjFEN9mWVau z)tL%mn`Bw_nc3If-i6Gm7k(+v4rXaQ!czlR#&dVDe^E2|to{}On^W-7-+ZLP~4_*yVSWca~ z4;4Dz2hWL|W|%iv!MrEHLGe;Cp4^YqQfqV9H~IV6W6CJA2_9OsLjBGJ7nXxpVR)$+ zyj0wtYWB$m?30D$>7gI$?;ddUacJ;pn1=G4{@f32J-YY}7tXEVgw~UxU(^-a>)cHs z`*J_OKS@4))0{w~+F#_HA{wPLCF@9K^IFIwy1O~8{%i1&<~y|NXMbZKPm8-|{ED3T zSY`~iW9K4$i0~!#9c-J$6J3oxDR#Yi*rx@pPgUk~e%+oKt>65EX4ZRdo+cA4|) zwH^;ZDSpR%wJeyMyNo$W^w>28Qp|c4Lls^e9i^Wf9NtpfhIKo$9QE z{O3%waM?{)KH-o!nh(@vb_QKLM_)jPSLSSR#@&fA^K) zJr0;0Q-9B;oww8FJ|~&)nb?ME{MMvvWxM@+pxo(?Yyj04*1-j|`+c+_Sx}N^F7#j| zT#-kZIGqkW3~bA%3bvIRe?dm$F?h1$*2)6n3uD9hLQ~~K?9a5bpw$=aU`=H=yqSFt z-k6w_9lMFWCAbS`8INKfY|+zlL9;Scu(Fdu2>d$CfYqfXL zewB~z*I4|VqhnSbQ_G8zJ=l@FywR7O4o`=^t6h9aKW87=KtIm9YC%R?i){?PosSk_ zFC;owjXsJ0eNPdq(&B8JK;{#)=Nr11X$O+MbL_S{#(D>KE04cDy8kSEz3STx9%DE6 zP$&AC1;BpchV}hEtEn;uEWr(UCC4sY{MH`7wNErF%>EuQur50h`UmbPhsM(0gLZK+ zdD1QOUCtGjV?X<#y=FN5+oVTMPv`lMAYh^zD?VVHJCYY>&-gvMx^|Bt~j3v-C9(X(akIHG@ zJF&gL8yI`Gw7}W;&@R7ZdJF#ek4D^nTtYv*I-i9GYF=uX7ujsdmP`2q^gF;DW!YJe z&T-3u*R0oz$7^u#mv!a(iwL&9xs#Fx#^sYt9GYcQtYjndmz$t}nw$CZAJKS>@3b?1 z$@q5AzHB%I&mGv9n>FmxwNR1&3GPDgH0`C)Thrc7;(>!h_Q7CMZD}p8blW;BIBOlI zwdJ+ptr5?*<+aZB@PJ1-?-^N{&(6dy)%YkxOuNOI$rt_p$g(1M1=?0T$$o!EMDZkF z@lR;KioPgLMyWH8ZeOOGc~8A1I`9lKwm%Xh;%RgTe}JDl1wWPYW1j^+%ctDTwZH6y zY#&4e^}7$6W5!h+Ftj?otXEF>LBEZ>`eJ+681r|JZ%w8H&!$Xg{uoy^?fw;>RO3dj zegRB%))8EdZc*@Va%i^tkUo!Nws+8NugAdEz_C%|ba-I-rKYv#_>};INF(iuPc?Ap zaoSV*=r+^$Rn3>r&T__AoTYg*?d_nwpZ!(zcFpDaoRGr0m9X$tfcUz zlXkyNyW(>eju_`qOab`oToW%qb|z-52c5QEAKanwrthf^oJa0^vPUp|IcWMK9~%dM zdz`*RIU{d!`*PhFeQ|UK4nFPx_Cx(yGt?gkSKT?k&<|&<{ltOMi1mff%82#VG;wHs zHPXk?>+5>@{J*`v;32jcSeO5AtgkWf;h-}{^h53(Omy&p@y&GcaKVTgTXOfTL5<8RG!DGYdZQ`gzq!@)F9A>2N*iAJBK#WQ%^r)v zUwQrwUOCBS^d9=%{QkYf#}PmHd-hQE?*YE)OlovUX}q5UKkbX24s3*7{J_2w+{c9; zInF*TJKqv~M2Xwz#Qdb+t&(eGSUEb=NETa`QFt@5fU2PH{fpxGXi=uLSF%vbbG{#r z%gvp+FhdKJZjlbpWa9TQH&tpcrgJNN>~eIY;$P#FDa%eQ?lM6686SPnq&k0nRj=-i-DKs zyPI=b{HkbMo}E=8TgC0z%qW)Am872~HsBgyAo){Hp|yo?b(~kKhT|m-$59d=YB9&s zvBkZZu*8*3aRwjCkDrMbcgf9f*6Ij6NaMTIZ*XfL^;T-U;x9#u;BQTA$Dwwv%v#k- zJNotu`b;2}E!E(y%8AcYzYKqn=6_qnx9!YP`ngc;4b`c24ZlA0n>(Zv;7~R2_!x2^ zjVUYK$asj&YiDJqkE`J>t4%OWZ_{bVTc;L&r`RqsxA#z&a0a@vC17c-nm7}Ck@0qf zkhw6ox>LwmKgbMJrj0Tht64+tnBc2(LZ8Ggei|`>-is__3gtWPeq>_VQWa zSm38JujYJaqTRJG?_C^^H2bZ^%6A|6bS|*7IH$5V{F!s~4rn*?b8H%8YDLb(`1cxG z!C3X%J1bkz&Zk*Rdq^9?C)!GfyV|&oHZ}u8%{%ytOfL^OjpeWF?U&A+$d5CKuc(1{ z5c<#l6KF2)kStnt1&PC3)`aYy{Y&=(mVMeb`scF4#Jv&i{7<{Sm^=06S3CCRI`N#Ilg|h8>&XZLk?g#CpU!mp5JJIX^1|Q*d zzBkOvp)c!v)8`qxMPK2~J2~gB^A*mUNBZToyMX6M@i)GV_xa-ki)#bceD!zpIBULi z`CnvRt@F*8cQxNNmhI4fh&isy`ieeYg5^)HZVHP!DmV!KVh_ z)SFqOv|TVy_4E=SN_%U=_?(+<%B}O|%+p!qPqepULtc*fkT2-n&YyP`ZL3cWw5_v% z%4q*u=gW5L!e>}~<2tK)5x8VzDC>NA=35EB%P7}6W&74i_N12H7qDwZjyQ-+eJ`@9 z1p08zcY-*h2FA?yci=~q9wRnV4)>c&&l5oY^9Z=s1KpKfh}oOdc%uaC$?lnyyn%TX z4t|$A$cl*L++1iS!_2GN2ovksYeR8Dijj#gpf6+f!PI9@PVRE+doOgZ5qQLXljkkR zzf1FK@{~_bI{sdH?e7@MbICkxAddyTJWZ2bxkO(3+sIQrFi1U9<{hRUVj_1WYHLit zb^_D8eZiJkT0aB*gA32CwMq}MjxGKSJu&>7BeRhYTDPmW)IBekL92UaSskfO(b8`A z<~V(pyaC(xypzCg+?yIJWrJhR8LYuB^fMN;<5A!jJM*57KJ*=impF4t$MCw(ilnc5 z;`DWh-Zmg_743}|S{)93BoScV?5p1j;APV z!QW_ZhxyfEev7+ou$%F>dw%|xN(KqPAYLnSE%$h6ZxA1p7E8Svo}iR`7xF*D^(tPd z;eF_bc%KR6k5g|h^;WNlDpu~^59hMS@!lo+edd}0`R!P&vsNR+$sF?I2~3IN17a=w zCHU8{g7`MHKmBjCKYCoxygcN`KOi|!G5v`0|8@2(jVI&3Sl@Bg=fbH7I5je!z+WBT zq`+T?eUlj5LNlIn$1f=gK7N6+YBR+%9fs%cc-Zib;-7?PDfmX|ep13c(s<%q%-+d= z@9uFW)O}9?-{0Ox_y!L-N9pi)%{;ThR>!GL@L^XIBNKcHmd{Qq?$pUs_>^s?{$=bH z?8}N%>GiLo&EL_>@9?!wdJQtK69IVEn*BQQSI6itBZ#rKqTGPlH zkbYci;;Xvn(OnNp|66Nf0{J(yCf0GL6nuY9Y;eP~jXswc`sVOUzzx6k;TY`jj1d^r z=Xcz@v_t2B2sP zx*4m>6Q$9{f8wsn(eS1J&o{c`5^Z@0ZHY&QCpR+kDEqy}q&ynahxopOGo?4CPtXVD z*Z1S@m@3Jm{(X&a+OwpKeivyPlUvWR<^0xsIAh9f54vOeB4zftbCo_%W%PY`AA0@s zluJ8*Yo0D6Px?G9r4OU$NpxRhx{+_*JWV4leV+38ojy;GBY#nu4^n2Vc^YeuG(SUf z67bwYCf&|DYGs~?zGv`Hd=T}*PZEa+xHY=xCuEpgUIs^s_$Js5?PqE92G~Ad?anvl zs=iO%0nQcidwm^VxnViB$3Hvp4mDa2#l`pG2N`Buxpw1LGp^zZNe+hhNOvchhtc=Z z2gy&X9ev+}()T_4XW-2FO7s3L)+P8hQr|}zi!zoUR&Si?d#nW?6z`nrpU4e zW>JUsc)|Tq?lw)|*Z)@jZ-8Uz`G@h%^M`ce2^qOX(AxV1{|W5j65#b7-Z}4Ws4)2M z#P)s>-ckES1e>$)B%R?iO&ppoVCAU;-}TJ%t(;cdfTC;kdP z{_7Z90=+!vrVW}S`JBbZU+7P8rPe9=de&OWPf#EH%>uPQD+upI%!bdiz7P2Pbrn2| z=nwrp^E5oUVhby#Trua)mBfEjnNG$OrrZJU#5qO&#Q4tAR_3dSv~F-rdtQ2Z!QG-x zuO7vr+wt`8Pjv$9{=ls)v7$?U!WUr)F6jIP;y+ z9DFk~`m$(G8+g1*^vdVNXITs!1T%xzq@{>=js06+FZpKBACI^Hi0Jbqc5w!!!gLA_m3dA=YD4oPEp{MI_3HmqNf`fOaEsh_}%sN z;T981(kj*2opo6Wo^(i#@-#fRY`UId4_3@L#d^~`on(DL%PV#NKsPcKV~A<9HedEni0s|5z3?xOL(i_VvIkjHDaLVI z8mvlOSUtqNNwygqSbscpK6GXc^ft9E+VKo_tlWc3%+AKjr;*jkrj@(q+d0Ru<`ffL z_Fnnz-xt5moT@+Hpst-0nM=N%ox|BQ7kh{|TDkDGm64hmt18Ov>@3SF4NbI4?^U~2 z{|{TiJ@BVgeUJ@Mm(Qv!ywu8F9-6Ug(WO>)e?#N34WzFwdFNkda6f$yiz< zx6rSme_6u4MLNre`L4Q%Po0!KHMqKvHEH4oX^jQ$bk0#>Y<|Ojr;gySu*c+nJfG^e zyN|JE>hTw^QvE^OzIzVeTBpn%r3}MJjmD-Yo%-qeZ+^< z7>fUT&2iZ$?m9oX=mzc;It4rht0|oSq>EsT3$Q~z`W(L8H_?{_w#~um_R2DQlEJq- z&V`m}Uu_@`hj4N`?RA~DvZJ(_;OvJFd2WsE_y@$#Jhdc1TKr6CiTeI4@<_I7Gak*u zXAhx=Sh}Dk#lGJjX3LPj7Q2-?$*1pEQ+DYMQ*b|$v! z8K+$9L-^-rSf#6XUUFs|W%}@a&!TU^I~$M1CLP`?-}KD3;I;sL3j(KR@-(2E(fV1P zw9hDS^F$|adOo!;`)lRBCb;5d<&*3|b&i!U=GL!r4fIE}<6^YS(IH>l24JN9iX*do z0sVI()5`9H&S%oEYCC#}YIcd$qD)=?(7 z{LCE1%Vq6R54!b;bnBW|*Z0Z9{S)snmYvK9J8*M>ocC&Qg!?h&xzI zTUcMJYZ7(EGpGx`APz2s-L)N|{@P2eC0)MgvEae^Eujh4L-T?4-M(C4KCOjy``FC6 z^OCkdu~qA1HasHt2rjIKUVMT+wQ|N54QWLtAEd6bgYZY3N%-9{2|J~aS^bNi^G~X{ zeLVCxY1h}$j{x!bTki~S3!bk&9?!&A0mmJU@XC;4l z03KquyMJ^3O5eY=J~l&3v=_qXpt~5pi|X5l(JL1Dp9p=rZ{>|2{pd%B*27vK`ach6 zoY)#Y;Dz+?x^v<_@Z&?wb2~7Z2A%l?d|C|H;L}rQ1CJ4Ne=yP#1IJg_%wIAM8s&Xc z|65(!FPbU%iZ)%r{?i5B_TV3;&zb|#z5ws{F-LL!*Hgymg`jJ_%%jqV@hSI+z6+koxno&tw-_j|&WckkI6!pA%pAM@H-tB@e2Py`sGt<8Q_Q!W63fBXZ_(l3wjeV_y@44;opze*>qI&dt#=+N~ORc|Q zzc26JxY72&uKs~_Z9%_e-^RL*h@Tbx>Sdjtf>$WJ(`pkPV{eN5)~x>tktd)-hK{Wr zrepAq5v@V-ZCcOsSFyNDaTvdb4da?t0jrCZVGi-v6nE;_?2KXTTUW!cu;zuS4; z?T>;RgT!aJo4Jg0r$GvtY{SXWlBX9(2mX$^70pyzj-N+f`#%g0-e+hb-=#ZnXyJ5d z;WTLBaK4{$?iDS(n7y!fzAa&lVeFnyL!TRvZFU2fUG#-BP-!D)5$_D!%NT^40n$0g zJQR8Z(kt?vJ+n>Eqx1ber9dfxX| z@mU3TN8nc~WTH+^kGObyVTAd3p4jz`#5HZ9Oq{&peIn$2CwaFQJ3LJh za0VWEyIF@}Xhop-$*s)c(TJUO_iA`88{Ng=A;+(=E2rXa;)j|#D&S$ngEhdX^>N0l zwyhlLT9B93?*w+(&Mi=1Q&#_v@FAY6d!J{zMi!m)Swr!D?2a_EH14;#Bn#=VB`f(`s@-Y?->gYb%q;i&XR(xo#>oL_hR zv_BlFVC>cS9VEB|)&?$rpl_$3Ly}YcKX7^#c~euaIX;m*Dfop!>yEz^;Nx}RQ+7RZ zd#YN;(XS1KH}9bC19|inpNs?3Y_9009DKnu{)v$n;lp*_Iz>D-oqZW6){@SrJD?k>O%9z1K_^bqj**|z<}X?2 zsafzk@Fa%UA)lcSmpk-9^2s7-zR%9jNuZej9(1=3kB1+0nhnc{`vv76;kS}sht3Lbj2#>L=KQx>t7I<_m^*P5 zx;k{udF{U>ehopbo?9Ub^=5FKE!Y201>?(;9Y)kik;f$!$*R+ zrZU!ft@}r{^_{e~zWI9F z>Y*)v|03zYq}%J6B^qxf-wIw>=xkH|Xoqyk+HXJ4I)9PxosXVfB3W=T=Q;JK6Wmii z_U3H)f@HDoC1>a+J`Z-|c?s@G3I?r}&FIJu!xK3+efg1>pfQ52>>IVN^YPJX<|)4l z_Dk>+8No8{-ef*r!YAt7hnBL|%b{t*^7t_NCG8s}*c&XT?v0nq{~Nsld|rv3(BKGr zJ2cJQ`O_-B18cU8xhr}48e$nne^6#;_IYuhN1oH2yHHpE%DD>_I%U@Nhuq&g8Mp9o zIk5f;_X}6MbXoJL^`9;SNY@)kF7!v%w$68PWM#_xcDK$Z>ZFg)=apZclngb>w=(ye z&H6Oo)?A)!XB^T`GWP7{(oK4H5!~q}KlPo=mGqSr??n&f*ochKSqk1MBb(iL>;dGg zjlkPt{!ei3*EjVkpxE*^V^_f)PRscXugksDR!7ZDtHao&lCJyalwWarDesIqU4M}# z-_>|UhXd($Ewh8hu0?P>i_eAnob}#|*tO8E^sDJ`_4eylV5WN%yU>+)Gp-oCdY7vw z9{_%ci*ka%vmBZ(ncHgZvG_RL&D?1(l3b6c(Z5JGJuKgIcw6nCigO{|DErVpjaB>P z3%p;M*4FRcwr26|I=3y>glWsWR}n{E!y{T>HL^_iUd4Q9T3-7{>5pP~IsUYfs}6zF7fl<;D2=vE-N@ykgYXlkJS(rk;z9+v~f=eP79Fn;fNd^>b|1oq)bWCjsuevYiK9fh>^CI(? zeqKzc!=vdNJlwt;)8=WKSr@JyoJ$`@*>Vlrx@n)qR%Pfr_MV~(DfmB!mW{OgI}Pn| z(ybBpSYCPWp3F5ay*|r2igRWc%@Ixe9Wf4Xm>KO@L)x3+2?NY&HFOTUxB6CK43Arn z{R;FDc|10b>dRO(RW>01N?*KoLm8o)n>aVBole@&URiDU1mdddH+(|3;S;!TgWu2? z@Fcf=AMXk9jJbTQ#CGq`hEFJQ@6V3Sp12KKmB;r7!*(zk=!upt$4@a}2Qx!KpE>&v z_i@HZm@v+e9jIR;-0}7dYzqb3q2I*#2d|Ka62}di8)yHng~n^275(S@o{ZW?=QF^) z3($S2q5BM3cHa%anG|C)rQhB6Id>>1-!OmftU1wD?Fo_>U<SKVdHo^jyaj5)zMIl#F@HoeTpXB3;QTu>>ugl)Ba#&bia_N zZc%)G;I?l${gOY}zcG%0;#~qa?Ny>V>3pw8=U+l+hiXV`kis{0~k=hnr#9c=KmaR=kELC!ZZ?p|7jyyDyhM;Co|nc@-z+RweiDjlpK zMh$zc%5-aw-jsf)UZA}O{zzxn9@ebNoaB2KX`)-}$Kf-<9Zd1_gZs|DZ)sZ_GSo0J zVes?|W`j^VaF~XCnU(uou;SI@*6RSuZ}-EyQ?9PUn9+ao~5t zv(2Pj4>~68!#Z!hNPjqknS0!d=%3ox^WX4E)csA0dHxc1DVV%i7K+PAQ0L>Z%am`~I#=-+~!zUrN7Pi<+!Zn6M) z%cq02b}R#Y(p_M!zJlQx_T)WB40~eZ$sc)dC-%&*u-CkVoN$nDO`MrT`(GrDap7xm zalihtWIk{EnP`vb>uC9&LuUn}E+bd{@1XqK zNG~G2W>>ULdR3iqs+pfgXsnHHr;&O;O}*9b`Q&@N*YG_keR2~%`@5_*#fjmpawHFY z3tG?LyB)gA@2W3DVb8Yja{=OZ7~v zEjY2DMc-=JKkiYx@CVTT0r3vOV%p~XqqDJWZpNCE-#sE(9;`Y-@pJ2tr1S2{2uvGpUr;v6%p_U$KtF;``j})Dj)6Z>^s&s##7nzh;3x`&mq&n2W3EegZ6Z94!Uy_ zTVrN_cI<3VZt@wM0@?iZ18?bhZ2CDGK68POWHleA?XJtBZQT2NWHC5p#@sNjP5Se} zhK#ns`PRVTZo720#_!r=j2QnZcl@L5BfRkkHGc98jem5$^zo1SX2y^0X7_x5@)G1< z=a7wQ?A^Iv+A6#Wb-22paf*e7%|5@y_XYx;x^HHI#(WamDH+T;%4@vy;ipo&%S+>Y z*IIpo^QD2`K?i<4z)x#j@Z0ecw$U@AZ9(*KbAZjDFU#OsKz2hrGn3ItQ(M*$KSgV< z96hJjhxUy0`hVip-{jQq)ty?q)ae6rx|clA!w736dGN>hKF*2`ytH;1>&TMNYeCS@cpSB_Iynv?>e+gYO{32spkj_^wp??YN>yb-1e5K2WdifS&qaJg0n^B&o zEPUe}%DH@Fsr;=x9$;)?ZK-(jD&igN zDiWVyCpGuNSCc1=@BJnHhDPE$V*Iv`on7TKwBqb4f7>9mZg7@e`k`Nf@Ba-tQ3lQZ zAJGZcYd3wrgLTb$c7QP^uVSo@4AH&UNOoLl`U0Kz@pEtgAvjdTTu6?T(0*e(HudHB zC$(}e%inor?`8t0)%%@0jRU}f-^auQ&ZE6=0i)xbACYBuT#p_#y}oyT zWL)xo_LCOsd6s(aw#OwCvk$h$XE(KOM=rS&zCiWGNpHBbskH%|I7r$()T#QGsy^*U z>L33XyJN%4Q$!y6e@`IIru}!E)77UezBN;q>WO0)AG5LBCSAWP_+8`r6V#;n6Lk7G z?*Jp|)Y8uvp?fAf{y;k>8$YGcwIg{@ryR{I3q_K(lbY7KOnmNGkD%M$|J+=P@KAhv=IjG*a;vHwjK)?2aO!HVX`$> zd(((-oSi*CSkXc4Ih-@+GM_{F#P8*@w_QxOCK@IA+OS8^j;wwhKRm z58vxB_Okb60slC-w0)`7zdgquDB=6|LsoyLoqJ?^0cY%*bxTS(Z^sL)C2itwPyzC{OF-!-&3xakeZwygGQbkJe;VR(eP zPW-ZBz$j4ez@Z12nstt^SAf3u?uK`#e&`7C635l=2Jf<Cl*x^-*m1KoYYqQ(@u=~0Js;w6Wgz);g)}buUk%AVcLq(mUN%-4ByJo zN38mAT0SSwjCnP-KU?{(qMX{6-(K7|v1Rf{#>pNkTjwLS{{VK9%yaS_bm%O!{sMbp zL+6|`r11UZCBC*r$OesU7rM8Kvz+jGHuO?5M4jsbtovX_v;&^HZVmG)T0f0GSl2cl z+m1X_{Qg;ZhI7y_mGNB*o>S%xKf>>d^aDQmLghv7b{h7wWskcj&=A;WYZTlX|u8Tj`7P=v%OK|%C+&Y`XMJIF5 za@&WxA>BTBSk5K=L38`E4zEr2_u3u6G=Z-Ov~KU_w?_vq1-3hAubn>YcPsQ)GW8vt zUH1TEVxF3@$6p=xQ%V6JQzv6q-fHR;Jl9gk9?EZiJ9-<+K~J)4UJWE#p%>C;s+}K_ z=QwREzmXB8@d&{`YOfroXM3TuiJZ7>z17}>x$J=+tg%@#a4#vpRQuySoZFM}%dED~ zp-(yqjzpQ`wM(6~F1@zqBass>E#jF@yFA*tlyYjr?zueq0Qr?i`@mTG+PUDnBfGcT zZ)Hw|w|P0(Wzdg;redx8%B=C+T}NE^*1NK{1#52IUuNgkMWKJJ-R#x*Zd`Zh;&$|x zQT$qCqKiEaf7vTN&C}?*B{(i*H+Q9zP(Ets{4-lM3?m%BY z&U~7>JR0lQevoH;VRjH}?-sK^RhEOx?0Mu#q9-UtfwZRWgk3EDWtp zL3iiaQS2rIbus!9z<<7$v1IYzx}tUobYZ39Znv(8XrIWgW6ni`!_eRo;2~UST~V{7 z4EyhZeJS}$maK(NS3`fZ>9_J!GdAx$$Qif;zxSz{lYqUVBY>RFVoout%=?5H!_=WM zoMY_^_7lpBvAb$K_66$t1<&6w|E=@JZ|j>BARZ&Jz@-OdEE*GQudbDGyo-Jv$QW0@ zl=sw%kD0zVi#8L}Hnrl)CCU%2%U1rw$bxDa(`o3gXyC6I^JLzITkCgOC4#f!ii+-Q zEH}-wl1KP9+245VS2^@0GI^WeB>LU9A%0u)Z0k0`DaklBf0KX%W2}_UW(Q*$O9$=A zQHO2d?1(v|QwBRw^hf^4Hh47Aom%db3Si?F{7AGE{HqlXAq!d{9z#0m;O}a0i`e;@ zg1KE1dHK6`|SO zQv%KCt!k_c&+aOWBWDP;a&Cm?h-cB6J#c)hDYt`i;U~74_Zr^gC!BZ9MZo1Ns(JT# zjB@HNwl2+yX+5p+{MJGzl-IN^9SeQx#okFgiEw#zzfRMy82w84oPJ4{<@KjKtv}1t z`okG(s6U=&}T@yg4`LiMGW{|4oO$pY<(!ZY~^3ilu9Eb9FRNB5dB?sUc|8G+~_ z>&xsJW7`#b{xQz}HyTFj<9g2HYF9esgn?Dwe*;#;GzV4-fz=M=eYZ1y@ww~Vy2X?3 zGIBu2X6VJeW=$Xan$GmX$)Pd1_b)K^(fc6F2D$23{ua*IBwIzM8aY9mk!Oba8s;Yl zo*-{0vUbhQS^i^1))pg!@>^%dIXIpz!hgY^7`wx}<$F#Ef^ySBw;2()> z26}SrYG6=JouU)(=UwHiE&*?;mvw05ugW)@Z#(XF^1YjPeGg1_+IxJG@&6i_>MuB= z*!}_V(DC^QAone3|0D4VI>n#BhXiY0T2gk7cn#B|w}W$4t>_D0(4OMUJCctqNoPL2 zpSvV+iz*Mzi$>cbOGzH_m&|? zJ%sI*>Juzyq}4T%x?UhgZi04IR{?f!>wzT!hZc0Xa`w2^x@*_Dz%Dq_Nd3j+J<8c# zG~yQUMLL6A`XG6D6W_JATF_}!qiZnw1MJX6A6EOV`qkJ(_xSI|7CpcHMeOPtGXkyIh+X(hSf2Z+vHLoMA71$Eqh+^<>F{<;*(*C3j7HB&}V_=Io&_S_@hiXE~z^Pqt8>V8VIf%r|pb7u?$WEV8f;2-Zl#UvMuXcZD-q-aPQT7JvASO?;R`&u!w`-u$ zZRm8B?>FQV9TYD)*7z=Ee4nJ8Ll-=`saCPO3g6-x2YYq8*9x*kl(H$iCmmW}cuVF0JIi&ILrTv4_h+&@K-%ER+ z(h5oA-%G1h+8asZ-%ER!(q@vzzn2zM+GV8i@1-qM+9J~U_tM^`v^SH+zn503w6~GQ zzn8W^X-i4t-%Gn%X~;wp{CjB;r6E6&48=>EO`6uyh`4TPats46Xx$LJe3a+kE1$1A z$CJjtmo`Od*xw}h_tLVIb`@#-duij9Hjgy^y)>J&3;Q#YKh_#-pO4-v`YRpw zxlM_!Pq6MAu@!heh0P`S+~C>@7+R4gs~K&#ycyo4hkCG~xlhmPli26;-UKgGeF*)b z_rBDh{7>GsPO1-$likpL)w`ktkJDcDx1$5c^lXm~JjT=1voRxypS<&a!}#Q{hw7P- zJmS3{3W!EIbuP_JqEo-Gy0U!Wfah+wILHK3XPwdzh!r|B};V_nIu`AG&yyI34?feAD+LJ5b@si+(&(|6Vt)?Ugx> zTzvN)$;GXs+;5f?|K7tKa0e57i}8_;yy72+&qzk(tbcr@{paw<(8CydtUUAq4ft=B zU^^gLLoqgi-r3CYH`09(d6C)J(8C8sZl#>|lD9CHC$Q^lU$?+OFi|;A6#<&n&V$mKi6G-1iVdh7TBBk>Q@avSBBojrK@{e zAKq3ON4~iZ8H>(s!lAR&tFww=)j}2Z|pEf zf4l89zO8?aZ;coKCR#D6cuF#}+mRu~?A86;mE8vqUiD7S9lxY6&8~i|IZZznYx=M` zue`Hqb^pcktZ35t-&$FR?8>?)I&dBE9ZSxjx#r%#ff|=~dGV9FWn*}=WW~glu%jK| z!NTg>jcxhf06I+izOb8fX*FeUMy6GL>&S1vbHDva->Bya_xEw0@r_O_Q`HN8E{uOB zI$#a>kN#5M?&jV09X+h~FF5bNP+7|SOwW6x1M}ds1-q%h?$%x7lIx*EPk=iKpWx^C ztT#e?JAt3q*L{@jByA7R#KsTzck!)}xQmT$o*3i#F5gbf8T%M`!K%!UXCz%+LU!!@usj{xHiP3Vg&ffki@(wIRqN2JPcrvz z)@%I3m7xvv% zuuW}CM#8-n<_w4*?wNnex$fm%)U}KAgZ7L@AAWg1aCm;hZ={_~Jl-<~TmwDBvQLfC znv?7w^QXbZ%Pl5UPQglJYFbA^~NZ>$|yPy$uQqX{kK93USuq(8_Ea%%$d>R zEZ0eFaQPEa?*i?4;)@OfQ$4GphlGv(PtM0xjYH!ZfnRBUS^6e95^X*vJCZrv znQ=Gs70bRB+mFDbtFAn_+Z0 z^+|?29E%&Di26?EFEou<3VObk`;&lYsLHC}0d9ug@BF4e$K)p^I0bfwlU6Y?Mbdw- zQCuPCyVVmm_9O{stdnRMzeR~e}dwLc!W}b>?yZtK8 zg-UyybN_APdTXWeM{(r3kss2xm%xK!@~(N-k&`Th-T{{!>4PqIZ*d!IASNC!$XsLx zS|k@lj*3r6UY+1uQZBwUvu_Q$K*=5s!-wC3KZ+;+xQuuk^2uHdyx}n`4=|=_ zRrC9=$Vy(M4dC_IblXZoTNi}k0kgoVM}2`uuV?Ow2XLmE^?iaftHzmPoPn85m4Vrh z7bdt540+$c{#N941#7m-0 zuRp(`KZ5Cv|1LaqF*`L{ENY{#m>ajk`k^x1q%vyTL4BHMs% zF8lKCG#HaVrx6B7YyIffj$BKDirw_vUOdRuvxGi#>K=>BPar!OadddM<&tEwOJrwcI8 zsqc($n}ZJe4sy)!S_78xLp3v(^| zg9F%%R6rxK%NRI-Y;GcUd%r?gq_HV)mz|M}3~;CL;nPd5BL4|{QpNUzi~3s7Yoylt zl5uRymG3m~ef~+2D+aKot2u4#He%S^-H(1)HULi{XSkBJEdQBjRW84C$#Q#AmTWp! z+XZ!r!zD}V=m+*_$JDm$z=#>ua{97MWZRHjJz$l-i@Mb2;BJ3gOm%X9YYERK$Sr&g z(c`C1DV`ECA-|P;^LXRa|4?;4^qI8@-saW#qNN&70e32Qu}-%i4ENPdVK1hh!QYH) zi%{2c{@JQZocY|1?NP%VVm7gsTcPi%`PK$QQ>Z(=Uiw{Wcox?#A0NgA zsw<%-=k0B$iN6tLuaPa`cH*{u9@v9#28Rv{ziQ4d z!JZ~Nc(A0U4_vARj~?Y7>(%zezCLJl!p_UWN2){oht`Se_!xNT)uA;a{GMZHwx}+Z zZ+FXQkxyqH;j3tD?@ab0zOUeSGyU$R-o8lIwm7&U8z#-U=4v!;?Izxb;Fwyrw6v9V zdAe+rtO;2iXB>P8e8~sD_u8_ivFysWQReD!Yb(C!5|vCNH)LjCerlfDc7aY5>{(Gu(& zJMaz8N=>jhALrLCqdm2|8(YV*;M$X=7=*H6iw5A7>s5AqigLB-U9qHr!w0}l2g`8XYWoHL{AA+ZN-x>Hp zr^E6Q@nm+^5kES$A)46URQZQlGmil$0Ztd(Yd<}$or!MS;>XNhg3Lx`+5aTBiRk?S>d`qPKpxA@ zA4sdC16?KjJiObXi=GQ#3okzaTnGKO;par(WY_pafwf>h=gmL-rvsa3d3tBWuewyo-E;+noX9PcQ`oL_f-!eZU^-fD#x zv4_id0vnuyNEPGK^Iy=d?7$vZb@ft*?of{e`WG!g_nfnRo+KIO*h`iza;C-^)(0B#Y<-p@Gu?AmY z4PtX&Z_&Qw4aLxf^m6yS>exM`r#(rUsd6%fu+Nv zoI39AMf6SkP$%;63&t~_J9nrjjJ)ZzAN^erUn}ZcPF-5lsR`&Y@JnP5>S$yPx?|mD z43*%Sw+64}y_NY0ur~h@n3eGR2A)H64*uM2y=hULy){(h$X1q;C&4|fDzlJxt!v`+ zaL=7x;hiJF_2f6d``WZbG39P>b(F~B^4jyGOXlQ7m&7t0e~;x&R(72CcQ!Q_*6=Rh zjyUg)=p`G0$4&4nOVMjCeRXi3bDna})CuTDdK{wy`sl5zf5m55I*B0dm5+*J^dFqr zWIyL;K6qXS+o?uCUr}VEHXAR?ouQ{5FZZ@^s^@~Msovsrc%YJ#-uG*u` zo; ziS<~e)xK!QJMgqn0<3K<-<+RJ8P~gY?qt#Cf>Kw56M^O+qscHGmdbze2@Z}p^S-!U;PT- zwSLs!hRi897jeewV%?=Cy=n0i_!MMXt(C|Vv32CW_)CasJKmQApH|lmz00&7M1P!F z*GW5>)_(I|JdyI5z&?w$j}HX2+?+Rq&|B`Mt1sq^KA*bUpy@a8)R^VJrkEi2{obtW z`szo^Z$InbT&TD^I~b>6A^CDQ@5B|ax8cb{_Vl_n{MPt%HXYt;rbarzvrgn&KI(V& zpQ(|(q*32P;?b|>-9o>*m~w4*g;rrlF%=u{oWsOxl0JMVc`i%CRoS}sKIMGVT&do2 zv#(8!e8a7`8X2KrDZV_t-7kCJkrl4uj*|qi6)ZJw$%O?+!KsI5iZ+nxbgbgL>O~~NnF_*;Ku~7htHca&21bQtjfc+jk7`BM9yfA4Dj{aw|yObz7?Hd z{rTYo*h{DDcf2(mfc6kimGLFUTQ|dJMdX+LB$a+FL%zZ5GW-$+BlLsy z!UgVvt>4La$t@&HXy%#2vxcYWIsO?&HeY5>Gkqzu-(a3UaQpO+^eGNrgVRP<*+x0_ zp@gS=WezN5Ea2*ajn4ge2M#&+;~ntXCcfqYpRc}?{(Qr&@4fCAB|{9F^$@I6j3V}_ zyf}4=|BLa|c*Aa60iHqPKE=Onm&oU6i?zh;b@E}v2B37WecR&L1Zx`l##-TpXv1k_ zubmkVT?iFN>l;argG+%m(@mK?JG#iwpyew%dWlaOu?sS5ttE@qCb5K&Rj{8DH>y@+ zx5v+`pP*Be_TYo+NJOYr+J<$W1eP5+jIt85kzi@FJ^qU)m9rM zt_N%3%)dG7OgvG7J?kZYYkYrYeDZ&4Bu)Jm?fT=WywB>l%UAtH`vdSe{SM;QVr$h! zIeqKd{PvPmg~fef>moto-Xgp0z=v4=z{gG@GZephEq-2Mo%PBcnXk@?;vrwDySC&H zS=W?E=QYTD9AvI~7e_lLLIc7X+Dj(Z*{tic$hN)mi#Av};_I*V&xojv7em~uCfOwX zvRAKHpZ0)e_IHE(?Cru6;fs;~gDdI#`yBdLgN$GMe3<&B2fCZ_?`7OCB7-yS??iTK zY>ypTOf|f$lkWLIm7S1o;FFXat6gu;mnBr|_Fca?h_xr4QfkDs7zaOK8H(9Ew(o3&KRZN1s=s*{~_k!ULzyA$lSv_9=nDA zFZ2I;$Gyw<<)Lv?|FOSv_m*jLOQs)n_pV)P}TdY>!-`H6BEccCs^Vm<|lbUOamK1+-{3?8o zkKV+&Hg4OJy_H6#Z=;Xm)%3jl0@$YAdpC4{m~-xDFVML>BH7w*#wPfNo`A3a(e}d2 zsBa>Av?z9+Uix?GTOYVn1H7(-uMgwzAzYBZS?Hj1Pjo`{{AKkLcyh?Pr<4 zQ~2u~hu6=w;0K{cI=5d#TeP_sc-8A%5bNaL19V4aoh5zrzv={KRuM}>Yv~2*IF?q& zCh8EcGoNn-tcgbKMsB5!TY!n?GeA77ID3V~y(fZAfIO|lQ&~FBTB-JQ#yLQKAGQ-s z(8yEpOedjfUuDmdZCMPswy~B3Tgg@y*=E0A5_%e#Q8qw7!=xD){oJbGNq-aKi%D;W z7ZxvHOJ8D?zt}xCYxvF>+TZ(a@melS)9ma#c(O+x4Zw@V-e@hjoaY3d6VdhdF_tWR z@gw7+9oV**c@6L$0>+}tluM@Dl|73MufDGUHyW+CJsu1`S{UA$IYTrmFb>{~SgpX0 zvcU_=qUSp%J@fVqCvNSZSQ80iDlpz;=500mE1I&}-_0DU-gxlWTUj3~vmThdjXnDK zq^3zNDks~zICtM0o};swBPHG4z$lcvGoD^@D%)AxcKp{@38~zeqht( z_94sd19y!Zo8~`LW|=!je+oXb^>jn@2VFn$Z+i;;Vvv5dssEd*f6!$IT7t9v+y2D& z6#tx?`&y~@{=1^bzfZo}J11{@PT!h>?Xs=XxNEFnOBput=#7uAKwnhC8kx*~DV)(A z^OvI+N>Ns0jWDj*mDB+rmjyng?2Ih%nepDV|If^i<}GGVs;HaYvNdqq75fM633aoW z!-n#|>(kySo%1umfO?O$QWo9vag~qpAEb^sx5f7xI}OT(%jdLY+LyFsQqOy6OFAa? z@mXkX7v*xBa$CLyynn&}N6rqi)kiy8=)-A$R)n$D`4~4iX8Ikvtz^HxgIn}5P`8XR zVo!{3m$g86R%6Ccv%i-0rF3jFj9vQZb;w#jc43)ws8q0j1QB7e=x>yMWpdu{l2^e@%IkvUP~*mN$6!+ZN4 z!rlUUC%JJM_W~Y-?~RjB?V7bj`tecspd@HVI)?bG!}p-Xx#Q$X>X9612XibrkfrA& z*9H_Dksf}VHj8zRlP+vVdl`2ZS{to}^QjYBpJ%??c2c~6dGCP+dhZ8i>*AD~OSx#H zxevbbFMi6s9K9F1ot?s-$g*$zM&|kT$9v(qB-2@468%fB-zuHx>pmvf2e=QX*Z(>0 zHwv_9jPK+>fq&kL5-X?54rJX6%%*hy;~SAl<=pgY_3;7rsewJgk`DsspzpRfhLMkl zHiVFYH5YD&wwz;4tDPACbEv0}bMp3MQ|i}Zhm)HBM(KAuB(Dwlc2xGaOz22$p3rdx zve8V^p5^;<^X+8Y2Ws~x_?PUl+>31k4AB)-B_5r!vYG!$cV?`*9J~n7kMZ_|3fept zF8;;V3~;xXI^sOTABgXVcY^1^?!`Yl5`+%M@|RaM+rf%V&Pl83Z_3~N!8SW9tL#^H z{Y3N|0qjZ!p=a7ZbZ^ljzCHD8yPow}^?mC6CALJ{q05c%ED6>%G+<>2o2!lB$Z6Vr zH*Jdc$sVQ5O;3>?_<%zb0~)(MF7vRRk(oLB7lq;Ce=S@A-R&b!?FX*duf0a~3pe{J zxRa9k9(WIS50rb3wW+a{eIUGFdv*xgvJ;r-`-{L?d%Mx=@%|O^zcj(GJF12pNC$6;`_ z)y3DIfZ4CJSG)My49;m?1;9Ju;b`0of^%i$J$?E1!s}gJYi91f{wOB!VQ{WYyb3fU z41RccC45`q;+6X2;h}IT?&6{FCbl7w>!g+JFHw2w^6=|f7r%r*U7vxcg(p~lSH`N1 zcinYdG_-rqCCNSC;@q2K*-z> zNUnay0O%W zgZXh_aSGWp`s0o-5rgHW8B1AXOFLrMS<}8$+`qW>uGVdZ?9Cr&@UQBa&OHyv*t(!m zW!vCOo4#78yJT6rD@zXkeR6&<(Bi>(eP*=umdVl5jW6DHJmJgF5-hKytr}lcc60c9 zO-~BuyZCMggDufuUdt`OwYP6s2lH8O3Ml><^R3Txz5Zmk@Yg?>HG+`|1N*6QXb=2W)A803Ub zpSc(H{Pa&9*HuF&W9JU6Y(V^jkss-?2F-U(9^;;31 z;u(bZyF_@{KlClzpU`<^Zf$HrIqF3@Qak@s86v)#$D5bo(@!>S?CeyA2e7`O+6vi` z)3m=6`y;4*jKp^&FMZQA{AcWyFr(dg6?UH)*5-PjXIgnrIfymF4BDsO1LuFD-FU;^ zd1G%&66!VC!%vW3N4@s`NA(*0KYP7?9OdC$uhBN!H=w?L+|wyu*wd+a-@H_`mo}n) zt+uz9j`sEv+5_?8nJwB&i0luD_5wE%FKjI4FaoJgP{LT$oCQ_ zd(pI+?8U}^%U;Al=U1~AR+Ldo_Ch^toY5MoeGB@) zX0{iDP}hE05EDAn$yR*qY%A<}akUkWyc`y`qN9_o=qPOk!b)2KjNcAh(J{04;0J}R zcn7wE@<+Df?Pj*3V`d%gTSj~N82Si-t@s6Pp7uaF+lo7y*@}+;maV8>_AG2g|25SE zd|@jF!B({UldbrLZN)UU6?A^&9_-m}$yS_&tX9|x8t>9`Vj=7WjXfz2vKKhJUDyi) z`aQ~Ctbo0sGJFet2)nIN<%js*+uGb#JPiBa)~WpV;9bpM&}OKf7@D#8^db^!S^qJDyd&-)VO@Fczt6@9HPL$O(B|KQy)Z9+k>wxR?&rt_r$WCy3?uoH; zOZE8|oR>nfUIfK=1<+5IdzYH<{62~22)V65-+}5c=0i8srRvw!VqIkP?^u(Cy$dm7 zz75aGP|WF_!*kV&u^H`o&&OFnhj0d$vTgKyi-Qf4ZLqD&GtSpxgOKOHdS)xzM*9M2 zf0bQE*drk$(pU-^DGwzW_d|~9^bQJ*xAj%n2L{V#{{6ts{@9x2jx3zXaiwol$o7YUL2^R1Tm0*0hmiX@fOK%tMFW=N2&K1fKWb zV$Z_2$Zy8-R~~M{ILjAxe)V$qnPxnjyxPS2WO{l{S-4kgZ^pOT*T9{|e>7kHt+pkY z#(x<&;}h*;`X2PP>+oDIcMCX3@!^ch3!x}S+ zzH!5CCNbwr^BlLfmggB`&SYH$Y~R)P2Dh}g;PiIPD;(I2V>>kM@S#J8h&uMA$$5L) zOGj%&^zLgu=GABpm)2WNm@Dab%rW16{6)1-t@)fe=ASQ=_|N##dw9k2^QiRY%{>-W(+jZw}WN`V(v8qb6Xi$GqU!i^PsgwVJN4C z*xNA`ZQO#ncgP!7eo?OXT7maqA5jC=V2zj~?@4U|d-Ul!3HzYlQ(H^#QP3K5DAsLh zjhWV0X-$>JWz7S*DDy6zQhUan4h!F~?X%k;m~3*I|urWbtc)KxDju6n`V5a^}&Kh(>Smh|HD zZ|G$l>t!_Qh4#e#m0rYq;!-F2K$AG%Lf^)HCdy_Q=~&3m?o?+=P>=P!P1`UBb=HJF zq822>JdSq)X)Oq2kQYm6JWhSny{*I^3DohLUWn@?%8B-Rl;HUx_!f7;uR~j=av)wA z&E@op7T*dYnaO5Qn{!^L(YK+Yv%q_OJOgdEvhip*qcK6z`K1L>05#1pVpbsu7+ixy-*zz=h+m8 z_&cBL;fOb+*|+@c?!{f3`KP#5n(Et!bto4~+k8^4ZK3?cymSTjy3!u2kRgm1{vdNaOv;(_OvXV`P7 zBP+09j?O?Fk7p3I89ZATk-PlvX~*qj;Er}2wgYva_LI{4K=e)=?XUV8&z^ehk-)dV zu#VaRdmVzX&#Ke*Q`n14&%`xu0ht-gLjt@|zr)&~4}f;7=~f5RItbMt$6gcpt`yay ztF4E;3|X4?;ruRy{|W21(U61Wh1}b*7J@x-?l_m%6VK;XVZXY!4m<3Wj|Qx#Q$FZ9 z1DiB>O(*o_5tjUH6*}m=9b>BvwBLyQ?17(5tU)e8xs_sXNT)U??61{^J%DeQVefUO z3G?*uv*-}!yAj`_0kC~WvT@P!Y?SC;a&I!(FaySjB%!nyI`##9k0O!>knU8*rWr*>&1)lHf&W zSO=kA(b?536J#Zs4nrmr`oRvFJ3!{ncA4J+pWe?Mfw5%uEzM>AJ9#5n-k%_EKIBzr zuARglO?r+UV|ih-o1MA#GW6g$V~youdAC9y?6nwX!WwMzcGD60Q)jZ#xjbFMI-<=` z-6K6v|7$2@a6W5|#+-E4+L;gKIo;$3`y+PXT&-s3v6aA29sJOqI~tFe;7>g>lVA_f ze%77da`nEkwCBywIZ@{m(6?gFl&(Saa7G?Jh z>;iq$88!lY$FS!RnQxo`gspfy`25@KIp!7>u&v< za>BPScFe^+R+#o+ZE_FB+36o|Mn8UC zQV;Ed8RO{?_u#XqJ8KEY+=4O23Oaic?}?VeHZ_PdjO06;ypMUi!F}w<*k`h+;H?dt zkKwE+@=xCZI19UR27BGM0BZ<)w_DIb+5>}m@}sM8#zCnyEHVb~G-GXiXAsT}r!-5^ zmp_YkQ30KsFGn8>Sl;nrm1Y5Cp*^-T-C%pV_aN?bNb4+YLy~)-NNb@k;GjGsp=u=7 z1dqa&j{xpLs97H9yOho2QgSEZ+z668*8Q*L{&QS7Kc4kLa;dofi4J~(96t+v z1)SZ6uu_+S;@#Zl>BuweRXT^EYuaO^bZ# z_Hm^5E7ER4+B6On&q#}F`kh4jRacsZwL$)b%py#%_$KL}<(2+x;h)m+at}Coc8+OV zgIn-H8iyQ2I!W%G#JiPC&>m0^*WKJpTldZ?MH9Av3w1 zgqY9m{6^Ta0q{@ZsgCc&nPX??Xxos+(ckgjX#bN`1Jp9lVvs$dIqpdNwix?X4Woo=|FoXbav*$L@}P47pp8Cib-)oeVzqhwZ$T z+79-SQatp$(QCRjA!tjQH@?ROnMk(p-*@!Cw?G~f#zJ@((LVn$`7zk8+i33^-Uo2U z-W=@J8oNTfFb=kc=A6dD7KE&jXQ_m0rjb_2cnb;PwJzvf~3flE`!?v{ zKj}MuMEPi;?|3Wr*Iupf_@R$$-?0Pr3q;>B3bIw15mq>b8pgytNp&0Z{Er8cHw;|e1Dnt`Ze9^h3)}t*i4)=igcQua2rYA zBc^du)2*$mPrTr&qK*yQhmw zIxNp_k_Ue5^0@kQmdAxBg8Ab6q>V;Z&pl>|swr@cEG_N-r`{H{e z&h-N0yFZW(&*#8fS86YsF&827-NSv|Vx(8q7U|*LG}vm4!Q>hPrH6Uho#d|r{28n9 zz8`D?#a)N*6&UcF!cmy=D<`T|IO>;|Va!2m5@+$9-%>mm5XUZhK9c;-d(SB!>fFs* z%&lXPzX9bs?Bq=GO^O**rz_x=O#1F+DyDHN&HK^Z?$ypAq%|0-XH+-IHcf%PX?~0B z%s99aZxY;^F!#LPO*>eHGqz~`poGra!urcptaJ2$9~vv3!MKZ_DWum|IY0EA*J*2E z3p<2Gy@$EmR;CMH7$4HyLeH)1gXOrSL)Z)7i#3M9&|5+f`1x-c4pJCOBOCon3P*n3 zo>(9JB>ScFU)LiYy@oc5_u8qy@(^%2>+wPS4ginp-w%+j2V|l57rR0ZawB=Ej?#WN zoRjm4Y=bmT=n&?GJX1bRNSpB9ZIlk`zfRUODsuzYp_e;Et$tYcMKb7JxaiPzx8i)@g?^=*g*;y2`0kQ+VIVM3Bg*1B z{@u=R%jN|r3j^Lwx&e7Kw=osNCJ#S|z7y8X@jbuDYo?*!dKUX*(O+Fu+j`69>F}4~ z)dlbHxG$pT679{U{%%H_uKpn_q+1r;#Qx*<-TXuLx-Y83xhQwTtpPXnYtS#7Vnja@ za|qM>>wLVw!#fAq&m9=s-ZZie_P|cj;jFbwd}a;i@5&yEUb+u+e|vPknJWctefG5B zp3U#+bO({gz;|(O-?!M$U+obLx!e|6(EqK*`$RsSeZrbFue0vxKhoZL8gG>ALZ?hY zeqz0}VtV%=rj1ryg=ZYSyOcruhVkx_mFiRUghf3;^>_!Io>N}h3cTA?HskaYT4<@4 zb`<-S*BOg5DsRQy;VH!HtfwR$omG9$W}1Ve-+vrLKi=s*FnW%qqRf;Hay|dN7IVkZ zMZW$R6L_C?(}M7PSxEK%Wt0Wl+YIXO;f16P$(SGe8gVQ8_aN3(Y0N^;5ZJ065$uQB zdN|nwgrhXo`+l{5oX6|OuzybTJk;m;5NpvCw;Sfq(Z42p(=43pdxFVs_^ze!i@j5z z;`xcO*%>^`O?WQQ8EF~tL(j>*(ADWqIM)?%X5f7uax=lrAkx4&olf&RuIV%(PKx_O z#0z~4Z@}}Du#6w)TejDR(Af;fiI0Bq8OTEEQ2twrzpXa^F|R8>)KrJY-VZs>>QLS% z4$D3GweD@VZ*bEBzi-p{N*|27JYX|u9nGz&sm4stm96d9>FTvXec@)o9@B@*r?`8EX$c`a z@cWe+i6I?;KN*)8(s-sYBpBgm_$=>UJmtoaxeIOzNyd%wexM%v>`!2Rnf8z9m)6$! zd1>3C5W*=MLN}HFZ z)BD^4x?Y#kegCZ`H4V_2F+BEVKg6^DQo*tQx^`2nm)lJ*#eR!O_-Uil9VOlAqjl>F zy=~q7i?ja_c!k%xz-tS;$9p2K+0#R2fiA-RP;h?t0?;l~5<;#)zJ3`uE2IO$9Gf&J z!uzPUQ?2tstYwC?5Gbpc9ZVI92T8P2@BUEv1_WAZzL{~Pt zY3G}6tR7Y}dh9m|vvBPkJN$t~#%s2fM-jj1;OAqvOux{&S4_&-58r+5p@$w?1+z)l z5qC*T#(s6vox(l(x=%-qgTFZx4dMa6cHF>k#*Qu?{=>-Ma-uYkAn}a@{e)2;dDpI= z(GKrEH!N>Ev$d|He}kvDtql4P(Z!3iFG6(5i^@=ULUehHypr)v?SNImVh-OR-_L7n zlJ%JOZ#C(HY+h*RXLOzXPvad2*qB9n)X%dNuX|}Q+3Gvt59f=Aozr!I+nwS)h$(Q3 zf!lYwK)9_5-UEN+=QQo@SndtG>xHuey7(^youX?UmaJ?s@dbwM(G!Eh2NmF}Ykp}73!=oeKod{yR zc(7h@rijps?;@|DvYM|0RtdZ6sV@`n0DJnC)lfaf7^+atU-$ZS#b@gwh zb@3sv6lsyCF?Kwq1olkKDnA8iHjn$0KZcL~lYfIHzP z!lsfM@+UCD`WPI1A8l>T3AibKDEx)#Jh%JQuCFocd=BU*boq$%*pxh0*xS~SvmNAY z3pv|B&JeAOjdbket|jVqKC8X8t}}7=NX-n zt2Z~1Y}m`AWG9(IIsN3OCa^UP&#vu8%o)Qr)>NZE7^3OUmO#fEo}v1T(~+f^&mno8 zp9}eze@nhH;S%;UyofpU1hm@(~6`7zWNO1|Q8 ziTX?ELx}GdINSLQ#I0RM+`ih2<&Z;9Hlj|Q!4UE>$wG2BKleuVeWYKvb=0rKJj&Wy z$VmNfKL2Jr?L9h$F^W8IO@4=z`d#bsZ95UxsXs>N;_rn`rZ`%bW$ef1e>2}oK9Zvr zI*?<7Kg(n9=V8n%`}K}>TKzJQnciqmW_(LJMC)Xmf_IoQa28C6*3q^Qzs-2JD@5zS z?izjvvU?l+ZZF*R9^N+UL$qXX=$V!286?h%$;6p5)SfbRoe)-UL!W3!GSZ+jz&v1B zLjavetH*K>`XP8;uGV#(Npfw`h1liVqU&y#Ym2U%U9K&CsQr!l*qfTUzVhE)07lHlB7LfU|To?{b~5 zcN}aD+Ha--{lseM%sZRp>onwqU5<|Ut>o)~-%9R4{MK0R_W0dK$X)Fj#CrR)J(7C! zX1#f{-n@p8&Q5shZKt6tDxU_Om$wOW>0u9$KVc8nKyKCl3vt(rXNzP1n5^40-g+7D zxX>8vBQ0pe4$U+I{g|33(XYv0+SNY*<@Ax}2Y2%b6WkvY?qpNQU4wi4h!VJO67C_e ziR7+_d*X;foC&1CPT+u1#MRw@C-4TGE2O!V)Z8uHy7*&kWuHHBei!}n&9B?frTsP4 zecPp8+NFkm+U3jW6F;>HW08GsM~n4ZBF+%LY&0cz$2_I@UMa0dYS00lk4JkY&F%^_J)?;1uS-uBwihTG8p?WL`& zM;}mrdl~0JLk9Gp*M*`FJ7bTW2Qp%BW+3hh`%Kv+!}%xNvTHH-brEMxHsXBt3n4hc z0W#29=}d%4M&A+Rzp%dK7Gk3%W<*V1GzC`ans(KH53H#{uJt}ejzuXT7-C@2&w;eVU=d_tF;hYSt|9W68 z%TvrLV_(Cr({R7oT?-o92K$;(erJF;0GmDO>?dtV4EDmlh4Lo%i`|qv_Bjc6O}Ho6 z-Mh29pK#yNRr&A6?m@ym(C&`CONb`}YcJm+ey_{sW968WKN}DlhG)^_Gw3f2K>I62 zpQjwMlE3eTznEjy z4JDb5qmGoJosfPo_Jz)nC+M<_btc`Af8i$eBHf@X;U;w=-JnXHPPC|dL2i%1W825U4YC~w0M>)**M% z*xK&Du)9CTT)WP}Pbr1(5F~WpKfH^-IBN$y;kO6Zi5_^L8h$f?XQNGcWq0wn!j1f# zcQd^i-(GuD@Ga86)xzNk!*2}Z7vXpMbnQ*DK{Tc}wh0-Ufp|z(#B({qOS>%6<#;F@ z#Y=uO;3oXTjr=37%Y#F;%h#hk#Pf11pLL3M-4p(4%uDT$`Vk^d)Sq(HchalZr6u=c zyne|n+=AF`v6Gu0yA?XQ>DjHo?pBI=AmhuIZaU=GQ?nURHe+eOKFW;ViL64Ip}j4l zK9KP5x$q^L|3JQK2pc^YzMKJhsP7&FH#$Q_`1?6S#QPxnTk+FPZ(=U)O&Ep1>7k~} zFS@~Y(wS`b^MK^DA9lP7dyuNu<6ejRUfgSOtLGwYgQ!E;`zyX*(*W7(Fn49f_>FL&at$qf5NiW!M ztIq3y7sAmPnQR%w=Z&>T%&Tng?-ZX(N7+05Xwxow*U!7kxF#mlR2+->CZo=Kjb_1n z1(>V!HsE`Nuw7$Kp=X~!Ud&VmIxio>r+~4(hj#&eGqp0TZEV%nJ%RZ>^h0V?{BnI! zK09e1V^~vDMTwiXE|BIkc%6)%jiqq2xakiP?{hq3z}ty<#GYpCuibU})(q4&&7ayI zxr;fInU3>iFrQewEoRLOn!B)|9*BHxFO~U%%=9koR+4`(zLkmaA>sN(CSZz-WL4#t z(G~R<{`;d18>=%L7ea^VuOAH4>DHKfXh%QWfVp8#pTc46SA#Q#(Qn0>&h4QuU(9ix zTZT2wplkAURb%wN-Ddh?F0Zst_2%}Q4RJ%f4RJA1`Z$aQ&LEEoG3~29qkT%|sGvA6 z{0`OW+Q+!z{6X}+lG~Wqp#L1`dw%)-Yjvi}X0L8DaSp`&U0%o;1gWns_STF=rq~*&oG0{;D;vDc}2=*PQp= zJDOzoM;;bI_8GYQBkUlAoeCNY`W5U1*^oBapJeQDU^8sb(J;t51#zvyoJ=U*5%7Tw zW}R+2=1!UKV=q^dPo=vb=~9{2B5lftYNu3hbf`ZK_#XRzyYASK&VN#O(h%;yRd=Q% zt_<1EYj9RhAk`geA5?!%y9Zq}6!l8A6RImz9#j_X?;V;$^@i#e)uVwZk2X5*GXqeE zsNGOKaBeqfpY5|yFIK^w^j^*7P4%Kb_F9G0{#3N(65rwF^G5`Kg$%AAvk2>2w#|p}V|^rsu4CwRJYHsxjx> zeYR&KuQ@BUbsg>GU)ugZ2f<$qK~P6nlg zcDn=dm9ow&pnvMeopW!q{XBkq;rCjV9`t$+&(5`Qr}}da=Rx`T7~=FU<)ueGBwccO ztuH}+qVlJDYIO0d?5Xl=grNZU)X$SLI3jkyfKTGeDDc_@*T0 zlpN0|x%bqlnQ&fW3Ox}C2F{GqEz$~c>RL%P5MgB&#pCiuJ7CfcTe0(XJzR3 zPR2W?f2Gq}Jooz^_-lSS_8*kunMLsw(OM+ZqTj=>5@$L1D9cL&{@%~7AMifxU&)q? zIpC)Kf6eD~cKvb{KU8O^UR~aOm3S~0MtFY{mfpUKteE4N@!?g%mt)@qrE%~o ze#%f5`>w(-0sr-@@HOyXz6zh(0LpS$GW>13nm^>#j4@j|*3X`y@<*T9s*~sD!_JHM z{X+4sADtgd@B4+}4Az)BoS&-B%|||quc9l}j<-V&oE2|tsV!^&AH2*-=q2I0o~e!L z-Av1wzQXizOt(^-Y!O1~ZLdI*w@q(+s9dnXYE~Ak)X09$@-0(|V>qGW~;T+ccT3foTNO zaZKZwrZBZJy`Aa3OgA%qn&}%%KW2KKsW+ETSEdn6CovV33IDotc?@JafvMsb_0dc^ z1wf02G{=fnK3KXZGynKBiL0N`iSXwqN~-)T8vm~JSAtF~rQVMfj6RgO${Bkzu5`iGjM4WI*KwEd^^7q`Bd+rMY@C^$C%mL1jgu-iz}Y7ia(LDD${w4W$o0oWEY&~;y=TM zpXGw{TyPO%RUWsy@JkshdG2=MuXVv2T>Nix!H>A$GREi&i|a`jez^;N)&*BER{GiD z!mo7Uzv05Ka^b)2!moD0hg|Rxm+&9D;Nvd%3m07Lg6myyg9|>#Sn2D$3%=;$ztIK% z;exd=_&ntFvd7XTz-s|e*80PX-P?`Y3Zq1pm~=3R7)0n z1I{l<16B@6Nd*~J^1u#BN%JlF1jufR597}B?;=NH(lshH@YD=Dck$C71TkdvM!u;Nli3_0nTK9-juEj=r}AYB^+ z7=>L`qep965BwejhaR|ZxKaAc%}cjgATObC_@nyMAC)pZ95?;OO>HtfDoh&$O7#~} zX`>MbZPtnc9RO+!)wEkcZ^FF{cV7frh96+l@E zb8u^c)H#XZNZ%g2GuzIW;{R1F6pz(bPzX(=S@ZLERb{swdCCF9IJuqP`;IFMY2OlvZXi|D#_={zv0GaK9aL7IhF86SF7X0IuGX6V_|fao1KH8;t! z#A0PLYIh$!hO8KDX9DbsVM2O-s?D0`Fb|qx9GQ*rS(f~KC$7O#V33avXMVKJW+`U9 zauBl>P2HB7QS200_%Mvm&CVkWZJ3s_5Kjz4EbN$5y2+ND+??X<+`@bV$}c@X4^5h* z7V^?R)pxNw@DEpa^-Og3*OHs+OSy(unELk4;b`ncH}$z(DV&7+-%(1F!mG5&KV9VZ zPcD*4k6Vp9C?3KpJW;}QwU)$=36g(uSLrKC;mBRZgP->B^jlpjT}8>=H9h6mm6AWD zTcWO*{5$gryIv$Cg;RNR#>(B9Qh362sW7fsavgkyl|NUi_=+mNYy67;ckasH|I({# zK-C%YrF2fz)t%a`;*($J%eg(Pw&NOJVb#_sJcXk+PnT*VL|yHG!jwMoT`8RG;pw-! zR6A5u$*B8KUL?R3>z(vS|rZT#8SAUE?PC=q7jdTgluKhBtA!#-rR7ReTkf!ixWQ z?#kc)(!bV#QOnT^wJiK$;DyVWQ<#+{e+rCxS*6DE#xjAFn z1Lurs51ccmy>ZU?eiuyp=bZUF+?wN^F4&iZ#HHH5mxNljmanC1xtdK&$KOCLP3S<= z#^>55qW>Ci%S}zs&)2ltgU#o=O^2G}pr0j9WSSQ#v7&}^5?3)@8!zV%s+h7k+FFjc zw3Xx^XIgSbhOcI7ey4f-MI)qt6_27SeTDrF%Ww);aC*w0k#QsESGkjY?ueW04Bezh zqErX4e?izS?8DQ@K9FvyO_I*3jEIsOQJP;T9@Qnqqj)JSQJP<)c>Qpb8_g%t91z{) z-UBzeW1oh=(TvA4jt8YMGuVA5(>b6N|6JUZb{1}mCmXi`cOLGpxNW#e))L$#>k6hT zLCO6#+!W94xG6m9sc12eG2RMFaz2Th()kx|^7krklIwlk#Qy|0@#jK;G)EEyrI3Eq zmHeG7&oZX9Oby>l_dKRYm>PbN?#WEcnAS2ioM%4M3Z{M+*qvzw(`u%*OwTio{89S1 zKx0laAxhf_v+#2BU}o?*+l%!!;+5v zN%$|1wsmTKNVPrpcLQPyFKL6)~8hL+Q(^c-y<2dEJ7 zP%Tz%Bn`P)(t=Da$46mP5eJn-0W=bh*hnu_PqLwzLZM@7V^lYrm$W0VREg5HB7|~n zugxV)Lp)UDbF~Gileq}dvhMzAe6kE=j!9PS(tmGuypBgv->1ldb%^dF1=v3C95#q z)!$5KcY3B$_!#@N+;|%%=rBP!6SG0q+#IA$7d^MhU+nm)mOQ&uPVO}QogRlNqJ-So z@i7x9j6d$^yuA3_ENf~pq~T6cLb@&6nuB@r+?=WD1sS<%IQh``2%H;K7ZX z9@_lyBac3|rEKftPdxe5)Bh^pw*8rBpL_m=iWgscdB@IIUaj2q+Usw;xqDC5-naI> z{m#4ZRqsD=@X+D+KR9x<=GccHef-JsPe1$oi!Z-AQCoNNRQ=cAeA{sP%-M6_egDJx z3qSsJ@#kNDZM^i`?|)pr(xmC!+&w&7wbpxi`}nqL+s?1Oe?VY|j-7%!2Y2b(t$T=} zN6%ip`}FN+3=Qi)AbjAUh`~dK4jVq=n#hsYj>4SxSd%3M3!d{AWLOtwW@YE(<}I@2 z7ZfgDQdGS3hIu#Ml$89}{F|38zvb5d>HPmsr~iMg|LAe!Crq4lojGRml-Q|p)8ePk zn3*tZ_MF7I*Gv8XHUIw=`qx~nA6YqN|BNm0{%i&R3l>nf!v3fGhnKQoL|5t@e{Q;e z_NT%-=jWg0*Et0J*0*5){dE+7gq;(Jm*4y}>FS5y>KFO?hZ$yXuKxd7ZXLe-G{-FjmyeSkYLQi>FrF{ zGTp?qoaqjxRZI^tJ;L-urpK9n!L*iXJ<|rJ=a`;ndXZ@(Q_O0Zr~vg$1DSSZs^ag> zcmUI3OifJVnIiS=H_S#7?;e!-l2qyLT!@Gs?D?%XyBz; ziZ$X3s^Nmad;;*BBY%-A+%pPof`Q)%Z}*RQ3T=!gqy0@vPtm4YY#4{wK#R4>NPlu+ zmKI&OK%1GKr%l6#rnub2+JtmDq(T_%-6^JUHt_@TBYbKGDB`fv{2$^FgDS)WY2jYD zpfH~o^bu!4dUi^>jTpEPe=Z@U;p|N5*>Ut#O^e4(*VL(l($WSMi+BmA;Tm9=ipxMh zigA&%W;S1&oqa9MFw1ME7@s1%7|}yNz$D}x{HFm{0%lYSK_`hh0Zp4JM%6@VTuZZV zGF}^GTG-A{ul7=uAkI2RaSoNGggr=wUJF1h`Yl%J>UKtQ5~AxThdyhYK8W z$#iM{NnSF2t4NDnWcqSUt#B6Wjn}kaEd+7dbCUzLcCahexwKN?w|sQ7*z8 z%ir8R8dA~~&y;>o#or+4G!6fYo#Y`G`Wv7bgdg%}u)B~?>D#QCwQG@jHvZF0pt{mg zD&ZJ)(|kBx3!%YqXdzxg%yH68-FWC*UYXE)xHd)1qmzr|C!ii`&~>KtpooDPNq1MQl=I+JiFXf@R zcDnS8)m*zDW16FN~Kv?YvbZG)~-##p}-*ILHi8E;~&_EDEHHZZ@O zaSz57jC(Sk$Ipjej4PSnn{gH6K8&jw_ho#9aX-e#8LN&}En`|Up{s#$e+jkoj0Z4o zWE{>|3y}4J_MXzEXFNhe&5!XljDr}fc`O6tk<2$Tmb<=C9~h5iek5ZPV-w?O#%9Lj z8OJl8z&MfdB*w{%uVb9SIEHZ^r+>3Du&SKFusOy5#vb4rHn^1-o*G?#^sDhF|K4B z#kiXBSjNX0n;17Rj%M7*csyf$Cz<~Vj17z@GLB$8iLr_Cb&TT~$1qN2JehGG<0*_w z7{@YR%Q%j48RKb;D;UQ!u3|ic@e#(e8P_tN!}vVo>ltf7GQa7J{TOF5HZaa&9Km=6 zV-sT?cR=D9doYgR_Ka`HiYuA7)LRVU_73&iE$?5M8-PqP-QUoU|htwHRDpoILAd?n;7Hl z8gZ2~_GMhjIGAxY<57%j8D}y+&lnS5@(Pyu^I+`9xHV$~V=u-LjJ+9~82d7gXB^Bp zneiybd5m>|GWin59*oyAZq2xiu@~bC#@>vp82d6l!Z?_5E#py)8yV|@WcvCpGXGwT zgBW`=HZt~Q9LYGCv6=BG#>tFz+@Z{4?8Uf*u{YzjjDs1MF&@RZlCjPp<*jDy#rQa5 zZ^jKOJmW?czPAjo@5=dQ9K_h0v61m8#*vJ5Mj76$!ZS`(;TdNr{{y7|BITcPsq)Ww zlky)S{g*5Mj4PFY#?{LIFzNre^3S+I`Dfgy{6|Xv`ff7+-i(77>qbkyQSli^D!xhb z&5F-BQQ--apP{f>;v$7(B`#GsUgAxRJ(fva&N!HHC1W{DpkdTZvjDV?Y!OtAOU*oT zm8;8`Phmc->(fQ6`;yY^1L1r@X&(_?^Tp^K<0tknXHhh8r9awVK^KjS>7wy3T{#?Y z4&yw=dF-Ed-Oxod5OmSL8@lp&jGV76V!T*T+L=Qa?XIDVW>Dy|B1d%5tN~s5_WVe> zvcxP1?OT(0KFhh7^OwPM1s06d=}KpLvRMubG(cA-hofCJbY*aO+Q&s#Ci~Ci`0}w^ zg|0%5w}8{n<9HTuI<&ikE}9{sD^tt@(f&H656RDF_XV6k(sL&K)4mq+NqbO8Q&b9GCzbL;deX3{SK*~SWH^M4?s&^!h@=x`T^r!Mq^)MXTRPpCS%fwgupn4e& zX}MV=b&4;+9v{_Hl264)^_B9+W&zSrdb6C$i}W>4?6)KpP<^KKlzwTi85u9=rKj>o^*$WF)i{>wKjn|7U*UVHz}Mq{EKmX0J8Bos^@iF zk-u=%B318-gkBtYsR-}D)UKTUQ~L@>EmirFyVoY!%Z=I_rI#JyQFmc{x?jshtv5?Sk4XVU<3$TPhba&+Aa5pL|}M?d?hGDcUZ#)Kj$GZb>~k?6}m^czgTH7xhHu(^(EF zzayVYu6Wk4lq=TWZlqi@?Q%-FVx8om`sPSi%5|MxZY7tpkJ8?bbCNR~eFsO&mFZ8g z*B_bwRJ$Ee={xKprSGV3GX3#(dneO($V+>MsrE+Wzq5VI#}k+2P$etnm}-|(>OaO_ z4`n*>cD_t!Dwi(VZK`K2r$ZJ%)livEg1!F8bR6wTrZd5wf9H6cmut4L1kL52hL$8R z8Si8#OnR7Y&kyCFTvW}Fa?Q2#W%%)SJEHWgo~sm|N}_pqWksl8Mci@ra#i|M_Ex4h z*`817Kfzv)r2lApxk~@BPV!Lv*Nb%)%CYpXTAONbQ=ItZKiQSQg1PRL8fAMKQX z;?J_T3&|hn5i;D(Ue5eH#;-C~>waoou$1|#-Kcdx5B9%_ z`Kn)2&iF3ot93z7#+A%h_F1hHs&&L_=0DEnEIXCG%}6Jo5)Lu4aA_;}Ygy%lJ6+S28wn`t2F3b>*>)8`%FU#*K_;s_-2D z5XSl;vV4mfALsb{Fvb_L#J;x$jE^wCH)A97<*XUj{TScNd_AYvpRt+w*^Cnz-^N(2 zqmN;n!TdWJmvVfg7#A`BcE%CRk5K-Z|0v^4jOA<{*5w%&GQX1XEXHPknSX!A)y#j8 z@o~lpj2jqlWE}4=!v`>KWd1#jlUd#ojP*mM|63R*a`-^TLCl}6!ZW`EVLPsR<*Ph;H3csFDHFe%?Y#zBlL7#kT^GLB??kg=KZ zdyGpt{b0t4%%8_t&Eub9oWcCJ7?&`9lkq0TPcyDy{1D@{oL(2k)y&___&DPm8Jh!S zeupw{VE$6Z70fp=Ze;#y#(B(-WUL=9<11lY#Qc$rgP6a9@g|nHD`O+`Z(rmm4Ud1oh zU)1Uxt;f*31HGRuFF7BTf*9zXVMjc2orXsJ@}l)SIwwH2OOhoVT2^|J>o#ea<(8M6 zC!_eBv14Dak6uZ07sl6V``4*~e%0KC! z-tKnBsVKAN*p=TrJiXKH>|gH9CKs8Wqr4?vU@t$3Gwk(7;%vNY?i^o^z5FC!tv0Io z^PKca`H_3e9qH%U>#Yn=v*OP27rO8lJH~t24@=xm?6pOs%I+WF}Pq}WWR+(v? znbzsl>Z)9KCVi{;Mki_&~rAPCxS@!xU`PpJGJo%98AP)KDI*p@U%5_V} zzIVC)=a{X+9U0-s&E7RUS<8ob5t)kOwolLUUFSn?KY76 z51i|dTqjby5{OUfJNu{j9ri%3<2mG!>&$8w1D$(A^_||Jke9@2cLP2=&Ff^!VkoRy zyuzwQ%5`eBD?;vzkf$!l_~kmELms(~<7ht;JMtqj{a4{>{Zs9(Q0vNcQi$Tq^#c_H z&F9lINyVVnN1XYzUgFFrjVg)MdV&MfIy#+_q0&?Bhn{M*he2}W`o^E1htfSCdT+_U zba#G!%Jn>zI^~z@tCE&5t@qL?8A=|Kfqcj(w_K-n=v$sJjh*_ zq=j){*@6^S;U&(n%Of$J2qG_u^X>LQ;sX2gQ?BDwl zm-2~jV$aQ;`u3YfV^)*f1FiS2n%%qWzkYjXL3VZi7unC9wdp9p-uKh`J)U|X=*b`Y z+O}xHOW6h%3li%9+S!_U-+A&Mw=xq0e(M{*-9&m!BnUIkd+z_lswqnfIRW1kaxr zbbRCJj2B-0J@lUYk~f4=`dSa))vtGY^4=F_Z`*QRs}V0vxv@6sixThcSI(P0y|?^G zNpNPbRIJ}b#twP#y*amiG;VUerRTO!$M}tY)ArNX>k2x|t!ndhw{uyahWQ=)2C@0w z(ftO?v>a>L%|TsH#(VT1_T`}O`^Bd|v}pg+9Zyfb*Emq$DK{r3IHxmd+cc!F={b*h zTlY&J9o-Q6`r#YqKR9sIKkoNU z`6ExiI0oS~)8r%PE}k##b?ZCX-if&$d&cj(F}%^NZ~uMQxn;i@&tE(|_NjrL%NBk7 z#$6Mv%XK-I{2rYhTwM6%eVSJH(yq~kr7PEW9D6wP+8wLDy6Z9hq={2Ae4qaO^1AiC zPXwIHi0C(A$3x#ouXttO0k^~p(=$GOywBq0_biG-4NCj{o7=AcvE6fXHniVaqRrnK zYWSe$olll$kA14^)K?FGmG|gpW1>608h7BxqD=wypRB#sH0|WrXD;O~ncDZ87rd#K z`3;`+j8{#f@6!kST4vvMTi1nqFWyzSxM9M853VbVe#}$9KdRMhWewFId^@Y^x4M@m z=zgfU#n3yykL~D+OO^G{dv<7TN*T3u+Ko@XKQ#K}wCwD5J$@WI`|H^Od;4tsJ zoaa-{ZC};%hcADB{FVA2>N@@S=KP^0r8};P8c?}s-B-_c)~8+kFm7Sf@U{zQF9_WA zx#_^Du%e8Ihh%>G&I>=kVNL6c{M27eD*63|qqDv%H%xxGan8nPystd3yZPw>ldTWz z=^onk?f16Vd~|&Adn1ne&iZWq+DG5pTz+s$pPg zxHXsdKf2B*|Al2uo_BE3x_toz9QQ#(Jay%Tb>Dzm)Af1?WdzIZOu(tGJV*ZcN^yR|0?mT(H|r> zP3qZU*_`sZh2Qp_xnN1B)K|Ybo8*1@lyzjo(BWmC<#+8G{LA=uAw51HfBo?Xf9~?k zL2-j+JZJ)I&AxR=gwc+J{Xz5?yZ=! zhc@<4dSGm1yI)>jX9&Ee=;(=YNB4f!GpfU!6ECbz`ugW3YYu$-#0@hBxsRFl?Kp45 ztNDF-afa8#8|%jHcz)opm!HUe;_%p>SCJ{=LO^XFfAV&F@G@!RitX5^W1!yeqY?ZgS)m195El(-d_T?5f|4?hxr z;khr~8}Qti$ZMv)n}1|M_L)}Y4^MCW(f#em>t>W)+sp5hZTWXhc-`?4`5$Vxb=dk%;i*GEh7P)Y1?i@~ z(~`8`e?GQo%;K`sg94Y&kG(i_;DySc?rqa9z`7wezr0=FWK)1{w0G&ELp{Quy5@)d zpRL|8`1Ntov6nv1@?2A0sq;L!?7NLK-nQ&Z*?#=9yS_Rzw9=Ase#4ua4+SjzXzxAY zqQdwEG>lmK?qi`HFM5xS`RRkFpIY)nuia0syy5XfgKU1oZ=LYy?#h6-%HxK_?tgCR zV{g26<=MqUdc+PKayTGr$GR(dBR-w?`W+hs$6XFSG^z2+$Zu-yYHjUw)GheRg`H8) zKeKCJ?)UnxyX8aFwEZp9icgm`4jA)E-J(r{zWvB6b-L}#&gCymx<2gV_rGupyYl6v z_wVT)(C@jLUaxk3-Q(^4hg!XQ;OvXneKE!B(F1N@ymRmLZw8ml-gj?#;-F#Ux_hh% z{CdxofIpf%+ZCrSxIE&c`HSQ0cBQm}-YgXhg1vP$Rdt?6M&4lI7$V zsbOz;^xg3AM|qY9`hZtRoVNy zR_o`V&57xp`}sZV3s)B0G-7kkJA+?cJK~*j#_D^EpYQ!uTPmcq=)IduKYD1u_)mks zEqQ$4m|rr-6vwO_zwO)N$=_V=xjFCS+8;hR;Q7gu_q>^oH7f=@_Un@c?_Jur@!PHoBkPl%ePqo~t$#aL z`q8s{uaA2F&CY+ z(|6gx&(;){tt}Z9@XF`mYt0{I-{Mi<`=NM|ruyfGqI5?;$iqw1d9=}Vp8lGyRgmV^ zs=Maax{v0j57*rF!!>uWD9zp5ta*6P&^&x@)I5Bxnx}7}=GkVY=Gk_w=GktG)~em} zS}VWZTC4USXsz4VYOVc$)LI94>hu9YI(>(5oxbCEoma=XI z{@`A8;s?>`bmRvpo%SK!xt|8EyvnQY6U$PYR&EhAvEW~VMtHv<=qJ%H3tDsj6+yG_ ze@)QV{dNm_%O_PtOJ+Rqmcad|zAb1((>sE$dgeXBzkbGkf%pG(K;U2RJ0x)He(wt! zwCe++RlT1$BKY$b92Gb^v_{~Q4T73tpFSqs*H}Ij?#~5(BtB%~O_9X~f_RV90nvxo%d&Jr z7PR(sm7s=CTAvc}8{-76s$DN=vfHPE*522xUc|e`BB-hHNkO&a-wJ975Bpm1FJ%g9 zGCe0~ncMe*){YzajYyZ$R@di06)!6Z84*>zz-`ms{EVo_-Ywm7!@D;{Jv8W0!T`6# zsEC>V*Dl?c619F=zV*3zmZ;Nry!7J2K2xI}U%GVH8>?@K`r@g%5B3_C8?{7t%zU|Z zPSh_KAG+?ukj$vYu0LL^56z02+vSA0`cA*7i0H*TW?zhr+BEc)KL(YhMlJTrEPeVL z3&)cgHDlHjtM8kW8TH4m7Zz2Iv_z%7uWNnmqx7h8J&wNg#<$r~X&vJ>-J6#kHDb_v zrzcuxMSXTdL%=U54N<@J?zf}%)zMM!O)`G%@oa9??s0EFANcT1QGFN1xi{RH8Fg&# zOLcShW=Eww^6^41&rwld#=iDj#~$;duDjtIWqvFl?#OOC)AGIWD(u>!9lO5IV z&R=it@~<1Ck~db|nXxb`D(#1gGlg1i)We&8U+Ld^XjIMa3;V{OO^&*K-pl7&y^s`@ zk@WJIZ!W||J+&zK_wgGiMLjqt&UB({R@6-?pLuWJV2V0->hgoJ;W<&m?%Q_yql+m~ zyXPIs*}oty>iTnIj+pXtqDFkRa@?NX3!=sroeh3*RZ3Lk&$dq8R$U*pZfD4DziFva z>(6#PR`*DD)VQ~|bq<@I8WpQI|NPv^gs7$atLJ@vcRcGMB5F@Rx7VX8vZFRtJW_GP ztCpyqCw4v4F*hbErEBykl3&n?y z1Q+Kn=FnG=h(9045g9Bw21_11rXdWShGJcuK2Z2{_!D11nQzO@Mu;pitHm?-u#s&(qgxhaNJ1ff$P4fBOCB0h4*`ANC9Y{^{~ynZOXEZ}}zlJr|%_`*_wEjP=MVaZ9$!l!av^XVwR1?dGSK72AK zH8(BYkUQUyr_LUymLw24J|IQLW53|aDsHyaDW=`Xo|!)JsYY9<8?A9Qve`^6!vWohk}x(sBz?dBYbK=Hk0H^pT4PO^iYt^Jf`{AWXM#jIyiZe`6m+!SEmK4kr~EhwY{&o>y;7sFCn=Nr;dEdmec6TzGBZ{v^ETftSZTIEgD#r+)pHX`Wmsca62GMxH0<>TbvXPsw9X z;Q#JN`7JHy>pzWk#>@#b$9}!}?#xL$;vVhNB_aRCBkz(5#$P*cR(`rIf8J~yU0gg5 zM;X)CvhwHUTj}#zN$NQ}FM7t*5yR%qz()`9y{>r$BZh@rY}o_z(o$HUW1w`?RfGGw z@d>dwL{ZaY+&2)PKBL)aJvLwHpVCR(J3EK``t8$cbk>IO(;KUvM|4^h>d-(OeO6%U zJ)HcYEOCw=+#(`U=P%H-YK6zoNa&q7KAQX-ad9KZh?Cf!6DLCxIaMH&XUK^+`6K9RykH20TC9wVE(iTF&-+!925 z=H_m~Up(9@pu&MTD6YVQ$j}ahFwT>>_tK?H(^8;5EohpX)TgZ=wRcRkl&_iF^&&o_ zvs;4n7Xdes4+@(g{h7!g8vno|nXY-B8_p^PmSs2uKear#3EfGzq2yKyH>a{5MsD<- z`q`M5;IJdeP0K@?=;aOMY~kD6nh_hJ2Bz>iab<{`($8ZL6>eHQ)gfEHEwy*VV2UFC zB{!{ly4_94MDG9e>Yyd}tXpyF)TtvY!|GSizf-5WX=P#LcGRPq93_F5V6CEa9q3*4 zRVBK+>QCjpq0=gxnwp&4P0sEkwFtku>f5W`?vQ?~;rDqI(@D2+RjVl0zV)ZR1Fkbw z73`PrR4dJ-_tZ>UeZBZ@hQ98$daOg4{ETp`Tk)X|;+@LS;{E0kzU|1$-f#%QG&|Iy zRU!8cC;@7FL=Dh<1a5`B5jU1cv=s<5Ov|IVMOYo&s?j2EN2x?2EKwgPzg_UVlSse* zR6qRgDSr2??}6VP`1e39UN2<4qh~$ILvb!MVgDfRG{i}C9Q==jJ7uFaetT*--Ll?| z=4|!Iu7CbT@JrQ>RQ!~?0%@hgw-4FQg zU%g*neP^}DxYqT}0PX#W2&&s(y1x~b;VM~%;YSJFvwkww^&`#e`luG% zzJzRLNYmBt=ob8@Xz@W1SF4jHfEIVk-sV!lgJ>=C+KamFD4XN6FpZ46mhK$ z-{`@|`wbI%t!~!7d;d$*-o|ZYf3^7C=!9<*^;Oi?X1em!40h5spgtT?!9emH|U9<=G<653&@1efqR&luU z8^F8h#BZbd+4G_F(|8z}dtcf#qUbB@>ri^4Alg}&z&-0b zxX5J06T(b4rx)PD$1&a7|7q__0HUh)|IZyT(JZm$g|;wSDrw4ST39L|U_hedPAi~* zP>Lg<;>%<#D=IU5uUA-_!#?a-YP3o_l_lCnK1)n3EK4diD)an5pELKuh+tOl{eRm# zdic)0_blK2e9tm>e2|Uj7qxqC#j}-e&wblHx1;SkxAxP3TNrV<&!vO@`Z$0+EHyq1 z(&0!Q4p+VrqJ{TJW>;dyY@C*JP{Br3Dd<*>hiT%y!Ko^(#Ya++eCO7~h5?Z9YF}66iq= z(CO*Ow&JH~*qqQrv|i?M@Vh^8xaUNhHbDmE(=>7ObWLRFWe?)Bn9+89UOWBUh<59d z4gJO0O~hMm_(jju#0SWR&+p8a?23a-W@)WHV(TgRFhc8`M-w~IhY3oLP8_#mPSM9z z(4QVkb|>nObq;ue?9lmxaR#xWYm8k7S!Sy`uCe1e$iG}&x5@uD+#9d%wdo0bhqpKH z>AE_{(`x4X?>f_iUqnzZ&S89!dGh3YWVkhS1(MYEa_BX-($0O&ba;j(Y< zVCdUGmW6NN9H0q0_=>QaF@$znKUG-Nm|>Kki1G**#hzW=+^pMW%ZxF5Q(u<1=}W`& zm`|fG@umwhKIhySDClzrcsxuRaNiqq2(eE)$SDMVuQ13PQ$-DPj(y{BgJT!(&(`5# z9dgcQB=0zU#(domb2cMcanG@XBW}lu^E;*+b(pHdl{$3laI+5I(_y0yn|0VD*40iw z9S+xFxDIdB;cYs+ONZGybm*`~hg)^HQ-=q2__GdICAj)qrbC+!<8?Sqhc}ZaNQ-p1 zQipjud_jjhbl9vz&snZ|=jgDX4u|S+v<@S6I8BFhb+|%@c{+Sfhg)^npu>GSY|&wl z*{**3=+L6WaXOr)!z3O4RfiAg@KGJ+>F{kGex$>FI{aRT$8>mhysKZc4lOzyr^AUl zoTbB59j?&fDjhzq!y+BNpu>-J*sR0ux_mCup+$$|b*O}fKbPq87^=fi9U9N;P58mD zsaz6YXp6vp&P;K@6F)o_GCw74{@jF+^whcGuAL1rvI}K~luC8%HAZp><^yG0%((%)0Gn3;JLXzTA zMTs_E5fp`AfsLEPdU32bAucUFjGJ>q*(v^j3Vk@j7H-YATk*Lz7dn28k7HwElqz;ci+&EBe8B2e{_`Q?yNb37t~ZnM92E z>vPkV*b>ATUa>+5_L1~LLR=p=u#CP)v1lqb zk7kNV8h#)S|07UhYWRei!PW>>J=7&nYeK3LcFOF8kogN!u(2Wfuy36zz3Yg0af#dA zX-V8)#7%L4cc(5%!_O>COP-eyoTeziCo#*T?N{ukPDoBm4@VV|LXJ&ONmA+-AC@s2 zztDh9N7Q1^8EnlZV;9GP^A67`>2s&2U}FQt#W2=)liOOY?Kk+IR}%A$e9Re-UGGdrpOAfLE2g z%SM9Z<5Sfy9yheJxnOZAIY>0D^OMO45Fw7cN-1vu_5;H?3R~Slpyf~xh|lKwvBPln zSus=G+BtWEQ{t!El2epci6^^EYyGW62S2yUDVJBRa$3(T)%1%V6XwUkPbhj7bx)r7 zJB+}p%ws~^FCgOjW76;XJw#d&?kv{ELvfT1i#yfl@yYm2Gt#fxT&3cl_?eN9sZ= z4LFr6Np|$;Jj%xH!Hl@nWNw znE8KG`mJ9xGqp<|diuRQpgu7f_3Wa1cdi{9>8YPw`?Bt3_^kS{>%O5E2IMpM&%8cW z@=7-aovQqQ_4D?)TbFc!ed95H3R-4Y(24Rd=kLrnyB?qPclmMGtsot4I?eLI zdil*Lzb$WHULUbPuPN`Q&f8y>t7=T{BE;mKx9&8Hn4P!n9DZ{7_ZvQI{0ZmZm$@)& z(*1Ui2VDO3&%#VS9n{T1<(!{0BG)m`hY%{00KW7;4NaWRu4Fh z_+qi1_Z@(|FU;5v#&r_l3cz~6`$eKD8V+c(DZ#^esSsyr2_7|KnH)dKH^jnkq5 z*Fg@;!eO?z@?}kehuFNvQMklA@^W&P0618M$H(M6G1}sXFb3y zly3qgz9QHK0|0wKjy!yJzP3-ZjT88$e4N$O zS8FnPPv&>%_h~hN=S@LBQ~2(lIIRKjACQ|3hdIJ=zX@=O*rVB|K@V_kn+{T^LXLpv z0rCaByKp~iCeA(p`rIHyA@rtJhfTK#Q38CjZxv#b_|g;})H3rq8veEEn{8P>2uFPb1*#Vz$Y-l6WSXnpQzSOkbKTt4YT!tqJgDwB!7n z5JvzVeEgGZ`p+FTBplSS^#@YGYRi9W$&gWz{_x54;Y2^%;jho{voyk z{ss5BDR%{*19pS`M?Xz_g?z5A<$ud z)5Qlnp!amxEuaO^yH1D~=@;LEAENx;QGP^o00xU#Qw!h_wClIk9}s;wa1qp89T5Ne#Vy`b)UHG-ft)L3H7Wx z%m7@9^4b5SzRotq?h@iV_#f+M=-+g}!`2A70B`H(;1|ke?S+1O9`Fok65>}e=Zt^@ zF1qYrfvTjQ(wBvR<54t3&S|npofg{`S=1 zulAdwy)_Y!a@pr-@P~;W;pb`MVr`B`()l=tf%}%f;2Z&<-vyc&W{NjO_r`ftTqj+q zDY?`F9s$2ej z4flga0Dr)0oTIS-X5cIh^`!~0FYxoa8s|80KWCJN@oujv>sn3p*Ah(Cqc!D6>|-?H z;PW8h16UUVd;qIMHPHa*4AY>`v6}aI@E`s(=sFF0H%qGroD8{`!`V)p77zisqkQxA zxR3VjQJRW7yl@uA^9JArNPpH0mapHb6U@rW5b~N~SBlPnYv;&xPt0sZ~>tb*| z2QWMibfSFhEKM{6HYT{_8IY*KF7}$50c|Wl2YdmnzD*MafPV8d@d^B+NP#>(51ipl zRr+A^N+Z2{G%H{o%C)3Z??B%|LX3lp$d`Ru%VOYl6ZHNLO&mnItcM_XK+7sk#Zlpa z=WDY~u@AdoMmF);qghsiUhu#AZ!TzgM8i0lXlenx0`1vzDBmwVeAZ|x&Zq$l$Nlgf}QPe#T{lk5pTN#CGo+ZBm@g~oSM+5R~cR3)>j^-f#<2gmb za=_7uFB$xT;Cqh3!KIge8Ui0iHA5u^Nb-O&m;0a&!zF2=eY=ZW{Z&L zv4{`P9pylNJRj2neE)AIPvHT=E%>hb*?<{<-hkPFK7a_F>;P`5D@F^T!kILEm5}+A9Zj)5%=vK+-JWq6+3`i;$6hSE^yNQ z+D`7*cXGe6ll#q`+!rUQjjNz{C-=>r+_!XapTEN#g!}xyN|W33fK9LoH+*6@!`FMY zk?yqxzJfx~lkGJ;?{8dT`u!EIDP%p>{*3Yzo}T<9u8j-8Y+QR$$a=~#dBC3;S3-Ti z$BfG$WQ-X2+j$x~bf~!Qy6eQunKMOla{nhCT>Ij>RPp*m^c^rQ6`h^AH#Ddlu_kbpK0!oxITvdx4ogR(Fxn%&Hh#T z5&cW~;5Oig))Etm-?42!?Z(wn7Et)#b?kwy$F?428@xU~<>m+!I5rpUQWr@t<7xoum{?4T+=Ok;IoFTRHGBf=Pc)5kL`4nGjU(q zg@){b+!eVevaj?Lm>(gVk$+3iM~oODqN1Y2)TvVizHFy(gMup^&(6*krKP1}iaM=qEo<)#?9?EZmUZkiq=GG+dj zP1D)lv#Z#Crj+0O_+zzDT6~8P%Y1#McUNC2JoF6O!McvKQHJH2d%E~U9t9~rxj80W zw@>~1_ZNc)4;B`SMT{9UMg#{3i-?E_#kl--n|R~l>qUM3?ZWRRDXw@$ieYa^5%`)EBj1){^m|g={H_!sA4qZiPAMku zmLd&#`sY&I^raND8>N_aP>SWtmy7%FzhA6gy;?l>*kfYNnl)nW+O@*raEQXfLM7ko z>T0oR(#x5q-g@gT@$S3titXFCiw{2dKKf4)vD$fyPY9_shAV*IyZZl8^>iB@AS zi~4h#5evv(;sMlOi~5zQUyJ%XP=B9W{Q;;SWW^a?8|LoWLaeIB+7s%((k#Sw)Nerj z&rp9a>K{P;L#Th$t-k*NjBmlv^_wuxV7;q)74~XM5Kp`cBizwT$cAA;emYsmeG7#A zYPFEf8-zT%y%m4|^H9GZ>RV8MEb2$0KH6$dM*StdgnVF_kn1K3S+zjOmsg|B4MOhU z-c}#u8h=0Cb_VKqL;dck5C7AQU`U$J5pwJ>A#a{6aZzX0{0M*Wvi|4r0KpR0GF{(jVNZmoX>-g0q0T1Z9<_o0PCwD1~Q*n<|D zdr9&AFewgCmg49FDSlin#ZMcg_+`6nt$!iv^Ec80QGW{R&qn=4sGo)UYkEmhG)#(( zlcjiNffU-UkW56*nVVW zL||mh#pm|+!E+Sw(+doULH)pBHV_gSbK$w?_I5p2I9}Gz3?w63+mAW_ymQaJevE2h zu%faro&*0-)(?)v^YhNV_<9|;34@3N>c<2IM@@{342z8E!v=c$TyVi(di3aV(FEei z=NO`pBJuo$0x@I*pNE7+MMOqMg+=+EPyo*d4pQxpiwcbliwcbze@UP7^)Apu%;kPV zCV+mnAELT2xE3?o2Pp6g{8Q}@yEY0ejtYy6QbZ^m4gLfFn9yNCL?JRNDyGl)@#mg< zE{JG-9&^GRa9O)URRI6Yl4G^ zd-UvL35JP}Ph)}pI{dvqNfA4N*Xj-puU`Q0B zA_JjFZO?6^O%@%!IQ2%yK9%L&_hTJTaO5B>pv!h zdN=9XvrJus_&g*K>WbYIJyE_f(13`bGkcvqDJCQ;@LK4a@s#{EQn+`oQBlF*V}#pd z@;_9S!2PSQ47nDj;{F)Vp+9Ip6p9!THu9QwkKNjbpd*5>Ik7hE8DjZ_}p{P3C0Q^))tE=5N}i?R(S2T*Tj48y{BS>eV^|ZpMU;2zU#kFeEs#;;^4u9 z;`{Foso3Dikt5>QUw;*=f0SYaVukI$xcOQCz8L7P#y|(V%$|*bZV3juhcVCsFeURQ7a?c>wm-`{@_KbiaV@#)id zkgxaIXJ3MNxOYFl{{08`_wVK1^YXKB-KX!R0|%mPFK=J}!Ty8AMg0c(`Cr`KzZVLe zeb!l*T-3L}pZ}TN{VvgOn9Y8J{Jp$-_@U0_=bU|3AD;^b`Jd_K)xBGnEneA(c^eFrQ0EIq-h`Vhi%5sRz|GyeXmWI}C3>;e&cYwm*2?D_vk>WunR^-X-wL_Xiw*S9Yq z^JT~bx^?S@8IXWyAg2&QW6KZuEM$Y@`1mhLn{Pg-Y1-h?qenyY6-^j4R6Cem zDY^X~{!!K(n9mt7V8Eq-0Jv(;nc=F|!U(OsiZrqhmWwp{e7sje#3?hcRusXGj}5F3%mR7yC>Of zw$N3pR#_2O6SvEe2VZc(1y^EihC!Z)hAs>Z1Wz*Q$DF6A-f2wQJWMsrV>N9li@OR&R*8;u! z1#LF{{PWN9`|rR1;lmF z6C)FU@`}*-%xh+Y4npE%WZ*1~44F$K8}|(ONAQ33)mK+Sj{Tq$D@e;Lue_pYpnhPz zNm2$_XHxn?9BC7ec5G~jYJH;3jR_;9*PF~9Lj)vB|Ve{apz~s|Fh3NQ<%0ZxEz>8A$drrz#yRbKK z?AY4VK^|ok{_yqE$i&~shAa&DN9=@lKz*6{nUvQxNEz}W_)i)jgR9<=ayV#6`55~h z$FSbLT}sPKO0BT6cv`79)=8<$E3drr%6`y=6{G`lQ1lpd5R#YFBl5o^I>>kOoHC-` zQ2*(7F=tZICDZK4MsNT=tw38E$(#u^2;xB z`?Kq0;nGO?_<}(B==>ms*o|LEIeo8`lN+UsA`PGD_6(gFZP+t?66~2iX#nhi_B;go zM4LX2eYOs0Q20aME3tOb4}N_GX`w$PG-x2C-czsJ(_!crb)CAjd+SD7ym++CUpPiS znKo9@Kmu+#Amt4@4c6UKP5@5fprO^CNrP_BL+O*?Q~Sdw^#u*SH7?(ZW|p_3LE+!8 zU%yuWk1?L({7Lel{c=1o`n0fRVgng4dB1|St%#MPa(b65&rP^O8;SNs~8W_<_tOv zS||gK2ktU4Xdxv2^pl&G2g}Mku9c;rp%66Wrn~S@J0xZ7*Px+E%9)^n_Dr7?37=%x zGifmFnKT&oOrPZUyuu%+3{ObCX=fZ?5NEY!(qQEFbQrecP6t1e2Bv2+N6Dv_UL!02 zdaW$U01b=A$Ro{P$&X>qq#*`0V2@4CbhBsrB-(Q@Y=J&006vN1v*D8lZjtg*7yj-2 zlENSH{mPLeNA^REvVwHbFA`E`NC#scLej!}9BYlZjL$gUGG<_U&OSI6i|0BgPo`lB@Cw+=u_CzcBRwnrp5ZKv@`>_DZ~o z8*w*iq3@@^=e&k~lVcUfHl~;E3Xso&hE2<^k=0ADmF1wJy*>W}K56y5V7c=4aWX48 zMBY6oL}tc^$_E$TC_nqSUXlj)7(>}Jd=gVf_`}~T{Rcj)h&%BjBu>Pe_CP)xGNF%m zkB=D-kw)tOt65{^i=d$fG;F*RG{6>U&!mC&OrNv{ew8$2lZM;I$@`K(Lt?0079XZ) zAfAjdI6fOO#z>5BNGIt(eFn#1#u3a;r&E@dl}W~>MmFR@cq%)=x~!~!GETmH_to-+ z<)8t!@HA+s((Rc(DR<#mxh{3A%&`T^M^b|1!*he>gP`GF&~O)MxDzxmwU04wg>4|6 zDA#%&z0rGj>p6QbedoF-aA`MUIH2e*EwCeU? zd4IBt1|q6r48+?Lkk`Rq9hdT*cDm2Y-jq4U-_YsAq?4taTba?+$p5@(C#Lk~S9v8N;- zdE^m=59jyfH)-Hlz;S|l#mqSjX`nx)9&#)sk6wE)RPHDy{zv881&i8Z4A=r=4B9h& z(&HIXME^JEUs(IQA6uczsXx&5)tL8>#5tI9*s#PinURqpVH1+q*I$3VihFP#M)^2W|M|{ldGyGU_aX1oUVp$@O1WaiiXU)BN#1qWT}N)b@kTj! z?p(!p%qx{Hkp|iY*L{c^>1a<2*C03!Q|}og(N?$~u?6!<-eZi!ae}mTkideUKBK&T z@A?nhg6%r6M!EZrJMK76JaKMRW!khs!=OQfB+jlWIdIIN&NKEg=peqtpE^%EIX57r zJvyB5j6#@jhcJ#@z5Ff5Y0-RXAt(Fy|0|1b^y1 zGj)mU&7_IAam^WL@09(9goMbTpdg9UDM}7}&N>DSgoa)jGBNCg_CeeYNIl}5fqKO_ zkg_w@H-JC4+j=0MPE!68bg#q~KtJ$s1?~C87hhB~kUv~EgncL);^N}ugb5RrZedSe z;ZI(Z=cI*r(+=o=c%O3w>JMY>EwBUH0BwTp(gy?g<7j7vkB?6fZz1re z-{d~w=_ZB0p{IoII!qdjOx#Epb%?fb-+lK<_$Z-#GkS; zVhHZ*Q17Wr8O~K-`V}5zLYBE#*IqyTYG+81r9@J*%jf9D_&)ZIFDT|Ddnqc;qe<@^dQ^|xh;Y_p| zuc%|JL)wThb!!WJCuuQoM|@iJ2ld^Bb=zOH{sa3`^IweLD@Y6ZPiW9VXwX4Op3=Y2 z7MLj;-lH7oJ87qs8GRA=61WFNTF7_w@kjhj8^$MoQurJCk62*<`NVuGnJ~U*{6o69 zFUL&XB7EbGHkg^wyk;57 zf;vw=lSb+~^yoNZgeJ&}<0{Ws{GPFi`2AKo2L*Tr;oq6r2hTq6oW`F{(vHDp%i_hy zL|1t{aPi_sd_Skz1@TE;|LdTK-kzpIeES9cA^k~cv}d&MhPR!~Uc^Q z)O6^f!>&5)sY72K2I??VhtdT#LOeg@ z_Sm=<%sqwS*xR`oYr`LXuTVM_4y5&>E?v4@jk(O@V5sr7950M+KKo) z59?&NAqEab`C-WY5N{lsgFO!JlW{FH22R}%;4XbkaJ`&TnDBoGS7(P57 zeYVhl(noT>L>!onJq$hOKMue81AOlL@SD%EVeXl7zmfY~++X3EIQNG>JS=5BXg`g; zUSIlYtSiJ}?P&&aVC=-XC&x$nb&f^!)r@5sr|=m+Gu?!}D(-o5uZ?>=Jiov_D(>%a z-=BMIOq~&r`@Wn5U=Ess`NC}+e>tvkp38n2N0TQy{VH~HwdnfG{jwXecFX-f?v-t9 zc7NL8XKrG->x1f_^FhW4%*272{+*dT;rR8<{++V;?ip%dg6rW-v%bN8*H^B6)2YCL z`@TE_!L@zv`5OAj{a)@fjt2bjM4j~In1cCh9OB#=#KXXa@@EW8TsZzbzh<6V)8?Kt z*W``K_o%qn$$i2bU?WI%x=egIj$_>=1>e8Bjbk&j zfdgX>@`SN<<+2d9*T?-Ct|KzBZ)Wbja{rine(w6nvn<@B;a(s2n5d6~UsP3(8vQd4 zGWHiat};$D;x_{q*5JA_*8=mgp2#18%Ng_qobNL}C*8z_JRsbWpRD!`xnIS- zTkaWh?|HqxUr3wa{s{L9?bxF-c)-rweKhxOky`biwuSHZrojK-Mq8xc;k!1ZbBBlqyRHf`7h_nElY$9=L)9S3%1-R;`PzZre+`jK~9eULBX zOX?u)kTE|Y@n9xDn287ZL^+%)z5hy;+B4-|-3s8q{nB>nB>%_$AAIn^xF?@{at8N? z7>^SV@|^Q(&Z)U>N<7F5`XfGL;{Gkq0T?#Xkv_7Vu4^3uU&h#2uSmgq%RKVo;fEhq zevf{a;~)J$b%Fe#F0yap!bF?+_VW+qH=ln5n`ozxunFoTQ%4;e`p@||*EzVROCEE6 z1zS|}E!rk=GUVef8_MGK)mGWO?*n;g??-L=2%F&kHTCg{WjC<<4#$7^R>s@D>>qm( zdjbO))h$+g(|D(XeBglx)clS((J#^thzEH<`H(k1H0_k{<=!rzy*pT)1u*n6Z^?N1 z)IV(U>wO4L+H~y%HjEuR_DZbxE+HM*$DBWF)~q-2{cU;s?YFCSV4RUuYZu1chdd`g z$bZi7s0-u=@o%5lCd%!AZn=-OC-lz??2Ao@-K%*Z$9nF|aBm55mc+SlMYl2kA|A}- z2k~ex8{)@ti@t;NQZ#=RGUK~bC11`#5r2Hey+rOy;CrT$>#xLN!GZ;f@AL;82idlv z1MG`_!LU_~6UVSGGY7hyh8XEMI^~(C-X5M*%o6v@|$b9)IqMLb6&Qm|Jc8c!}sWBuy3|WITHuGCqUx8 z0&?QSi3&I3z|1nV0hXiQFixVs;JHMsh3BGO&J|84DgR6VgLCw^vAx|`ljoREpToTc zyt6>e97 z)H%wFye8fB$yj?S`kj5N{@D+Fjq?8;;bFwU_|AdE_Z`(*G2=q6IZ+?~MBl1^(rb*r z)Fsl(Hks-3Xmhk}(n%fT`5m6U!1n@_fB1uRvu`F}(%+u%?);|=nCW}z`zU9;6N38p z4c5c%M;lx}`J;*7HSzv~nfCQt{;gBIj``v{yISk_b$#vN1+s=LP9w9NQO6fmm;-Uo z$eH-eEbSe5{A zF~795RNY4z&;0!S2&`wnR8di(K`t2Jy^8x?TT5fm}V`6&udh=Wm=p za{kJ>0_Q3g%$3#vFYdK+PEOpZ|LnJ9S%ivle!v{;3E<2&I2Y&Ki)#^__i^4CfO#j^ zs2NicZ~84J&S5x*dioy=B-?OLU&F<6O^53UoU@UCloQ7w#z9Qa-y5dlEzUnU_u$-z zu`cHuBPJi-}9E4nVIU02=~<}OX`cke^nTN>R+x_asQo|`{;?pZX*9ME-1gnJvp8qU|mD! zHY^(}ziND6@so3?dy-ZEhYkIq?$OuN?@*Tb?z-YBeKlqI*(-VSsk^RI=egHqTrb~# zu9)3#GV0^ID=Jo_|DxW|Z!_kiJm^o|ap7l<2-WhS%Zj6)cpW_kd32d8w z8DoE@dwu$8;>~u*3p`i$#4(%eNvz9xHpg!4#hg%=?JVnB9_)=QJoGF8JIh8HmS^tC zvKkgL&1P>vPxS^i4Zrm4y5jrS@CHUR%Xq1`uX*5^>x%DQ^TZpCcx6^^UhATl#1+b% zp_eqPx2|=?yVV%(%@9*X4E~1UJuFl4_LxaxBCaFwcRW5bz36!ev7x5^(IN2@VIUtO zdEy_?Iw9dL+qgGXq>EI1_c}$)L2JokF5bNtfvZF@AEn2sG8Pel<2KfX{PONpi*po{)+;pgJ98PQGVG zFdc#~R+=G&)8|)!!fle?HYG>g4B7F@C584l1|cNS@IIbY;1&-q%?4JdFEdVj$j1}w zx94U@yyW7x2JMYQ&jyxl8pcIO!hTkq6 zGjP~Y%RqBN%Ix{^`0>aw1E)_LKO|tFIV~MOau_#veoDfaflCt71_q8jtNZAbWj|F9HPaGiFT^hpF43=XCpBTgLiCalZ%s{J zgr9qxlaSW>(EV{(2CDKW8z&?zN|Z01B`l7}nyo9FMyVzW8DGn;O7RMIbitWYO#g5|Y;@aZ+;>P0U zVho&4v(w@Xa$23SPMg#2%yv4Q)y`UHy|dBT>=Y&5CFT-KNl=NkB(}s>VlT-qag4l}VMh%8W{TWmaW&Wlp7|(pgzuSyNeCSyx$K*-+V7*;LtF z*-|O0ysEsbe5%Y<`g;$ zYYOWM8w#5WTME63e2V;v0*bGK#W_a*CWqHAQtr4Mj~wEk$0%KE-~;0mb3P z(Zxx{8O2$}ImOQ6n&P_RhT^8;mSQibkJHZ?;0$+0JCmFl&MapRCS5hoI%k8k$=Txc zD)A}tD+wqGFNrQmD#<9xD#?U)(1Pf)q_T{%tg@UkXITy8+W^_NlzBm_evoK*d31SFc}96wc@AV-1C42b zwzQOcK~MakBjM1GBuFp|(sM#`b&y(9MN5SjRZ~?9WrG(FX90LQd>np`07tkZ+L7eQaAY}h98O1# zqt4ObXmYeTymEbV{c;0x!*io^lX5e1vvPBCow>EppGKuS-q0HhbjAvOu|Zd|p(oYQ zk$UJyGjzindSQW1SgT^IY*qHE>?%i9byaOueN|&sGx0D359o++cstAvizCQkb;LSs z4!a{8)8}eOt)t%2=xBC`T<=_St|d1p*P0ufYsvJ1(n{!2;cb+-V zk{6U`&5O;m<=OMH^Bj5AdA0CejqqI}-y5FGk{<-m75l&5Z`t6dvf-nu;i2l`otjHU znRl5PzA328S{7SoE3=nnmpRI+%WC0q8sTmD0%=S+L<7oJm*ImA?@Px# literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe b/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..e8bebdba6d8f242244bf397ab067965d47c5093e GIT binary patch literal 108032 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%0AHbpwE%ZM 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 H#ex3;_fXA_ literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/util.py b/lib/python3.12/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 0000000..0d5bd7a --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,1984 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, cache_from_source, urlopen, urljoin, httplib, + xmlrpclib, HTTPHandler, BaseConfigurator, valid_ident, Container, configparser, URLError, ZipFile, + fsdecode, unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join(['%s %s' % con for con in versions])) + return Container(name=distname, extras=extras, constraints=versions, marker=mark_expr, url=uri, requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, path, optimize=False, force=False, prefix=None, hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, 'PycInvalidationMode'): + if not isinstance(hashed_invalidation, py_compile.PycInvalidationMode): + hashed_invalidation = py_compile.PycInvalidationMode.CHECKED_HASH + compile_kwargs['invalidation_mode'] = hashed_invalidation + py_compile.compile(path, dpath, diagpath, True, **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix and self.suffix == other.suffix and + self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path, use_abspath=True): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path) if use_abspath else path) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile('([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix, use_abspath=True): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix, use_abspath=use_abspath) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError('Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError('Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [server.strip() for server in index_servers.split('\n') if server.strip() != ''] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', self.DEFAULT_REPOSITORY), ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx(sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/version.py b/lib/python3.12/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 0000000..d70a96e --- /dev/null +++ b/lib/python3.12/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,750 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' + r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0][:-1]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + if pre[1] is None: + pre = pre[0], 0 + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + if post[1] is None: + post = post[0], 0 + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + if dev[1] is None: + dev = dev[0], 0 + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + # import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + # import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + # TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe b/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..4ee2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 GIT binary patch literal 91648 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe b/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..951d5817c9e6d81c94a173a0d9fead7f1f143331 GIT binary patch literal 168448 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 literal 0 HcmV?d00001 diff --git a/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe b/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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