From 6751d062e30c6201e636dd89b350543c75296c0b Mon Sep 17 00:00:00 2001 From: TzeMingHo Date: Mon, 30 Mar 2026 19:14:41 +0100 Subject: [PATCH 1/5] added venv, cow.py, and requirements.txt --- implement-cowsay/.venv/bin/Activate.ps1 | 247 + implement-cowsay/.venv/bin/activate | 70 + implement-cowsay/.venv/bin/activate.csh | 27 + implement-cowsay/.venv/bin/activate.fish | 69 + implement-cowsay/.venv/bin/cowsay | 8 + implement-cowsay/.venv/bin/pip | 8 + implement-cowsay/.venv/bin/pip3 | 8 + implement-cowsay/.venv/bin/pip3.12 | 8 + implement-cowsay/.venv/bin/python | 1 + implement-cowsay/.venv/bin/python3 | 1 + implement-cowsay/.venv/bin/python3.12 | 1 + .../cowsay-6.1.dist-info/INSTALLER | 1 + .../cowsay-6.1.dist-info/LICENSE.txt | 674 ++ .../cowsay-6.1.dist-info/METADATA | 179 + .../site-packages/cowsay-6.1.dist-info/RECORD | 25 + .../cowsay-6.1.dist-info/REQUESTED | 0 .../site-packages/cowsay-6.1.dist-info/WHEEL | 5 + .../cowsay-6.1.dist-info/entry_points.txt | 2 + .../cowsay-6.1.dist-info/top_level.txt | 1 + .../site-packages/cowsay/__init__.py | 28 + .../site-packages/cowsay/__main__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 790 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1361 bytes .../__pycache__/characters.cpython-312.pyc | Bin 0 -> 12684 bytes .../cowsay/__pycache__/main.cpython-312.pyc | Bin 0 -> 3897 bytes .../site-packages/cowsay/characters.py | 404 + .../python3.12/site-packages/cowsay/main.py | 74 + .../site-packages/cowsay/tests/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 217 bytes .../__pycache__/solutions.cpython-312.pyc | Bin 0 -> 38493 bytes .../__pycache__/test_api.cpython-312.pyc | Bin 0 -> 2122 bytes .../__pycache__/test_output.cpython-312.pyc | Bin 0 -> 2070 bytes .../site-packages/cowsay/tests/solutions.py | 591 ++ .../site-packages/cowsay/tests/test_api.py | 35 + .../site-packages/cowsay/tests/test_output.py | 40 + .../pip-24.0.dist-info/AUTHORS.txt | 760 ++ .../pip-24.0.dist-info/INSTALLER | 1 + .../pip-24.0.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.0.dist-info/METADATA | 88 + .../site-packages/pip-24.0.dist-info/RECORD | 1005 ++ .../pip-24.0.dist-info/REQUESTED | 0 .../site-packages/pip-24.0.dist-info/WHEEL | 5 + .../pip-24.0.dist-info/entry_points.txt | 4 + .../pip-24.0.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 717 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 873 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2236 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 819 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14326 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12697 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17698 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 33316 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 702 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5003 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10584 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13681 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 310 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8497 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10487 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30406 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1813 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2330 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4937 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15054 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 2652 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 18884 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7872 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 407 bytes .../pip/_internal/cli/autocompletion.py | 172 + .../pip/_internal/cli/base_command.py | 236 + .../pip/_internal/cli/cmdoptions.py | 1074 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 79 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 505 + .../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 -> 4034 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9743 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2122 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5224 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13244 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10193 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7621 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4448 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 3015 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1705 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6752 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4007 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 28945 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15688 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7653 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 9760 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4758 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8988 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 54 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 147 + .../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 | 774 ++ .../pip/_internal/commands/list.py | 370 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 183 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 973 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2894 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1732 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8520 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2280 bytes .../pip/_internal/distributions/base.py | 51 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 156 + .../pip/_internal/distributions/wheel.py | 40 + .../site-packages/pip/_internal/exceptions.py | 728 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 264 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21918 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40767 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12636 bytes .../pip/_internal/index/collector.py | 507 + .../pip/_internal/index/package_finder.py | 1027 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16808 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6888 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8043 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3813 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 213 + .../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 -> 5914 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2907 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35744 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15822 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 702 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 390 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 3365 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 13457 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11212 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 227 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 278 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 298 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1937 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 11231 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4259 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1726 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2304 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26034 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1201 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5120 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1883 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4986 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5812 bytes .../pip/_internal/models/candidate.py | 30 + .../pip/_internal/models/direct_url.py | 235 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 579 ++ .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 132 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 286 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22028 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6550 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8585 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11695 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18806 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2285 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2981 bytes .../pip/_internal/network/auth.py | 561 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 520 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 229 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7611 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10149 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25779 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 235 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7855 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1912 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1946 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3097 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1716 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2057 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3961 bytes .../operations/build/build_tracker.py | 139 + .../_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 | 187 + .../pip/_internal/operations/freeze.py | 255 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 298 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1849 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 33891 bytes .../operations/install/editable_legacy.py | 46 + .../pip/_internal/operations/install/wheel.py | 734 ++ .../pip/_internal/operations/prepare.py | 730 ++ .../site-packages/pip/_internal/pyproject.py | 179 + .../pip/_internal/req/__init__.py | 92 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3775 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21614 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21493 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38446 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 7250 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 33009 bytes .../pip/_internal/req/constructors.py | 576 ++ .../pip/_internal/req/req_file.py | 554 ++ .../pip/_internal/req/req_install.py | 923 ++ .../pip/_internal/req/req_set.py | 119 + .../pip/_internal/req/req_uninstall.py | 649 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 229 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1217 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 236 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22471 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 240 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8369 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 30430 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32146 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6240 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10410 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 4967 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 11461 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12383 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 597 ++ .../resolution/resolvelib/factory.py | 812 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 255 + .../resolution/resolvelib/reporter.py | 80 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 248 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 224 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4565 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1895 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2439 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2242 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5590 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 713 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4215 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3592 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3255 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2187 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4022 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7487 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1193 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2371 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7583 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13586 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 34150 bytes .../utils/__pycache__/models.cpython-312.pyc | Bin 0 -> 2741 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2612 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4579 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8747 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12091 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 11137 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2434 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4509 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5955 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 | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../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 | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 151 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 783 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../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 -> 563 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5055 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19024 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7644 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12516 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29042 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 121 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4725 bytes .../_vendor/__pycache__/six.cpython-312.pyc | Bin 0 -> 41302 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 122082 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 935 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2679 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6497 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3842 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16200 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4380 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6727 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 6438 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1707 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 -> 468 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7743 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2771 bytes .../_vendor/cachecontrol/caches/file_cache.py | 181 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 494 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/serialize.py | 206 + .../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 -> 351 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 678 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3360 bytes .../pip/_vendor/certifi/cacert.pem | 4635 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 119 + .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4601 bytes .../__pycache__/big5freq.cpython-312.pyc | Bin 0 -> 27232 bytes .../__pycache__/big5prober.cpython-312.pyc | Bin 0 -> 1420 bytes .../chardistribution.cpython-312.pyc | Bin 0 -> 9671 bytes .../charsetgroupprober.cpython-312.pyc | Bin 0 -> 4155 bytes .../__pycache__/charsetprober.cpython-312.pyc | Bin 0 -> 5051 bytes .../codingstatemachine.cpython-312.pyc | Bin 0 -> 3911 bytes .../codingstatemachinedict.cpython-312.pyc | Bin 0 -> 822 bytes .../__pycache__/cp949prober.cpython-312.pyc | Bin 0 -> 1429 bytes .../chardet/__pycache__/enums.cpython-312.pyc | Bin 0 -> 3029 bytes .../__pycache__/escprober.cpython-312.pyc | Bin 0 -> 4599 bytes .../chardet/__pycache__/escsm.cpython-312.pyc | Bin 0 -> 15343 bytes .../__pycache__/eucjpprober.cpython-312.pyc | Bin 0 -> 4416 bytes .../__pycache__/euckrfreq.cpython-312.pyc | Bin 0 -> 12115 bytes .../__pycache__/euckrprober.cpython-312.pyc | Bin 0 -> 1423 bytes .../__pycache__/euctwfreq.cpython-312.pyc | Bin 0 -> 27237 bytes .../__pycache__/euctwprober.cpython-312.pyc | Bin 0 -> 1423 bytes .../__pycache__/gb2312freq.cpython-312.pyc | Bin 0 -> 19159 bytes .../__pycache__/gb2312prober.cpython-312.pyc | Bin 0 -> 1436 bytes .../__pycache__/hebrewprober.cpython-312.pyc | Bin 0 -> 5855 bytes .../__pycache__/jisfreq.cpython-312.pyc | Bin 0 -> 22188 bytes .../__pycache__/johabfreq.cpython-312.pyc | Bin 0 -> 83036 bytes .../__pycache__/johabprober.cpython-312.pyc | Bin 0 -> 1427 bytes .../__pycache__/jpcntx.cpython-312.pyc | Bin 0 -> 39582 bytes .../langbulgarianmodel.cpython-312.pyc | Bin 0 -> 83155 bytes .../langgreekmodel.cpython-312.pyc | Bin 0 -> 77021 bytes .../langhebrewmodel.cpython-312.pyc | Bin 0 -> 77532 bytes .../langhungarianmodel.cpython-312.pyc | Bin 0 -> 83109 bytes .../langrussianmodel.cpython-312.pyc | Bin 0 -> 105284 bytes .../__pycache__/langthaimodel.cpython-312.pyc | Bin 0 -> 77710 bytes .../langturkishmodel.cpython-312.pyc | Bin 0 -> 77549 bytes .../__pycache__/latin1prober.cpython-312.pyc | Bin 0 -> 7035 bytes .../macromanprober.cpython-312.pyc | Bin 0 -> 7215 bytes .../mbcharsetprober.cpython-312.pyc | Bin 0 -> 3936 bytes .../mbcsgroupprober.cpython-312.pyc | Bin 0 -> 1621 bytes .../__pycache__/mbcssm.cpython-312.pyc | Bin 0 -> 38678 bytes .../__pycache__/resultdict.cpython-312.pyc | Bin 0 -> 665 bytes .../sbcharsetprober.cpython-312.pyc | Bin 0 -> 6420 bytes .../sbcsgroupprober.cpython-312.pyc | Bin 0 -> 2390 bytes .../__pycache__/sjisprober.cpython-312.pyc | Bin 0 -> 4528 bytes .../universaldetector.cpython-312.pyc | Bin 0 -> 12302 bytes .../__pycache__/utf1632prober.cpython-312.pyc | Bin 0 -> 10012 bytes .../__pycache__/utf8prober.cpython-312.pyc | Bin 0 -> 3208 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 521 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 228 bytes .../__pycache__/chardetect.cpython-312.pyc | Bin 0 -> 4045 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 233 bytes .../__pycache__/languages.cpython-312.pyc | Bin 0 -> 9788 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 525 bytes .../colorama/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 3983 bytes .../__pycache__/ansitowin32.cpython-312.pyc | Bin 0 -> 16454 bytes .../__pycache__/initialise.cpython-312.pyc | Bin 0 -> 3583 bytes .../__pycache__/win32.cpython-312.pyc | Bin 0 -> 8159 bytes .../__pycache__/winterm.cpython-312.pyc | Bin 0 -> 9121 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 231 bytes .../__pycache__/ansi_test.cpython-312.pyc | Bin 0 -> 5500 bytes .../ansitowin32_test.cpython-312.pyc | Bin 0 -> 18136 bytes .../initialise_test.cpython-312.pyc | Bin 0 -> 11781 bytes .../__pycache__/isatty_test.cpython-312.pyc | Bin 0 -> 4937 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2521 bytes .../__pycache__/winterm_test.cpython-312.pyc | Bin 0 -> 6645 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1302 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45638 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 66060 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24399 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 60191 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15158 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7715 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41832 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17358 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19613 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88289 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30399 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51894 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 452 + .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 993 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 325 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53787 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 914 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4666 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 920 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16056 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99530 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2671 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 249 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158903 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 4246 ++++++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8600 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1864 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2058 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8701 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 43609 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-312.pyc | Bin 0 -> 663 bytes .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 499 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 12109 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 6943 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3274 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 14091 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 6979 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 31280 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 18989 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 5901 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19972 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3361 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 146507 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 18062 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1979 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 9477 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 9705 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 5670 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 12474 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 344 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13032 bytes .../pip/_vendor/platformdirs/android.py | 210 + .../pip/_vendor/platformdirs/api.py | 223 + .../pip/_vendor/platformdirs/macos.py | 91 + .../pip/_vendor/platformdirs/unix.py | 223 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 255 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3522 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 768 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26639 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2660 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3266 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4603 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38363 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1602 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 3430 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4115 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4790 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 11080 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6708 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8176 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33022 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14015 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37970 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6960 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4249 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4228 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7298 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40606 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 27077 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6099 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 19988 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6918 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2964 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 6160 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9100 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5863 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15191 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 | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 943 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14686 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 64438 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42673 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 559 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 217 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 103 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4482 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 330 + .../pip/_vendor/pyparsing/__init__.py | 322 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7945 bytes .../__pycache__/actions.cpython-312.pyc | Bin 0 -> 8429 bytes .../__pycache__/common.cpython-312.pyc | Bin 0 -> 13448 bytes .../__pycache__/core.cpython-312.pyc | Bin 0 -> 267742 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13028 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 48535 bytes .../__pycache__/results.cpython-312.pyc | Bin 0 -> 34144 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 17222 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 13218 bytes .../__pycache__/util.cpython-312.pyc | Bin 0 -> 14938 bytes .../pip/_vendor/pyparsing/actions.py | 217 + .../pip/_vendor/pyparsing/common.py | 432 + .../pip/_vendor/pyparsing/core.py | 6115 ++++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 656 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 26847 bytes .../pip/_vendor/pyparsing/exceptions.py | 299 + .../pip/_vendor/pyparsing/helpers.py | 1100 +++ .../pip/_vendor/pyparsing/results.py | 796 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 361 + .../pip/_vendor/pyparsing/util.py | 284 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 647 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 408 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14759 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 -> 1114 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14431 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5487 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 618 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2058 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 21314 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7238 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13957 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 956 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1541 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25280 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7081 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4346 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1086 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35482 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 806 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27791 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 5993 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5651 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36109 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 833 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1088 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 668 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6885 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2688 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25931 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10540 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 234 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 454 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../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 | 274 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7049 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10338 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7855 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206010 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1763 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2355 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 571 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 889 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12111 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4181 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1919 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3654 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5194 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 760 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6613 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13213 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 999 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 899 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29010 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2524 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3607 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 2394 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1642 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12356 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9140 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4306 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11892 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5652 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26604 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1735 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8621 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113827 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2292 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9260 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10963 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10407 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1521 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4243 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1879 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3611 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3116 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9932 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6069 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5243 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20254 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19177 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4928 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13588 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9332 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6410 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7168 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1854 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5348 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12131 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40090 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75112 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10423 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14815 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1826 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 601 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6660 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6602 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3864 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2518 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28195 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6098 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6102 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33548 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2173 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39646 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43618 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3382 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 58997 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6374 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 348 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31582 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11473 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../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 | 160 + .../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 | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../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 | 94 + .../site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 622 ++ .../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 | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../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 | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 994 ++ .../pip/_vendor/rich/progress.py | 1702 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../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 | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 948 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1307 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 756 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 608 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 27120 bytes .../__pycache__/_asyncio.cpython-312.pyc | Bin 0 -> 4840 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 2349 bytes .../__pycache__/after.cpython-312.pyc | Bin 0 -> 1658 bytes .../__pycache__/before.cpython-312.pyc | Bin 0 -> 1498 bytes .../__pycache__/before_sleep.cpython-312.pyc | Bin 0 -> 2336 bytes .../tenacity/__pycache__/nap.cpython-312.pyc | Bin 0 -> 1446 bytes .../__pycache__/retry.cpython-312.pyc | Bin 0 -> 14315 bytes .../tenacity/__pycache__/stop.cpython-312.pyc | Bin 0 -> 5602 bytes .../__pycache__/tornadoweb.cpython-312.pyc | Bin 0 -> 2620 bytes .../tenacity/__pycache__/wait.cpython-312.pyc | Bin 0 -> 12447 bytes .../pip/_vendor/tenacity/_asyncio.py | 94 + .../pip/_vendor/tenacity/_utils.py | 76 + .../pip/_vendor/tenacity/after.py | 51 + .../pip/_vendor/tenacity/before.py | 46 + .../pip/_vendor/tenacity/before_sleep.py | 71 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 272 + .../pip/_vendor/tenacity/stop.py | 103 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 228 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 418 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26961 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3942 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 400 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 652 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 15831 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16696 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2249 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1133 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15540 bytes .../pip/_vendor/truststore/_api.py | 302 + .../pip/_vendor/truststore/_macos.py | 501 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 554 ++ .../pip/_vendor/typing_extensions.py | 3072 ++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3439 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16522 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 252 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20441 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36476 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13527 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10447 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4052 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20834 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7328 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 34002 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1137 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 232 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1882 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11598 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5753 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24484 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35590 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7545 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 249 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17461 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14835 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 | 921 ++ .../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 -> 233 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41353 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 243 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1859 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7365 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 | 556 ++ .../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 -> 1180 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4790 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1586 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1386 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4217 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3023 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21752 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15137 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5105 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10806 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11173 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15829 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4437 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 | 495 + .../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 | 24 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 12035 bytes .../__pycache__/labels.cpython-312.pyc | Bin 0 -> 7166 bytes .../__pycache__/mklabels.cpython-312.pyc | Bin 0 -> 2733 bytes .../__pycache__/tests.cpython-312.pyc | Bin 0 -> 9285 bytes .../x_user_defined.cpython-312.pyc | Bin 0 -> 3329 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.12/site-packages/pip/py.typed | 4 + implement-cowsay/.venv/lib64 | 1 + implement-cowsay/.venv/pyvenv.cfg | 5 + implement-cowsay/cow.py | 14 + implement-cowsay/requirements.txt | 1 + 1041 files changed, 194209 insertions(+) create mode 100644 implement-cowsay/.venv/bin/Activate.ps1 create mode 100644 implement-cowsay/.venv/bin/activate create mode 100644 implement-cowsay/.venv/bin/activate.csh create mode 100644 implement-cowsay/.venv/bin/activate.fish create mode 100755 implement-cowsay/.venv/bin/cowsay create mode 100755 implement-cowsay/.venv/bin/pip create mode 100755 implement-cowsay/.venv/bin/pip3 create mode 100755 implement-cowsay/.venv/bin/pip3.12 create mode 120000 implement-cowsay/.venv/bin/python create mode 120000 implement-cowsay/.venv/bin/python3 create mode 120000 implement-cowsay/.venv/bin/python3.12 create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/characters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/characters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_output.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/solutions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/six.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 implement-cowsay/.venv/lib/python3.12/site-packages/pip/py.typed create mode 120000 implement-cowsay/.venv/lib64 create mode 100644 implement-cowsay/.venv/pyvenv.cfg create mode 100644 implement-cowsay/cow.py create mode 100644 implement-cowsay/requirements.txt diff --git a/implement-cowsay/.venv/bin/Activate.ps1 b/implement-cowsay/.venv/bin/Activate.ps1 new file mode 100644 index 000000000..b49d77ba4 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/bin/activate b/implement-cowsay/.venv/bin/activate new file mode 100644 index 000000000..eac3e93a0 --- /dev/null +++ b/implement-cowsay/.venv/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/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv) +else + # use the path as-is + export VIRTUAL_ENV=/home/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv +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='(.venv) '"${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT='(.venv) ' + 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/implement-cowsay/.venv/bin/activate.csh b/implement-cowsay/.venv/bin/activate.csh new file mode 100644 index 000000000..3622ccdad --- /dev/null +++ b/implement-cowsay/.venv/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/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/"bin":$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = '(.venv) '"$prompt" + setenv VIRTUAL_ENV_PROMPT '(.venv) ' +endif + +alias pydoc python -m pydoc + +rehash diff --git a/implement-cowsay/.venv/bin/activate.fish b/implement-cowsay/.venv/bin/activate.fish new file mode 100644 index 000000000..b745fff09 --- /dev/null +++ b/implement-cowsay/.venv/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/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv + +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) '(.venv) ' (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 '(.venv) ' +end diff --git a/implement-cowsay/.venv/bin/cowsay b/implement-cowsay/.venv/bin/cowsay new file mode 100755 index 000000000..969bd2e02 --- /dev/null +++ b/implement-cowsay/.venv/bin/cowsay @@ -0,0 +1,8 @@ +#!/home/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from cowsay.__main__ import cli +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(cli()) diff --git a/implement-cowsay/.venv/bin/pip b/implement-cowsay/.venv/bin/pip new file mode 100755 index 000000000..037cdf81f --- /dev/null +++ b/implement-cowsay/.venv/bin/pip @@ -0,0 +1,8 @@ +#!/home/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv/bin/python3 +# -*- 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/implement-cowsay/.venv/bin/pip3 b/implement-cowsay/.venv/bin/pip3 new file mode 100755 index 000000000..037cdf81f --- /dev/null +++ b/implement-cowsay/.venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv/bin/python3 +# -*- 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/implement-cowsay/.venv/bin/pip3.12 b/implement-cowsay/.venv/bin/pip3.12 new file mode 100755 index 000000000..037cdf81f --- /dev/null +++ b/implement-cowsay/.venv/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/home/tzemingho/GitHub/CYF/SDC/Module-Tools/implement-cowsay/.venv/bin/python3 +# -*- 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/implement-cowsay/.venv/bin/python b/implement-cowsay/.venv/bin/python new file mode 120000 index 000000000..b8a0adbbb --- /dev/null +++ b/implement-cowsay/.venv/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/bin/python3 b/implement-cowsay/.venv/bin/python3 new file mode 120000 index 000000000..ae65fdaa1 --- /dev/null +++ b/implement-cowsay/.venv/bin/python3 @@ -0,0 +1 @@ +/usr/bin/python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/bin/python3.12 b/implement-cowsay/.venv/bin/python3.12 new file mode 120000 index 000000000..b8a0adbbb --- /dev/null +++ b/implement-cowsay/.venv/bin/python3.12 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt new file mode 100644 index 000000000..f288702d2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/LICENSE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA new file mode 100644 index 000000000..d8833101a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/METADATA @@ -0,0 +1,179 @@ +Metadata-Version: 2.1 +Name: cowsay +Version: 6.1 +Summary: The famous cowsay for GNU/Linux is now available for python +Home-page: https://github.com/VaasuDevanS/cowsay-python +Author: Vaasudevan Srinivasan +Author-email: vaasuceg.96@gmail.com +License: GNU-GPL +Classifier: Operating System :: OS Independent +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 +Requires-Python: >=3.8 +Description-Content-Type: text/markdown +License-File: LICENSE.txt + + +[![cowsay](https://github.com/VaasuDevanS/cowsay-python/actions/workflows/cowsay.yaml/badge.svg?branch=main)](https://github.com/VaasuDevanS/cowsay-python/actions/workflows/cowsay.yaml) +[![codecov](https://codecov.io/gh/VaasuDevanS/cowsay-python/graph/badge.svg?token=GV4ntsCNtd)](https://codecov.io/gh/VaasuDevanS/cowsay-python) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d5a358f5dd5c41d68db8c331d65fd0fd)](https://app.codacy.com/gh/VaasuDevanS/cowsay-python/dashboard) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cowsay) +[![Github](https://img.shields.io/badge/github-cowsay--python-blue)](https://github.com/VaasuDevanS/cowsay-python) +
+![](https://img.shields.io/badge/Latest%20Release-Sep%2025,%202023-blue) +[![Downloads](https://static.pepy.tech/badge/cowsay)](https://pepy.tech/project/cowsay) +[![Downloads](https://static.pepy.tech/badge/cowsay/month)](https://pepy.tech/project/cowsay) +[![Downloads](https://static.pepy.tech/badge/cowsay/week)](https://pepy.tech/project/cowsay) + + +# Introduction + +A python API / Command-line tool for the famous linux `cowsay`.
+Take a look at [CHANGELOG.md](https://github.com/VaasuDevanS/cowsay-python/blob/main/CHANGELOG.md) for the changes. + + +# Brief History +`cowsay` for GNU/Linux was initially written in perl by Tony Monroe. More info +[here](https://en.wikipedia.org/wiki/Cowsay). + + +# Installation +```console +pip install cowsay +``` + + +# API Usage +```console +>>> import cowsay + +>>> cowsay.cow('Hello World') + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> print(cowsay.get_output_string('cow', 'Hello World')) + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> cowsay.cow('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris blandit rhoncus nibh. Mauris mi mauris, molestie vel metus sit amet, aliquam vulputate nibh.') + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consectetur adipiscin | +| g elit. Mauris blandit rhoncus nibh. Mauris mi ma | +| uris, molestie vel metus sit amet, aliquam vulput | +| ate nibh. | + \ / + ================================================= + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +>>> my_fish = r''' +\ + \ + /`·.¸ + /¸...¸`:· + ¸.·´ ¸ `·.¸.·´) +: © ):´; ¸ { + `·.¸ `· ¸.·´\`·¸) + `\\´´\¸.·´ +''' + +>>> cowsay.draw('Sharks are my best friend', my_fish) + _________________________ +| Sharks are my best friend | + ========================= + \ + \ + /`·.¸ + /¸...¸`:· + ¸.·´ ¸ `·.¸.·´) + : © ):´; ¸ { + `·.¸ `· ¸.·´\`·¸) + `\\´´\¸.·´ +``` + + +# Command Line Usage +```console +$ cowsay -t "Hello World" + ___________ +| Hello World | + =========== + \ + \ + ^__^ + (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + +$ cowsay -t "Hello World" -c "tux" + ___________ +| Hello World | + =========== + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +``` + + +# More Characters +```console +>>> cowsay.char_names +['beavis', 'cheese', 'cow', 'daemon', 'dragon', 'fox', 'ghostbusters', 'kitty', +'meow', 'miki', 'milk', 'octopus', 'pig', 'stegosaurus', 'stimpy', 'trex', +'turkey', 'turtle', 'tux'] + + +>>> cowsay.char_funcs +{'beavis': , +'cheese': , +... +'tux': } + + +>>> len(cowsay.chars) +19 +``` + +# Contributing + + + + +Guide: [CONTRIBUTING.md](https://github.com/VaasuDevanS/cowsay-python/blob/main/CONTRIBUTING.md) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD new file mode 100644 index 000000000..1aa0aaf13 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/RECORD @@ -0,0 +1,25 @@ +../../../bin/cowsay,sha256=vXoY1n47eBlQlAjGZwlY7ni6xdT8GBdjjHQIzvUpBBg,274 +cowsay-6.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +cowsay-6.1.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149 +cowsay-6.1.dist-info/METADATA,sha256=ZGNBeztPwPUT1m6Jqx5BqQJcrq5bUunu8sLxSEtQyWA,5581 +cowsay-6.1.dist-info/RECORD,, +cowsay-6.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cowsay-6.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92 +cowsay-6.1.dist-info/entry_points.txt,sha256=eA4lDJ_wo3_jLsgyh0peu2yWkpFbr4malOVJtMGVJiw,47 +cowsay-6.1.dist-info/top_level.txt,sha256=45zxJRiJFquDz8AIvNLxZWersc80tEFX0iKLKG868Ck,7 +cowsay/__init__.py,sha256=8Vp53KAFMgvd_w8Bh-jGzSPl2xryuQNrQcvhy1vYJhQ,450 +cowsay/__main__.py,sha256=swvEz9wm3O4NBe2vtGq7ddqeQMSKh4ZKX_g7KEIijsM,775 +cowsay/__pycache__/__init__.cpython-312.pyc,, +cowsay/__pycache__/__main__.cpython-312.pyc,, +cowsay/__pycache__/characters.cpython-312.pyc,, +cowsay/__pycache__/main.cpython-312.pyc,, +cowsay/characters.py,sha256=SgA3F9HhmXxW70Eo9U65LHKDHkTNpOPUnpOjKuDMkiI,12259 +cowsay/main.py,sha256=ey_m3cRx03H-h1mzj9VJuSlS571ezpv_guFt5QSiZy8,1949 +cowsay/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cowsay/tests/__pycache__/__init__.cpython-312.pyc,, +cowsay/tests/__pycache__/solutions.cpython-312.pyc,, +cowsay/tests/__pycache__/test_api.cpython-312.pyc,, +cowsay/tests/__pycache__/test_output.cpython-312.pyc,, +cowsay/tests/solutions.py,sha256=TdLCxGUInzdiVXDGISKIb3Ieo4YvAeuIXgzzQ5EWk4M,38065 +cowsay/tests/test_api.py,sha256=fxd30i-M6J9BD56tMwVTnl5AJ1IDFImzkz5iIFoIAfQ,919 +cowsay/tests/test_output.py,sha256=gmag5R2mvQUBUSIqgM7spNVSRxwIUGo_iZT5SPuMUwM,1118 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/REQUESTED new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL new file mode 100644 index 000000000..57e3d840d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.38.4) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt new file mode 100644 index 000000000..10b735aaa --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +cowsay = cowsay.__main__:cli diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt new file mode 100644 index 000000000..c6b9ffd0e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay-6.1.dist-info/top_level.txt @@ -0,0 +1 @@ +cowsay diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py new file mode 100644 index 000000000..842f53e7d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__init__.py @@ -0,0 +1,28 @@ +from .main import ( + + __version__, + + # Variables + char_names, + CHARS, + + # Methods + get_output_string, + draw, + + CowsayError, + +) + +# This is where we create functions for each character dynamically + +char_funcs = {} + +for ch_name, ch_lines in CHARS.items(): + + def func(text: str, char_lines=ch_lines): + draw(str(text), char_lines) + + func.__name__ = ch_name + globals()[ch_name] = func + char_funcs[ch_name] = func diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py new file mode 100644 index 000000000..5280a2482 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__main__.py @@ -0,0 +1,33 @@ +import argparse + +from . import CowsayError, char_names, char_funcs, __version__ + + +def cli(): + + parser = argparse.ArgumentParser( + prog='Cowsay', + description='CLI tool to display text in ASCII art. ' + f'Available Characters: {char_names}' + ) + + parser.add_argument('-c', '--character', + default='cow') + + parser.add_argument('-t', '--text', + required=True) + + parser.add_argument('-v', '--version', + action='version', version=__version__) + + args = parser.parse_args() + + if args.character not in char_names: + raise CowsayError(f'Available Characters: {char_names}') + + char_funcs[args.character](args.text) + + +if __name__ == "__main__": + + cli() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb4bdcebe26f4a73be792409ac6b182070474371 GIT binary patch literal 790 zcmYLHy-!p@5TAV?_k9N@o`{H&fW^gdFG@>H%%PwO6k;JSn)PwF+&z8!-eq?WJVS9t z3KA)(1Y==s==}ri)Cv<5vauksvIDOmp>p?er<3gLZ)azAelxS*^7#xX`SR(j{}}=N z(uclSJ_6~--|N8{crp&~ z*Z^?TZiZx5P|YCO6{BWu*lv!bNe<`xQ6#5cEA%5tdRkqO97&#`t!oyvt&;s)v4&DY zW-(qRjQdfDvCLE(9>bwW372+d?)HO4d9F?bj#{GG5||6-hjnSyn71agm1vE7?K_M` zOj?4x5LHF*pV$hSYIVy>?SRnfViDRJ%R21!tm|m67mJ_`CA3g7SW@{&Q>9cmt??PT zzz+%M+Iwv5lsS!v5=XowR1s@L&a5xyTFXvl>8`UlQ*q{_S}P!v52GmHj!&Bbp(GTO z)tI?cUM1nG6Zp$cvn?7?I90xJ)8W1#lTEMs+^ZAr^gJ>4LtkKAZnmYh(h94rpa=}9 z#r4oS@H3U$THHSWW@$I`BQ@StHdrVPNQ-)Y$aKL>e+s6X!V+5P>R3vtURnB4)pM1c za+$0);vvYC0&&4CtNnFSnZog%npUzNM9W^lKLQ)j*ZK#Xrlx6J^euK#9d&>CQ>Bhf zgwTmmK*k9ubuq(c$>@V?g%A_EcAIM+qoi l?#yh=9}JJantgq5v%YU#IJk7BbANN~yESw?pdw=ie*s_|!&U$Q literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf76fa69861fd6b8028257a1d6070ef7e8088238 GIT binary patch literal 1361 zcmah}O>7%Q6rNen{={oLG*Vg;qOwRuse#Rka6pP6ZRE5NsZ>bq1z%Ph&(z*zf6VOI z#a0^y1frZcHV6<`kaOTrapVqM;zlUZ&;y7{s5guB)DttC-I@atb9nRSy>GvHf3v@o z%S9m8Pe1(Z>jeP*l!tsNnR2u$l)C@}3L^s}Dg+pP4C)%u zvATI40BR_JXoHLbf*$O_s`f~puRel8RuMOA@y*2RU7|Fmyx3@Y)Q!B5B$GctK;9x2JPBvu30&MY{})%nWn5v#F&hB8lY=axl-bPf<2^6mZFmcAl*aa4 z8)wvobc#*pcKpoPBXb>OwfP9LQ#t0p8E1rBc&2jHc+WXRD?#~^%VKqz)>Fh8I(~ zG$wrFX~VJbNlAm?bY9P^V6*lx4x7QI0sQ}HUME?LUz(p_s literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/characters.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/characters.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0037700b46c553f1b815832e10f066917d78b637 GIT binary patch literal 12684 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/main.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..666e415ad271a60e14ac719922808b5da68124a1 GIT binary patch literal 3897 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 \\ _ -~ `. ^-` ^-_ + ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ + /.-~ +''', + + "ghostbusters": r''' + \ + \ + \ + \ + __---__ + _- /--______ + __--( / \ )XXXXXXXXXXX\v. + .-XXX( O O )XXXXXXXXXXXXXXX- + /XXX( U ) XXXXXXX\ + /XXXXX( )--_ XXXXXXXXXXX\ + /XXXXX/ ( O ) XXXXXX \XXXXX\ + XXXXX/ / XXXXXX \__ \XXXXX + XXXXXX__/ XXXXXX \__----> + ---___ XXX__/ XXXXXX \__ / + \- --__/ ___/\ XXXXXX / ___--/= + \-\ ___/ XXXXXX '--- XXXXXX + \-\/XXX\ XXXXXX /XXXXX + \XXXXXXXXX \ /XXXXX/ + \XXXXXX > _/XXXXX/ + \XXXXX--__/ __-- XXXX/ + -XXXXXXXX--------------- XXXXXX- + \XXXXXXXXXXXXXXXXXXXXXXXXXX/ + ""VXXXXXXXXXXXXXXXXXXV"" +''', + + + "kitty": r''' + \ + \ + \ + \ + + ("`-' '-/") .___..--' ' "`-._ + ` *_ * ) `-. ( ) .`-.__. `) + (_Y_.) ' ._ ) `._` ; `` -. .-' + _.. `--'_..-_/ /--' _ .' ,4 + ( i l ),-'' ( l i),' ( ( ! .-' +''', + + + "meow": r""" +\ + \ + \ + \ + _ ___.--'''`--''//-,-_--_. + \\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_ + /'` \\ \\ || Y | \\|/ / // / - |__ `-, + /\@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_., + / _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._) + `-'``/ / | // \\__/\\__ / \\__/ \\ + `-' /-\\/ | -| \\__ \\ |-' | + __/\\ / _/ \\/ __,-' ) ,' _|' + (((__/(((_.' ((___..-'((__,' +""", + + "milk": r''' +\ + \ + \ + \ + ____________ + |__________| + / /\ + / / \ + /___________/___/| + | | | + | ==\ /== | | + | O O | \ \ | + | < | \ \| + /| | \ \ + / | \_____/ | / / + / /| | / /| +/||\| | /||\/ + -------------| + | | | | + <__/ \__> +''', + + "stegosaurus": r''' + \ + \ + \ + \ + . . + / `. .' \ + .---. < > < > .---. + | \ \ - ~ ~ - / / | + _____ ~-..-~ ~-..-~ + | | \~~~\.' `./~~~/ + --------- \__/ \__/ + .' O \ / / \ " + (_____, `._.' | } \/~~~/ + `----. / } | / \__/ + `-. | / | / `. ,~~| + ~-.__| /_ - ~ ^| /- _ `..-' f: f: + | / | / ~-. `-. _|| _||_ + |_____| |_____| ~ - . _ _ _ _ __> + +''', + + "stimpy": r''' + \ + \ + \ + \ + . _ . + |\_|/__/| + / / \/ \ \ + /__|O||O|__ \ + |/_ \_/\_/ _\ | + | | (____) | || + \/\___/\__/ // + (_/ || + | || + | ||\ + \ //_/ + \______// + __ || __|| + (____(____) +''', + + "turkey": r''' + \ + \ + \ + \ + ,+*^^*+___+++_ + ,*^^^^ ) + _+* ^**+_ + +^ _ _++*+_+++_, ) + _+^^*+_ ( ,+*^ ^ \\+_ ) + { ) ( ,( ,_+--+--, ^) ^\\ + { (\@) } f ,( ,+-^ __*_*_ ^^\\_ ^\\ ) + {:;-/ (_+*-+^^^^^+*+*<_ _++_)_ ) ) / + ( / ( ( ,___ ^*+_+* ) < < \\ + U _/ ) *--< ) ^\\-----++__) ) ) ) + ( ) _(^)^^)) ) )\\^^^^^))^*+/ / / + ( / (_))_^)) ) ) ))^^^^^))^^^)__/ +^^ + ( ,/ (^))^)) ) ) ))^^^^^^^))^^) _) + *+__+* (_))^) ) ) ))^^^^^^))^^^^^)____*^ + \\ \\_)^)_)) ))^^^^^^^^^^))^^^^) + (_ ^\\__^^^^^^^^^^^^))^^^^^^^) + ^\\___ ^\\__^^^^^^))^^^^^^^^)\\\\ + ^^^^^\\uuu/^^\\uuu/^^^^\\^\\^\\^\\^\\^\\^\\^\\ + ___) >____) >___ ^\\_\\_\\_\\_\\_\\_\\) + ^^^//\\\\_^^//\\\\_^ ^(\\_\\_\\_\\) + ^^^ ^^ ^^^ ^ +''', + + "turtle": r''' + \ + \ + \ + \ + ___-------___ + _-~~ ~~-_ + _-~ /~-_ + /^\__/^\ /~ \ / \ + /| O|| O| / \_______________/ \ + | |___||__| / / \ \ + | \ / / \ \ + | (_______) /______/ \_________ \ + | / / \ / \ + \ \^\\ \ / \ / + \ || \______________/ _-_ //\__// + \ ||------_-~~-_ ------------- \ --/~ ~\ || __/ + ~-----||====/~ |==================| |/~~~~~ + (_(__/ ./ / \_\ \. + (_(___/ \_____)_) +''', + + "tux": r''' + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +''', + + "pig": r''' +\ + \ + \ + \ + ,. + (_|,. + ,' /, )_______ _ + __j o``-' `.'-)' + (") \' + `-j | + `-._( / + |_\ |--^. / + /_]'|_| /_)_/ + /_]' /_]' +''', + + "trex": r''' + \ + \ + \ + \ + .-=-==--==--. + ..-==" ,'o`) `. + ,' `"' \ + : ( `.__...._ + | ) / `-=-. + : ,vv.-._ / / `---==-._ + \/\/\/VV ^ d88`;' / `. + `` ^/d88P!' / , `._ + ^/ !' ,. , / "-,,__,,--'""""-. + ^/ !' ,' \ . .( ( _ ) ) ) ) ))_,-.\ + ^(__ ,!',"' ;:+.:%:a. \:.. . ,' ) ) ) ) ,"' ' + ',,,'',' /o:::":%:%a. \:.:.: . ) ) _,' + """' ;':::'' `+%%%a._ \%:%| ;.). _,-"" + ,-='_.-' ``:%::) )%:| /:._," + (/(/" ," ,'_,'%%%: (_,' + ( (//(`.___; \ + \ \ ` ` + `. `. `. : + \. . .\ : . . . : + \. . .: `.. . .: + `..:.:\ \:...\ + ;:.:.; ::...: + ):%:: :::::; + __,::%:( ::::: + ,;:%%%%%%%: ;:%:: + ;,--""-.`\ ,=--':%:%:\ + /" "| /-".:%%%%%%%\ + ;,-"'`)%%) + /" "| +''', + + "miki": r''' +\ + \ &************************& + \ &******************************& + \ &**********************************& + &**************************************& + &*****************************************& + &*******************************************& + &*********************************************& + &***********************************************& + &************************************************& + &***#########********#########*******************& + &*## ########## ##################& + &*## O ##@**#### O ##***************& + &***#########@*******#########*****************& + &***********@*********************************& + &**********@*********************************& + &*********@*********************************& + &********@@*********************************& + &*******@@@@@@****************************& + &**************************************& + &**************************************& + &******@@@@@@@@@@@@*********************& + &*************************************& + &************************************& + &*******************************& + &*****************************& +''', + + "fox": r''' + \ + \ + \ + |\_/|,,_____,~~` + (.".)~~ )`~}} + \o/\ /---~\\ ~}} + _// _// ~} +''', + + "octopus": r''' + \ + \ + \ + . . . + . ^ . + . ^ ^ ^ . + . ^ ^ ^ . + . ^ . + . . . + _ _ _ _ _ _ _| |_ _ _ _ _ _ + / _ _ _ _ _ _| o|o |_ _ _ _ _ _ \ + / / _ _ _ _ _| | |_ _ _ _ \ \ + / / / _ _ _ / /| |\ \ _ _ _ \ \ \ + / / / / / / | | \ \ \ \ \ \ + / / / / / / | | \ \ \ \ \ \ + /_/ / / / / | | \ \ \ \ \_\ + | /__/ /_/ |_| \_\ \__\ | + | / | \ | +''', + +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py new file mode 100644 index 000000000..fbafeec5f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/main.py @@ -0,0 +1,74 @@ +import re + +from .characters import CHARS + +__version__ = '6.1' + +CHARS = dict(sorted(CHARS.items())) +char_names = list(CHARS.keys()) + + +class CowsayError(LookupError): + pass + + +def wrap_lines(lines: list, max_width: int = 49) -> list: + + new_lines = [] + for line in lines: + for line_part in [ + line[i: i+max_width] for i in range(0, len(line), max_width) + ]: + new_lines.append(line_part) + return new_lines + + +def generate_bubble(text: str) -> list: + + lines = [line.strip() for line in text.split('\n')] + lines = wrap_lines([line for line in lines if line]) + text_width = max([len(line) for line in lines]) + + output = [" " + "_" * text_width] + if len(lines) > 1: + output.append(" /" + " " * text_width + "\\") + for line in lines: + output.append("| " + line + " " * (text_width - len(line) + 1) + "|") + if len(lines) > 1: + output.append(" \\" + " " * text_width + "/") + output.append(" " + "=" * text_width) + + return output + + +def generate_char(char_lines: str, text_width: int) -> list: + + output = [] + char_lines = char_lines.split('\n') + char_lines = [i for i in char_lines if len(i) != 0] + for line in char_lines: + output.append(' ' * text_width + line) + return output + + +def draw(text: str, char_lines: str, to_console: bool = True) -> str: + + if len(re.sub(r'\s', '', text)) == 0: + raise CowsayError('Pass something meaningful to cowsay') + + output = generate_bubble(text) + text_width = max([len(line) for line in output]) - 4 # 4 is the frame + output += generate_char(char_lines, text_width) + if to_console: + for line in output: + print(line) + else: + return '\n'.join(output) + + +def get_output_string(char: str, text: str) -> str: + + if char in CHARS: + return draw(text, CHARS[char], to_console=False) + else: + raise CowsayError(f'Available Characters: {char_names}') diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0f03d015d57ba00dc490392991b3186e689272f GIT binary patch literal 217 zcmX@j%ge<81Shwh$^_AmK?FMZ%mNgd&QQsq$>_I|p@<2{`wUX^t3p2`KQ~psq$)Kx zGcP?OU*A2m#G^Dx-#OAvKiI`t-#0&{G$&OzBtJi=SU)qjASX39HLpZBIlsI(u~J{J zEH$r8KPNLuzo4=tBR|hr&(KJ}II|>Gw;(Y&J25@ASRbmgB(=DtSU)~KGcU6wK3=b& f@)w6qF4%0lB37V77=gGL#Q4a}$jDg43}gWSN5(wh literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/solutions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1667a212f5026b476866450a04d22faa422480a GIT binary patch literal 38493 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 B8GHZ$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_api.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/__pycache__/test_api.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f39e2da58913da0c88695104bd38d25e797088f2 GIT binary patch literal 2122 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 n^Zrl!*QMSysdr`XYTw \\ _ -~ `. ^-` ^-_ + ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ + /.-~ +""", + + + 'ghostbusters': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + __---__ + _- /--______ + __--( / \ )XXXXXXXXXXX\v. + .-XXX( O O )XXXXXXXXXXXXXXX- + /XXX( U ) XXXXXXX\ + /XXXXX( )--_ XXXXXXXXXXX\ + /XXXXX/ ( O ) XXXXXX \XXXXX\ + XXXXX/ / XXXXXX \__ \XXXXX + XXXXXX__/ XXXXXX \__----> + ---___ XXX__/ XXXXXX \__ / + \- --__/ ___/\ XXXXXX / ___--/= + \-\ ___/ XXXXXX '--- XXXXXX + \-\/XXX\ XXXXXX /XXXXX + \XXXXXXXXX \ /XXXXX/ + \XXXXXX > _/XXXXX/ + \XXXXX--__/ __-- XXXX/ + -XXXXXXXX--------------- XXXXXX- + \XXXXXXXXXXXXXXXXXXXXXXXXXX/ + ""VXXXXXXXXXXXXXXXXXXV"" +""", + + + 'kitty': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + + ("`-' '-/") .___..--' ' "`-._ + ` *_ * ) `-. ( ) .`-.__. `) + (_Y_.) ' ._ ) `._` ; `` -. .-' + _.. `--'_..-_/ /--' _ .' ,4 + ( i l ),-'' ( l i),' ( ( ! .-' +""", + + + 'meow': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + _ ___.--'''`--''//-,-_--_. + \\`"' ` || \\\\ \\ \\\\/ / // / ,-\\\\`,_ + /'` \\ \\ || Y | \\|/ / // / - |__ `-, + /\@"\\ ` \\ `\\ | | ||/ // | \\/ \\ `-._`-,_., + / _.-. `.-\\,___/\\ _/|_/_\\_\\/|_/ | `-._._) + `-'``/ / | // \\__/\\__ / \\__/ \\ + `-' /-\\/ | -| \\__ \\ |-' | + __/\\ / _/ \\/ __,-' ) ,' _|' + (((__/(((_.' ((___..-'((__,' +""", + + + 'milk': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ____________ + |__________| + / /\ + / / \ + /___________/___/| + | | | + | ==\ /== | | + | O O | \ \ | + | < | \ \| + /| | \ \ + / | \_____/ | / / + / /| | / /| + /||\| | /||\/ + -------------| + | | | | + <__/ \__> +""", + + + 'stegosaurus': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + . . + / `. .' \ + .---. < > < > .---. + | \ \ - ~ ~ - / / | + _____ ~-..-~ ~-..-~ + | | \~~~\.' `./~~~/ + --------- \__/ \__/ + .' O \ / / \ " + (_____, `._.' | } \/~~~/ + `----. / } | / \__/ + `-. | / | / `. ,~~| + ~-.__| /_ - ~ ^| /- _ `..-' f: f: + | / | / ~-. `-. _|| _||_ + |_____| |_____| ~ - . _ _ _ _ __> +""", + + + 'stimpy': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + . _ . + |\_|/__/| + / / \/ \ \ + /__|O||O|__ \ + |/_ \_/\_/ _\ | + | | (____) | || + \/\___/\__/ // + (_/ || + | || + | ||\ + \ //_/ + \______// + __ || __|| + (____(____) +""", + + + 'turkey': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ,+*^^*+___+++_ + ,*^^^^ ) + _+* ^**+_ + +^ _ _++*+_+++_, ) + _+^^*+_ ( ,+*^ ^ \\+_ ) + { ) ( ,( ,_+--+--, ^) ^\\ + { (\@) } f ,( ,+-^ __*_*_ ^^\\_ ^\\ ) + {:;-/ (_+*-+^^^^^+*+*<_ _++_)_ ) ) / + ( / ( ( ,___ ^*+_+* ) < < \\ + U _/ ) *--< ) ^\\-----++__) ) ) ) + ( ) _(^)^^)) ) )\\^^^^^))^*+/ / / + ( / (_))_^)) ) ) ))^^^^^))^^^)__/ +^^ + ( ,/ (^))^)) ) ) ))^^^^^^^))^^) _) + *+__+* (_))^) ) ) ))^^^^^^))^^^^^)____*^ + \\ \\_)^)_)) ))^^^^^^^^^^))^^^^) + (_ ^\\__^^^^^^^^^^^^))^^^^^^^) + ^\\___ ^\\__^^^^^^))^^^^^^^^)\\\\ + ^^^^^\\uuu/^^\\uuu/^^^^\\^\\^\\^\\^\\^\\^\\^\\ + ___) >____) >___ ^\\_\\_\\_\\_\\_\\_\\) + ^^^//\\\\_^^//\\\\_^ ^(\\_\\_\\_\\) + ^^^ ^^ ^^^ ^ +""", + + + 'turtle': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ___-------___ + _-~~ ~~-_ + _-~ /~-_ + /^\__/^\ /~ \ / \ + /| O|| O| / \_______________/ \ + | |___||__| / / \ \ + | \ / / \ \ + | (_______) /______/ \_________ \ + | / / \ / \ + \ \^\\ \ / \ / + \ || \______________/ _-_ //\__// + \ ||------_-~~-_ ------------- \ --/~ ~\ || __/ + ~-----||====/~ |==================| |/~~~~~ + (_(__/ ./ / \_\ \. + (_(___/ \_____)_) +""", + + + 'tux': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + .--. + |o_o | + |:_/ | + // \ \ + (| | ) + /'\_ _/`\ + \___)=(___/ +""", + + + 'pig': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + ,. + (_|,. + ,' /, )_______ _ + __j o``-' `.'-)' + (") \' + `-j | + `-._( / + |_\ |--^. / + /_]'|_| /_)_/ + /_]' /_]' +""", + + + 'trex': r''' + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + \ + .-=-==--==--. + ..-==" ,'o`) `. + ,' `"' \ + : ( `.__...._ + | ) / `-=-. + : ,vv.-._ / / `---==-._ + \/\/\/VV ^ d88`;' / `. + `` ^/d88P!' / , `._ + ^/ !' ,. , / "-,,__,,--'""""-. + ^/ !' ,' \ . .( ( _ ) ) ) ) ))_,-.\ + ^(__ ,!',"' ;:+.:%:a. \:.. . ,' ) ) ) ) ,"' ' + ',,,'',' /o:::":%:%a. \:.:.: . ) ) _,' + """' ;':::'' `+%%%a._ \%:%| ;.). _,-"" + ,-='_.-' ``:%::) )%:| /:._," + (/(/" ," ,'_,'%%%: (_,' + ( (//(`.___; \ + \ \ ` ` + `. `. `. : + \. . .\ : . . . : + \. . .: `.. . .: + `..:.:\ \:...\ + ;:.:.; ::...: + ):%:: :::::; + __,::%:( ::::: + ,;:%%%%%%%: ;:%:: + ;,--""-.`\ ,=--':%:%:\ + /" "| /-".:%%%%%%%\ + ;,-"'`)%%) + /" "| + +''', + + + 'miki': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ &************************& + \ &******************************& + \ &**********************************& + &**************************************& + &*****************************************& + &*******************************************& + &*********************************************& + &***********************************************& + &************************************************& + &***#########********#########*******************& + &*## ########## ##################& + &*## O ##@**#### O ##***************& + &***#########@*******#########*****************& + &***********@*********************************& + &**********@*********************************& + &*********@*********************************& + &********@@*********************************& + &*******@@@@@@****************************& + &**************************************& + &**************************************& + &******@@@@@@@@@@@@*********************& + &*************************************& + &************************************& + &*******************************& + &*****************************& +""", + + + 'fox': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + |\_/|,,_____,~~` + (.".)~~ )`~}} + \o/\ /---~\\ ~}} + _// _// ~} +""", + + + 'octopus': r""" + _________________________________________________ + / \ +| Lorem ipsum dolor sit amet, consetetur sadipscing | +| elitr, sed diamnonumy eirmod tempor invidunt ut | +| labore et dolore magna aliquyam erat,sed diam vol | +| uptua. At vero eos et accusam et justo duo dolore | +| s et ea rebum. | + \ / + ================================================= + \ + \ + \ + . . . + . ^ . + . ^ ^ ^ . + . ^ ^ ^ . + . ^ . + . . . + _ _ _ _ _ _ _| |_ _ _ _ _ _ + / _ _ _ _ _ _| o|o |_ _ _ _ _ _ \ + / / _ _ _ _ _| | |_ _ _ _ \ \ + / / / _ _ _ / /| |\ \ _ _ _ \ \ \ + / / / / / / | | \ \ \ \ \ \ + / / / / / / | | \ \ \ \ \ \ + /_/ / / / / | | \ \ \ \ \_\ + | /__/ /_/ |_| \_\ \__\ | + | / | \ | +""", + +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py new file mode 100644 index 000000000..f2ac1bbf5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_api.py @@ -0,0 +1,35 @@ +import pytest + +import cowsay + + +def test_char_names(): + + characters = ['beavis', 'cheese', 'daemon', 'cow', 'dragon', + 'ghostbusters', 'kitty', 'meow', 'milk', 'stegosaurus', + 'stimpy', 'turkey', 'turtle', 'tux', + 'pig', 'trex', 'miki', 'fox', 'octopus'] + + assert len(cowsay.char_names) == len(characters) + assert cowsay.char_names == sorted(characters) + + +def test_draw_error(): + + with pytest.raises(cowsay.CowsayError) as e: + cowsay.draw('', '') + + assert e.value.args[0] == 'Pass something meaningful to cowsay' + + +def test_get_output_string(): + + assert isinstance(cowsay.get_output_string(char='cow', text='Hello'), str) + + +def test_get_output_string_error(): + + with pytest.raises(cowsay.CowsayError) as e: + cowsay.get_output_string('random', 'random text') + + assert e.value.args[0] == f'Available Characters: {cowsay.char_names}' diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py new file mode 100644 index 000000000..d825d8ce6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/cowsay/tests/test_output.py @@ -0,0 +1,40 @@ +import io +import sys +from typing import Callable + +import pytest + +from cowsay import char_funcs, char_names +from . import solutions + + +def capture_output(function: Callable, arguments: str) -> str: + captured_output = io.StringIO() + sys.stdout = captured_output + function(arguments) + sys.stdout = sys.__stdout__ + captured_output.seek(0) + return captured_output.read() + + +def delete_empty_lines(data): + new_data = [] + for line in data.splitlines(): + if len(line.strip()) > 0: + new_data.append(line.rstrip()) + return new_data + + +@pytest.mark.parametrize('char', char_names, ids=char_names) +def test_char_solution(char): + + lorem: str = ( + 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam' + 'nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,' + 'sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.' + ) + + output = capture_output(char_funcs[char], lorem) + output = delete_empty_lines(output) + solution = delete_empty_lines(solutions.CHARS_SOLUTIONS[char]) + assert output == solution diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt new file mode 100644 index 000000000..0e6354892 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt @@ -0,0 +1,760 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adrien Morison +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 +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +Arindam Choudhury +Armin Ronacher +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 +Brandon L. Reiss +Brandt Bucher +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 +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +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 +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 Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +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 +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 +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 Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +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 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 +kpinc +Krishna Oza +Kumar McMillan +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 +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 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 +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +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 +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 Waller +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 +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +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 +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 +shireenrao +Shivansh-007 +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +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 +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 +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 +Роман Донченко +Семён Марьясин +‮rekcäH nitraM‮ diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt new file mode 100644 index 000000000..8e7b65eaf --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.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/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA new file mode 100644 index 000000000..e5b45bdd6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA @@ -0,0 +1,88 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.0 +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.7 +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 :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD new file mode 100644 index 000000000..6f58bbbfc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD @@ -0,0 +1,1005 @@ +../../../bin/pip,sha256=wHu3vAcDRWmVtDnRHXtU1TMYeaGupUM8xPULKZ5xzP4,283 +../../../bin/pip3,sha256=wHu3vAcDRWmVtDnRHXtU1TMYeaGupUM8xPULKZ5xzP4,283 +../../../bin/pip3.12,sha256=wHu3vAcDRWmVtDnRHXtU1TMYeaGupUM8xPULKZ5xzP4,283 +pip-24.0.dist-info/AUTHORS.txt,sha256=SwXm4nkwRkmtnO1ZY-dLy7EPeoQNXMNLby5CN3GlNhY,10388 +pip-24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.0.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.0.dist-info/METADATA,sha256=kNEfJ3_Vho2mee4lfJdlbd5RHIqsfQJSMUB-bOkIOeI,3581 +pip-24.0.dist-info/RECORD,, +pip-24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92 +pip-24.0.dist-info/entry_points.txt,sha256=Fa_c0b-xGFaYxagIruvpJD6qqXmNTA02vAVIkmMj-9o,125 +pip-24.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=oAk1nFpLmUVS5Ln7NxvNoGUn5Vkn6FGQjPaNDf8Q8pk,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=EnrfKmKMzWAdqg_JicLCOP9Y95Ux7zHh4ObvqLtQcjo,1444 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=iqZ5-YQsQV08tkUc7L806Reop6tguLFWf70ySF6be0Y,515 +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=1ESpqw0iupS_K7phZK5zshVE5Czy9BtGLFU4W6Enva8,10243 +pip/_internal/cache.py,sha256=uiYD-9F0Bv1C8ZyWE85lpzDmQf7hcUkgL99GmI8I41Q,10370 +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__/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=_br_5NgSxSuvPjMF0MLHzS5s6BpSkQAQHKrLK89VauM,6690 +pip/_internal/cli/base_command.py,sha256=iuVWGa2oTq7gBReo0er3Z0tXJ2oqBIC6QjDHcnDhKXY,8733 +pip/_internal/cli/cmdoptions.py,sha256=V8ggG6AtHpHKkH_6tRU0mhJaZTeqtrFpu75ghvMXXJk,30063 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/main.py,sha256=Uzxt_YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ,2816 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=KW6C3-7-4ErTNB0TfLTKwOdHcd-qefCeGnrOoE2r0RQ,10781 +pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968 +pip/_internal/cli/req_command.py,sha256=c7_XHABnXmD3_qlK9-r37KqdKBAcgmVKvQ2WcTrNLfc,18369 +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=Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA,1782 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=63972uUCeMIGOdMMVeIUGrOjTOqTVWplFC82a-hcKyA,6777 +pip/_internal/commands/download.py,sha256=e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ,5335 +pip/_internal/commands/freeze.py,sha256=qrIHS_-c6JPrQ92hMhAv9kkl0bHgFpRLwYJDdbcYr1o,3243 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=CNXQer_PeZKSJooURcCFCBEKGfwyNoUWYP_MWczAcOM,4775 +pip/_internal/commands/inspect.py,sha256=2wSPt9yfr3r6g-s2S5L6PvRtaHNVyb4TuodMStJ39cw,3188 +pip/_internal/commands/install.py,sha256=VxDd-BD3a27ApeE2OK34rfBXS6Zo2wtemK9-HCwPqxM,28782 +pip/_internal/commands/list.py,sha256=-QbpPuGDiGN1SdThsk2ml8beBnepliefbGhMAN8tkzU,12547 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=t5jia4zcYJRJZy4U_Von7zMl03hJmmcofj6oDNTnj7Y,6419 +pip/_internal/commands/uninstall.py,sha256=OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y,3886 +pip/_internal/commands/wheel.py,sha256=CSnX8Pmf1oPCnd7j7bn1_f58G9KHNiAblvVJ5zykN-A,6476 +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=oRSEvnv2ZjBnargamnv2fcJa1n6gUDKaW0g6CWSEpWs,1743 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=4K3V0VNMllHbBzCJibjwd_tylUKpmIdu2AQyhplvCQo,6709 +pip/_internal/distributions/wheel.py,sha256=-ma3sOtUQj0AxXCEb6_Fhmjl3nh4k3A0HC2taAb2N-4,1277 +pip/_internal/exceptions.py,sha256=TmF1iNFEneSWaemwlg6a5bpPuq2cMHK7d1-SvjsQHb0,23634 +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=sH0tL_cOoCk6pLLfCSGVjFM4rPEJtllF-VobvAvLSH4,16590 +pip/_internal/index/package_finder.py,sha256=S_nC8gzVIMY6ikWfKoSOzRtoesUqnfNhAPl_BwSOusA,37843 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=Dh8LJWG8LRlDK4JIj9sfRF96TREzE--N_AIlx7Tqoe4,15365 +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=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=jyNVtUfMIf0mtyY-Xp1m9yQ8iwECozSVVFmjkN9a2yw,7680 +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=Rz5M5ciSNvITwaTQR6NfN8TgKgM5WfTws4D6CFknovE,2627 +pip/_internal/metadata/base.py,sha256=l3Wgku4xlgr8s4p6fS-3qQ4QKOpPbWLRwi5d9omEFG4,25907 +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=GAe_prIfCE4iUylrnr_2dJRlkkBVRUbOidEoID7LPoE,1882 +pip/_internal/metadata/importlib/_dists.py,sha256=UPl1wUujFqiwiltRJ1tMF42WRINO1sSpNNlYQ2mX0mk,8297 +pip/_internal/metadata/importlib/_envs.py,sha256=XTaFIYERP2JF0QUZuPx2ETiugXbPEcZ8q8ZKeht6Lpc,7456 +pip/_internal/metadata/pkg_resources.py,sha256=opjw4IBSqHvie6sXJ_cbT42meygoPEUfNURJuWZY7sk,10035 +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=hEPu8VdGE5qVASv6vLz-R-Rgh5-7LMbai1jgthMCd8M,931 +pip/_internal/models/direct_url.py,sha256=FwouYBKcqckh7B-k2H3HVgRhhFTukFwqiS3kfvtFLSk,6889 +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=XirOAGv1jgMu7vu87kuPbohGj7VHpwVrd2q3KUgVQNg,20777 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c,4643 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=34EkorrMuRvRp-bjqHKJ-bOO71m9xdjN2b8WWFEC2HU,4272 +pip/_internal/models/wheel.py,sha256=YqazoIZyma_Q1ejFa1C7NHKQRRWlvWkdK96VRKmDBeI,3600 +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=TC-OcW2KU4W6R1hU4qPgQXvVH54adACpZz6sWq-R9NA,20541 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=i0Tn55CD5D7XYEFY3TxiYaCf0OaaTQ6SScNgCsSeV14,6086 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=9tqEDD8JiVaFdplOEXJxNo9cjRfBZ6RIa0yQQ_qBNiM,18698 +pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073 +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=z-H5DOknZdBa3dh2Vq6VBMY5qLYIKmlj2p6CGZK5Lc8,4832 +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=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +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=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=fsqA88iGaqftCr2tlP3sSU202CSkoODRtW0O-JU9M4Y,6806 +pip/_internal/operations/freeze.py,sha256=uqoeTAf6HOYVMR2UgAT8N85UZoGEVEoQdan_Ao6SOfk,9816 +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=YeR0KadWXw_ZheC1NtAG1qVIEkOgRGHc23x-YtGW7NU,1282 +pip/_internal/operations/install/wheel.py,sha256=9hGb1c4bRnPIb2FG7CtUSPfPxqprmHQBtwIAlWPNTtE,27311 +pip/_internal/operations/prepare.py,sha256=57Oq87HfunX3Rbqp47FdaJr9cHbAKUm_3gv7WhBAqbE,28128 +pip/_internal/pyproject.py,sha256=4Xszp11xgr126yzG6BbJA0oaQ9WXuhb0jyUb-y_6lPQ,7152 +pip/_internal/req/__init__.py,sha256=TELFgZOof3lhMmaICVWL9U7PlhXo9OufokbMAJ6J2GI,2738 +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=8hlY56imEthLORRwmloyKz3YOyXymIaKsNB6P9ewvNI,19018 +pip/_internal/req/req_file.py,sha256=M8ttOZL-PwAj7scPElhW3ZD2hiD9mm_6FJAGIbwAzEI,17790 +pip/_internal/req/req_install.py,sha256=wtOPxkyRSM8comTks8oL1Gp2oyGqbH7JwIDRci2QiPk,35460 +pip/_internal/req/req_set.py,sha256=iMYDUToSgkxFyrP_OrTtPSgw4dwjRyGRDpGooTqeA4Y,4704 +pip/_internal/req/req_uninstall.py,sha256=nmvTQaRCC0iu-5Tw0djlXJhSj6WmqHRvT3qkkEdC35E,24551 +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=Xk24jQ62GvLr4Mc7IjN_qiO88qp0BImzVmPIFz9QLOE,24025 +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=jg5COmHLhmBIKOR-4spdJD3jyULYa1BdsqiBu2YJnJ4,5173 +pip/_internal/resolution/resolvelib/candidates.py,sha256=19Ki91Po-MSxBknGIfOGkaWkFdOznN0W_nKv7jL28L0,21052 +pip/_internal/resolution/resolvelib/factory.py,sha256=vqqk-hjchdhShwWVdeW2_A-5ZblLhE_nC_v3Mhz4Svc,32292 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=4t23ivjruqM6hKBX1KpGiTt-M4HGhRcZnGLV0c01K7U,9824 +pip/_internal/resolution/resolvelib/reporter.py,sha256=YFm9hQvz4DFCbjZeFTQ56hTz3Ac-mDBnHkeNRVvMHLY,3100 +pip/_internal/resolution/resolvelib/requirements.py,sha256=-kJONP0WjDfdTvBAs2vUXPgAnOyNIBEAXY4b72ogtPE,5696 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=saxQLB8UzIFtMScquytG10TOTsYVFJQ_mkW1NY-46wE,8378 +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__/models.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.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=yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY,3351 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +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=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=Mesxxgg3BLxheLZx-dSf30b6gKpOgdVXw6W--uHSszQ,3113 +pip/_internal/utils/hashes.py,sha256=MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm-bHE,5118 +pip/_internal/utils/logging.py,sha256=fdtuZJ-AKkqwDTANDvGcBEpssL8el7T1jnwk1CnZl3Y,11603 +pip/_internal/utils/misc.py,sha256=fNXwaeeikvnUt4CPMFIL4-IQbZDxxjj4jDpzCi4ZsOw,23623 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=zzdimb75jVLE1GU4WlTZ055gczhD7n1y1xTcNc7vNZQ,9207 +pip/_internal/utils/temp_dir.py,sha256=DUAw22uFruQdK43i2L2K53C-CDjRCPeAsBKJpu-rHQ4,9312 +pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=i4BwUNHattzN0ixy3HBAF04tZPRh2CcxaT6t86viwkE,4499 +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=j0oin0fpGRHcCFCxEcpPCQoFEvA-DMLULKdGP8Nv76o,3519 +pip/_internal/vcs/git.py,sha256=CeKBGJnl6uskvvjkAUXrJVxbHJrpS_B_pyfFdjL3CRc,18121 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=vhZs8L-TNggXqM1bbhl-FpbxE3TrIB6Tgnx8fh3S2HE,11729 +pip/_internal/vcs/versioncontrol.py,sha256=3eIjtOMYvOY5qP6BMYIYDZ375CSuec6kSEB0bOo1cSs,22787 +pip/_internal/wheel_builder.py,sha256=qTTzQV8F6b1jNsFCda1TRQC8J7gK-m7iuRNgKo7Dj68,11801 +pip/_vendor/__init__.py,sha256=U51NPwXdA-wXOiANIQncYjcMp6txgeOL5nHxksJeyas,4993 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/six.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=ctHagMhQXuvQDdm4TirZrwDOT5H8oBNAJqzdKI6sovk,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=_CcWvUP9048qAZjsNqViaHbdcLs9mmFNixVfpO7oebE,6392 +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=3z8AWKD-vfKeiJqIzLmJyIYtR2yd6Tsh3u1TyLRQoIQ,5352 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=keCFA3ZaNVaWTwHd6F1zqWhb4vyvNx_UvZuo5iIYMfo,18384 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=fdFbk9W8IeLrjteIz_fK4mj2HD_Y7COXF2Uc8TgjT1c,4828 +pip/_vendor/cachecontrol/serialize.py,sha256=0dHeMaDwysVAAnGVlhMOP4tDliohgNK0Jxk_zsOiWxw,7173 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=L_j-d0kYuA_MzA2_2hraF1ovf6KT6DTquRdV3paQwOk,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=eU0Dn_3yd8BH4m8sfVj4Glhl2KDrcCSg-sEWT-pNJ88,281617 +pip/_vendor/certifi/core.py,sha256=DNTl8b_B6C4vO3Vc9_q2uvwHpNnBQoy5onDC4McImxc,4531 +pip/_vendor/chardet/__init__.py,sha256=57R-HSxj0PWmILMN0GFmUNqEMfrEVSamXyjD-W6_fbs,4797 +pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-312.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274 +pip/_vendor/chardet/big5prober.py,sha256=lPMfwCX6v2AaPgvFh_cSWZcgLDbWiFCHLZ_p9RQ9uxE,1763 +pip/_vendor/chardet/chardistribution.py,sha256=13B8XUG4oXDuLdXvfbIWwLFeR-ZU21AqTS1zcdON8bU,10032 +pip/_vendor/chardet/charsetgroupprober.py,sha256=UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M-fZJu3OlWyg,3915 +pip/_vendor/chardet/charsetprober.py,sha256=L3t8_wIOov8em-vZWOcbkdsrwe43N6_gqNh5pH7WPd4,5420 +pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=zibMVg5RpKb-ME9_7EYG4ZM2Sf07NHcQzZ12U-rYJho,3242 +pip/_vendor/chardet/codingstatemachine.py,sha256=K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv_yE,3732 +pip/_vendor/chardet/codingstatemachinedict.py,sha256=0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr_66ER4EHjuMiMc,542 +pip/_vendor/chardet/cp949prober.py,sha256=0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI,1860 +pip/_vendor/chardet/enums.py,sha256=TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5_bCkhY8,1683 +pip/_vendor/chardet/escprober.py,sha256=Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A,4006 +pip/_vendor/chardet/escsm.py,sha256=AqyXpA2FQFD7k-buBty_7itGEYkhmVa8X09NLRul3QM,12176 +pip/_vendor/chardet/eucjpprober.py,sha256=5KYaM9fsxkRYzw1b5k0fL-j_-ezIw-ij9r97a9MHxLY,3934 +pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566 +pip/_vendor/chardet/euckrprober.py,sha256=hiFT6wM174GIwRvqDsIcuOc-dDsq2uPKMKbyV8-1Xnc,1753 +pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913 +pip/_vendor/chardet/euctwprober.py,sha256=NxbpNdBtU0VFI0bKfGfDkpP7S2_8_6FlO87dVH0ogws,1753 +pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735 +pip/_vendor/chardet/gb2312prober.py,sha256=KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0,1759 +pip/_vendor/chardet/hebrewprober.py,sha256=96T_Lj_OmW-fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE,14537 +pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796 +pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498 +pip/_vendor/chardet/johabprober.py,sha256=O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU,1752 +pip/_vendor/chardet/jpcntx.py,sha256=uhHrYWkLxE_rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA,27055 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562 +pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484 +pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196 +pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363 +pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035 +pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774 +pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372 +pip/_vendor/chardet/latin1prober.py,sha256=p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g,5380 +pip/_vendor/chardet/macromanprober.py,sha256=9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL-p1JWcOY,6077 +pip/_vendor/chardet/mbcharsetprober.py,sha256=Wr04WNI4F3X_VxEverNG-H25g7u-MDDKlNt-JGj-_uU,3715 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=iRpaNBjV0DNwYPu_z6TiHgRpwYahiM7ztI_4kZ4Uz9A,2131 +pip/_vendor/chardet/mbcssm.py,sha256=hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw,30391 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=FhvBIdZFxRQ-dTwkb_0madRKgVBCaUMQz9I5xqjE5iQ,13560 +pip/_vendor/chardet/resultdict.py,sha256=ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy_SSLPXKCdt5M,402 +pip/_vendor/chardet/sbcharsetprober.py,sha256=-nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U,6400 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=gcgI0fOfgw_3YTClpbra_MNxwyEyJ3eUXraoLHYb59E,4137 +pip/_vendor/chardet/sjisprober.py,sha256=aqQufMzRw46ZpFlzmYaYeT2-nzmKb-hmcrApppJ862k,4007 +pip/_vendor/chardet/universaldetector.py,sha256=xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520,14848 +pip/_vendor/chardet/utf1632prober.py,sha256=pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8-eQ,8505 +pip/_vendor/chardet/utf8prober.py,sha256=8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH_i8_TnVw,2812 +pip/_vendor/chardet/version.py,sha256=lGtJcxGM44Qz4Cbk4rbbmrKxnNr1-97U25TameLehZw,244 +pip/_vendor/colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 +pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 +pip/_vendor/colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 +pip/_vendor/colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 +pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc,, +pip/_vendor/colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 +pip/_vendor/colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 +pip/_vendor/colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 +pip/_vendor/colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 +pip/_vendor/colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 +pip/_vendor/colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 +pip/_vendor/colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 +pip/_vendor/colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,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=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=nQFXN6G7nOWNDUyxirUep-3WOlJhB7McvCs9zOnkGTI,18315 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +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=UZO1LjIhtFCMdlbiz39gj3raV-Amf3SBwzGzfApiMHw,49330 +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=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=kkCFNJOrE6I3WwBTXcGNuc24V_QZQ8AULE6EYe1iHlU,12813 +pip/_vendor/idna/idnadata.py,sha256=9NIhTqC2piUpeIMOGZ9Bu_7eAFQ-Ic8TkP_hOzUpnDc,78344 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 +pip/_vendor/idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 +pip/_vendor/msgpack/__init__.py,sha256=hyGhlnmcJkxryJBKC3X5FnEph375kQoL_mG8LZUuXgY,1132 +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=C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M,6079 +pip/_vendor/msgpack/fallback.py,sha256=tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g,34544 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.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/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pkg_resources/__init__.py,sha256=hTAeJCNYb7dJseIDVsYK3mPQep_gphj4tQh-bspX8bg,109364 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=SkhEYVyC_HUHC6KX7n4M_6coyRMtEB38QMyOYIAX6Yk,20155 +pip/_vendor/platformdirs/__main__.py,sha256=fVvSiTzr2-RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ,1476 +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=y_EEMKwYl2-bzYBDovksSn8m76on0Lda8eyJksVQE9U,7211 +pip/_vendor/platformdirs/api.py,sha256=jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew,7132 +pip/_vendor/platformdirs/macos.py,sha256=LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1-A86tRQ,3678 +pip/_vendor/platformdirs/unix.py,sha256=22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg,8809 +pip/_vendor/platformdirs/version.py,sha256=mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb-74xqW5f2M,160 +pip/_vendor/platformdirs/windows.py,sha256=4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc,9573 +pip/_vendor/pygments/__init__.py,sha256=6AuDljQtvf89DTNUyWM7k3oUlP_lq70NU-INKKteOBY,2983 +pip/_vendor/pygments/__main__.py,sha256=es8EKMvXj5yToIfQ-pf3Dv5TnIeeM6sME0LW-n4ecHo,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=byxYJp9gnjVeyhRlZ3UTMgo_LhkXh1afvN8wJBtAcc8,23685 +pip/_vendor/pygments/console.py,sha256=2wZ5W-U6TudJD1_NLUwjclMpbomFM91lNv11_60sfGY,1697 +pip/_vendor/pygments/filter.py,sha256=j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g_30,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=h_koYkUFo-FFUxjs564JHUAz7O3yJpVwI6fKN3MYzG0,40386 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg_o_-Z_S_tTY,4178 +pip/_vendor/pygments/formatters/__init__.py,sha256=_xgAcdFKr0QNYwh_i98AU9hvfP3X2wAkhElFcRRF3Uo,5424 +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=r1b7wzWTJouADDLh-Z11iRi4iQxD0JKJ1qHl6mOYxsA,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=xy8Zf3tXOo6MWrXh7yPGWx3lVEkg_DhY4CxmsDb0IVo,5094 +pip/_vendor/pygments/formatters/html.py,sha256=PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI,35610 +pip/_vendor/pygments/formatters/img.py,sha256=XKXmg2_XONrR4mtq2jfEU8XCsoln3VSGTw-UYiEokys,21938 +pip/_vendor/pygments/formatters/irc.py,sha256=Ep-m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=FGzJ-YqSTE8z_voWPdzvLY5Tq8jE_ygjGjM6dXZJ8-k,19351 +pip/_vendor/pygments/formatters/other.py,sha256=gPxkk5BdAzWTCgbEHg1lpLi-1F6ZPh5A_aotgLXHnzg,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=aA0v_psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=dQONWypbzfvzGCDtdp3M_NJawScJvM2DiHbx1k-ww7g,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=FG-rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4,11753 +pip/_vendor/pygments/lexer.py,sha256=2BpqLlT2ExvOOi7vnjK5nB4Fp-m52ldiPaXMox5uwug,34618 +pip/_vendor/pygments/lexers/__init__.py,sha256=j5KEi5O_VQ5GS59H49l-10gzUOkWKxlwGeVMlGO2MMk,12130 +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=Hts4r_ZQ8icftGM7gkBPeED5lyVSv4affFgXYE6Ap04,72281 +pip/_vendor/pygments/lexers/python.py,sha256=c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA_w,53424 +pip/_vendor/pygments/modeline.py,sha256=eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb-BYGQdI,986 +pip/_vendor/pygments/plugin.py,sha256=j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM,2591 +pip/_vendor/pygments/regexopt.py,sha256=jg1ALogcYGU96TQS9isBl6dCrvw5y5--BP_K-uFk_8s,3072 +pip/_vendor/pygments/scanner.py,sha256=b_nu5_f3HCgSdp5S_aNRBQ1MSCm4ZjDwec2OmTRickw,3092 +pip/_vendor/pygments/sphinxext.py,sha256=wBFYm180qea9JKt__UzhRlNRNhczPDFDaqGD21sbuso,6882 +pip/_vendor/pygments/style.py,sha256=C4qyoJrUTkq-OV3iO-8Vz3UtWYpJwSTdh5_vlGCGdNQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=he7HjQx7sC0d2kfTVLjUs0J15mtToJM6M1brwIm9--Q,3700 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/token.py,sha256=seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC-gc_o,6184 +pip/_vendor/pygments/unistring.py,sha256=FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc,63223 +pip/_vendor/pygments/util.py,sha256=AEVY0qonyyEMgv4Do2dINrrqUAwUk2XYSqHM650uzek,10230 +pip/_vendor/pyparsing/__init__.py,sha256=9m1JbE2JTLdBG0Mb6B0lEaZj181Wx5cuPXZpsbHEYgE,9116 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY,6567 +pip/_vendor/pyparsing/common.py,sha256=p-3c83E5-DjlkF35G0O9-kjQRpoejP-2_z0hxZ-eol4,13387 +pip/_vendor/pyparsing/core.py,sha256=yvuRlLpXSF8mgk-QhiW3OVLqD9T0rsj9tbibhRH4Yaw,224445 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=nxmDOoYF9NXuLaGYy01tKFjkNReWJlrGFuJNWEiTo84,24215 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=6Jc6W1eDZBzyFu1J0YrcdNFVBC-RINujZmveSnB8Rxw,9523 +pip/_vendor/pyparsing/helpers.py,sha256=BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk,38646 +pip/_vendor/pyparsing/results.py,sha256=9dyqQ-w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY,26692 +pip/_vendor/pyparsing/testing.py,sha256=eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY,13488 +pip/_vendor/pyparsing/unicode.py,sha256=fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8,10646 +pip/_vendor/pyparsing/util.py,sha256=vTMzTdwSDyV8d_dSgquUTdWgBFoA_W30nfxEJDsshRQ,8670 +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=owujob4dk45Siy4EYtbCKR6wcFph7E04a_v_OuAacBA,5169 +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=ssI3Ezt7PaxgkOW45GhtwPUclo_SO_ygtIm4A74IOfw,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M,19697 +pip/_vendor/requests/api.py,sha256=q61xcXq4tmiImrvcSVLTbFyCiD2F-L_-hWKGbz4y8vg,6449 +pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286 +pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560 +pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823 +pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=dDZ-iThotky-Noq9yy97cUEJhr3wnY6mv-xR_ePg_lk,35288 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=-LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P--L2Xhw,30373 +pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=BvQDKkLuXCSaVfSW_1blUN0IzJSfNC8njNr8vhKj76Y,33189 +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/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=TT8sb9PTnsnKhhrGuHkLN0jdN0dtKhtPkEr9CidDbPM,8478 +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=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +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=qxgV3nKnXQu1hfbnRVswPYy-AwIg1X0LSC47cK5s8jk,2100 +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=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +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=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=Ji-Yokfkhnfe_xMmr4ISjZB07TJXggBCOYoYa-HDAr8,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew,9842 +pip/_vendor/rich/cells.py,sha256=627ztJs9zOL-38HJ7kXBerR-gT8KBfYC8UzEwMJDYYo,4509 +pip/_vendor/rich/color.py,sha256=9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE,18224 +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=pDvkbLkvtZIMIwQx_jkZ-seyNl4zGBLviXoWXte9fwg,99218 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +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=p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko,9584 +pip/_vendor/rich/json.py,sha256=EYp9ucj-nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M,5032 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=RFYL6HdCFsHf9WRpcvi3w-fpj-8O5dMZ8W96VdKNdbI,14007 +pip/_vendor/rich/live.py,sha256=vZzYvu7fqwlv3Gthl2xiw1Dc_O80VlGcCV0DOHwCyDM,14273 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198 +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=wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE,10574 +pip/_vendor/rich/pretty.py,sha256=eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0,35852 +pip/_vendor/rich/progress.py,sha256=n4KF9vky8_5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A,59706 +pip/_vendor/rich/progress_bar.py,sha256=cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94-ACFoo,8165 +pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=9Z8otOmM-tyxnyTodvXlectP60lwahjGiDTrbrxPSTg,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=XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu-IG2uTg,24247 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +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=jgDiVCK6cpR0NmBOpZmIu-Ud4eaW7fHvjJZkDbjpcSA,35173 +pip/_vendor/rich/table.py,sha256=-WzesL-VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8,39684 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=_8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4-hXjHyyg1A,45525 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A,29604 +pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=3kvAL6KClq8GFo2KFhmOzskRKSDQI-ubrlfZ8AQEEI0,20493 +pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN-6o8,3551 +pip/_vendor/tenacity/_utils.py,sha256=ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D_4,2179 +pip/_vendor/tenacity/after.py,sha256=S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf__g,1682 +pip/_vendor/tenacity/before.py,sha256=dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc,1562 +pip/_vendor/tenacity/before_sleep.py,sha256=YmpgN9Y7HGlH97U24vvq_YWb5deaK4_DbiD8ZuFmy-E,2372 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=jrzD_mxA5mSTUEdiYB7SHpxltjhPSYZSnSRATb-ggRc,8746 +pip/_vendor/tenacity/stop.py,sha256=YMJs7ZgZfND65PRLqlGB_agpfGXlemx_5Hm4PKnBqpQ,3086 +pip/_vendor/tenacity/tornadoweb.py,sha256=po29_F1Mt8qZpsFjX7EVwAT0ydC_NbVia9gVi7R_wXA,2142 +pip/_vendor/tenacity/wait.py,sha256=3FcBJoCDgym12_dN6xfK8C1gROY0Hn4NSI2u8xv50uE,8024 +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/truststore/__init__.py,sha256=qzTLSH8PvAkY1fr6QQ2vV-KwE_M83wdXugtpJaP_AbM,403 +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=xjuEu_rlH4hcdJTROImEyOEqdw-F8t5vO2H2BToY0Ro,9893 +pip/_vendor/truststore/_macos.py,sha256=BjvAKoAjXhdIPuxpY124HJIFswDb0pq8DjynzJOVwqc,17694 +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=1x_EhROeJ9QK1sMAjfnZC7awYI8UnBJYL-TjACUYI4A,17468 +pip/_vendor/typing_extensions.py,sha256=EWpcpyQnVmc48E9fSyPGs-vXgHcAk9tQABQIxmMsCGk,111130 +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=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=Be6q65SR9laoikg-h_jmc_p8OWtEmwgq_Om_Xtig-2M,40285 +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=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448 +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=mJmZWy_Mb4-dHbmNCKbDqv3fZS9UF_2bVDuiECHyPaI,20943 +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=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +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=4NKk7fQhVsZw0U-0zmm9Q2LgGyaPXacFbnJAaS0Q6EY,493 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL new file mode 100644 index 000000000..98c0d20b7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.42.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt new file mode 100644 index 000000000..26fa36169 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.12 = pip._internal.cli.main:main diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt new file mode 100644 index 000000000..a1b589e38 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 000000000..be0e3edbc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.0" + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 000000000..599132611 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 000000000..49a148a09 --- /dev/null +++ b/implement-cowsay/.venv/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 setup.py +PYTHON_REQUIRES = (3, 7) + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff281af047fc1656311d8c09375c01dc4a1a89d3 GIT binary patch literal 717 zcmX|9J#W-N5Z$$XAKVcTfhH8N(4dnzFN6pPLXl9S01^bGq~RLNXK&6c?A_JwI)|em zrJz8fp-cD&AbNfTG|;*ML`4@AXi_nIB#b=cnbq@~H#`0`HPu02(;q(a1S9mr6-U-M zO!lusvV&5T;v5xtfD3QnVU&6UKW(J}^B88q3}Bq64c1r>(&mfCpjr97_D@IB^XlLM zH@0p+QkF{*=bORoTzF-r4q`nrbyG82YT*?8Hy<+R`{y7)cbs~z`*Vzuhqmw*dVh#s zMLmCWXD#D~z!M9?g=HFgkUNj>6DjhF6f72&tV>Nw!^p5AimOY8$gv=a6h`KZm_&1B zP1xxWuw{V8Y0CeJB`LEp&&_3G7$cdr%G{!K#BEj%!$cNTRVt>yNx3m4GxWyX{LOGe zq&-mI!*x3v>sTqK;VRApGK`K?hNT7SkO`|RCE?WQw)@7@?*1paaU_HsNSeulQM<_s zE=HN8ce%Y+4(Z~PWxBewNFU0y%vpa;%G^+1sGJo*+fU@!#1#!UnAo5>AA($)NpUT_ zI!g_=tgqtaX*>emZiEPwaT`UUs_LMKxzJtc-UK(NAZ(*Q9n_fr-aY+#>D9vLU}hf< zVZxPOt8Us#fiUgXrUM9dH;OixHn8$2s(oX1?Zbo<#&<{`cR2U|9kg#36YUFn8cMfV s(}S?*V~oF|3*Szh+3x;ow(!}P&vt{|)i=k!oV>V)pnjYDcCQK5U(}_;tN;K2 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b254fdb058087af6e768db1f8fdd0682ede384e1 GIT binary patch literal 873 zcmb7C&ubGw6n?Y2X?|B)YN4%ouorVk25Th+#ZXc-hiU|WVJ^!yJ8dT2U+ivMw}Lbv zw82AH1Zz*dD!Kbd=tWxv*&-A?c?73aS09!Wi4Af&c{S1O0l4T0O8Rtb#ppevf)Q zWcRZQE#`s;0uoV$<*NYp1Ez6~hkClpJiGn}Ga4#|xgz|-=g?V&E>?jEEuo8<)3_>j zoL*+rleC1MtfUaI*`WIP-*;I(70xHrM&Kb2Wg>q#{eA#JOqO+p8nT>0fy7Z}Fc3^9 z5FO76BujB?!N3x6t7~c?TBa2wW!X}y%gPdw{fMI+fqrl~oY>Xt@yVz}9=x#lPy&aDz-6>D?>Tb^4pjqABI(1vvZbr61$~$THdxtnLhs)&O5fWMTF2H#1A3SPJtBNoN3H#%{FfOQ@-chJKh`b z?TfF&li$S2pX{*IC~eL+=KY~p<#r6D3;vaTaipDq)Zli$ncprn3-71)^1J!H!fxTi z%)!L;LGs4NTzIqGDEqU%`(3(pBqq1k_rkI&Bw2w{*W%VqacmjBh1<< DDqFz$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03fb11309addfd79ef953be071e4ddc0900a5611 GIT binary patch literal 2236 zcmaJ>O-vg{6n?Y2{>RwC5D00SjgqFgGImK)C8`LiN=QPY0s(S}rE0bDj$y&xb#~VT z6ObrEYARJKhpMEv9I7f&TB)b1$DZ4Z!KjdxBBg2%kUY0JJP%JS9^>&tY#? zIK|fql$+)Nj2;fCPw`Jh_w3#ZE&q$~7*A%y*~fX>V?<@c)0c=7S0Ed}IZy}|L)j2v zu?7p_Vk8?O%s;|D+T{6ob2iGsWl%!PpoBf#Y%|{Kb@z<@a_ZQA&0Q-5aho4E3?2dj zdO(RxcLA7ztDrP__9eDEFm>WzaH2{?Y5pemn0IXiDqJ!?_w~Rm&6O=G(pfoY6)K`N zshVO=FI7Z6FP79&O1z`uKTVWHMa}1_K{ZRH+Kg)GS`pXjaCn@#Pi`R=Va|oOT2|{#gcAV=r*IuVOeYFqG`z%b~@zUA+bBpFH)n>Q^Z$=O``ZJW%Pj8vkyTh2`C zMVhhZXi?QBCiTo^)w)u?mFd5EDKmDlKl6c;obGX5FPIt3OuyRdLniI_UHZg$?B!GMCxyorFyBY9dBq0 zQ@X0*9BAN~EHR=HL1{$;D|Ifd}FkKU`!ev9v)BnY{8_3ydBJ! z3k8-ITPR_+Y`-NN6VyU0`kCw=A{)+o8Xc(4o%ru0q+g!+2JSS^qgaGzk;F=QJ@VRC zqW$;Sq0QLwwb=0oS2i*is_FNBJXwnk-V>h064hYO#=(;hgVna4TCnGywG~U;ix`ZB zc&#A}Hz-LgOi8lClH~RdTsKM5?Xv7#0JTW2Ae&~9VofMcu#dojaHDTSFoTH`_&MBO zhAm(G1?Ts*)_L$Bc+OU?1KY-qEXt}TNpn5@vc_nKwIse$Rjkj+$V#o7?H1kG494qb$wY#)M`Dt5x{o!Ai4MLCCkni>_C0|DJkvv)NTjSI03ElI{9 zRGnPdAxxJnxo@v(CN(VMDBBxmaX0RAob6_B;Usc5*z5l9GtS^YR_|sN#STvhdCmz$ zsK1EgC!~8P2tr_!Ppt8YmG@V!SNZn)nRPz-B;2|c9NY|!tOZA&G_~L7 zH#@r4I=UXVJUmwINY$FUAKm@oLM?Nx&U2w~ofjhh9T0r}dJB-~Q+Vqs9R4-Y`Q_OM z=W2&jwM2In;(z*sr1d$V*f|J9_&EAebQ4 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23af61d59484636eaa2456331568292550cdf172 GIT binary patch literal 819 zcmZuvJ8u**5Vm*sE}NG`9!)5~2%3|~T0Eo>gwiAm6cCD};hJM_cXDUgU0b#<(MCZ^ zK}VC0(9okaRQw2Nh=hc+4MK>5E-28XV!S!17}@jE`13dRe3+aZBPi4F-V5I&}7r)v;#^!0>P6S>F?n)dpHcSdL#|N0}9PK%(hvK7k z`{V*DWJ-}4GJQrJvt7DN4u{q2q~-6t-slU%a48K2^cJLSQ)(u&lqIq-G6QB3EtECP z_G8QPxMaqPEMr|@8a6>gk%*!<#!!Tf#%gC3A>uR@XRKKYHWrz=$_xPOTdT}%&U?c4 z2i+)ti&zuTQ3e_I@JwY0aU&m+mS6(cA4CYQSiM_71MysYR6;jmhA9aALn)y%D+6`qj zQQv|?(Zds!Z>+9-e1`h6H$+c5h;dY>;hns0a7oW%=!U>7pgQ&`rC-RU@8rsHNa*xl l@R>{d*@NWO+|jwq#{}cI{x4^0;6F$T+S&jB literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94e1498790ec141f56211eab47e93ae256b01eee GIT binary patch literal 14326 zcmbVzTW}j!c3?NqcsCv-L4q$)Exts^1gN)VJuOQ#<&lO`EZP-g#>PPCCIt#F-)@Q` z22?3oZ-q*fNSv7rsf-g*m8qCoJ7vx$l_(#ZNo{R5*=#;QgAVDoT%+tdTge|R%Il23 za?WjZ10k752VCiIV%Kw|yBvJ5lF zh)jeLS<#eaBP@+g5fhEg5i^as2uEW}#6n|h#0s%FX-nB7b{28Dq$A~wI4NvNx>9_E zPq`!Rlqcdzc_ZGGFXBtpMe0)Zk@{3aq=DA6CjF_#NF#-9$);2w5}>d>*_>*Lv{2ZQ zY)!RA+9~WzZcBAUIwEFWWQJz7Jq%Ps0-fkh7m+Gy_J9 zfpLK5wL)H-bl`n+xt)VkreJ&S$V(H6q$muguO>()os!auFd<8#Fq$DkLe3;(N+OdM z#0io}j|sAvkQLz)VnEXQFWAy>kX2phi6{|CJe`OukaUlbSX{aki(eU;%1S{yWV~@< zFna3D;Hk5(3=gUHR}_iFE+r+EI|mJ__VZcnC6-jp7bQitj7(&)43SmKYiTHgMlF+< zp$qKnRq5@C1d(v8khHxn5m~EZk48rmNhunIY(A5f(os2^NT($dG^?&LNr`4*I?2SP za$E<(;Idy#p-4nJUmCejAANIL{FA_~ISxq-`>lr*5^q!cXG z<;=iPLOC;WY2efwFArQieQMyF8F3;hg+?-&q&$#F0l|@;p?GFej!g}Oufj|RfI0)& zDdln|y)V3H?|__8q)=8HzdVplWCx;&G^`{n+yLbXBu_XyrCNc2;zX8o!cey3n2>`B0bF;Ytj-o=QrG^d6ukyPh}21i9gtRR*}lnx%6K zI!G^+sumgeBuo4V+vGS&WEEMpT}q^*z+#lzsx4dQYMajMc34F$mthldvXmUv+OldK zFC%FLK_EM@QP@C| zR3WK0B7t(cD!~?s;pkOsLZ-XmAP`A4Wn|SpDvMG)BcjT%%9#lQ5*pXK%<4WA=Qv@c z2lh@*LSaAr%V#0D!93*|Pvh-x-~9Hw{YCfARrkQMd!Xpvv+6#y>^^kk<;SkN+sAGm zyLIBJmGL#)Irv-OE!bN>ce!sLxq0Ny)q=2ZIk2zj+F#)IQ$F0lf+$MN@V~wWK{X31 z1`CR;E*eOqf_3RPZm^@C11wMmrEP0x_&BjfanYigq*!k0} zqFZuIE#Wn8Fr(fY16oLDzVDfCb#c(rH0YzaiKWmaD5c#0L57s4WKe}e;Pp{Tbx#QA=B8);sv?m0xMZSY8R~B=9!2z1m^mf&N1Y9m_tV_*;>M?`0W4j!aV~RpR+`?qYDWDl?z@Q$3;}}qJZpXIc zF&WJcUL#W!F=Sd?R^*ysZjRzKtLo?^B4?nvqwp_ZfB?9*p0RsxDTT(~72D27fwtAa zbIXC}ihDGU zv;*Xzd8pIvq66wXMW^JFcr90QOCI>=C0?_MF&A=ZY1vBVL>FLrMP77^9s|=W@nB{1 z)K+kcbx^}6)q$nVZ>rZI)f@GAu(COQk3<^4wrEm))HWWh7=gKyrzqFRLM$x`saP5; zIfToWGVn;1Y(p8F(4?X!`~*?T%4G}1&^jI`66L?26_wTg6Q?FNvVaDB+ln&|hkhd#n za?@|TPlqb;FUDpW$=GGAoX7I=6NtPf_1Ub!gu4o``Jd;Snxxf_Ot#W8~ zt9CrF(&GY3Btf`A_0QLiqhnH9x|Su!bN!ozqH#nBA4T&lDIX6TwO@xuWHibC^`Du4 zy}>+T%stM>K7Yx~cPEpt^O$=DPbgm!a2)R^%JS;?e8N#p60oy=J#l+n;3F#PON8caY? z*RgvrA19i$)gPRDGX#{n+)wQj2&c-nNp-C*;bk~JDgA;-GGO>pdnQB`HJG|!d4SkQ zQ?+anRAXjHVk`m2W7OPHtRoyl{4j#wI{fCA@mxt~CeyT{j5Q^tFSw-+I%a57V9>$&Jx75bb;84RcQN$Pyf_;eHFI4q)tP0-RVYv^)(nnRZn~XNEux{1RezrD; zBdVT*K@YIX`nC`(Sc6Ji+uVW%)caP=K~l<9cfSR-CK_0kwWkO6p@ODmHIcTouyvvJ zNy9j|4qyv@mv9kIGHJ12fK?RWNF=~AQV&x?s=;+#V1>wXHZw{~WJC^w!3%&1!?}u0TJ)3g}?hky- z?=4vX<*A2h-dzmrnc+WgX}cG=8@Shgw|(LAd#U@WrPqrsM`^F#y4#aCCvRWBd3|2I zm%f``@rEApp4(?`p1CtJ_txxND}47OcO7QIIpp@ao9E{J_d4!&6oN;J{LzQ;za4sN zHhG*Sro-WR?Dno{sE>TjbKY5R$rNbxubW%y>c85{G_=h2E+ik0{PeBAc>56(F?O1(YRPb27>zTvP6kyNHT?R<|4VpkDK;xtl$-9xV47B z-0|7t3%$z?!5RA}t_BnfXK$XJx8L*J_57H;m%E=UHt${G_dRZEolDQA3ynQ9&d=@6 z+s>QLReQ^_z2)=f)_cyo&U@aw-bJq199rw%`KUvU6t8xRA)V;{{ZjzY@*anH^EYnn zyGqIXWf0D&M;PYYz|Yg%v?Xu3v7_PzuC)ut4HsLbtvpxR?_h@q^Oj%SMxH|-&aGo; zuWPotg}ez%?vyxScUpD-ZOp_I&88 z0q5_s9IA44n)B=(mULDeqv#LUB+9Jj*Y_1FZH#im_% z%%DsCfw{x8hYJnCrLI5U^^;wzdk2^I4*u0-;litbm0H<5vgU7J3$$w9_r+5mo_TPl z7&vf;`y|k|=5L!jJ9~D)w&L%DT8|pGfmNKmoBUvCrD6ZtbKwsUJvg+uYw4vW<D54JIS^VDKTJMI{w-Gsggy>@ zbIref?)>ceLeIg6wnF!dANx<1w&P4nos6$-eyHH>D%iU;!E7C+?-2+J0+p|(wCdB& zTG5z{s|T!0z=O*eDi?*b;lTbKNIXmB=FNDPLxoz)XeOp_Fux9OhVqumb$s3=vs0+R z4RH<)l)s9zTUQitv2V&-@*KFt%k|O73!1@k$I>B#`|AzBCc7X|8{wjxURZ8mD|!d0 zYu6uQ2s5Oy!u?Sb3$ zhL*Xb-#c2cZ!dVauLas>the}2ylrcI{hFO$wRbMtJ0J1wMZN=b_+||28cQz5(e)(* z29&n4^x9Ov=cMD`uyp8!r`FQv5Q6@Nr1sTXB-FB~yFdq+Yk49?%a|Rsrg4W*%QDiJ z>la@*UI9iVb-*epb~b(BPcB;o;K8+lt_C?dZLPYcU~6g3yy1lgy=keX9Yi~5AwyGE zIu#w@aW0>3(9RNFwQd&_e1Sv1yzLq*n_+DHWkbj7Bi^8W-URK#*3x^^_Pm|!f5s@? zdAsPrtu$7p$so^*CqW>10LP@CMddnu%y9l=$BjFX@+2WD_vL&> zU-fzC=DwgEp@OeN<#t@pXs03Xs?koTj$MhL$uIs5GwH5i=+HAU8>=vD^P+u2jaoKG z)hdZiigBN#?}G$8%`503qMsPZb6`msIB-YeuH4AvEn>4)o_FW@4_e;mG_3#7O-Adm zYAZ{kTzx2%7z2N;6e{OPV$Kl?r86OT14wfAP)HO0xfYr^3FnKD_U~%lu12&3l!jC``ZXK+n(fb752rI}=`ds_2yUo~55gb4@XCeg z#gUW4r%#?cKMao#2VWh@xn8NfQpvS$e8y6JT?^g-KAuUz^^OQn+2lC9w$dIFs%|<| z{T(3O5u3sBsX8l9YqTT0HJKS311qTx%&fuDQSj9!u1e>?DVbDlSOjWRwVWP&>9rw( zkI_^c)T2)ZJeun;iq;j$B*}MZDUskcS6uTK;A0j7^9M5x=@kWf!2pm%;Qs^?!J9*k zKv5)+tTw_;Rc0~@A$m=9lTmf!%7XhqqZdIh5y2w}K?xZ2karQTs6gaUssdFmM#f~a z1ZmZ#4OS+9f+?3q8agWUyQZ(G91ejjBJO(-$Y_ij#vKJT|L5;Pey(?m!mO#I{}CJd zXW$&L>il4$p~I4Dzs5CQSmOh0d=qFw^h~VrJ4p1*`u{k_5!;hM_&5y2j>|5^GxAa!A>GaG{x!z-c^ZfDEwmr*j zdzQMEAW&e>iFa*!co_Y86g`tnSUs$p)=8D@67yU;{7IR(wmu8FGQ?fv_rFy2R zeYLT7xv_V~`H2h0syR>m^SQ+xcc%-@p%p&7wmrDGW3hAo`V)qAzsTNkt@-?Ou31-M z+wP_33hl=~_MP~`j3r=yy6dR(g{=Cs~+$D+T`9R8ReD48K2 za2nfI{e8>+KCHLbs8?tSF77Wh@BWzIgBAC}%cfP=&W~I>^>%D4Kv>M&{*h~YIkV6l zT;X?t9dg@s({<1g42+ z>G?-|8%%C(`wI`dA2t=Xy|~uAeXZlUFC9RyufY2Q{#ppWz~F0{hZX-DXTwmh`EPnH zLj$%4ChZYL&`D{2?0$gV`dpbLW?7<@wyE&w3Afj{42 zKH<);bNelx^(5P1ah7&DExRArx5Amjz1$XFt{*5_AP3e3@AkAYd`I|t?)=Hv6tvnQ6lT?-c%8}9#V!5dn3 zgx4)lrF0rQe(c*`vfu!$Okn%GJew-nFlA@jI!X?Nc*a{_awFuy-nk>c=gd`NKo*3q!4e(4J@ ziR#KPiRymImqc}<6JGwfL>IpLfmcLsG@9U*kX!V^KfXC~iaw~}fww;Os((0hKD${0 z<#wNhORf;y`r_3uC@478Q%OwU$>W{bW{euodvJc##72&r(;a-2e;%;(>?{Mfl;0&% z&dqJBH5lWb9e%jLtm7F6p5oehO4$uJ7*O)84$1$3vg+<|kK{U@(OubzyaW0pe+?D2 zMcn9hG)@yxPQPbN6;5B&O|TJLMw*}^&^FNxNIi4%nsc%n1|#Ev6Anx~TN`8uYxPs&c2LB6#iZI1-ZI+V%9rG|~!%^G<0Hx&Nb&j>T*R2qg ztX7MAlaPd*Y9WcqDj|tUO-KT??xStkK{}$)gSbjuVM-Hv2x;O9Arx0ny#Q(ajl&B* zug&_8alG`s%prsZF?fK%CHvLM@P3W@3% zs%=m;5!7&M1K6YCDE#n3%#bh`dkQ$(s9mOZR+nfmKcV4pwVOus^KGkLaf1)f40VVP zdp(T3q7@uAe#a4xClleatt(S|Pz`LXpxgbj_L{W;8}egAO&jZhzKp>gS4{Il;wDf# zHr4>QV^R)R-jP$wQ*EzRNq>}7^(H{0iT?YOFts}2T@8I-48H=xU)N~fEC-m@=cqNV z@iiX2G;QCBP!9$tF*t((RpXRP1xytlAI-kcxECKgT4w^Qj@D&I>-?djqx*)nWM$djnRtnT=#Cc6OACXGUH8AS zWLb(o+_!Z3C*DH$iRF$L*Rjr5b}M@VOegk4sou>VnD1I=ASwxU?6HNeh4}rxbq2t% b`p%eHu&^+E`nt89?Jl%E_ay@{o%Fu}>VLXi literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbd3af25c46a843e07ce9adce8d629a47235db18 GIT binary patch literal 12697 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 I6}GGY0R>o%q5uE@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29cae28f1ae1c4b47ee3cf9e573c9329cedaa993 GIT binary patch literal 17698 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

Xb! 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 V(0_CK>zONu1jp~v-~Kma`3u;kzi9vf literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed850d6517500e9b03b477657100975d7819dbf6 GIT binary patch literal 5003 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 D=}Qd$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..acc573675347007eed75b7baccab05dcf3f8ccbb GIT binary patch literal 10584 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 F{{W9Ppb-E7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0b326a81c383731fe96d30cd21945f194cb37f8 GIT binary patch literal 13681 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 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 = 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", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 000000000..f45ac23e9 --- /dev/null +++ b/implement-cowsay/.venv/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 re-use 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 000000000..e589bb917 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03a42f956f2a0cc7f8f9bd33d8eee60a0607dc77 GIT binary patch literal 310 zcmXv~J5B>J6kLZ0qDW~tfjg99_X%hbO%S1hCN!b3y!K1h!auFOK^uvVJ8%Xrz#-rU zv|Ip@E*0J=O!H>mlirNxb2J)e3CHgr>LtzZPW*%H$!3tqYbLXYtR>^#dOB-L&&4BO zA{EX?uB@_4%C)9$LA~-PA?=OfR#L4jQe`973oek>sCh)0&Ju@rWAb&xm~?`%w`|k7 zZJ(iX1|hD|q@R_8sfssE36uFX%&sPI>tv%bzjsatP{wOCXk#wiQ{XKWE3_-nss!K0 z%GvYc^bCTEnD6rjNb!K}0$Hv>Xay`u6&WjhyB%DZoxx>&n9_6wgsz{T1477ekC1-d GPx228EnX7< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f24d70c91512b23723d68b6e114e173d56d06307 GIT binary patch literal 8497 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 NBmW}u2)Bsp{V!S>quc-h literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e5efa3754768cc23730e6751922ec2cd3cc05b3 GIT binary patch literal 10487 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 D5g1(u literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45fb73ccb6e141b0c0da06f3ec590f8390c10364 GIT binary patch literal 30406 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 Hv-iIN5pj)w literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..980189764384b3046486af276405db79751a241d GIT binary patch literal 1813 zcmZ`(O>7%g5Pom}yiVxT~Z}lDm91;+)N{ss&HW5uI(mKc+$?BnKy5C z=9`)Kb28b1V0C}@lO^#8{mz8e5}M53+rVrf6PegX4lZDaD{z>}oXtBzL2$%^=tu<# zBMuSC*>?=r zxJIbT2PelP&6P+K#HWZ$sNt7r5X)D}9|g%2NsP$s1Z?Cv0df%v@hV!z zg^n4d%0X(p7WRL zN9?&EuIokH@H}1j*q_sDPu8{hl0!6qg*cXbZN8*US^nz_SGDokNo{6gT)R>-7i=<; zFO_Uhvz)R`9OC*T#nO^zRJ6<@aThh)x~i2c{(Q-OA#>?@&9i(mQigIvi9M}sl{JXb zC)71;t!P_XF+#HyaHd?L3IwzA>@hHBT8YYF;iZ8*UPBM$nF?WE6Fg)RB) zgR>Vtf3GUsm;3g>2B~~5mpfD%3A6+7?cE0Q7Q)actLQrLM;GPZL^p6)oc2+i*|tm7 zR-;kyW1>&_4IEAj@T~~|nS%nhO)K#8OUT1ZFjup13!{&^mibwb=ze%l1=}^WqolT#!F$SJO&+W%gS$-ZuPgoAidI*&+QqS7lx$7T(q6EJ-zH$o zsVCU5yM{wx*gJIH3Fi^`gsy+EVA#<~I6#y=7nC(RJ zO2JXsNn>Fr(G$#+5%v^$6F?rXqrW*`R2v;g>S=JYIDE^h4ZT=@?xjZvggw5cZuIct zWqjMcGhNS&H4qbioZb)jFq_bAPK^g0%~HdY5k6F5%z@-r%JBL`5r+w|5Te*wKwqNB z3v2i%@+%PruhMfMvMPEPfHZiF@k4a+AsVft(ci>GHGeC=C7xU3_N5+t89zddhJOA7 DB2u5E literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e41d6a23300373ed6c59a7d0b5bd58f5f746840f GIT binary patch literal 2330 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6c6e18095da0fd0a75eb6eb155cabfed71d782f GIT binary patch literal 18884 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 NY2N%LM-jG0{}1MDT1)@{ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8fa7146ca7e86f7b1b1e79d7923e66d858dc3e3 GIT binary patch literal 7872 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 hw8$^+y6r9#Xxu-T7!Xt6-%{{W&5+h70y literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..456552b0d14c2ed80254d4c26f1788245823938c GIT binary patch literal 407 zcmXw#zfQtX6vl5U|HKeMF_6e?!T>kwYD};#LWI_|6l0g0LT}*4{tLZe>V!|>Gx!2N zgf6%>U7grW*qCeuzu|YzNxqZsl3LP8X(>Nl%dBGSDqdJ6Vz4oiG0G9dS~|=qD#r&)6dNc;dhtLff+;KD0Zo-jCphtB&^U%mKu-9 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 + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 000000000..db9d5cc66 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,236 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +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, + UninstallationError, +) +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 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 + + 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 + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + 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, + UninstallationError, + 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 + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + rich_traceback.install(show_locals=True) + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 000000000..d6432560e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1074 @@ +""" +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"], + default="on", + help="Specify whether the progress bar should be used [on, off] (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=True, + 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. By default, a warning message is shown.", +) + + +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 = [ + "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", + "truststore", + ] + + 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", + ], + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 000000000..139995ac3 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 000000000..7e061f5b3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,79 @@ +"""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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 000000000..5ade356b9 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 000000000..ae554b24c --- /dev/null +++ b/implement-cowsay/.venv/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, 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: 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: 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) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 000000000..0ad14031c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,68 @@ +import functools +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.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: 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=30) + 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 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) + else: + return iter # no-op, when passed an iterator diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 000000000..6f2f79c6b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,505 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import TYPE_CHECKING, Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +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.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +if TYPE_CHECKING: + from ssl import SSLContext + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + raise CommandError("The truststore feature is only available for Python 3.10+") + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError as e: + raise CommandError(f"The truststore feature is unavailable: {e}") + + return truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + + +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, + fallback_to_certifi: bool = False, + ) -> PipSession: + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "truststore" in options.features_enabled: + try: + ssl_context = _create_truststore_ssl_context() + except Exception: + if not fallback_to_certifi: + raise + ssl_context = None + 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, + } + + # 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 + + +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 + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + # This is set to ensure the function does not fail when truststore is + # specified in use-feature but cannot be loaded. This usually raises a + # CommandError and shows a nice user-facing error, but this function is not + # called in that try-except block. + fallback_to_certifi=True, + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +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. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 000000000..cf2b976f3 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 000000000..5e29502cd --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 000000000..858a41014 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b3e5943336796485a2df387cd8c8f21ebc81c6e GIT binary patch literal 4034 zcmaJ^&2JmW6`x&_%atgS`m|-sve&jGo3ce({)k)Iu`5fFEjyN+C~+Dl0kPr?#kH2Z z%hG+kwb4pl~YcAGs~4%so90N zJM;U!`OTX*Z$9+5c)SzA)BESYYU4?S{>3W(6KxgtWD%jK=tG227GVL4x{wv%8`8y6 zC>s(O7S_Y1NH$WEvQjCUjdCoa%cYKNhk!&xLRiAlXQ0ELY^R1Wh>}j+fje>RS;)hG zE8s4U#&H5C186r#dvGuA3!wcR9l(e1;Q%_w(IfaM9txnxI691v;}Zc?;pj?bb=y{G#;55zz&@7G2sW1R0CU`|7LT#kP_TZLoE?(SIRm`h1}4zQFX(!THbc$#j>rLhN^>6bjEAv z##)7WqhQvQl8Gxi$(2>RcwWits%7Pv+IhvQKsU7NMm58-q3_yp=sca%44Y6;O#5!6 zTfCc?_Y7O|wVqa8DSKnF(yolnbwf8*TszT5%r|h8vn^9!uGa?wdL0#rjOQH-&6~X2 zw{W{Z^o@PVzI`O1DHSLoHBuXHBk0j?e2$y>Qj?1nyIirAmOBLRD*~iY@_9w0q(ltc zQVJ$5sdkzNwoLN&{|hYRd0<(=@9P8vmem!zNR)EbE}Diyj5Up#2J0d1hIP%dYeQ`Y zz(_atF1&rgK~{N#>!4&6&GoiQjC5m5@b;C)Sp}55F+%Do>azL9u%z8czDV+`wPS7E zVtWfBK!Hn0;NJQ+6RiU5GeNX)kggkVQ#{1!Tg4ypRttnA|c>1GX`Z1LiD(;GH2bc zd1mA*U-Fd?O!Atl=_(6*ftn@Xb(kh-$ig4ty|(R#vu@W%%r(ECky{l_$DX^eW|(Z% ztk45X3G%b3TE({c$w)VL2j0HwX(+%lC6F#wkywgZ*msuAnYPBf?aYIbPFO0`PPR=L z-^A@ zM2TIYMqXeiQtOf68-w58V|YD9b_+(Rj@WtkDcndl#EsBK*lyiT5PB5eH`*`M#b+(m zjfm~vmry-Y5BYbU4M{|G35#`94`bnXVqN%y@M~csT8}QFRH!!BslYQsi3-!M8s6Sv zPA$jFnnV{cz{FfgAOsFM|;q4|{(2MW$$$ zNXD*_5=?f{%-q)OJC)_k%*S(?rP-OxeSWr2d|;Zol>yguegaM8&2>wyX3{XgwG6nO z@y?J->B);3OS8#@e_&@I`7`?`e#ZA9lLJh%bGdZ6>L&6$vbh#XuYrRl_*r-1)j;3N z=!WYuhrWrA?8Ha5KiQ2>Hs-$VAKIGRzPsC>Y25#NV(3L; zdb|JY^_|4@U&i3oxcxHL+gR8GHFO}qA^@<=*<+dY)VnpKlCU8NkYSG)`=jSstG)rZ z<+@NuHp@`{JnHaEufM+aewK-Kkw)qw7FhN!p=u}SSu7D^z;T;xe?u5C)CTP@G7ZVsgRd2oK1MG{pee4 z&@lUSiZ$(L@|ISD?U(v#557f!v5C4V!uIrXdSjoDWNW83zhKKo|k z=FY^;-HGYlfm@A*SJ43{IlQIrB$XGk@-o>+*|jy*?M8DsZ02)0dJ*bwEN|*M3=g(O zi!w)C$*z_m`6yeultrDgu)06KEb3Z%S%nz*X~I@AWy$P~I%L_@P3Cf{VVJOFm^^gJ za*2!XQ`MS4EZcvtGY=5xcgLpSXf*|}y6ov4fjD((lpi}=uV>@WNiF=J$v-hEp5}j~-^9x5l>&SzSJhT@LcT3F>Bbr?(l6(?#HapYq_ z^+?S)rw*Y=_md$<9(UxUjyw!huhcxuDFsF1o2!m|#*q&@@-?86Qu8FI#!)2ky04Vi z*EvpIMv>U&Jx3mO7 z?*qv_Njvg!N4@|gc(UY?pZcWd=4p@o%p(g2Wiy`aibs|Yl5czD=N?%*NTxmV3y*|< zpMry&01^iIj>x@T0J7)FIY)*+2<%lL`=sWgNB$hhz&P1ZV4NR&eOrA^1fQ=%{PR4z$7;>Nn9#pvH4%KaA3qQMe&c&q HAjN*{<3kK>kULcn2iyJVA5(eJh4*LA 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba07decb429e503173c425dab35fa456e99ed4e2 GIT binary patch literal 13244 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 z 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 JK*7%He*naELIMB) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2009aeb85bba3a350ec604561e38fdcb10f69cc2 GIT binary patch literal 7621 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 Tp!ZVqqB!*VjsFV#>)QB#6igTx literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..989c431a8b70ff0e311e69964b6a847f8da3d330 GIT binary patch literal 3015 zcmai0T}&L;6~6PkGy4Yw?8V@paWQhXD!Ywa+qD%VSs2?%Tr2@i<*lO8Fmu_R&CJf` z-dPjY(DL91kQzCCf`>e$Ql(%~sd`Kjm5>;i6) zdSTB!=iGDu&iT%{^QTNEiJ-mo>p!|5sR;dz3!MgX)b@S@-70dBBY3D3_d-dCWU(Yd zFM5(Mmt=vDNuJ`XB{kw@FX3w?E#ehV_michpDLvyS@qI>rj+rsrEDZ8ye_}H)b00_ zdITgQEL1PF_dn9%-VGrZOMN1`gBP68(!4Qp6G1-6cilW-3mMpE-iKE+aZEm~=xxcOevfCdum zhYic9z?c!t0_O#`Y7`2EX{Hh!Hb`y4ZbvY3Oa`a~zrB9~Sw#z|8mV6-Rc`TL%@G{YkwUqncI2?* zW8^4Ry`w+u9krS|lsequ3LEWnb^2c>HWIOwz|WQL%sA|;U59*!bF|~{up!140-8s8 zeWEFjSk2VPh~j0pb)#^k9fb0Rnd22x^$e`O#ui{FaednCxI0 zvV>g;TpLrSS~iaWOE`GeYIq@&E7+?OeulipG~0Jfh!JH;%ZWI!CER611H#nVfcO?n zss?V2sdbA`Ojs`j8IGxhIbn? z#jyvsi&MA8ir){MhKEO{gTSLj*ROjKz((v~j#~4@!b4npSoGYPVtqcW1hwxJUb$4H zkWeFS7}H|itrtzV7GhGfyrLcFEiH1~7V7gXb$A`x%pFOT!jXXiI4U)PETJ7O{Uo!J z+189r&DcqI@1#%d^qk)9JHOLAz-iCb?Vi!ip3$A|zE%Ba`UfLh-7oJ+;!D|97t+t~ zqokf}okV)(NopmvtzF#IF0Kpf-~H8%r#C*+uI<4Vh$Y&&z+{V*seKg5yz)la|2;5( zeUTQA$Ify1Kg4bI0QY>uxOFfrppZv2YEx)Is7BSkqlx=PX+gY&-U7EQ$|29ks5!!d zydZ@K2V;T8d1K{`?ex%QdgvEpAHDwb*Z-U@?)LUC-}|C( zaJz4Kvu}7=-|6fB3Q2l)`POc_f2Vus!|C;FpZLGM^@se{mFa&=VkX;?V0d3c-MQr~ zF<|w)NV3pP*3gj{RQdAVJl|`BS()iB6*-z!% zo}5;$w@xRO+}f2Ef^NNU-F|v1Vn3#UY9$x187;>h7srNQ%x;%4U=iYBivZjLW)+18 zg?#}&6*^$Kj26Z40QS{3bolg6TM#;MU6jIh$wiP39W8*fmxFUbI04>#0r zn97v+JL5&XlZ&uWL@onE`2)Iy{;p@1o%e5T=@3>)Ik)!1-L8{Q9<4lDySCLeye#jY zFh0y}oydQM1pVCdcsm`|l+V&s literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b703f846a4c26f9ee07c2b1d6056a7a1d2cb1d2 GIT binary patch literal 1705 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 F{|^@GPlx~j literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06a2408bd1b3d9c3a81287a60768bdc0565b7b5c GIT binary patch literal 4007 zcmb7HO>7&-6`o!0E|-5I_5WvEOT~^w!y;|jZjvH)YD-pP*Hv1`X;B8jcFkQ;ly|wz z?9zq=$*=(*l%jxbAb?!JKvSSV<;p7*8;RmYkItEt(-KoDDNtG9y+r8)bCRj9G2jHb%>4+)88dJOm-Pvw7j+i}GZ?>1wQM1qL&-QbOM+TZZ?K|E48iQ+GW0XC>qj!-W zyNmQTBe53nxCiICRQ%s`FqPtn^i$0&8%`=f0_ThKM3^Y#Tq0a4I4%e~bz?>=o33gU zZxpayw2UHUhfBCnbk#Y>F2X3Hsy7Vm6zrm^Qen>0?UD;a2S&kh+p@HxPRZ#H#>X#C zPp5d2xS%=41gwDz*UD6t#Pi19RU(e7n}us?>3W`8ij*{WR&{N)jLlqQD~(?A2HRJG zSbh1!$uUwF(YKO z&G1w@Bj^#3#OK9SjI>=UIwd3Ldb?T3h81WYQ*mbvC1)31I32~FQ8eYp^X{x&R9a3= zfiqA_*w)KA0~D}Pvazcaipu5b_otK@8(W&2W=5|r^suj@90C2j@}YN_9}x)~ZW$M+ za^C&2eFveZH@iIo+!eHl<`{c-H%B%0G@a9VJ)jFu#5JKI;=aplI7>EPeiB;q5c6H; zyFSX$oPU2U{;hemAIZ$J+@j!-bCGZJ^zi;?u*NrZIW&(_k*S5?=%{JuG?RoK*T#nG z;<7QhFnwu;-ioF`yt`%1ge!#W)m&v(bCkSkU(-xQ%jFEmIj-ooQnX#gggEv@=KN@( z=(w6`8gScM?z)yYoHSrd(sC@!gC3xWFl(5l1!;7&>=>8`v|l*>e$kv)?6O-byF0VN z8{Z)KMfFCVf@`Ex0ugir5Yz+P!o9TXqaEF4N+L3#P=&~GNLbSu1t`Nb>5&k1Sfywp zQc1&f{Z3fKz%HFYVVuWyxdf0C9K)P(XtXKc+{w(^mXUE6469Jg&)S)H3+{X6Ynkz% zPiCek#xp;H&^C?HtF~=AnSxa^4Vo-QbM{R~o6n?gz(HmJ&6yH|#;Nqlu?*eEsDDbC zQlXSlA*~p=sF|5uBW-}G2Jq6Qc@k;v#90`)vaPo2d!`;iq2wzhhr;y^6pFQ~b=BH?8=AHDcRW1_^xAgm{cfO|JX1-Y z*+{{A&U)uaG3cjTW{I9wN&|VT;8qBQuX+RG=5|%`l zW@XkE#V0%SIOGoa{ArlaF&j5gN}K}Rg&D+E8-PVZ6g&-5aIP0hggXf!3VO8*>Pw;I z7cvssK^=*-WO0fKU30ZmTLVfxxmhE3UEKkc2O!)A9ua{->;MEghPd`Xtm-XQ&mki7 z57V8IfMd9ro;9WyMq*5r7CaqFGNySR(^$duic%6*D1DfAN1!7jHSBmhE>rvD{E~+&V@Uj?oL^1#y2gs1x^yczlIaXE1D$3Y~ za(a3Ee)L)NU|m9~(dx)#Wn^+adZZQ~S&yIo*Wl~xM}M#}c>YD-@MjbC0H5r6DT+rr z?g#E)sU(t6V!HcRrXEZ!hiZ}dy>q`jR~s4ubCF8)z>7${8X0*O8L17u_M2P3zU8rN z@s8y%ehu7B@fcDqyy_D~R@I_r8LCRcs%o*)40KdgKZZArCkd*mZs&mAS;!aZ3y9t# z+&v`0;te8}9eBLpVK9g(*f7l{kfU5o0#K##Ta*{09ev4RiYIooj}h~QpU0hzkP9A>JYzQABl^-55HGO@LBCz%{}gC)KE37U334^I>#L(OfxZ>ax7a_39HZg|Rk zW;;3vX+KT3tlK!fL*JU4hFam49Z-V@9!vM6XSb3MvBm|kYBR7~1OBQ^Ck+ch5n@G! z^zEkrkaif?8>o`d%tyq^Q{3BE*%B0-801#v~nvLI_mL);5+pcxE&?|>vm z16#6{73jz-Fy38~Wp4x}-V#;fmbux=hFe>eC{@YUJ}OxZ0qu;hpqN|XCh?CXkVwal zHmT%0eP07`DB83})V+QCak~5T>C>mrIob4-kJ;JVG3LPAns6pvW3Hro%x$4^wnSOdGv-Np z$Gq&@p7168V}2HPB+8Q&V-+myOazj_u^QXzvD#$aSRIQi zON5g3WA({~u?F_-Ni-&##+s7NW6kW_n`lY4j*1ngNgp+z}P@?aBPr$S0*CKp|K$ru1Y+T+%mR> zg{u==liS9&v2aaddveFvj^xg9 zD2@nCqE|dpk7S|Q2(=)-)%fB?kD6n`CxqW{j2+#SlNU!OoI=|h_OT}n*b$)}u2#tCfvdRAU`!{=^gqhbz-#Fs`yVncjCme zBPUNrpBOoQLUDd2mY5Y~B-oF~<+S2{W+oj^O~(?w7R56o#i!HJDLFMwU(cTr#l)f5 z_!*JD#*;#dWtH(&nT)+6M$<8AQcOo@=F(?S!lqO{D}H@8E{RETI(;aWOva`KrRrQv znvTXNqSEYiG$u!-R4T3b&c)MbqT>lMHa$CorZ`5PefF7W71zn<4jn>E5#!U!k4REV zQi8{(<#a5Oh*48n6t#%zmeIN-wXcG{#ObqfDK$;?QzMH@JuA+nB#I4E#?!O$gb+tU5MpM(#bMa{*bxy{ppms5unoZBl5~lp8#N^CjjOTbdCC#CaA&lX4 ze0nlEJ1vM(6u3^$#u7lfQf-E#)2ZlWB6S)Rg@I*=R(SbLY8D7r(LRxqiV(}lWL%wc z>eH=#+*v^25+`!R8^ISX;E7i7!%D#cDtCxZ!6~`~m*^JD*xa#+9?UKG8}<)00ApUE zOe_;TqEGOOe!(W#F++SPTQ2xfszNIj5Q7w&unXl#s}w54pb$Vg%I_3{h^v~j_f{$8 z8a-*G89N5{;o{dC)v5ABm_i?}aodZ2+cr=wSf8I4GiBXUAn@3@|$T`TN(b z7D#LuwwYM^%oml}r;Qek{E(4ZaZ2DM()8%KwtO*ar%6K#*PV4QO`0q>#iBPprnIH4 zI5zFjzowje$b9Ql=>x4U%fms|r?d%}`;s6tajOU{f?pD3-$tnP^(8^p1;L^UejUhy zMX(aH5**i@A84cbtBjN265ImVBm_$DHQxss6 zAJ|pkzf$XiC|#MZ)LZzFP^yG#hJhMj;9+oBE7Y;_p@%D9gzIX(C+7RtqK|E$Dp6vFQ@Jg&vgeeYhSJ;kMSqsUG@ua9ad9 zq{B1cUlQa76QUmak{~zf@XYs@1i8h8sE58J$h;2Ee1A!h+f0ah=u3j!p~ExZzYb)f z4|Abk7!U>@lHW%lLiY|bOM)CRA?l$o3GyR4Jo9}oGY}HYI^Zg7|vSsa!fuc0rx)TO3LCJU=>%Sg-glm!Y*OA zum^J5-eM_Zj_chwnkgF`6r{O9Y|#~uj14=~Gt#W6xDZLYmm`_C4yUHO(|l~4HtmTy zeFMhFrlG&Ves6%Enw8Vo&p-!+U0Vzf+O%V@7U2(Jdxt&StSkyB$B(Cyr{mL1fxwe0 zhaVh_Pfnvw?8Mmi5!tZI>y|`0l{hPQ^Vs+nZ*=8IuU&DXC8VIR3($O^o#I4nHj!5B zXT-!z#yXhJxCaMS4U^*0G)>s&DmFYae{j#18;wr!`;fLj!aqL8YtT?}Tt*WU34S`2 zMiXWdG3|fj)x+JpToYMN3YWONJjWmb2HHF(C~g^D8hD|Ljydrbsju%;_$&!2Rpx}flN*F z&#QW$2;Xy3L?_Magw*&f>Cn^xrdp_Rk>^g1JR5!d;K>nI@x&~UDyZtRNN=x=byXTN zdI)-)PN|*rs`NMkO@l~1XF9+#dPZqin|W04wFuOy#0Z3ww(l%MJ{!bXg6X}W%AkTK z79vC^Gmg{42oZjiv?yts7Ai5zAXXwFZCKPQlF)uYR|p;AG%t@!@fm1T%nE2akQN3M$@C{^ zG@3FEf-FKl2w9ZSR6P0A1P=|(00Tkv%c@7@%P;F)e);7HPou|_I0S_yF{*j_WnR^Y z@bL*&0YRRoDaT_@fWUNuDk5dX#!wNdsd{EovK&7RNBsootPVpPYh0rq5wUrLxlED ziX8>vKo2ZR$@nyCJd-+SHUSl|-ci$3r6%!3)>`nq7d5uChws!vFGct^2DObJG@(#O zh_GKN z)Cf_jU=h%$YY~~f&+0)CIMkiGeif4xM9iofDn=kOmXO4lK!Y=wP7Mkm1)|SmLPP%a#bo8FsEG;YJv?!w9S5zh}&&g>qsZTaz ziP6B&oWsz@z_=#ZtWO)m2>yC5W@uh9zHCV?&Z)yt75-9~<{j4H8LVEwsv04svO zqV!cmQ~5HTEmOMA!48lT#Eg%zX02Q%a#$T-?fXHc!RZ;3r^y@i&l{wL zhpp|^%=)9oM)latBU+7=sM47>;A~cDY!hY(8Omk;#KBWfWU9<63{#Av0*{?WPSZe> z=`04$5-~`rS3oeud_*D%kX8;X?9h8F0Wx}l^5`Q<7*p)@j6Dxta8#TIR{-~q@lT$7 zW|S$x0gQTu1!NLEz@k8!bRo{f9-Xh!MA1~_G{X%wzx>O{Q<^NtSpU65`~c~Shv{w_ z(;74f(LvxrUDO+XI+ldu9fBPhde|Burv;!dq82b{9Qu0}KY-N_T77UKCh&Km_f~AOG_KTYvtI)* zYt~Dp5RLJOorEv;N@cJxe4J|n_pN0t(Z6>{`+Oi}_& zq#|K4s>#+tW~Wuffas)@nw?R+%vhp*IA>xKiJ?`XSrL?9oD=3dyDTOq6pvbh#!04W z!}FiNK6ECP6o=9o5o_e+nbgqHc>0Oi(?f?|I5Kqd@S&lnQ^IUQ96XguCFG%a5>!O; zBzV?2IW{*G0sB5X1PN?NH63q@Y}q^8|7v8oK-m&W5xhd(rmUmlL!dq6|TW@WyX?rfbeI>ke)jhnSOu<)I zsA??)8w%C+>vn5!%etQ{3*Y5DWuEm~uFP*Xx8MsDe6@vOGjbNHL+f^1uyehFW%iYM z?ly2`ReAS7&OLDT)Q?_z|0Q&3LmLXd>Ozo5U1~w^eQT*>+4!|!%Q_qs&=d!n;@i{| zz-m(4Q3#%Z!HM!Yk*|DHKD4(*Z?7}hs&%d$Ir$Aaf7oyz)UjTpNe!&!)?jZDenJ~S z6nuOk*j}jaDAaT=om;LRTDLocM=kfQvfu;S+Zggki+Z}b2S7T5t0Hc@2F{Bf0OLi& zL)7$mF8ugP`0%QGWWyL!(*9g{|4R6=RrkSrl6L08J6FQHR^7YrN!pzY?_LS-U3Krf zCuv_Uyl*AEf7N~9o}{C>@X?jIMN9f`^KLZAN>zDBrI8=A$m{$c1;T zgojt%yYA`I7fj(Vz^sXgdjNg`yD-P&c1>%(W=pPS%bKq??`zBX+Cao_KXu`$I}Tf| zXTh`XA;ftvc=PV=oV)v~c7{$rV>uD=tjP8S&+Mg z(fGVY@Ijzu+$Q!TY;OU^cI$0q8(a#IZH2Lpr!PATh=DkqV^JIR@svd z>V47`jqnb$&fAgSFd^zWAmI8CU&0_aZ%^0hxu!~(ezF$9cFk_8_|k?EXR28*XTAkT zx>f(uTUAsxtf!$Zda&q?*bCPnA%qPxTvMjX-I*I>iAt1akHF0N8_iKJ)#>u%+z}fJob(O}{UOC>PHf zm)?hOS<<8jWIw@utxS)fcVr!#gvb zm;v<1^nB*q2Nwm*ET8V9IqxeYhm=ER4n35$qLrSk+h~nHJz}I;vi_p^b<~WXB585c z&%jZ6)_<6L3A>Z|3Q&1Pv{TRcme)?Lcv}B9-&ydFtQXkwpg(4`5kjd^z)jq&MGxtHf@{w!dYlk?gDZ{6!}qv5 z&DUgWq_%X@C=1t;sg(X@zJ*4>thu+m+3xg=p8F(xtWm$Lf17WiNyq$rZMJqQZKmiU zw%XUF=k)Jv-L+=D3~*C9mC;ko_td-@)w9%<@qBn|h9HNQWy~ zv!RRDw}N(Vz8*PVH*(Zx%LUscmvvoh(OqP|1}dL#m~YHBN{^(!t>+Y4r~Z*1Hs1nY z5|d$IvatjvHIAvb3X)iG>P-`x9?DkgIp&+NYBz&w7xXmq&15oFV*8F6tB2-WvMmzL z_V4O3<~wVS5yAd#Ger;0w<5m8Y?n#0Dj~N>R-tyjHGNSppKZ#zkh7H3LNZ7R2wAF8 zFJAOU>^~{`)Pitm()i3gpZ;Av{XP(=#!@XQ-Hy^yRl80d^WpR*qrR{)PHkC!>WUt3 zzSG~=!&5)dL*`rP(92)z)I)6LZ_n~rvkrp}JF*>9|I{p@hvqvm|JtVB)xXVm)_^qM zmF;>xnC<*NCj_!xQ~%7&qldoF{l0C!GuuA(o*rYqO*j_rts__|n_q7OHN9`<&_mf~ z#Osq$kHp)QNUn96Jft-5$+qkLpYP6gOTHp*g>SPoMzRD|O8r@fY<-f$eB!45Wl2jUHx*DR&41B_4qi5ahlgg&+wdD4HX$LO60hc4of?c5elww!}3_X20Ze~Z?) z{_lC)3*0$NJC{DIm+jyrCsv5s`MMV<$6Mz(HP1N8ja%nK=Q!m4VNq@y!F%gtJs(o9 z6{S8s-vb$$>B*nctULnUvy+-Ojk7}9 z;g*;@9*=Kud8d5_4bh#i;_(#b1-ZSy)CSrly#(Sm{{*fcQTIu+P}+p`_bitz;8PuT zZqE9LwsRKX+fHT^#idzYN2#^s&_R88->O(6k0=&NQ;bWe0p#BH=rMXudSEXrv5e)ey1-Zb}m;kYxN! zrmLZ(4k)oOlvt(n$VP~;Po?71y;kWBd@FWn@RP-ekbVo%za$D42?eA{VJNuCpSXT_ zsp`GZyP>Nc@3rLk6Ix#zn=LT=#Ai^qpPgfx1I^IUCQKsYgo+cx6rY$=G;-JUVbXKd zk{1p!B+(RQlYwlHVgj}?SYThB*H5)z5^GkL4c5GwIoMk098M&iN+t$R!z>1~x*8>C ztOFa-O;pTileXmsx&!y8O%2JFKr%;2e%}K8O0S``M3UpfqV+nVwHg3aw1y8}{f(vY zdtHCfl?xx#P+A+Z^g0zgbIP%kSx0e_(J6jjI!LvvykTYz{FRK$IEZE^3zI~$ltf~h z^gTQjx6UD1n=w4LSHwBI0-6sPj*G>lcx*bIsXsY84le+i9Ec1rG~lvR{wa|m%DBbz z<1qeAq!c@uhys2}rNcr5M0IeG$tc-G88yc6Mi>OPfD}pIU(<$A%LLx+RY za7B_Hr;^o((_Dp2Cj@oo5I2(^qf8+J3wx*G0ui0W8C=kSR7J^l>Ym~TZs2Bs`7#7Q^&Pte`;hJR}{w0zpm5f9?vEF{^WeSrx zBaym8Y1fcRTpH$Fkg@8|RD4vI%~hpB6MC5JLNr{xDS~T=d!M?L^5QNrvr7&3B)piRY7#l781o0RmxTQY9ba-;4CgY8q7(6nW>*2RvNXVu%(8Hk&RNORSt(Ve=*I# z-+_+WI@C6y&E$b7eTQ08ZWO^ZgEMXMH~Fdj70ZO0&#^Pl;%PWikyk1kUb!EsIK}$Q z{+NuT*dWPd^h3|O*&T6Z;NkKxX8mj2EpKJs%ir|!OV8&!hjX37%bkbTDqEIYpIE6p zw(L8$9^fkLFSTB5y%~IzvOJpWe015jAL5UHpb)6b2g12Pc0E`PiHLiu9mhX+>Lx39W) ztnu3lzN)-0ob!bXq1Jq;KNspR)V1X6dUJKXh1%wPZFjD=yU-BMHw@((hVFWuVb6kV z)!mHlZQr#}QHX3^b~mBwytnzLx4F>Wzi@Qb*Rd9Ef3NP{y7yY&ZM|NX-*PCozp-MdDp|W4qOkdw(MDWrqI4M-#(mcM_+l^A@jbLoUi5bH&=Z_x9a(P z{ZOuc=w|(n>suGfZ&lXjEBkVleOHH9Dz`1TZigro+P2^?1Z(oa{#>vhNTq)b-G%nP zeEY#%JDGYb2kvl=O3#85UIO*a`A}aj)VJEdZ>4|#O6b6X|8{klVXHe=*S%cTO%~$j z@LiX^#(}%=EIO&-@fYGb-SU1sAFfY zbLUFK@WN9tpoW@0<1GHIi?+hxmPOk~fxdMcK0ytkrhMIwT-}aBYYzsi(9%!Oy5>Sl zXTD`yu4P-Hq2-;(l?WUsLObtp?oj!{6YG_%6dTQYw6&RvGd8H*j*L{?wwgP}PvH>d#g6 zUzKlGfe2cbj=VSe?&wO#_P?#(al5|x@?^ecXRc-E4cmv4tM#MnoTcVD%kr})*FsJ2 zlwB!X>UuBoZe*ox>-B>-Vt*li6gu^D8|47D0(EbH^E=<9NyO&^hjM{KtAUZVu7OY4 z{-b#y-+VaNeE6;dJB>S>t-EqL(Eh2LtL|Q_<_n>|La6Z__Z2rp^W}Zdtnw#TLMM>5 zruMFz3$-qmuiIVzM+*(T`G(!OhTS(hR~jB$bb&;GO@4ch-+sfs%R-ztJ-$`;A+**&m3H^a@~f=g{Rj!yzT;A zS0T_$!&TQ9W6#@-~Kue*fDPPl-tLZA#^s@QVm#gb5bnZ6Eup#`;(3PRP!Ls`D zg=2SXx#k_LOkb|1kIES3i8ZmpG`}Oc`Uo&W7`t1}RkbY*u2ep)LY$vL!z2v*-yL{@SK-+o{ z@YbujK>cz>2WCM&(3cDJ6{?#HoxSoaNCE9b|_NB8oy@PAM)>U74t)h0J{O5=4G$TG`Gv^=f_HfmVzjPJ&&hPn& zwRHWT&jO&gU)()x#pu!IKJxJbGs_^-Q)kTUIQ4P%Wq>f z{>!eB@~?Tg|G2&9#X8&HG#%{4N6r;|v4hKnb|QSUy!yqR_M2@Z9r!4?I$qpsE%YC( z#mC2Wju*qOkDJ^S?(n|2&Gzw-jlx?k6yC<-_m+LlUhWNNoCLow^Dc zW)J%mZ4fs7%p6eE{_5}zR{*%FxU$YyV4A;gO-9~_s>%Jpo)|fxq_!XC7A-HGfs&#u z?bo|pO0k_aoEBJ#<0#>QLx7v9vv)lJBebL4^dkegKJwr3nXWYpz6m(eyy4E$C0O?*q!0q7biv*DG0@T$iS;9{Wu->LK$jII>>7HmDY_JfOZ3 z4nioe%_`|ZbvZZG^*0Zwi}WR%enoZFro(#T6m6k5{mh&&jn@=WOvk2-_$0LaqSI6!f z+hzpd#gBkAM`=s+_~-Qa_jo9-1h&aQ15+j`HXMPKexJqDwj8<&SRZ6+v-CrXb;@U; zbxA-^kWAwo9O(y8?r_Q8hSsoqnD1Bz6S>GI=CQB~Gk4enWR7HXR=O<$Z|@S1_D`b&E+?p<)-_WIu*zA*gu z{tNpr_pf@p3cgU@*P8RSE_qjd18bX7ukO9kf3tt&{+W7Kz3pbIn>J5%?RU85vL`JI zN7q6P?|80wmar}Dzr!{8pR_F6u{*ka=4MsbT4VD&!&inG`Ma-otTYZU9$u?!Si!8w zet77^XP1YcSZz4AT6e4v;@8?b-s^t1`@Mm82d-vrY+q@6Y_Vdks^-%0#orTk#xcSYEB8nR85Q2pbBWEMnF^OdMuQF|=I~{)Bpd zh@C!yp*Akdvm%|{ghs6!N8Z?{W|G{)pGl`@+*| z8il2&4$YMQ9X;5rErY#4)q}zm^)f{hem0m){xu>p?VD$YsTDPvyqD$%SrA_1)}5}h z&{|dB)jca!JC}Vsf3a2(`V8kGLTkRtyss(eYXWHmM=f`uohqlDacJF()X!y-2*2g= zbKh-=*#6KGu_*x^JSmHzAe5!c$g;sb+lvS`fXkSdmswL;GpL`f}3(7T=x4;$b%*8DRvKhtKH7MwF3?z4#0zUzC?WvqrM#+ z_ch>W-aGG`_Y0mQ3#Uu1$8aX{PFn;Y94fWF#4pvZVYKU*{XtWse2UCV zn||ibz{DqHkBU*4o7gpwnIEd8uYQ?l66dhQvC9%9oVUfPL~5us5NWOOukC?{dxXX&H6NNmVLFzQULofxp=&a3m4{b z;2UDetH4N9D@#G6yn4DHc#p%WAqgWPj?u&I!-k?6Cm!92M6Xk|?Y@r2Dc+)L6t@ml z@fHCk*BKGY1Q_YhP)=ojZX82pQWTSAddpP?2%jI0F&T&)D%zQ)!<7UdCHaO9 zR5CiE4+lIwaITUL6Ow_O^+~lbdC&ya;58@x7pfBX4s#Oe_@x{^WikmB%OO0k3L<}w z_)N!Uc3aBkag_M&R{@atEjM%^=k8zd=4$#ECojMHx**SWjV^Z=8n%eS6SD>@j`8Q zX&_fSblsAx-MVlT3bv&LG{a!*{;ow2q>aVtrGrb8OD|lVy3z3A!9Q)jQ2~|e6P5@m zRwK~&1w&ZlHQmG%jPoM3??6#dT1e{WK1I zN+g9!v=m6hbfsE)(E2M8RlLus5)8>HQlI`HFA4cN9&d1;T0IW;ddT5_~?<9DeurdP!8(dYN*L6{#WoasM9XLbrP#Tql{#jx_@=z=Y4hc1lJhac00 z8Dg6nM^9+HXgD_gCaovAUfZbjQ^bQ?+^<#Gm9kCK|3o%vo$@;Gn^*cA=`yuOo$Klx z|2I^U9vPa#Sf4S4p=2%(72KYJKdAkK+PI?TuHRMeeC-GM)EC}+l|>9OrT6|@QI)athsI~#Qc8f< zcKboyNr&zBr6!cseV{DD2C?(Ekd*1Aqs_2hkF(2xjXR!8Z0WyCm?Zs=?gv)kyyf%X zwQ*$)m&18?6TH4EoSNHCO`YX^tLlJ5qy|4V8x~qjOEJwxMZy*B8)RUmwsbqBHe`H@ zYVHM`*SIxrIV?aG&fCH2)tbTU+du4Ct$AuCcpQ573MULfKIb}Tb2wGX--#ldoF$pJ z%m#WVDrE!uL)1i0dasAFoLoyDC+e@1G*`U!n6qZ#>XWrd#RsZv`at7Am9cgCK!b>! zhIA$vvMqAzRdOZkEILv(hhtZ-tFFK}MwPWn4{C3brgqMn_UILra#4R^-;1=efMsYP z8DA*Vb%_sbQPEKxK+zk-mC|SnhKA9?%{hC0u`vwQVcoNZWKBqL5~+f48%&IDl`t=) zQeEM+3wiKo4j4Jbkoh1)(WTh9H%+}NN4-r6iZ^zpmUcgPrUP}c%dvDxl(NHR6nD_0 zS0oR@Q|(CRD-ZH+Rz3CL?97CGxYOaT1>D$U+%cocxy+XdH*%=gvdEb+9WGps$n^;(|ZAG0T9=q zc9R!fS*E*gYvY#Leovv(;&=>%rBdU@hQbYoE|n4(7tB0z-=Z5!v3pUdT;}P+>UDIq zLqfZX>0QO8UN>&NOM-GY!U0AIO9r^!GF4W02;%A4N!5q33-eKRKC@F{B``92@bTj# zQFhDP$z!KR7+;1{E&L#{j^B^b$|P72L2HutI|P;<-y@EG69EX;ZCqLHvOE0#(`#^V z@m=sO*RV?kDysj^RsCacEu3;lldxVctMS(o?JM}3T-HBgqp?Sgy`)Hs7ntyHA#Puhf=|A(l`0b2E_`AEo||* z41`=F^$E_0msFYUY~CRn z3@tb^5WL52R;O+Th6dQNc8+XdIW!(0~irBd$9TIF`M%Dbr` zK4ExsL(C-6f74GdJz3Q5`}J+ZN#)YGHw=o}f(n}n z&)h9}%{`B;YlzgmG}XV`a4gN!RfDN&Dam;&mI;A*A4$>dDkvf4s1wP}rixD>tLJ5cdlF=9$MxPlOJ*BuwSNB69pVdYmC%-nzobE=$1*Jw z_-jzKOu%un;g%umj(90?F>%w?R%kpxewdALi45JY=w7Yp z{i7jGU2_Xp_t4EI9r^0MTy@_{^}xEz9<2PC%?S+;Hjb5~^;xd(UG??p?Rjq1-S{(H zr-Dm*f^@^m4|b6G=cbS8h(^CNy5_4`bdVF}3d~XMH+`L2W7n;A|AD(Uy0Iw0`O3+D zwYcLS@6UT%bKce!Z+Pi&&fBwW?_ujquj9z*=#kN0`zT($$EAM4`yUhf{w+P0=t`%C+;*5jsc-Hhp9_&+zXeoPERtm2~&w+d_YXl7vk^kND-VzIHS7BSFvdQ)~kqm z(2A4=N^nz3BCg(&)^tyN#QZx=>fwUsd$T~igs(bd1QIcQ=DW@GJ4(yFxnapp&&ntO zqpL)`S#`b-ZOmzyU}ROi2~xA`Hs&$pPo{dnAqB#M(OvyamFg4Uvndg^I~8mX$l$Uv_&Y-}AFlVvh*fn}(3e^Xo348#XiJ|~e*Kxr%mMZ0BBYM~sP#zX}J zo;$7{jNy@oopMnRM6^?pO%$XS(S7h$tzOB-nG!$aXcCFDn_I|^SE(NIU~=75JIqk9 z*3%Rs%bltKtfx<6m8#x?)DcXAmHvXVFiwR(MOUOZ{M@}yRb1|ujw1p8IQh5nghQUi z@-gT8nDc(jRea2qea!h0{t4Ij6E6JsT=(B|eV=eWpKyDBZnayipK^Ho+{0P+{DeFF z2^aZ<+xiK2^b_vMpKvEX;U4+9)n>8&%*|PbKH>I#!fpAv)roJ89_5^6m?i%l$tNs- zS5~>WYo)B|HRoODp)yO~a!vPLjsokWm0V>VREzYlrU4$JpL#1S0|ig{x()AJp322- z7Y5fI2!nNctJs%|zT6z->M{z!S+HjDo45#(^rSx;#>+{ZGX2J z?ywf;jSlwuaQhwlf-<@d9*iA@*7ia}>!;p5mO!DZ@$%t|``2v<-wM`WZok;P?m!ro zc4@eqZ<87mmRUFoU~sV@O=2NKwnvyh({7DS?tKWR=kn-2jH11L_`##4NC8 zwv;UBuu7n^UP7@PQB|o3EO8TV)mF@P+1^#9%2_8Lf&oC!Y@5t-lXaE-B{d@GT}zb@ z`Tbva&kTk`ttEfTBk{W5@qh32d;k0W=f77~xj3Y{|NP&g=4~AJzo}p(r~b0>eV*fP za3Ux2F>XwI@?$*8rkE*i9y9Y)XO3Co)-h|`HfD?4$Lw*(m?Q2SbH-g`uDE;5&H7kk zo_N(*6??bFs^c|dHSFCMtBrfdyzJc`tBd=_eC*v3^T+GQ>e;(9)({Vj1=zbQ7K}HJ zHL`bitSR0+)*NpcYhh(itTo;?*2dneV(oEZOknTTv5t7>SSNe0iFL)h$GYP^V?8`4 zS>*<-zc$tz?;GpmITLrB6TRjpPR8SrgosM}=qra09~~XVt4FUrD$7Y3<*HNB z#KptOSWFtnQmEo=Wc*@eQaTpJKyt{W)*gx|(h;msj-H>P6{Gv3-OlgX76dN@R9;=xyN6Fz{e_dNwtcOguBRZTql-^B2VL{_9tNMuJdrH%iItcXN}LZWHRBAUmnpl%yz+9rY*hz`jiS|lgv+=)6D zt8+T1gBYEV~OR#%HUZ?R6Q6TLdGsY8pe*dkgn zstTB_(i_L{UmorpBZUHlm^Hxpae$wms8w za#HwbI@@|fwaHRyMoyd_*V!|j3g^Hd(fNkoLdP@5U7*^sbb)%5C6O0RqM0_}w(S$E z*2sSqcpNo@cYaNHm*{5jp05dCB~~-|ny(38D|#7x-EH63`Tmr?XB>CIR<^Y$exg@> zqMy}Q+F3taS3SN9XG-ZSK{MejHi}JR^X-;T^tFAZ5n3^So7jF^_*(OKh@E1W*!?x3 zdoXvG*emwk?*AvA3Q;AWE2H(H&Pyy zA#{wT?Sq4{By_g)=*bCF;Q&Cew@b57pp=NIaRC+zn-kK@0u*azX=wHoyRckw9aR0wxK4T5X@8gG0Hd zEr$+=EfS&7rKZ>?^3?OMrlZ(={1id>k9)%VN<*#^hM*kt~3Og@0IXka9VB%#G*ir!_N!2Dg zn25v_Nv+l7xfC`qG~IJl11QLM16iS3??x2ayzjR^={!;@s;sBSV+F6#vw z)9_@~M_PysmAj-TtPP7I#U@mj20>FRv=%{-`)F2oaT$t6&bq2JRMM~mJrys&u5dYr z=iRESRau9SaR@n2ZO#+S`Py^-#+)~lcXQ5;$DGaS%2#vFs()&~Enhxfy*6*&!h47F zRcvM_X7-oO?9X`v#tIKSb;N()lDal}v1{G&T-itZiZgB3M{rb_sUhcU%6Z#z z{??p-8!hW4K3~JueS5ZkTc&>7kG5pDpU7-K@w4v#vGp&vuGPP~;ChH7c3*X8 z9eo)`-!i|9{?F2ml-BL|Py24|yXW`@Gc{DZhH{E(S2UY7QEE&j!L?w%5_y8%GB-ofA`S8KaeT)y(3}T`Me9!y8(U z;K3%9Pte;b%3egKkS5E_bdAdE!{=wBF)^$&(=drANX-u7$OgSv>_SJT&{tjI9(%Z^ zzHH-Qrg3n2^6sVe#^Vdsk8ND@aIUc}*BSbF>qlE3Tg}a`g__4MuC_H>)0L^|$~A{_ zEmU9Y%5!F?OT!mSM4nVO;Ru{-`O6Yn8s~|<(oTXGj=QCR8&6vB^XfHnH&N=f1U$JbwiI#V0 zFDgJBsbG(!2tQZ?OoQ=Wd>X5`Ko)aZ0tER#$`WeH=TMeV+g4VEB5H*SwdUJaL+d}n zy=xgaO>*O=H?T9H)-I#JXqzk0<#p4wS_?OCows1bZlg!>Dc3;@C)rh&=B!1Hdmir< zF~|qlP#GYKn_&}efUbmRH1pQq28}+0U*3o3Ql!bSG>YBe@i%X|#D(mq(>u>-E={3C z`y$=5sGP&&VCZXLLFc0hNgR@&#bD_JM9zj*SJ3i`-G7^Ux5*1ZT>BaPZIHh80_;`t zM7&XhbK{E~yomST=Wp;lcg<_zX1O1jFY&kd)3O_o;Buy+5tUDrY8_uV_fEnKe0f^l zpYAN>LGnyuXfHDwl>I}6KDRNBLiqf*+&^65Rs+ZHc-MoW<&JD{AQL$Lxk5|*PJMuf zr_;rN!=!_&PSW_b*J?v&Q?#M(34)nOPxG7+InnvkZhHH=S5 z;}^pu3cyxVQ@Yv(f1#9;$v>w$bOlaPZ8OtkR>^*#^!hS6P7@*bL;xR3k|YN#duYN>{;dP+U6TFF?x+MwAC1rb0ChoeiziE<%Zi6nW6 zCio^zz>BKGP`?%OIxvZ%D~@KIRl26^@IFK* znff!i=FSiIy}vKl)bZiK`vbZ5-fa7DrhOQ)E8Dp{)44lW-w5rg;Vi$w*&3>UZFTm! z9@csvo4G3Qinn)}zvtPKH=}aFk>~Kpw{ad{*4@79ZqEgpvjO1Z!1C|jxwIBIuyCUA zfvl-N6X;(K-r2Pl*mLznuF9XSYF({rEpGyp!;^J%WgJ~MPb^PD>$+dluu%Q^qivXt z?f-un_8r}2kz;f?HQ}>zl5A#4BBut8|k+!8hX>dF>MLvKW!QD4MJ(ABgs=JrGupi zT}n+qL#y%{vMXHP#Wl8OgS#@pU3VQn?OO{z|7)wI7P#WSU*rGY=#oF%IFNxmzJ746 zX6Q%tKT_`Q_{rWM?_JwW)tZx!tiY&8W`N{5i_`V_BMz?{w6%Y5&~~uRvPm)e z|MMhq5WnRll{PRpPKI;`N^ptpIUqF zxj^4umJC9A&wQ=X!d=_WbRjd~NJnOgt-&^KVk>~wIB%P?U7&TAr8(={yux3ro3p)V zx>nCf%4UqNlNQFE2XW~-hz&Z3>9pK~aUe^*jM7RyGqMLQs)a7jR0|0ZwYqRKt6j_5 z%P37w5ri3os19V|i_)wD3kLU~^fg3$NE-c3q9WZ=PJf%^8+s`7$TS-4_>I-#C$h^0 zTe88SOmJu|IIpKtik^Yce_T>Uv-A(QN1?L63P z`_%3`INe^E}LKHF7c%3g{-I9A+yhyNjrW*jU>ZngOtWUFx}v; z+ADoKzP5tGZS2Q9f7MZmRFob@3MO50!GM`J&6z4msY>Lbpf6-i3kZy#H(_0*ua>3C z>w<$qCwNBu1%s~$TvUu<##pZKvmA)Mg7m}*SSnpPR5JNw+|JJ161d_6!CU9JFv$j% z=4>bx%+fioAU91QXbXj7cy!l1qf*s+X-bk}@IjLp47pVw`2)h_p8z?FQPNcv`CAxT zK0}#|Os$G4CEg1)$efae?qTU|#Cx!)4j)~BhR@U0e4&}RMdG6Bz!+?5CZA<8B12A% zMO1H|U3C^=oyD=M%Z9C%rFaqn6h;hy85jR>n=|hQlk^Jh5o0ofaOH~T3~`s}4Cy_k z4Cm>pMbRoL0scQ2Tlq_5uu8yfI{UL7domq+?jFhRJ(JmcX07AwVs$RicH>*`eJk(a zwmb(lp|{~-OHZ!7KifW%X&=e9?_X`-4?)z}3D(rxuy`68L2mrQ`=X!T6TGng3a(!Fq*$q8((f#?O5N2k6qaU;%+G)WZ zNww|~(tUdJS$wHXY+E(QBh#TLSp5lVzfKu3eR&a?&gI|43H*-6<=;YWy7wQq>3>Tj z5WoMN8GiWe>bh)|kf{=G2G*)Vd9K6RzWf^0_H6xdrhfR2{cd2b{@}u~yrrqCCD*Vu zZ^rXi-o}-t;f#0W*H)AsKgTt;EWNNCTnlc01RJA$(US88GQO@{Q`^6J{xd6TesciB z{)Wc>jI#f$bYcbX)Ex}*-+%UCtNGI^8|8i{Dn4zs9_+P$+G)r8CcaO*#FU1+;1i`T z&pBS?-{Ec-^ln@!nksQV(afAt-E+L$S)zfLXzbqvznq8o28W{A%F-NMouwT7DYIDE zED~|iH^NLFm@08f(RvXEp*)x>a7Z|8tQ9X%t(CYL`qq{$5XItE^tA&eBip~q$VLPk zTn`a)Jv`+*9qcyU-GHsWvTEg?Tm9I_)};E+fe$O&5`B zTjgaH+R4H?pM;x*Jc_DAj$C2_Mw1v0a$;zKb0tI5J*44pC^g6;sfcQuk|OX+YkNl0 zQsdkj=OBOHW^YmD#Z}V|{S2MqvbJ&lrkuzB^V$)(p#5aIJDAblmT|Y;46VAi{?Kv1 zd2o5^u6?cfcdnjVII`Fak3!Znobe3bvD}%s=h?^1b;ff}tX2)=g2E%tR&|0WzR`5! z!1V(+Bdfl?`+gx8?75lxc>bgLJK`V5ei-}dk^lPQr!W4!*;L;EUqpS!&EPV-Gr8OS zlYt)(-18s*tcr%gMOk&d&eM*qR&BZO34YMdTm_AL?s@it>sN1Orz_vY7s($XtITNf zXxYqY3}hC0W?0w3r&+K(&{A@~CtT{6n64a`BYtipMXEnYE#9l+hPO2wqjq(z*FL+^-;z{dy27fG4(onmZ(u;`6 zIX;aq)qR#wdS^9N*7OBGsF^>vO!6xLR{6`NeoL7w&-A|EPPYbul+dr?@Ejua^kW>& znYrcAowt^sx#Ru8uFRH0x+}BBORh{a;v`g?cBd-`X)%@y$!LO+nn6G}QO%G-b;G6# zQ>CfsaZ(<>u)T+_51sD&)X8e z^z6E)^H;4sH^o2v=NU)Sf_w25&|PWAK-SZi@w6?yb+hZ^{*U_cp?8n2Z#lHqd1&2p z_@S@u5yv~*77hdVmwfj;t)H1u)L5E{85E~O4RSkusX$o=Wh9ev;XRq4%YHq=09s(; zZPhxXAc|K$M!g6JWO5v{`!Y>|A-2MNM5-BqmU5hmQ|razN+!c(GA3MdUhgOyRFi+1w*w{^%A4uAV>f#~bT(~RQO?(W zX`{#b3eP~<3&GM01E!aJOSiS1wbPTD@qFm4Tk-A4ICpMXQOcj z8&*8?TdJ+N@D48dm&V_3ynZHcrt;vnJ6*S4XYc6v*or!B>uA^D|AzH16Gmw_m&{}& zGBy&O5S`qH133cy5!EE*XO_u=QC-U2L@VyqxFIlo9ea3S&R*%OH;qzBi393WGDgGRR2&CupgZfbR03s@+n)+a?6NHBUNu+A2w!$4 zPam7uLs|NYV>dr_-Nd!aQptL)mG*niUhHu#Z=st>xN;Dy;7*5K#K#XO6HvNREJ927 zf(tO%BM6y7c!GlXbc84%fEjEMv1bhAyb&2!e)&@nQ>>e6KdZ%|tM*s*n0nhOas?nt z@Eii_H;GpwSSDU~;H4m5fgrGGDiW$LZ0n2*Lgvqhemntq`9C0gQqcC4sExWtT0x*5 zBmq?vsDW)a-&*27bp4Sl6WFE;)P^9RZak`AqZv_(f}x%=^+9! z{07#h+VC3)1gNRzNMaU2l+zTgCVxOn|0Bw}DI+&Y(XpX68uxZ^o3OCRaACrKhn}j_ zxcrkt4*7=!dz`Y5sI3;4YYCiU;pY=-6=Ed|VQdQ12Ej=&uxgg^^8yE;2shiy( z!6@57`*RE#oD|huO>n7krK;=7v4?@SY@ja_=v%S)e{K)t9Mu%BwRrhv!%9Q{x+C-} ze*hb}d}KYaZOy;!%8Ng@`}IC64cl-T_t0Mb-QW8czqiz}YHv1xFRVK{auw-|YT);G==Hw&9iPkp=TF-OV{q&AZQEeg1pO z(vEENP^NikEik<98PTg3Q`x}QOknG}XW*CaU`gf9Okn3~V9(vUbVc&Q z-Og#lEv9bFU!PwMY*{v~d$!^Ru|kJ$U;p;Hr&kYvT0DHu5zKdCx%pnsQ@hx(uor?| zlVoJMjF$>6(ixc0dJj8&g9C#$F$R4b6hRjRXf97B7Xju<-c5rMi2Mf#4**q>U@S`r zS|Q7v!bb=N%975=;0q8fd(nno6$AxZt*n)=WYNogo7VXyf&}B(^jRth3bfkw)(V1v zJkc`#(96MknJyH9S&AP8p9Xf95=?;qXyH-;t%P9i3al2ln|g1sPv_~7NuEV_jZDd6 zkpF}-qDA>9l(kYuK1un{k%98dNc#h7Dt0HnPzEFa8P)AVrdq|B__P8&yTrufu^M$AMSmB z?^>Y$GYYT*QIU09MCwJxJAF;)4%M` zhW2Jcd)IpQEgV_#c4R!Ax!x_=-rbqr-Bi(;@pR?7`?KALGTnz(934M*cjrbY0)v|>)fob8iJZ z8XAv9wZM(mC+de_KtL3-a6Xw3Ty1-@4+1q(GYYyPa-0QCsKL#h5bYspu{$hOL@k?# zeA1VP3bB4#U|;9vA+$caRM&&_nCYT6Z0-mlA0eSHlRrueE9oxlfpx}|p|XHNErPIY zWeF*DDJfq>U-o-NW-zHun}=ijiq*#vyrM<7lzqL{As$u6nXRfhgtS8{9D%Xwq4S8S zXFs>oE{zhj<=Ud2I8fcQ&#v}WCvN0V0d?RaB70D^5gwsHc7-N`nbc!6)I)W>l##&( zx109!zx@#E#6Cb=8Dx1g&+~uHx&NB0e!w;Vf_pj3y`14*{u}Naf5Y`Z;PyP=wm;yu zJ>Ygd;P(E4JMw@#`heSk%3pAMerc|KU^(#E;;^=^v<*Gx@I>%&pnau%d#2%;D`)=R z#_=OCwH5+dXH&-6wDjDXv-^tevF(I~Z(FJBdd$&F{#C~oKA3Yg=gsu&9bnIgR@VZY w^oyg{oe*M2Zu;Iox#I50SbI0D=#?Miy?o0`+i;%4^KLJD{B-m&mDnf$Km4o|LI3~& literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b315573feff8d105dfc9ab18308259c7f4cd070d GIT binary patch literal 7653 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82f6dd8b70caee2043dd83a2b869962fb9e17578 GIT binary patch literal 4758 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 F{{w3S*L45@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 000000000..328336152 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 000000000..5efd0a341 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,54 @@ +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.operations.check import ( + check_package_set, + create_package_set_from_installed, + warn_legacy_versions_and_specifiers, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + warn_legacy_versions_and_specifiers(package_set) + missing, conflicting = check_package_set(package_set) + + 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, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 000000000..9e89e2798 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 000000000..1a1dc6b6c --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 000000000..7e5271c98 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import importlib.resources +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.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 importlib.resources.open_text("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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 000000000..54247a78a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,147 @@ +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()) + requirement_set.warn_legacy_versions_and_specifiers() + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 000000000..e64cb3d4c --- /dev/null +++ b/implement-cowsay/.venv/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"} + pkgs |= {"setuptools", "distribute", "wheel", "pkg-resources"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 000000000..042dac813 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 000000000..62066318b --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 000000000..f55e9e499 --- /dev/null +++ b/implement-cowsay/.venv/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, Union + +from pip._vendor.packaging.version import LegacyVersion, 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[Union[LegacyVersion, 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 000000000..27c8fa3d5 --- /dev/null +++ b/implement-cowsay/.venv/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.req_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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 000000000..e944bb95a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,774 @@ +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.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, + warn_if_run_as_root, + 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, + 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, + ) + + 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: + # In non dry-run mode, the legacy versions and specifiers check + # will be done as part of conflict detection. + requirement_set.warn_legacy_versions_and_specifiers() + 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 + 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( + "Could not build wheels for {}, which is required to " + "install 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) + + installed.sort(key=operator.attrgetter("name")) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(items) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 000000000..32fb19b2b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,370 @@ +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._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + 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: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +from pip._vendor.packaging.version import parse + +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 _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list 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, + ) + + 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 parse(str(dist.latest_version)) > parse(str(dist.version)) + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) == parse(str(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, str(proj.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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 000000000..03ed925b2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +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 + +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: + from typing import TypedDict + + 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 = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 000000000..3f10701f6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,189 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +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 + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + 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 + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.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=metadata.get("Home-page", ""), + project_urls=metadata.get_all("Project-URL", []), + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 000000000..f198fc313 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,113 @@ +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.req_command import SessionCommandMixin, warn_if_run_as_root +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, +) + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 000000000..ed578aa25 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,183 @@ +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()) + requirement_set.warn_legacy_versions_and_specifiers() + + # 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 000000000..c25273d5f --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 000000000..9a89a838b --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6ae30f46a90752ea2856c548223b3d74a17b839 GIT binary patch literal 973 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 Zv&nVO$R*b!*Q|{T6?(_NC75A5@IMUIw=e(z literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09b4c7e2aa1d92e4493d8d39866c200c6424db28 GIT binary patch literal 2280 zcmaJ?O>7fK6rNq%>$QVp0}%pJV1-nH3-PMu5>$jlK~PmCpaxXchi=!NF<#g|X2uX( zjfAQkXfGVOLN6`Ky(%Z}?Zs^>QLR8isyOs!8mdZ2mHOVS9qa(z!|av<*Td^0H23qi4745sQ+8qvuaLX8zd^DMWTN&VNibj@nvPn=Y>#5@;EFA7~BvvqdAxO1560IaZ_wn}V#Ts7}q6NeiIIyocaut^zfoX75R^#Rz_U-N_)djgmu%WcIq#8 z%KXUS4L)9T`s(lwmo-_~*saN_4f*wXye68Fr`6#pi=>+Aefx3bQenw9vjQev>PpvY z@hDK5l&dW$GYhUP0*fHxU7#hkQi1`Y72%M-f(#TnGlHO8Sd zu+`A2kz~MqQuZV0Kn^D5#I9^7SzPAW7dQgU5xJ_)EAUHlDolZZSr*@ls$JM*Mo>-k zncg9F_Bal;HyZB*U!noS4KgT_%FL~$ua_Q{5Byp_&^Isks~6W`EFbv2yd4*AEq}Az zH|P6%=hw{no6C zn8o2O7zFOddrR@!lQu9m0o4Y8J^NM6{&&NEJORrHaN9x(C6!#Yl$efsQ5+{JI!>Uv z6v$f~=W56G@rGfRcN`iuK`>(;#f-}?$IOxpygYmxNE{t=?Ef6QMUrhmpW}ORj`^yy zR8}0zPYno$_yUF%@=VXi94-B$h z(oPF&HF!#Wq3E1g%3{=ZYZGm^)_{kVW8+NrPnscNmWB=)R1ChvDKI-G4M*jW;`g$Y z6iSoGy)ciZw{x5yf+MlHiGwf 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 000000000..ab8d53be7 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 000000000..15ff42b7b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,156 @@ +import logging +from typing import 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.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 000000000..eb16e25cb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,40 @@ +from typing import Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 000000000..5007a622d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,728 @@ +"""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, Optional, Union + +from pip._vendor.requests.models import Request, Response +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 typing import Literal + + 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 UninstallationError(PipError): + """General exception during uninstallation""" + + +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 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) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 000000000..7a17b7b3b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f95b821c8e4812b8bf6d8acb6333020110b1b61 GIT binary patch literal 264 zcmX@j%ge<81VYpdSx*N?u})ekRCe`td-4%#!$cy@JYL95%UN eE9{EcfbIc#sTkzr56p~=jGveo8Ci;0fLs8_!A$J{ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..793e2541e05c83858293eba9cb4806152a215a9e GIT binary patch literal 21918 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dea5752e5805624a48cce13fa033ccc1b71c73f2 GIT binary patch literal 40767 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..435c63589d81390af129d02107b580294d8f67ef GIT binary patch literal 12636 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py new file mode 100644 index 000000000..08c8bddcb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,507 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import collections +import email.message +import functools +import itertools +import json +import logging +import os +import urllib.parse +import urllib.request +from html.parser import HTMLParser +from optparse import Values +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +logger = logging.getLogger(__name__) + +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> 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 + + +class IndexContent: + """Represents one response (or page), along with its URL""" + + def __init__( + self, + content: bytes, + content_type: str, + encoding: Optional[str], + url: str, + cache_link_parsing: bool = True, + ) -> None: + """ + :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. + """ + self.content = content + self.content_type = content_type + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 000000000..ec9ebc367 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1027 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +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 _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 + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + ) -> None: + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +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 + versions = { + str(v) + for v in specifier.filter( + # 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(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [c for c in candidates if str(c.version) 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 + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 000000000..f4626d71a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +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, + InvalidVersion, + 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, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 000000000..d54bc63eb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,467 @@ +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 + + # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in + # the "pythonX.Y" part of the path, but distutils does. + skip_sysconfig_abiflag_bug = ( + sys.version_info < (3, 8) + and not WINDOWS + and k in ("headers", "platlib", "purelib") + and tuple(_fix_abiflags(old_v.parts)) == new_v.parts + ) + if skip_sysconfig_abiflag_bug: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2ecc3ab32ba5c625e337c46afd501303e31d48b GIT binary patch literal 16808 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 pa9eg3@1Z>pR4*|%I>K=DVI72Qqa{{gx~dj|jj literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..befa621fb92f426b6bf70132cb6ee755a08e659a GIT binary patch literal 6888 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 G&Ho1laPcw# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61ea298bec49314fcb7fc33f88de94ad4af622da GIT binary patch literal 3813 zcmbVPT})fa6`t$s|9>FFkYqP^!wO?!>@MRI*&O*Bhx9F#opqddFh1zt;i-Us~y zE~?*>?QWD>>wjKnB@SX+HumZ~4z>dmbo!}Ikb<(OUR@<|zYmx;g5JYmSMU?-j_f0| zTnEB!ZzB@ms2#npN=O{MhJNu*3C-}=P>G8)eMy&Gif~5Lh@$CYE+^`;s$3vMCBSru zg@Pm#4Z3Zls3@{Bkt`|_Cdp};=tVJym1%=7$OXeuC=#5LQ-)8Ib(}1S=_zpnYlfX* zy-1XFqa{2H=x>`Ibp;M9aoNWCdSADg%&gVy?b2VOF%+@PVYdM7GE*YxlUT@$S(WtU zWkn^zG$tCHMo=?sDqSQ5E4uLEtUd``Q4>T#(+M0ZD&W{ejEOpSGS+uYfX&c3@y@Xt zbI$hBeC(t72yfUkD#?qw!E3Xc;jJr3%1TE49onYWy|@{lRP#8l&tWiPVp5HNSJsD% zsrb;f58`9zhvFAishGn(C2A9Uck?{hv5{&4LQK3gSRuvSEU`v1Lc?lV z696wDa;I?=k`spThksI(rzxoDg02dx7NgQ*SyfiLOu13P)EKFy<|rgRDajg$k#&#> zA_&$12BskU8a0~g1W}PF94G=6Oc%j`S*VxPs8E`e)05N~0EYC`tN=i9esnB;RaPX( zP`3G^m=;FI>c<+d+n!PZGfP+!GDOYSAttN=zJNNBNCKoZ5y>pDBw5pox|{?&6+(v53R4sG4D=xolXeBMqCZi78-FUl?w!kdt+Zz@-qH+7T;h20|!k z7`7UpVuwa^m*Or7(iu<91_l;H01jL8XXq@T=gr9J{(0%ArRDJ79PL|yrlnH3v@~Cy zU;WYJK<8FV>q_6PzLox4{db*fU6q!T>)w;kUS>W#@vwI-T50K9_x3$=d6q)u(DM0D zk8ZUcy5qR**lg?GXzN}(U1>X2_ARz9Tc3CW%Uro{S^9MFNlR#zTeU2oUOaCqzEQrh zI(%2E1dgvek3YAgfbhgG+;4smx)-|Zsv@p?h=Z?hh}-7*fV+x#mz$ws8V|G!=P;hgR?P!|R?= zb5MN5^nPM#oqIWLWWxtV0o$(rB(g5#$C#lC{+uz4dwm`00zgJ4GTe)dxSV z2%iPC+n+>gBerM`0C(qMUT^-RUnxo++J`neAULth~aY<=bpEDe{3 z*IUQ`?!8jAQPvBMzV(0XJ?BM_ylVZ- zX;sO{69)5Mt)HA0387)blCFj>L0L~vd?BYor_8WG6wg3@iv_S~PcIv7a zo=M{Zt%WrPg+|NE(+t1~^@Q=}J~Of1`k2L?;b)#ti|I+6go@hmUm3e_IXQH8X!t_% z{K#d)NkfQ68KF1;5w8;?kW7jSV0^8i5uyK(Ft_e;{tIV+?Ts2B=U@rFV(nk>sq!4h zZK2>(KO 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 = cast(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 = {} + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 000000000..97aef1f1a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,213 @@ +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: + for key in SCHEME_KEYS: + value = change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 000000000..3f9f896e6 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 000000000..33c6d24cd --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 000000000..aa232b6ca --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbfcf525fd3a1421fbe7bc10bcdde9dadc7e15fa GIT binary patch literal 5914 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

j~d;JL#4cn8tIHFo0p;g4Y) zO^}5fFe?H{Ke}7e&sNiCw-X1q6J6Vh{vAbbi`R)9iwlv@9Os8%lb00!5i>fDF+6_) zC*y9V1n!n29UKiFN4fX20StbD>;>p+*0a?`lMH+_vIae?SpJo8ve!F0|HIGjYJOII=ChERi(b$ zi=Rrz>k&m7xvhLfpxKF%$dh8C-ls_8?;YEL*>UVo+?a$vBoU@t-9{ST7R6Eg5``-&j# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..538507cb6d6a69f5639f598ba70b469a9cf598ed GIT binary patch literal 2907 zcmZt|TTC0-_0H3Vu`#beR*6$bOYJ>*Q1qSBf-Wfwo z$1NZGL7GSbsZvP0ZM@q`%{G#hR>1X>B*4frOqH3gm_0J1Y+vTI`xnmFZMth~1 zdtUe4Gv_&f35S~ztoA?rSserDpA_+zSOX3W0PZ0LDU616W|q;}Syty}Ifl|$jn{=) z!Gk$X)C02tJvbZGn`WEz=GkTjEh2^gfSHvP0f!V3hZcAx@Gd_aR)SanJcvU$u)w|q zcL1jeI4$|+nDj4td5m+#OITJgal;DEmvgAb^<6SOk+;jGjwujmAO=!-L)O*I4A6sD zG}&G-i4MqmdpeiRn#9IRyn*Zn(m7q1NuKJFQrOB6HEUNdSU=u?$Hz>=#)ciA$!EPw zgOfPFW)j7Mlj}{FOdZFw@F5fnrOY)$Gi4=y^_|O9v6#%+OD6GnRWOcqS=A`7c}i9d z8y@WOTkB|DCU9BJV8in6Z64EP%TgCqOz3BY-@)I_sRUc`6!?r%B1e=fdAOCjYQ61< zHh$B_#E>;ADP1AvGS1l4Op3PvzN#vq3#5qbsXrq5>RaBPw@eM&{*A5xrf7;Q5^U#) zkzr{3Ym0}SgXiD^yzU_fEjMy&LXT?uGL?K`DU8BCVynb7WYzQ`6L*<8aGRi+Ymi+5 zg0q^O!7+w(ftW@0M-P9HSb}&Y>~*ZG#^REhxTxBfa`TC?>l2A|YAi8jDme|uXG~MG z5~`lnuuempG1n|PpBP%j#%e-S=M!1afg?l1Urku5O#_@+ff!qfteQ>CLD)Q3CiGfz zCgzqc(-_L;-6jgmK_X&u5-jScruD#U1C^!LyXS75yZz?hr0A{`Ep`+$CF#r){>%Ze zk<01U;ul;P0IKK0r|@Y|%ZyFsyk*xMgOE)f?X7A(Dr^IVSGafi0;8e=Yx|u6rO=I^ zA@m*4P~Zx@!#QY`ANr76QY+(Luooe>_{N6BCxh1OwwZT_BakgHpn zMt#T*`lg&hgpM?>z+Fdol56ND>}yPnpI#5;j1>bKbNr2Y)m|5J_Cov(SA+?n8pE-m z+pJouVcD{g!GsnZp*7`-)#>H7!z`j>EaeTeaY9VuigGrK4aMawn-J>07*AgH4rP|$ zF3T0>^Ux;UAU5DAG$Mmi%7VQz=?L*1b8g*LU`}ZKb}Eebf{l-i~YuTQ|!cJv-n3xFcR+#bbld zj-PlCx*sZDdwM)x?mM#+tOQY8_r36Tcqdm}dU7)HN$c542b_K0i8{M~^u6NOO5JBl z9Rp871ACG7t>N3No8kXHmr(D}K4L*#-@uQ96#<|_i`Lh#I+DZe<6$ZJb>Z=O2HtLP zr8XiDnL$^Ax#ADkSTmu2FI7Ls0CFQ!<1@)rawa)9@y+qeskGNN-M}KY=VVQDIRIS2 z%4#azY?#rmM0r^`Pv>l`iA1TsI8_CM$jWK9HxFDv2T*l6u*79nU13$$a@Y;j&RMkE z(SUfX8WpJ_2;@!RQ~Rv{!D|Cm#1^6Jz1M%y_3Mse&u&k=f&l-0-vQk!QPk49F|l|2 z^ge16dT)g`h0Ppv`yFmq>M4gh_gcDlgi_1NP3}{v_1R$JHS0y{|l&yg&JqsjcyHSI?%n zY5h>D^ns0)ub@c#UGtV%YI%9%;-`U@a`ZH?3%kJ+&!o1Esn7TO!HCcI+tG;&j1>YG zJZ_7OMa4gLb&vIn)3Jyf@_u86s{eNNvhk|H4Of|Z^$(BG+2e|KJ`0sVX!jtrXbBBL zH5;JUAVR(E1>f`ihlspP3AA1ggQL1Px6hLcfYMH5O~R|fF%0t`5iz5?=-l7YEB`>T z5{m8fJss>uq%z7d16%0|f^8>#K(|V8fN9^lRza{8JByizBgLinPd=xpciH~|Zg$(F literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be6ac1e0055f1f42970bca32572328df2103221e GIT binary patch literal 35744 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 ALI3~& literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..764500733d0163be98b2dd79fbad70c1864f3dec GIT binary patch literal 15822 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 AwEzGB literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 000000000..27362fc72 --- /dev/null +++ b/implement-cowsay/.venv/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 + +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 = msg.get_payload() + if payload: + result["description"] = payload + + return result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 000000000..924912441 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,702 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + TYPE_CHECKING, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + 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 LegacyVersion, 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 + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +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.version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.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) -> DistributionVersion: + 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.lru_cache(maxsize=1) + def _metadata_cached(self) -> email.message.Message: + # When we drop python 3.7 support, move this to the metadata property and use + # functools.cached_property instead of lru_cache. + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @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. + """ + return self._metadata_cached() + + @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_provided_extras(self) -> Iterable[str]: + """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 not particularly useful other than + display purposes due to backward compatibility issues and the extra + names being poorly normalized prior to PEP 685. If you want to perform + logic operations on extras, use :func:`is_extra_provided` instead. + """ + raise NotImplementedError() + + def is_extra_provided(self, extra: str) -> bool: + """Check whether an extra is provided by this distribution. + + This is needed mostly for compatibility issues with pkg_resources not + following the extra normalization rules defined in PEP 685. + """ + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 000000000..a779138db --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ccde27e0cdee6193318491b70a58138d0a128b40 GIT binary patch literal 390 zcmXv~Jx>Bb5Z&eOKtUQ4TVv@Jut8g6VgR*)MjNl$EZhb*?#E?!!CWk<$P-FYiX~Dw!MNZh zSyDj~U^GH$@Qjl%4U=dV#pQ1d<1x;+I>LD?1`{ughQ8L-Q(=u(T>Ci4!~RLHYXg|I zAwa$wq}nc_U-P zYc}GJWFjL}XwR)?k|^$3$~-Ghts@f(s_>LHv)OXvNUi*iZ5_fDzu|TOegcf~9PQ1~ R?q{`iSNW)H--osa$}jNJZ}9*C literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67125599668545c85d9e818af25c6ad68bfa2c45 GIT binary patch literal 3365 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 E9}4ZhAOHXW literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97e84c4483974f5cc596f366690c4abf6380a9a5 GIT binary patch literal 11212 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 P^II 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 get_dist_name(dist: importlib.metadata.Distribution) -> str: + """Get the distribution's project name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return name diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 000000000..26370facf --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,227 @@ +import email.message +import importlib.metadata +import os +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 parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + DistributionVersion, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +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_name + + +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 + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {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)) + + def _get_dist_name_from_location(self) -> Optional[str]: + """Try to get the name from the metadata directory name. + + This is much faster than reading metadata. + """ + if self._info_location is None: + return None + stem, suffix = os.path.splitext(self._info_location.name) + if suffix not in (".dist-info", ".egg-info"): + return None + return stem.split("-", 1)[0] + + @property + def canonical_name(self) -> NormalizedName: + name = self._get_dist_name_from_location() or get_dist_name(self._dist) + return canonicalize_name(name) + + @property + def version(self) -> DistributionVersion: + return parse_version(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[str]: + return self.metadata.get_all("Provides-Extra", []) + + def is_extra_provided(self, extra: str) -> bool: + return any( + canonicalize_name(provided_extra) == canonicalize_name(extra) + for provided_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", []): + req = Requirement(req_string) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 000000000..048dc55dc --- /dev/null +++ b/implement-cowsay/.venv/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_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: + raw_name = get_dist_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + normalized_name = canonicalize_name(raw_name) + if normalized_name in self._found_names: + continue + self._found_names.add(normalized_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="24.3", + 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]: + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonicalize_name(name) + ) + return next(matches, None) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 000000000..bb11e5bd8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,278 @@ +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 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, + DistributionVersion, + 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 + + @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) -> DistributionVersion: + return parse_version(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: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(pkg_resources.safe_extra(e) for e in extras) + extras = extras.intersection(self._dist.extras) + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[str]: + return self._dist.extras + + def is_extra_provided(self, extra: str) -> bool: + return pkg_resources.safe_extra(extra) in self._dist.extras + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 000000000..7855226e4 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35efb5518a1ed365e2176df49a4c5793898ba7a9 GIT binary patch literal 298 zcmXv~J5B>Z44nxPM3K^Pf^AdmT0ldAKqv@kpn(RO(PY=kTFg&7PSB>}7My_#a0s{o zEf+wfOU0}bELnc<70=K99F2w|)&Bbjou&ERk^hoguo@)rDk||PS~>15kI%E9%O^d< zjBCwV=^blwF|)ox6E|Xmp}~lbv(&_du^8Tt<=384l`oZg6RXaC{Q|YO2)sl~ZdQA^ zBEFtaVe)VZcNY`5@zva5e($}BKsFe($uKYdbJQ&q3v>%GG=;W;X@uj*i_=es-jkzdb4YO+V2;Ddbtk literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb384dbeb1247774bc6e2796139fc8332e369838 GIT binary patch literal 1937 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 Rer11==ll2v9D6XK`hN-a2lD^` literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2c2cd609bbb869b3470371ce3259cf793f0cfc9 GIT binary patch literal 4259 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b00fd8a7388051732d0eb0308bc767ec7ed491ba GIT binary patch literal 1726 zcmZ`(&2Jk;6rWwM*Bi%?+a_@>6VOUQAg7HNlBz)n5F!;#BnVMkD)42r-5JMg*1OBh zI@Fetf)t5F0wE44919nM!hsXwZ-7gz6eV4Hf)h7GK&^V>&91*d>PY+MeaxGA^LxM9 zpC=~L2*$Y|ezH{sq2GnkA7Dr0bOok8L=cf2RF-6P6%lzGk;H)X6f(B0lv6wCwp7-xqhdPDtee(*<_2AL3BBEV?HctN<sLiCA!bNO`A}zQ852-&h^04sY`s%hP+}jOf;AisxA#2&kEDruKNzf!l(I7 z-;T7&iVZ#w*A6g_APiN&+Ocni zN#A6gh8mdMckF&Epf%f_1?X*hKLhUYoli27d#PR(212i$BL zrA_K?8c?C(H-oC@E|#8OFt{Dic|Rs2H+0Udk!@M@*CqQcHVkevk)rl6lSczaRLiZYuL zkvs@4Qgof=gkus!tMFgUMu{*j5}pJBxMin5Ywxy?v$LJ-?42v$tbDbyPmZ#ShuR`L z4=ajef^n`{rx=H6jG;ZyZO}6qzuz#OUL=L#VO!t^264v=fI(q`2P|q|R1a`5=9Wbr z2jil|qAJA0do`|Fz{!LVAAbSF!)V;*S1!>N;~>1E7#8m zC=Xy&KkW%&&p#$N8D;=rpm`~JhjGWmJwj!@xxN}|Hy~MP-=erU(Wgh+OEH|UuxG#& zQ1As1-Gn4bzoN+p>N)AspGb%~q)i=8J$v}_+jmnpx0HM1=TDTG!-cp0PRJSgBQ4tV EUo97(r2qf` literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7184199a99cad0f59c7308ac26450b32c53c703 GIT binary patch literal 2304 zcmZ`4TWl0n^v+}7U3TdMx~M_G4hWTp)!3BqFtIU|5L{v=!_I9x?d;5Q?<}}Y zF~soEL=*MH&<0G2KSKC0@k8q$pGJSWG-Sz*MiS-2zojJ_`SRSE9Vkn^$=o@wd+vGP zU*hp7g4O!{&xRO7=nszgOKt#b?*VWP=|~q$R21?;QOt`)DK80}CYo|FkPo=9WCn|& ze8`1mGhB@1BLWi9aij;XB0YFV^fcz9l~6YP7e}%ZlZLGdlaCq&hlR)Rg)+7ZI4iI= z9gk~e(^0W?(IB=}#Fhi(n5tgHgc`P`s(`khw5X$*<|#O65X^-N-X-21Y9MQ80l0=R z$_qNmi@Ja%ET@1rF6!b{IUm459VohtLpY2h|S81!aX%aIr((NKaN|GR5XN zfvh3Q6=gC{KT#&_B37IkTr{kSNn1H?I48>Im67+4DPu=Rly_~tY~q2_wrx_yD3(k& zU;_pF64fe7?jnR*F^%&|sp3r9*8beS*A!|vc%Y;ernL!7m6B0Xz#In?OEZ#T4ceI@!C{21_!WT&{crsbc36Mi48lK?8WqG^#W z8`G!4O@e@0f-ZtI_q=HVHQq!5)VF79)5|I}lyI zW<^~da{pr}8yKDG7_~FHeaSLyO@|DR+nI5jWR7J6EdBzSMGUIykVR;04pua48tW{= zy8%-Nz;F>enyxt-OFkp2_(O+iG#e!ya3>2nHs~lgWDCb+)3Bz=Ru0C?6cd$}OC{6b zswS`lg4AJgU#WYJ1wDN%NTDpT&gV_Rq=YvdlL)4i=RT9kkOZf+ukSUrarexwjp}z@ zQ~H8DZFCW~E9haOt(Mq!FR^VoJiNT~$kKtOzU3XmD}W@n)mu={_F7u0rj=UyU^RVk zC4IOaMqNFNJqtbcAlf(hL*%>2eEVW*AyrH5xtH3rRCf8bRDU(q4-%>LVtgTfJyGi% ztac7Q-qoIn&Pny%s3lp8rSHYkH+#S7|GNLrzCE{2e|zrsxs|@db0f>i?bVhY4-&0& zQL-6qEHu&!AVR!A-Ilrn0E~LUfxowA(bW2p)u0|lp9uwV0u{s$po}iV;F=2fC!YUj z1;2>C5I^mZLHe@b_#^pQN$cVbc?@`h%fAF~!YC8=Wn~s>OnMfBx#N$07HUME#n!(J zGU0j&PXX!W8}HAoNO-%r*>228H_xOSs54y~q_vUq-N2_Kut6rbcKzDj_i*U#+R&Nm z(3!s_v2)Xd1BX7BYsqXinZ4C}KdG#8;*(bNin7wZ_i-wojMh;+68(2I2z1Kl$CsUN zgh#V2d?;F45vwYTsw&J+7{>s&sOp8XW_ldL14(#B2=7}KE0`LkP}P&RPPi^6QHKzo zF3(f$%x&Z*)$@)I6~ea&d~^)9tEestfg`uhF28=FI&g9g0RnXt+*}vC0&UB$9;qYv zFFAKdermgW;>V9xIl3nK0`)_i0@3;Q`NGZp^OFlbPY|Hqef*ZuY>Wk+N(r7E&nj-D z>jg_g;&PBVOSehRdqqGhSJcQfJmPMSm;^Fz@*2|q^OA#^z(2nwy^y%R?d2EnB6j_K u8Xoc@`4$-j8n0{G16y4Z1mSnoS4Dk~(3_7?_it$EpP(W{R}pOP`TqbF<|`Ed literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f6d62959195a995ebcde7df8e0b7d12a5f4b087 GIT binary patch literal 26034 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 F{=cUOc@h8s literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90efe3ac00ab9190c934d837163ec5fdffd367d3 GIT binary patch literal 1201 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66a50b828b9ddad9ddd9469637ab157f5b126076 GIT binary patch literal 4986 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 F{{}MW!+!t( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 000000000..9184a902a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,30 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + def __init__(self, name: str, version: str, link: Link) -> None: + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate, + ) + + def __repr__(self) -> str: + return "".format( + self.name, + self.version, + self.link, + ) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 000000000..0af884bd8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,235 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, 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} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs: str, + commit_id: str, + requested_revision: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + + @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) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable: bool = False, + ) -> None: + self.editable = editable + + @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] + + +class DirectUrl: + def __init__( + self, + url: str, + info: InfoType, + subdirectory: Optional[str] = None, + ) -> None: + self.url = url + self.info = info + self.subdirectory = subdirectory + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 000000000..ccd11272c --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 000000000..b94c32511 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 000000000..b9c6330df --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 000000000..73041b864 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,579 @@ +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.models import KeyBasedCompareMixin +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)) + + +class Link(KeyBasedCompareMixin): + """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 + + super().__init__(key=url, defining_class=Link) + + 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"" + + @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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 000000000..f51190ac6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +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. +""" + + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib: str, + purelib: str, + headers: str, + scripts: str, + data: str, + ) -> None: + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 000000000..fe61e8116 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,132 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +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__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + @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 __init__( + self, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + self.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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 000000000..977bc4caa --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,51 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 000000000..67ea5da73 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,122 @@ +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 000000000..a5dc12bdd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,92 @@ +"""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._internal.exceptions import InvalidWheelFilename + + +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("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 000000000..b51bde91b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57a6e8f05830ce95ed8c33791ccf55555f41466f GIT binary patch literal 286 zcmXw#F;2rk5Jh)G1W}|koWN~_>=B_wG)6!J4K&cKHufkUWxc!djuSZ@r{D}+fJ49y zXt@9)T`JZn{AT`}V&>0$OeSLyb^P{Dvsk}+_?O(9?I@ZTQHm$g$?0Hok~_P37m2Ql%@DdKKG#;_ewLS0nHSYqE>V!8P$sJBR%7 z3hpm+xOHV~Fnw^&1fbd*tkH5>xOLDSWGl2QFf<3>apmk;b~=MVjH%bfQZF!oCl87& rV`H^}eL7IFMXXfjyWQx#{#$a<9L7Zbp`ri7_koo1XCURU8AkjC9;H?I literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41468fd888de9067b8c77621292fb714bb55efe5 GIT binary patch literal 22028 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3991de37736a30e8d2a1c285bdb8ae072c15cea8 GIT binary patch literal 8585 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbff5f8da4bcf6b9fc4bee5c3a15f6b97e3b5d29 GIT binary patch literal 2285 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 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("utf-8"), + 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: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 000000000..4d0fb545d --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 000000000..d1d43541e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,186 @@ +"""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 CONTENT_CHUNK_SIZE, 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 > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 000000000..82ec50d51 --- /dev/null +++ b/implement-cowsay/.venv/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) # type: ignore + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 000000000..f17efc529 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,520 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +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) + + +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("utf8")) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 000000000..134848ae5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, 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"} + + +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 = CONTENT_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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 000000000..22ec8d2f4 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c63852605167b8f6f79a3ffce8ce43eed83ffa97 GIT binary patch literal 229 zcmX@j%ge<81VYpdX)^SCU$kmzblUUyxdq uSdy8aSF9fo6wNG&kJl@x{Ka9D3%19uh!yB4Mj$Q*F+MUgGBOr116ct4b3o(( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..070aaf352d9052b9abf644f21ae0a494a89c01f1 GIT binary patch literal 7611 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 LIQ|r0Y`^{w4h59L literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32b79a0477ce2de0fc34f3d20ddfa5e233af5c42 GIT binary patch literal 10149 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%0A$~Em;u>2cmp|0`9 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3598674128c71525a30516f026f5273dc3ec1af5 GIT binary patch literal 235 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 MXVzuV)7K!_e_{I^^Z)<= literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d68d2bba25e4a59d054758fd948a10a4d504c27a GIT binary patch literal 3097 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..407d52e67e795d14f31314e3f1016a111483e8fd GIT binary patch literal 3961 zcmb_fU2Gf25#HnR$h+gO_@h6^>B+KWv9?Lu@~>*Rh%7s8t;k5-7O>iYpm-;W@{vdE z9xanO6>6IY2@PWT$pVZ3GEkr{?1wxR?PKy(v_K(M0(`x?u#2W>^Tx&k9QdiTd;F1w zr07GJy1kj(+1cIM`DR9c2!&(>E%xi*7rzJ~^mod%TBJ!l{~U#Fe_f;Qi;##cBWDu$2(ahrXyahm_?(U(^H%iG%8v-ODe^3S;N39rQ8iI zOEj}uF%3f}*%=k4WEbW%P0!|Vfq<4sKBwzhQk|(_Bd-zS#Agj$%9+``Q7YxiDwA`9 zuW;cOXH?Bf)pUFqmcZq_$F&sedFbi${EyJxMP}2A2wA9Q(M6BSS)O}vV;}O1yu}f} z#jAWhgb;B2HDtE+%?nKDE8W8;XZl*7=fxJ)dEb~o2vfb@j$VtK2d~=OR8MPPM6fv3 z!{j-b3EVyOq06&nw{11X7Q#rsom6c$KTwPBTQTx|NfhfsFhW+P&DUKUM#^}OhMPVX;mY6$7^c0 zOyY$B1=`CGGIK^r%b0bo1gD!bGH({mZ&hb97q4H=T${LHMN>Ok$>ne43L42&ij_>ZST;2b9-RSq z#yRTUBr{Vj>T1UITwN>V^0joO<|Oy{D%MC}^C*FuHVQCxYbYV`*Sh8rYHse^K~l>3-=? z(kK%=w<(?j!5|ZCNGSUHSX}41)j=VFVL1HKx3~C}V2wl;rq`fnjaO=R$;G0#kE2 z{)HSa!z_mfMUKZHj+Y+Z@y;8?GQ^Qy5W>_}nC8P>p@A=v0-@2C#sWpbNg$nl5NNV4 zBD2gu&GbT5;vp&w54i^&05OI_@zqm5e{1Q|p94`la`AEa%4Yb=?sHW7q%kfo8tH~|3nPm4zGk)$+o!9j>JFp%gd*JR$qPNr$26Zxlrbxa&%>QHL+UV zlJ__KND4MY=>Ch2PXnRbXI9SKKEHB)O9>zVeKPSX8WwuhwGJD9x zsN%fF5E?G%#!ODn8Z6loC*&Tr#R}9()O{ucU9p+(VbN+UGycjxWyRnXY-Z4ODuY@^xoK?d_!;v-*sJ;`ii zWIncAi%WM|R@T*Dg_f(+% z{y5Dd3`^BA%{hS0X6jL@3`i9H2V8GH(1dlfE=tQXb$T~qkaoCehKgB*RP(fanyu=( z8!61Rauw9!g(A_8C~k#BSej2WO(`CazyWazIwu0z)-0A;vZD@HkF%{(Y`ZJam{JcY zBg{o1^`+{46P+oYpfsiok@`M2zbY+ZWmnw?%f{)7e11W7{LNa?5j2bqTz~Cy4x)?d zp8VCthsab)_{!Lj3SjE|nEHhqWdv25sTMGGRY$sXE3Yx+KsYLvi)0RGsNet{^y^TQ z!jW09NCn-XGfamM(XMSH{B9Ef&r`SGQvJ}jOrVM(2 zt>y-=*zSnsUOPSulHY)bJcSNoRxgU3u*Ia^Gh}xU+P(XCBq8Qo`c5N^x>FAl4}1@9 zY{bWwCZ9;jRUPVu2I>*|*B5B$3a$hJXzv@?3HZ9@Wf@kC_P@x0`hU|k zzSv2iXy50EmwN4B{Pxt!)Y_Tt;NX*B?Dpi!N$>t&g<_R?mGkbB$^!8J9^_kSa-1AuK-<0~-&TdHumwXLh7ZcpY+^MsgYjph#iQm@+;>WJkZa=T@3-=AQA{S{FD+=yoaffC?}(2 zZzDjdAo7Km^FMj#d5ChS4|Dyt9BT0JeirX;2=E3aU5SRDQX)$Bt;O$ryCG2ys^8u< Z{?55ZfO1f}Mj9bXg_|mOBET_A{0I9Z@k{^! literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 000000000..37919322b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py @@ -0,0 +1,139 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Generator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +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 = "{} is already being built: {}".format(req.link, 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 000000000..c66ac354d --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 000000000..27c69f0d1 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 000000000..e60988d64 --- /dev/null +++ b/implement-cowsay/.venv/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( + "More than one .egg-info directory found in {}".format(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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 000000000..064811ad1 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 000000000..719d69dd8 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 000000000..c5f0492cc --- /dev/null +++ b/implement-cowsay/.venv/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 = ("Legacy build of wheel for {!r} created no files.\n").format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + "Legacy build of wheel for {!r} created more than one file.\n" + "Filenames (choosing first): {}\n" + ).format(name, names) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 000000000..90c6a58a5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,187 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: DistributionVersion + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, DistributionVersion, 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 requirements for %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. + """ + + warn_legacy_versions_and_specifiers(package_set) + + 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 _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 + + +def warn_legacy_versions_and_specifiers(package_set: PackageSet) -> None: + for project_name, package_details in package_set.items(): + if isinstance(package_details.version, LegacyVersion): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard version number." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in package_details.dependencies: + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"{project_name} {package_details.version} " + f"has a non-standard dependency specifier {dep}." + ), + replacement=( + f"to upgrade to a newer version of {project_name} " + f"or contact the author to suggest that they " + f"release a version with a conforming dependency specifiers" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 000000000..354456845 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,255 @@ +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 Version + +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: + dist_version = dist.version + if isinstance(dist_version, Version): + return f"{dist.raw_name}=={dist_version}" + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 000000000..24d6a5dd3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..691d61467b9f198daf2c465b8578789ec98e0a20 GIT binary patch literal 298 zcmXv~F-`+95IlznqDX0Y!L^aNTZOcUCMeKA15Icw=Wdl-;qzLy6Lfh4J#XLxJOX|| z%LfqYQsE=XHanwT&CcxSV9-xuoxXq2IQH+B97^oLrWe6$QYMc{BZi&z*_2&cbGg*$ zQ-@jwEYrX#86T9^WEQDa#gkf~&--^n@pU3)$%T|}$)=UuzCgt_LRe!Rmn(*A3OCC+ zOlDKKznZ}9zjpS(tUXX|HP&cCR`9b|4dg2{E6_9t+k}eEI3JyZr-0evDp;~0$pmyp uX<&;^1!5D$b{0X#DFrEW+iZImyDXRPIGSri`}QY4M?#3-ju2hfjr0#HuUaVp literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fe13bfe05c420e5776f4e306c9f643b09eafa50 GIT binary patch literal 1849 zcmZuxO>Epm6dtdC*53aln=VaD>(W-Rh^*BgP=ydEwEU?}kqDP82iI#)Hg5gLjGc6& zMJf^!RB$Nb&|W#B^nj4)Jy*DZKw>qbqEg|&%~gUb<-{9%lR(tBn&qdgHUOTHgzM zmS=`pJj#@a;3fAula@mtvuZ-I34@r_jWLq~i#xOJ&1hgoR=mtqmxgdb>@cmzk7wdw zg&j^u^?LaS^Qw`~3qs_qUa`58lZcp<6mnkk#iL+2e~J zIzWy2kj6SxEa5e#fG{kkbT(clVbWhN=^$~a@0Gcexz>)pmjrwwZm0v4UEnTP}1<+o{?YdOy|^T zgA;moTmouDZe*Bl5Mu&8XM_BWyP{?s`2?b%K+@{Y!^zX#E zW8(MqxoLSrQUPvE%X3GxjhQ0H$K<)^i|r{^G)*V8O_LRQ0U@(Yi3bsU32y=-fnqI4 zO=mYXo!u5Eyzkhd|Ia3|>(S15vy21m#FJL+G1tsC%s9i2JaOsnTb0p?X?+}D%IT(> zCV!AjleG9*L>dDHd%%IL5Z|Cp@FK!r{%!RY=q#YftE3GkfA;Cupi)r~ghvHIkRGDi zAL!&?=r*56OIh$(SDxv06X_=!6D%a8~M>W)JrFD)Ps6LfWa5RY;dOF2X6Y0m( RX^svcrL@%oM4p3F{tE%N`icMm literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63ddc2de6e99d85acb509bd4bdb7b7fba9f269bb GIT binary patch literal 33891 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 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 000000000..f67180c9e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,734 @@ +"""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, + 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 captured_stdout, 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: + from typing import Protocol + + 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, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, 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. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # 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: + # 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(self.dest_path) + ensure_dir(parent_dir) + + # 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() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + 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( + 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 = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format(wheel_path, scheme_key, record_path, 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) + + for file in files: + 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 captured_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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 000000000..956717d1e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,730 @@ +"""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 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) + + +class File: + def __init__(self, path: str, content_type: Optional[str]) -> None: + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 000000000..8de36b873 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,179 @@ +import importlib.util +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import tomli +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) + + +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 = tomli.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: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 000000000..16de903a4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,92 @@ +import collections +import logging +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__) + + +class InstallationResult: + def __init__(self, name: str) -> None: + self.name = name + + def __repr__(self) -> str: + return f"InstallationResult(name={self.name!r})" + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..881dc736daaaa1a62b63a4903365eed578f7b378 GIT binary patch literal 3775 zcmahLTWk~A_0G$0$B)<{Bn}utHkpLPJjC)^mZA;MLRKRA!P;u%c&?K%;~DRrF?rNc zBg9AOLx3tZNUN3l_yMt1Q9r7F(tSwP_QximShK9ks$Hq8{x}4Qmj3kIu_p=Hr9Fwy zoOAEF_nvd^dECDQgFXZh{ln+V?}7RoWgKX25~~RYp+zJknNd-?@nzBs@T|%fxHMPb z(|kcl3k6r&RdA=>43*(jPr;k^0?o^U>MQuuew%iwfkH4Hv}w26QV69(44Oc)=hsX+ z%p%O>cRC8Je{u94=s+Re%A(Uq_FhA>?;hJ6i^+b>`l$J#t2GdYe@ zIbIH4~w12*@e~7hu+)qh~e4%&6+c^7BEpE?YMPZ9%*m|Gfya2Tke6A^|AplAlH9=XeqFwi1v@dj3NHe=9b$>htq)TCa( zDRUMV6m4QsPn}lGGo|s=JC{zSMu*=?UC`x{iU-GZT{Til0X$2+Hkj3?jLb}G2n@fH zQkC&kamJj~wf#eT_oWQQ#Dm35_Ht$d8>ymFOi7AnVglEc0w<*;U=>r6hKe(m$6;nW zo0qV`>LF*c4RkfUfaXyx*1o|1%)1H<$~L2x(zXk1H|zuk@(J9Kw_kIt6F3qOU%x`=J+N%fH|H<=^R%RG0`k`Xv4JbEwJrv|MhkzQ=FBFL`Huw0mbrlJ zqJQf)X{_v;3wRM|Mbmc^K-Fc-T$wKmWmnn#k^7#zA;6#?1xOdHY2UN}SQ04*@}1uv zcf7$MIL(`K6j%b(hk{{+jY++v%FutB>R8@2%`CSw7HJZaQOag92A5ba zC@clVw7e&$v)HavmWP1p{#>qW_k^l6dov zo=4#mPvYBu{@w~=BBM;L|G;wp@oN9^KaW-Vk1zFKti*a>aC8P*F2yd?J5ULC*ZD|r zZ!O%p9PX}$yKAwXwXI$BzjH@TJXYJ8s%`77hfrkKbL5FcSGJ*8@13K|17{u%oT@(`dcUvukf)K2iDL34|pop z^$hXBwy#>>xbws1)cJ?0^Y)&5su}Qj@tc02KVjR4ck`cg90mH*q%bV{Kkac-dbfBo?*1%J!*v0p3vF32dIXbBfRcOHvfkhD5eeM9ZhekHeeR4m3i`+4{rk zrRS~2W9)5m4kl=QHU0^x&M^%01&V%wTKJ#PixcE*1JoWzQL literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..099b335eae617ebb32531bae3042161cb1233c95 GIT binary patch literal 21614 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d85634ebfa1090f90e75fe40f8a8ccddb1d6b99 GIT binary patch literal 21493 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�jXt0vsD;fa;RJU_M@X8@6` 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 OoLBe{w&rt{!v6&*HF41Z literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22f582acd616582002af45716f71bf97e9f6a12f GIT binary patch literal 38446 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 RKX3tmDk}cm3LD#d{vSsB5d{DM literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73d9ffd6287beb5d350be07a0731d9d7c4a2c041 GIT binary patch literal 7250 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 000000000..7e2d0e5b8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,576 @@ +"""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 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 = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return 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( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + 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, "") + 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 + + +class RequirementParts: + def __init__( + self, + requirement: Optional[Requirement], + link: Optional[Link], + markers: Optional[Marker], + extras: Set[str], + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +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] = Requirement(name) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + 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: + req = get_requirement(req_as_string) + except InvalidRequirement: + 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}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith("]"): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + 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: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 000000000..1ef3d5ef6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,554 @@ +""" +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, + 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.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + from pip._internal.index.package_finder import PackageFinder + +__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) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> 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 + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + 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 = get_url_scheme(url) + + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 000000000..a65611c32 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,923 @@ +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 safe_extra +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 "<{} object: {} editable={!r}>".format( + self.__class__.__name__, str(self), self.editable + ) + + 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.lru_cache() # use cached_property in python 3.8+ + 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}) + # TODO: Remove these two variants when packaging is upgraded to + # support the marker comparison logic specified in PEP 685. + or self.markers.evaluate({"extra": safe_extra(extra)}) + or self.markers.evaluate({"extra": canonicalize_name(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 = 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 = 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: + 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="24.2", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 000000000..bf36114e8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,119 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.specifiers import LegacySpecifier +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import LegacyVersion + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.deprecation import deprecated + +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 + ] + + def warn_legacy_versions_and_specifiers(self) -> None: + for req in self.requirements_to_install: + version = req.get_dist().version + if isinstance(version, LegacyVersion): + deprecated( + reason=( + f"pip has selected the non standard version {version} " + f"of {req}. In the future this version will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) + for dep in req.get_dist().iter_dependencies(): + if any(isinstance(spec, LegacySpecifier) for spec in dep.specifier): + deprecated( + reason=( + f"pip has selected {req} {version} which has non " + f"standard dependency specifier {dep}. " + f"In the future this version of {req} will be " + f"ignored as it isn't standard compliant." + ), + replacement=( + "set or update constraints to select another version " + "or contact the package author to fix the version number" + ), + issue=12063, + gone_in="24.1", + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 000000000..707fde1b2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,649 @@ +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 UninstallationError +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 UninstallationError, + 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: + msg = f"Cannot uninstall {dist}, RECORD file not found." + installer = dist.installer + if not installer or installer == "pip": + dep = f"{dist.raw_name}=={dist.version}" + msg += ( + " You might be able to recover from this via: " + f"'pip install --force-reinstall --no-deps {dep}'." + ) + else: + msg += f" Hint: The package was installed by {installer}." + raise UninstallationError(msg) + + 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.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 UninstallationError( + "Cannot uninstall {!r}. 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.".format( + dist.raw_name, + ) + ) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3db01cfe810595674ca3ccb93e38d492342d80a9 GIT binary patch literal 229 zcmX@j%ge<81VYpdX)^SCU$kmzbkplvY!O5bd6?on36B*u=z0MjMQitdMsCl2DN@DKbOEbjaWxU9tmwS+)I9JrY*QY22Pn%zZ2;gFK1`c-vL&Ffb+&t_+93~m0& z(|FTh>DfmZL-LE$RhhOevQnp4V*^h9l?gF-Hk9w!d3#>`ZbnHySEAz=UJFExSqd} zNrl^YpxcWDq>w4h&V3f%1=XfPQ*$O@w2okp0rPppd?VsW%_2e(Qj1J*wjCs8`IX29 z2jj`^wiP*;bqAG(t7k5U67GP^lRgMt6?v`#0bQvV+Z|}%3uLb-a-kp!?sotZsT~2T zC$hFVWrHi-nc~qRx;>^iE~P!5tbg)-zO~Qw!d9+sq(xHR5~8a@w zlT@o-uYY{tb@CKEwF_yS?R0W)GgjAoEpOxZYu?=}8{W-4>LsxDTb?JGzh+WCDM z4!mX`vc8wZEw31;PM)1_o;~NuSixEmw(o^IAiW|kydcgL2<(L?NQNFY#%rM}&0?S{ zWv&mq$3EAoImyl-&(SQp2ke8xj-Glxw=#5BMwnpqW;c-7xye9K^8W}W=J1?2imqXZ zuLzTr7xw4a&5IkguhH0OEv9vrq z`QyRT*+Y|}Uv8D_>+125jqzcPlE+sk$=Tst{h<2o2ihu`mL<0uN3^2`1rCFt85#4k z5$R=YW%E-ju|ZvWrYeoOFMat8HmSUjHl-5!#D9Os+amABDDe1h%k*Ique|R^cYUnc zMX`c8ntb^)xR*!-ds@+IK_i`(fk4(7N#6G)@{r QcH-|^m7o5Lp(|_u0~2UI00000 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 000000000..42dade18c --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7d47353bcf167fd0156972a19a1bb3d7ed797eb GIT binary patch literal 236 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 000000000..5ddb848a9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,598 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + InstallationError, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +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.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils import compatibility_tags +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> 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( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.raw_name, version, requires_python + ) + ) + + +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( + "Double requirement given: {} (already in {}, name={!r})".format( + install_req, existing_req, install_req.name + ) + ) + + # 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. + 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 + 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. + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e45f1529b213990e4b0229ce9ea749c62d9cadce GIT binary patch literal 240 zcmX@j%ge<81VYpdX)^SCU$kmzbkplvYiu0V6~41Ovk$MmySCTHj|A3%I4ntafdrHocbh07klGl86Sr&&o6XL3yk_>n zopHi$9c0m{H7ym1)Ye8&VWdjf4Hc1ERjJC4^jFjNN7p!Q+!3g#54HWb#7MOH)pPFb z%+79XN<)!4+CBHqx#vFS-1GS6&Tm>;nh0ENKmB#)z7QdQ#vAi;RV!-_fsi>O6IoD5 zR!9h0N5YYHCY)I@A!en7Bw(9Eab?{JH?KPtPu838^17%rWqk=>wmH$v?reQz zfkc4cyOdzIHPOoJZlx{To@f^c6{%D9bi)FuleS_x?m(IdQHlC!bM>x6_EN9hLX+MO5A^MUzU|Prm&=7f z&SS}KDt1IV|AE6qB;9+6(SnxA=TeF;9hoWsLpqv+`-q@7 zj}~Y;GoGOgdceJZB+s%bB~zmENGeMs4!vcVo=ByOW0a}TMR!*#&>{|Ja!>0)1*n>& z&rD@brWBgPQQ8jYR4t__k0Y1Stig3XoKh#Ks(TNla&ksaX;gO?SbmbGHQhy@)mTc^ zU5si|ESIk81s{q?@OQ$0Z3M_1nHE&XG#P~*pML*R*iH+HRJoq2DWD4bu*w z&hLw(BqEMn7j|41zIGH>PGZy0ef6Wt*e2~S^sKV$K0Lg?tJzBh5lFK zD{Xhp46XV*W}i5ln)jVOy|BOR>o1G_YtV(Hk(igKT3LG@DszOAgdmfILl(dh98{E@ zVE8U>2vvyVTPE<${Grq121 zhg*ccxJQ#vHeRf=_NePioUq(K=dH<_N;vJPDF*tR>BKe-aJ{zMYE>5AbeQ2}+EG*7 zl5^w`hEI)6san-#L0gh8qA9XFp}V2fFxJq3z?dRf-;M;0$qXxo(V)t+NmNcLWYet0 zjQUA*J1?MvG) z9bMeMa@Wx1qbq^YvS;*0yFxqQb~OtXyIoC_Ny`) z2I+OwZ%SJ>sf))Ujy8DOlEAjY40dw_Z$rTwyv<;4L+PDBX2`pN_Ol1)M$V0_1a5yP zF#H2;@!(rSOG7K$_Q2iS2QP(w+4GB@mBHb%XV@@RDX&dXR%feLY6^ox)G18REQOhg zT6JlbT1E*dX`RPj-xfRi2r$y-BT+hQhwrN_NMBi_? z)|amN+G$b4q{%Ocr_O1y<|7RC9`Wi;88w6WAeW}h4=e;7+F>(2Qn_J|8RjrunnJ|F zeJCRFO=tH3zd=^T4Z+A;jZN-k60io?LYvKps=T{ERDA{rnnL&d)+>Fxt^{_!+um1h z?pqCYp=B%_eIxmLayhhn*1Ou;G1q&pcYf-%>6fQ3-ZwwJa@+pp*8Q`t)nI6@>0HyS zwCW4KH1N%V)lm1`(7B<7jyHNc}g(yk)ZpM0BzC}NereDr|yW}&8>nx03%o9<_wRU*S&)$Xbw?YytLD{=NUDr zrnHO-NLNlCFGdHId^)A5@u($^i&VRS{PXYRpEKm0zOhTYf3ST~zHs>JmiTht*uQvI z|5|6aaOem`dS8K2MimO^O9g|(aI8B4@^XXJJ?VT-19YP5?vn;^UUC>l%U6t{A$-gT z^nr$@m3lT__HJC`J|M8b_k960w^!3EePfq*|90S416TUSuG~7d+TK<1kYMPg=U#a3 zYM_5P(7#Z;x^2($wmp~Ra-e@DFjV#oaSMz%I6^XfDu^%zv12l+Hzku<4qc(%oJ>A5 zl~RnB8YEz7oeTp9>j$Fy(n?BIvlM`=%+RyAXS2Jpb}tfKI>UU$4gpyrd<9$sMqWh3 z(FuQb0mvCraY$0{YWLQP6U*3rMj3zTviP$+ufOkYS(Bix;wP@wYYsu$FRVGCTH#ed zQdo6JM}+d`ScPEa!tga-R>hE2@d(l*!u%a;1j~xcBkktmP+k~bBT!UAZfRIp?5z+i zFNQwkrLlNiavJ{DW%|&edm&TB6sxMyHN*iw&z2e6BpWDa*)oNzmKtv(bZ$XC)q&z!vDiYTAHkGDC`H=0_;-57{*5C^4iC2W^G&8qo67F7?MVPi}=K) zpk2?%Ic(Ff{|5c?^l)Qxg+7L3puf(MqOjx`ImCwGhCK*G<3h<4;@6%cy`x1<_ z{@w(uCl630!He>&w8_4<##TO10!PF5+L1^LdkAkHMuPjPd%%balxanVFJKHctUKXt zpB=$lo=q@^=z#+!fEwm1VNYQDSCH_{#Nmw$^9a_E#Nn@|fSe(#QcK0*mg4idYY@}p zm=*k-QEB5fmlQvnzDA&^HbJct6r>JJ22flKVbupQhY$XVUUN5i6*jTcC|EKZgTde+%cth2SekOY#9BDd2AJ#yjv8S|P;V-}n1Ug@ zgIC>~-f?ewH*nj6xRANp|G;wp11o{SvS$!bu3_XLX(H<$Q$I`lw#6K(0x z%ej~UB^%dgaUn&Tur|@mxh>R>XDLR?wAupv;7OoC+G3p8av6RIm1u*s+Ctl_z3>Ps zR86!#sCN{b!9X#B-+Y3tV8p&L!D4u}y!w;GXAF3@xNP+`W2^dqlU_rQR?}%1(vVtB zwd)2C?%kzM%aiM}CxWZ`?73&fzqjn!dy`=nz|QYC&Ym@W{_k>UZA=paeMXs6Mhjgp zbMl~B^4AoMR+P0V)<~P5PO+H3HeSI&n61=WTS4`W=p?YK`ROm1pFZ6Z*oloapf^Lx z<_8XnLS?(H)$y_W1dM z)mu(ww234$P`_H2to}YspEkZZtzTmu&58n7VOfC0J8CYLl&334b>IdR$ zi5lPC_{Soa#5t#saC_T?H9RUYOozjF#G3}Fst4-VJ%h%p&__K@k2( z;=d#DzmmQ0k^BEh_Wg|vzK6e^@3-AD?^)Cb^_e3cg$v^Bi@sCl~(zea#?-~TtA4rZtT literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49cde5e73c169d0e8635e0c6d5bc987415caaa08 GIT binary patch literal 30430 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 G@c#ky-#u;s literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd40e83c6f579513813a9da9b56f5e6fc607bbc4 GIT binary patch literal 32146 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%0AsblP=)F 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6951c6283e32c8a1caf7291a3ccd25d44eee875 GIT binary patch literal 4967 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 bbcpYo?OEfXS^FNpo$tGU@*f;DF3x`f;Gw$G literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a3348eb555a81c5d784d9f3d8591a8640fea326 GIT binary patch literal 11461 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 str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +class Constraint: + def __init__( + self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] + ) -> None: + self.specifier = specifier + self.hashes = hashes + self.links = links + + @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) -> CandidateVersion: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 000000000..4125cda2b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,597 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, +) +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, CandidateVersion, 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[CandidateVersion] = 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() + + 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: + return hash((self.__class__, self._link)) + + 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) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return "{} {} (from {})".format( + self.name, + self.version, + 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), + ) + + 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[CandidateVersion] = 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, "{!r} != {!r} for wheel {}".format( + version, wheel_version, 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[CandidateVersion] = 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 __hash__(self) -> int: + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + 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 + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + 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) + # If any extras are requested in their non-normalized forms, keep track + # of their raw values. This is needed when we look up dependencies + # since PEP 685 has not been implemented for marker-matching, and using + # the non-normalized extra for lookup ensures the user can select a + # non-normalized extra in a package with its non-normalized form. + # TODO: Remove this attribute when packaging is upgraded to support the + # marker comparison logic specified in PEP 685. + self._unnormalized_extras = extras.difference(self.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) -> CandidateVersion: + 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 _warn_invalid_extras( + self, + requested: FrozenSet[str], + valid: FrozenSet[str], + ) -> None: + """Emit warnings for invalid extras being requested. + + This emits a warning for each requested extra that is not in the + candidate's ``Provides-Extra`` list. + """ + invalid_extras_to_warn = frozenset( + extra + for extra in requested + if extra not in valid + # If an extra is requested in an unnormalized form, skip warning + # about the normalized form being missing. + and extra in self.extras + ) + if not invalid_extras_to_warn: + return + for extra in sorted(invalid_extras_to_warn): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + def _calculate_valid_requested_extras(self) -> FrozenSet[str]: + """Get a list of valid extras requested by this candidate. + + The user (or upstream dependant) may have specified extras that the + candidate doesn't support. Any unsupported extras are dropped, and each + cause a warning to be logged here. + """ + requested_extras = self.extras.union(self._unnormalized_extras) + valid_extras = frozenset( + extra + for extra in requested_extras + if self.base.dist.is_extra_provided(extra) + ) + self._warn_invalid_extras(requested_extras, valid_extras) + return valid_extras + + 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 + + valid_extras = self._calculate_valid_requested_extras() + 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) -> CandidateVersion: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 000000000..4adeb4309 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,812 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + 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.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + MetadataInconsistent, + 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, CandidateVersion, 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: + from typing import Protocol + + 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 + ] = {} + + 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[CandidateVersion], + ) -> 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[CandidateVersion], + ) -> 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 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 + # 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 + 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, + ) -> 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(req.is_satisfied_by(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=get_supported(), + ) + + 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[CandidateVersion] = set() + yanked_versions_set: Set[CandidateVersion] = 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 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 000000000..8663097b4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,155 @@ +"""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 +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from .base import Candidate + +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 + candidate = func() + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 000000000..315fb9c89 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,255 @@ +import collections +import math +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, + ) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 000000000..12adeff7b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,80 @@ +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) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 000000000..4af4a9f25 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,166 @@ +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})" + + @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._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + @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._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + 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})" + + @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})" + + @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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 000000000..c12beef0b --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 000000000..0f64ae0e6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,248 @@ +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 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.metadata.base import DistributionVersion +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: DistributionVersion, + 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 + + try: + 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}) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c117167362349de1afcf85a25967e1dbfe961f0b GIT binary patch literal 224 zcmX@j%ge<81VYpdX)^SCU$kmzbkpT9OGg oCmtw}SrQ+wS5Wzj!zLGOgrmC{S@NL+cj zyVzY?rr;z-nnQyGhyxV04?Uzni#BkI_EhAWQ-StkS1oL?Krii~xye=zfl<``{^3KE z?WFFdD{*&r=6}uizh?h9JghQYPyg-@#^^9(f2Wu373>VQE@NFg}i6+K`oXBGJj zoDJx~x7pdCP*w-KOxsUA^ftTEc|AKI238^e;Y;kkp|t1pfj;U%eHY{o>AP`Pn}Nun z_Q?QaGYzZi8@A=~ifcDkYCg9w3YRatcAc+ku2!{UzPRMaRJBwSp5V(pdd(HwvVHC~ z9LM&A&V8F#1aHuA&G2i6#m_s26Du2*FI-DA&&POM1~}E4Fdfp<6Zfe4^L_fylXPKe z6;tqw!qRQmuvWMw)`Y88ZO0HEx0j*s!b;f{p51V(!aFa`up2(FX%~qcBHFxsr)bU6 zx#4?|?;9{p7Y;NCtJ>sM+Y&Ev&#nvF4+9gexjdzT#>CTaQAj5QIpzrnxI3N?X^gCI{ps#;*99VbO*( zY|&||pu`3}s9*Ni$gu>8=6QD2&>)ZNcC}H*#xx2QzHFGld(y87K342-j73NZu)`+c zd0Oi(_1pl@_^u(tEefKl+0e-b3KsH`Y1EC52C%Dg-yT_xkcvt>qr7hG#&Q!+A-Cl; zDyHGpqFgsfbfw{g(xXXk}8!I>p2X%(cG+)LZ7NFbOh;g$}NMzp=! zS@LQcY)4|X0fSz{QfaEY9hWxj`Ea}e>>b-}r?YhFwi76UXVbixpDCS56w*9X_f#m5pwypKisnM`Rmzfj_!C?s;FMV_DGiQFPToyn!5JpKLoLb_Pw`GT66o6ly_ zn9Jmn*@aXlcZ#0`UoKzb+00y~1fiuoCxsnRnKbxj_*}Y>oQ34X$xJp=T8yeQnNp5q z&g2U`!RHf&QYN{OO%(Y2LSa5%OhbJNVsn|?OaWTbbLm_u2CbOm=~wZ>i?fMrmQ<;U z1z2Ao`*<=xzgWnenl16!d^VNF zTgT7LrfG`wCGejtW%4=NMlzo(74RCxE(@g|>zPb39p#BarU+BjnL-}o2~Kc8I)s2P zmu^cTs3kx>kAQ>#TfnBfw(wLsk%g?H3T9gD635ifsKV!}okB0mJ+&74ZN+fA#xAo< ziu<&J=W0KdBxPti-6pYz6a($0d5^q5yl}F6{{tx3w1`+qyMIC`% zv*V`>f3{JHCl_bp#Z)prhjM0$<0acRy|__#OhNVHc-3C>v}Qbpx_dEh8kM-yM6z4o zihc8ixM%p{xT94sXe+{tqgBLvts>s=4ah0CJ3v`>Ag9?HDqFTyF*WOgOTFM6 zuCP1dy?+W%UG=WL@xdD(RyRhcZjMad3{7oek?jC!7bYY~OBh^ZJ`u=kHP9VxKUdKp zAHMwE-5I~vpD(i;9qulufK<`m0(2_JwP*-a=NC28&{5^AcC*qrl`Iqq+eP;gF0~6} zDbY_)PlL|$C!54rmMoJK6Oo8qJ@?v|6P=q_w(W^1pQvc=#A{uK9g|BZdcep!ux+5`DyXzBfmWKvqQg1{U-lWek1z5jU&?=;S)DQCmsc$SE#1IPlf8M z3zQz99Eb72_20|jO}Vy%_9p|(>q{9O^X1O`Bn2}c=Q5flmrR0oekE`s^lH6>2Qm?5 zNbtJWY&Tl2@r6S6OC{HQ-+3_}7nd}ub1`U)Lm37CL_0$#zJfy9vL4{$E_nqA4>_o~ z@{mAqOWbA2l>yh<)4wVAFj!v3&wB>9D{S)_wrAh_)9*}QKeiEm{zK(fc`}le zn#S?l`WtSinX)75P`o-3_&QvXVy|TwdtJG#tdg4^y0*K9`@#^rj1Lz*c$ht|Om<^% zyIgMTS%=go(4f5c!e!+r$~8q{@0|{@W?-Ccm)v8_4Jm99duayN*rnhiTT^}=TvH+; ztqfo#%CFcsiMH!44r0DxHE?>uDOuybs~K2WL3mUzcqW3O&)Kr_u7Ve_B)R0NcT$#C zzO>Y>uAO4DqsUSSbmyfBy-NOnm)Em&eP^wNi73#hjnclH{D8xOf31d7HO|kmSWGU^ zVU<1}v??kEcU(~wLY~&?fZIcjK0P$k!>1Wqo6w&G#1-@yiJ@*b`z%|r<$E_jsXQ6< zu?Ml*4#P6b_|lSImC7%|k@7hk(;n6#z&t6YnFI;V2d-H=gH%2Ev{`PMNZoG7B^gCBWn*;2rkv8>TK&|5KUG?rT z5&tkCNS{wbw(|nTRA*T)$eA{j@dciWQu8;Bx9i zvc1SkCn5NV$$BPXxnl(e!HWP!t*a=3Yn1%_`c2W}|`u2wgc!*>IU^0Fj&c2f@T4en9K Mx1M`W8Ik(`174Ecu>b%7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5b393931e571b4e4c702c3afd1be311ad0b6654 GIT binary patch literal 1895 zcmZux&u<$=6rTNIud{Y)D20YnDI>UKrDV5IDd_=_nxsvUT32eI0$;Wp&&1huy=!L2 zNo{h-AqTiXk&x0u4iVx2R7gD`{sy=-EvRUP!~rh7rE(;so_KH9>o!%Mj6b*}IS*rEV~Tmsp7#%Q_p`((5Cv%uKLmSG6j=ALlx;j9Pw=(;#X# z{jh18^L*J4c}yGWR=UmwZ3JE%)8$A|xx(oUjOM~#<6 zC{1-k{Z{#@=#vfYJLOAdkyuKK7hE+l1{bvSM2~r}ED$L%f(khq>!7fXr=K}1QHwjW z$6HYFO5`l~@=|BXnfv6Tvp7HJTuI+*>cc1sV#jZ_1K#4HoN7etvDbBg5aF5=_)AW^ z3tR}#+Hb$(#J=QHZLe|DYx3A>`)$YdL&-(x1x`o$kO#S9x4VfkK)3hmq4&sX_8Q)F z9MmTHvwHG#`PHp2ZtWPmuiURr@5%?&>F?L}s?+yN(|rgbmXVZPH}qQEbraKdGm?Q{ zaotZlUNG1(T$e=+Sk_`G1a^&h8PpF%97q2pR7S4wUyRh+B2QGUP}(<@!pxns`vlBx zoSJ)$)cnE@a4}1Q-zPdAD9YeA6i~So!NF7emq2Y3Iox~pv@)L!WEG=dkPUKo@Xg%; z8SvqIvj8df^RpJ3q)Q!1c^G#D^jg#r^bp8{4hI5feB{j11=1odKQRXRl96FgT8elb z_G3JrW=NgJcvPow1Jx$^w_N>ZbZ7n1_?f-&GxttB9G`wzp1H4Q*c|F!JT1inss20` zt3#T@#y})Sr;^vNJcr&;Don|-QV7gJt#|txZ~8HC@(5h8h4c0X5NO)-uqp* z{?f~j^szmCZ0F>z^@l#0=CRb2u{EnKu=%pv6lJ#!%*vVtUm-m_DPB$|b=EB>aXDoJ zMep#%o|fLty77JS7VIK_;`5;PHAPXLs0BsuA0tZjZ*qFSM9QO^#zE0gW^ONR*S@YD b5ODWTsLHw9bNd9$ohyAb2d1G+rFZ@xEAq~o literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fccc9ce571eb7a79c8763d2772c264091e77b950 GIT binary patch literal 2439 zcma)8O>7fK6y9C0z4mS#yP-fyps#pDVNw7cu_GmMQsn8H zXh%!2NeTK<6gOiiJ}sKk4RJDIcCnc_lG$v`Ox%c0D*u|5VK%gkArZxoL0s^lfQMvN z$Ry|gk|zolQ4QBbY6a^aQT+l^XOUyN7@4Z>d8UPlT5`>@ja1)NiOVc7^2^v!XLY-b zh^k{G8*a(deQOHLrd`a8j55Z^@m0_A!U$73L0K6>BGqzySh8G4h4A1PqYAcsq;~d{ ziJk|~d90gd-L|U(>I_1j<>Z-X9}%CZo=(VstUIQP;KV+&Q%&r8U;|$DX&+$~HmhxC za7@)G=uRG)S@{o|i?IwJh*vD)gYNQd-G`%>=#2vjuI}h16vV=-8a%aciwHUbzt(wZ z?sERlT2W|Q>`^ty<744bdu5!<9fJDL7E?fR*u_AT(!K3UeQV#;jR zr0JOsL$k`xxFzjG4c zfH*e#P{47p!qjwLzOH2r*O|8RT1LY39zl{Z!PI@75+M*=5{OV?g&=AXIw2Na%L!yO z=RpNf+lLO)ZPI)e8TQev}w-S136$I1!1xIov-Ec`Rq#TP*L*b*a_%{5= z*U&6-FKC8OHk6a~v#Vb|xxA@dS-i9@C2m%hDmNFF7Vb=JO1;lhhnAIQj62%5c=czg zd%O4e{j>MZ-XFL(Q2%C4+UWgsIrTzG-X6L&w56PAC?{6j4JErSW^osUIG7wN;1DFDAB9e%OA1Tj;`70VgLDKO7O zg9xdTAl`W#7&u{qQu}br2)p1H20ZK((%&$6Lzs^3!gNsiP&mxUW3dBA zo(BMTfc-B3_wHEWUz4sVOIM`EQ{OedctDx?lo3pd-JRa9?v#)j%k%Rv4JnhxF#W8J zP5}Ni$w8u2wtXus6-eaZg?Uj!zLAOJURcKO(k84h`uOE`DlEl@VHL8HixSVaeEb%5 zDzW-OUOUOa5(~rEZ*QK1^gag!_rul?;YTcJ_9Z?2&Q|(NBYmb`S?hm#aWnnJdg|JG z{Mw7;;jLtUBMFpPJN)$YX7cLdXooD7XVQDm(?^!)mQzq`T|KvlZw-GZ+?Vgk8^D*@ zdZDpfR2hCE(;Y~;oaq|59J>U&e-QJl^gD{_qZ%mi;%9T=_a4*NAw(uZe9RvDK%9b) zNl1D|V|t^9P;u0hX75#eIQ(<)2_AqUr6{3^X-0USe<{Rxv6bd{`4>+9l{@-7cfJ|p z`HxpdnjEP5NQJ$G*eIdT6FaCxX54SSH_zh)ekO)dTp@9#?77tudNtO R4piNIF!;UoC+)Jc{R4taFRcIo literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afb45174e8090a2be812541767f2ff2fcd94b5fe GIT binary patch literal 2242 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 D8p=8t literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6fb72da36f471f0701dab624f842adc27885489d GIT binary patch literal 713 zcmZuvy>HV%6uYx}J8C6TLCWMJt8 zTRV0HbzwsM4X}VZAe|VHnAieg>cl&f2nq3|_kQm^-+S-(?);%%UqK)j-o9r)0l(>B zDYb<&zYfkJ3Q-S*I5cA1!=Xuy&;qqVE7W{i3#-qqo>dr)+Fomu3wIpR)XiAtj{Q{T zuHUcf^ zbBH9^KeA&iy}!7lPyZt)i+JCZc=_pnwG%YK6XRqtd*7Ov6Kl7F&^Bt|t%j*;dI`ON zvb3jc$$@jj7P>-M+UV&*U$3$UY(&#sCtNLO&q%}*O5`3*SUQL}dC26WVV|_0Y?AFx zn{;_NjA`>R=W$M0lEpNkscZ&(ocjf7L9-EwS)XKujCgvdb?Y|CnWW9k4|e?l%?aE* z@mMOUNd1@$C4)Xo#;vSSYb9Nee=L!A$C=)m+s}FmW-CrYd z9@4@Ab5^^Tlxsc^YY^(!CjPVZxV{2YPcy(5>@a3amh5%k&E#XbOgm;}^I$3u7 E4eEEVc>n+a literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1a7dfc4f9047c6299bc588ff46e5cd42caecddcd GIT binary patch literal 4215 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9c0e96aeb330a534507834427d9ab7e7f35f2da GIT binary patch literal 1193 zcmZ8f&2Jk;6rb5I+naiw7^P~}%QoqOMar(4R+Ug&P#YW)2?9!72z%MCz2kV={nG3@ zsaGxdzyZX?aA}S`f_mwRzX1VKnj`=HvUnO!!u+?L+nId+=o;l{Paz9atl5ss#V1=W7!qec^8mV?9 zZ}w}+*7|csJv+HdeUkQLqSLSwvA|7f6q@RD$Up|p)!3My6l)j4H zMGvR8hxtryan><;INjgFcX9f1>Sz}++!y+yA!YAw7B}im)`Mnt^qahnn>tN&S8qpQ zLOsHWr@OEZb(gifbeHHI=)U=!U*23bM8?m}Wk1>@EU#bNTv=QHta0RRhQKPEA;KII z_=!l@Ukt2n6c8)TNI=7#Ze)E()3sj9TKQtt+WKI{`Z)4>K3Qr;k)K#JfN2IKOqbfx zUgGvGbC-m>mQPz&+)ukvc)>isY$Y)0rPyuXc6Uf(#Wc1Y8m5GWu5a~H3g_^$`KL+D zxS!W(;!NM;@Bo{G%1**c-Ub+;r)qt8@jG*WZls?1Q$0IU&puHX2P@-}`iG{EO8U6= z)_7+20JvzwsO2Tc@uIfl9< M>cP2xxhiV@A2h~7LI3~& literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b38838ac90508b8cff79094f81716c334a4f9772 GIT binary patch literal 2371 zcmb7`O>7fK6o6-Tz4qFhkdW935NNjiW`TJ5IaE+unuhR?sR*DFwY4_(I^M+gu4cvr zM~;+Ml}e=^s4A5pRU$}8r9$elhu(5+F9stKmP(~6m)=~G14=J_v-YMqZ?nNmh*c!t0lE@4gni*KLM1Xn)qFv~6& zIaj(^baJK}Bql48LW)oDn*fRk&te?JO~kN2aKE8k!!&{s<8!>`+lP^crw(24R;21! z&KgarS4~1;N0l;S6~^|eHc=CH!Bnk`TCkZ~q+qR2jl=midrrxQQ?l-qOxcADsBX{N zqpakZ^ar%a&$3+Bvv%Ip*_4@wm9w^f!eS?jqx#^LTmbD89*PPz)S+ys27<9 z>v-piJ0&-|)(HvFfP(PQD2N&KT-jAsw1>*+NBt+O{iiE|(}a`L6axtiUJQN)1!4fQ z-o|-!R<$&q=tGF$k`P9WdwOl0Z@H?a#rutDPNOoK0go~o53ia8T|c59!EV!dS||&{ zXd7Z4;CwdYKgnxsov&rY?TCmNT|p&b5?vFoph>I+rr!I2Sb2k#)RoINID)F3sfT@4 zup30!G~S4M+?6J+!odRxw{vhfc_MKsdG^%%gUQQ77lu!rPiV3$(h_xLCugvXP4cc_ zQ#a%jBT*-3F?Zbn1N=sd%p4-bCT{5ba9xR9Hgd(fQ4`(vu|hG)srAp~;-njDz({#G zR8=Jkyh+FxyhlwCGia#=$;ubyPs=wZABNsoXzQ#AvK0NTXUpxww+>f!zFqA(Qjs?- zC_NQr+d^mev)GQuu{{rBd#bViFC*9S^|xv=YU!Lwyj%*Q)}HT9+#RVX`(7YHiv9s> zN$_5#U9i))-2)=}u@l6+7#-Lo&TqsZoABZJ#=~bBl$$6F`35o!;z1u@0R)B`EiJ5I zfy1bb*Fpy%K;tU__?`%rh2#oo0`z=zrbX7~&nkqGDO} zuv`%CfYG8?4)1_l5`di1WKKm+|nxVR8Nt2H8Y0zkHA4?Vzkx zh#E-@*e*k*gz_U!eRB~~4YSp>2^ktnfT^;q*<6bv5q@cYnKD$yDRbiKF9%k z{mP}OlUXa3g#|N4F~|7YX5L{Xf3~-nRZvp~t?!ky?TMnJW(=qdac>j~8zLI~23PXx zgND75pkcSQsa{Z?o9oeZWj_y*y4biiD~zd1Juyg?--{2~b_hVa|;4p7fx9yfdw!V7`7fS2Qz$|;bJ=_J4j4eK_4VNHxexE9 e?tHw6K&^d(Be?Izj#+Vbcvk*eUqaCJw*42$MNRVn literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c672addce965fa852e349bf01a9bd3347255d94d GIT binary patch literal 7583 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5fe914ccb80657e12eef062ed8a362693f10cd57 GIT binary patch literal 13586 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 Dj^Gu) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb070d3225855850148980eee9c7482e71f8bd65 GIT binary patch literal 2741 zcmc&#O-vnC6u$GzABPpH7kw0CjtJ?GprbAImm z&JT@^bp%%H!|$yvnULR*i5KwUDxZgKgHVztRG^|Qqy^X|Tg*vmDJQ4poRU@qB9beF z%IkzG55&kYtroDd~bcRHZd@Dow1* z=^CoC#GFWL;ap4W;Fikj=44tAeEmMY0r-Y}d?WCU`}ii{oA&WZ;FBTW%$k|Plz9=p zD@K2ZlS*6QMoXb4)f%+F#|oECkI@M?mp3_^vOcw(eAfdGB8KKIVzsQ~Gj8w@bZdfkl z%NmdkvLdVy15VLe5rGq8u0Xbg>6FM5AmFt?pl-6q>^Y9_h}Q%0@Kc(mJzdqaZjR~x zGRr}^v#x%{@~JuNoqt8rE=u<9TwAtVd*R?&}%H?gAV~#(VaX<0Qf!WPr}{4P*J# zVR;{l)s5(LE08tv_+odoBjV9UwuLCv50P*MnjIMUC4|fj$ z51{p-&{OGSPxY&PJOfaVc)k!%QutQ9R)oW(&-S|<)LEY8c)samSU3QJrfJu|7Na+# z5w=PHc0TWeU&KQp#JRAmjzZ-Mn)IU4Fc5^euFbxC?Yli=rJk`z$#YNIdWsD_za~5G z(%sI1Qs=<^j@{ISQtHA^a=e%r54#MeEr6+G=HN{Pb%p_B0cH)H8w}(2qG?w&HHJam z42WwD!?RuAgYqFpas>&(Y#_ma;T?FAXJJx>*u}BuxrPK^B*y}C%yJmnR@CTGs5K}> zf)msG7RWmJNxt+;OLwtnq}Y6R?b@C!DnpwSdjz)a_TstsOT$wkQ~dCwG79$+f-I67H+?d?$b-I>2o7v?w& zD^R5#}+>!5erB0Wi$V)5LgGlDGH>$Z!&Q-9YvvK@k2B1wk&W WL}>n*^p{Bg-)gsT@lOII{J=jWVm!zI literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2c7fc809a9d7f0da413de574f6a98d235d8f50c GIT binary patch literal 2612 zcmai0O>7fK6rS~O{F69@1V{vQ5?X-)+d#x$geuWcN+lW)$)%>LJ=q=G8}`SY87DXb zDF+Tcf>eo|Dv&DCiXK|2s&eePy%@O?XlYfdR;qfl8q@=)z8UX2DMIZkp5Hfb-uvEr z-{gn>{v?8L=-cnjGkpmCCMUrc^9LJ$!{9D5kfB+q*zL8Vrskny2>Or}wj;%e9W6%f zSTSbDi*ZfLg{?k2QB2s$Vp7c`R?1En(;5mP8Zn}@|6!#=gtgCPJ@KjtQRdLF2iu$OP_zn@=ijQ+2|K9UN6?P2sb6GACqEuv@{V zBRFQX&L{`yO{WTayV{fjX_8GAU6!*=N3}Y01ASPy7)$|s572xykITHt^IIcxb!u|H zoDFR025AbH=U9W5|I?lG%rP$t z7;{MQMb~t^uubY-m<&9!MktWZF{ zT5}8UnBqcXp)mda`NHhE>B4)i(XeQ4&UGzbFl`8@#3!e_%bYX|5C&(dV3`YruKvmV z(PIT}3Yx1E{TiuKUZ|V(0%U}s49c|75GLs9Zo+-}dea+Gu`Ru1JCkHG06%^KnpM=< zjrw-B;(MQEw*Q0=KE@{>;gjo`Honk`?D>6U_uctB^YdceWXlu`jR_a76a$*B?ArmMMWi>Bulj|I+-%G;XB>)o)(tDK)g0ikvZSR7? zU9?%%n-vUIrL7#Fb{#n0&;?}mrf*j^xdyunixjq(O;N)-(Q9xOlck;2*ly^!ycRQg zkC&-Z5uhQlW|E2DkU|+~R?+i8l-_xJrJb5+MJCvoJQAgnzy4)=kC$p7u+?_aW2FD# z9?b}WpVEK$Ud2NJSqIFc80H*!0&qZ{0T>P@Y{3N6SQB^gm9({Cf z749~ePI=pq>b5-~{|Ru2A<%PUYZ{be2NIDTDJm0e3*9d~Zt9-*Oqda-&46 z)skg8*ZkEk_pD^Det0%lB)OF%xzqXF{2@;(Wur_!5=`>H7h)6`pt0aZl{b(`ufg)x zL`rf}p(TYdllgN*?jL{#a%c#p2S3StHuPY}{T;0Xr`IRHi?+wlKOVpMX#8S(e5Rec z)QVhE$(7yZB@{A}0lc{7R;x03CqR!E6V1Au$RuHsQkZgRDUQ0Gdu%)3m2(@F^O2iW0w|qiuBb4|M!z zH1+GyXlv}y=d`?{d!&!UNqD6Dt#C^WJ<`dAx&qz$jl{-}+2LUC>1y>JIX_j&3s*=>YTXhN-b Uh7;Ol?Y7=QvR`wbt6n+s5Bd4WM*si- literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12fb6053f810092ebb2b06674462d264d829e510 GIT binary patch literal 4579 zcmaJ_O>7&-72YM65YL56v(OX%`E@arYr62%+7mn z=6&zIZ&vzqI-QWma7UJ;=aL~AvL!8xr@Sn~IAnz?;pK2e zSyn2M<%leWBq~2lwGDKiM)(!j!0Tb#su=S2RnT8n;}ZTDqlQA`MuaLfLgOc37H=a; z6GjYfm4?OJV#0`j8d**T(t)gzXlofsu+l4?`czp?9g^ByY^LM1Y`y`<;>W>(Bp+n*jMhDuIH4QqK{}{y5Ll*rbVZxrl$DIb7ZM(x&(f&R?VvBQm7G zbRq`CE9)KsIZ|_}OFW0LnoYP)wz?_o1y(h3+aqSB>M+k065J|TrA3EPV%qD@nrW9h z$}?z<+WM+RNtHPdX#w>3a)!xZUKnz*)Y8_ zvFQe7q^cLz^b%jp(``d%hMVo(B`mjY8sHDOX;GaK%9z7Qg}Sa@qGY2?10RJ40F~{4 zZ?@|pLPno0z``Xf?xvg7S!w;_cOLK^d1Xp!wn3S-iQ8CdBepUltas4p&JfoL_DFi+ zGaTyLQyw5=+H25K;ue@$h3&wyT45zC!l|!2rh)iTQgkfK*}!EtbY{bIwquu&if)@l z>U#N#zDC(B0hc&HqzE}ernJHo_qFK2?kD;jEm4~?-Q%daWwX)~NC+?~gB^=QjtP}5 z6ib?8TbrHG3R^)W9e0KRWS9bL)Hb(hf^X4dn_{n+yn$#pKe-5fRG{GeZJuX0dDwJU z#ILJbWv1;-b9uCc*Tl_x_wL@CB{y`NJBX!G^Jq_Gh-*Ue^gHti>Ik+lZk$- zi1%vEv<%4Pb(1-Eh1y;AMMWNSj6CxY?@imC=gpxzp|WOcxb2XzLZ)t1ZAGqIlZD$U0SOcP$VAxY#v= zDm*Cp>Sn&+7-+AUWmGq&g+J7CX;-{w)rqTm&2zMNA{o6{2i((z_wW)Ey!yM@(3c6GNhNW`sV5}G+uVe9HtRvj%)TLL!!CDFhIx>sY zm3rGkh+7PIEiOtKMR!1n=i~d->kFV$0d6q}uwV^~z!f>gnPP+K)hZ3*Etm!gu%P47 zl@%eIt?En;G49dyMHuz|UPF;=-X- z;LZV&2r_8nM=YpgvCXZJR)f2+mDV)d(QpqM@M}i#!$1mtLU0-G)E~+(-dy_ekCyJ< zy|b8K{NVPy9|dx*=w2qmq7Zt9iNI8B;?VdCEa$qIZRiF0=2yA0Q=vI;i&lWk%TDfn z)BB*dn!9oTR&H_bMsD6QY8KU&@OvQ#3~f=2wN`L8TzxZ_T?ZD-S>|f4y6Kf2`%3oG z<(zAJR1+sMb#w43k;?-+QwDJ6_&J{I7ImI;Da6=6f#*}cX9g1~kGo|@V7Hgxc0Yz@ zTY57trH6jK@N}V(JheUdx7hK0HMKjs8+|&kqwFi{&e9hn=l(kKc5~$I-(CC5$oCtm z*`_j!f@3H+&{W5FlwfeCF?6=6o&~++;P!_HU|#amd`q2r9)!;Z&$M~y^YEeazpM5t zXhPKn^(9GlsV*Dx=b=|v({S#3jrEt4m>+LF3pw1!-OD{trSUgV2Rs8J9!I!yKs%=}+WLiLaV zm;`JDBY^`u28wr78hyaEtXvE+Rriw@qp!p~G2B^C8Cc=nIMO- z;Qg3E*Qw=Hx8j^e3|e)!R814!Ah!e`xEiGOR#f9WgR(;4ngBi413IUXaWKu!U_-Fs zfk2XhK;R{Uar$sDf~|;foCEPP-0mmPY)fAsk%q^Ad!eCZ8p+H*lar8x`^V11@0*yy zvoM8Ocz-Y1NKH1C$?dtXVreYplY1XEh9;ZpB-C##*@zv(muFr~Hio8}>eP<%RcsXB z9N&Al{pNKiW&IQ_m4KIu4lnAUOkq2cq`-~igX_>7N??pzknE4c^{^2N4$E*|hKPg> zcm@%HSv)=$GBRghUv00qmC!WkYpXiYI?roGKs*V{38vsDrn z;UDF`>d{9Y9=U$h+pNObzz`FLyJDEnsOTSW7O0wiT9T`AaGBr8M|=>0(p5*h)yF=XSsM z{Jm%IwL+5-^&os PIrh{*;Y}PyJSP7EDevDh literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8518400320f38d59980b1409ad92928c86c73a62 GIT binary patch literal 8747 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 YvsE42uKV3K8lV2EPDb}OO~dnl0Do=BJ^%m! literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..159e7591bf8ed3683c95bd7bc84f318a5c5f3ab5 GIT binary patch literal 2434 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fed116849552fa8739dda554814ffe9adbaeb422 GIT binary patch literal 5955 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 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 preceeding 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 000000000..92c4c6a19 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 000000000..16933bf8a --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 000000000..3f4d300ce --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,63 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__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 + + +# 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 000000000..b6ed9a78e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""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, + mac_platforms, +) + +_osx_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 = _osx_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 _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_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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 000000000..8668b3b0e --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 000000000..72bd6f25a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 000000000..0e8e5e160 --- /dev/null +++ b/implement-cowsay/.venv/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 += "{}+{}@{}".format( + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 000000000..4a384a636 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 000000000..008f06a79 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 000000000..150136938 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 000000000..83c2df75b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,153 @@ +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._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +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()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 000000000..594857017 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 000000000..81342afa4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +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. + process_namespace = ctypes.CDLL(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 = 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 000000000..843cffc6b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,151 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# 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] = 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 000000000..95982dfb6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,348 @@ +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. + assert isinstance(record.args, tuple) + if getattr(record, "rich", False): + (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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 000000000..1ad3f6162 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,783 @@ +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +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, + ContextManager, + 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._vendor.tenacity import retry, stop_after_delay, wait_fixed + +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.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "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] + + +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 +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(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( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], 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 + + +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 = io.DEFAULT_BUFFER_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 + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Generator[StreamWrapper, None, None]: + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout() -> ContextManager[StreamWrapper]: + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# 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)) + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + 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) != 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, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py new file mode 100644 index 000000000..b6bb21a8b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 000000000..b9f6af4d1 --- /dev/null +++ b/implement-cowsay/.venv/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=512) +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 000000000..96d1b2460 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 000000000..79580b053 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + 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 + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 000000000..4eec5f37f --- /dev/null +++ b/implement-cowsay/.venv/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 tenacity; 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 000000000..78b5c13ce --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,257 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +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 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, (0o777 & ~current_umask() | 0o111)) + + +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 after being + written. 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()]) + 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) + finally: + tar.close() + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 000000000..6ba2e04f3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 000000000..882e36f5c --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 000000000..3551f8f19 --- /dev/null +++ b/implement-cowsay/.venv/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, {str(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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 000000000..b6beddbe6 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08607f9f0792fca624e3e68ec28701bfea296c3a GIT binary patch literal 563 zcmZWl%Sr<=6isIAv{pn^1VIJSRTrJ0Zbby28(pXf&Sprbp$+CSCYeeLeuv-S5BL%K z2h*i1cS1qIm3M|JLJ#B|?l~d3_rA`~))8Rg`GsG32)z}>FQ6_l+6Q?=ZPdmBMYvRN zto~T1O7%oV22miZQB~HWnw*ZNWj(56)W;3~y?E@rQOOrCnADD)Yj>{I-34xW67)tKqI86KBwOv_$uxI9>8w|&;0e$!w<53;q X^&wgvqKzTi{PF_qeIg(;2RD8IzVWb0 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e46862c067868d53890246a87003360def8fe8f GIT binary patch literal 5055 zcmb^#OKcm*b@t2UPozXjqAkUue~Fk_qEb6eVkEX>DgLyH+}J|UvP~F@I}#}`xy!yjTL%r$0!41DrJ_L&ZQtAFQnIZU zEzkux@6DSxZ)V7!jAh%ZDjqofLtRgQ8|sI5b_#V;8T1- zNC^coC2~j;G^rq`~jZ2!Z;7|E&T-E}GU@BPXN_7=NsZb%D3KzOl z-5lWwC3E}S#Wx|1T<4r#D$0|SMD<)EszSrpg*LSpW_HgV*qq^FwAY=aSar395viK>v2R52w}k1A0` zm8q91J7B_$2-*>^qYU^`KG2h*dZ}Oa(SYiwK~+`*Gd?wVNlbO!H->aY?E-pe8+r)n zVcHFnaIGGy(1^1hjm`+px-~Mxso_h3&f2}e-)-|Nu&bUeyXw1dB(i0sA4YJ;QCB{! z7MqdP-Yq;kYUC|0weuWF^jY%pOeK?HmM~pm6>$_=OP*$#Vm6oXR21kwku%Lw#p_~5 z#e=9}ph>er3;E(~PEVf9o2Sat$?P*Prj_HWsQzZ z>AGel^969l0xg;&S^c7snNN;hpv4PGEkB(s&6_#BcyRQ|uOyAUNk>YV?D@hc3aP&&H z_V$Xha~=A`5>*NzBY>}4eiWqJv13@?3zSXku$}qIteY@!f&xEVLmPlxBUNE;tNxG! zKG#_mBoj4ie{)-1NR|(NRgb$XNH-+m zo2>MY=V#}zY#ZefDBJt@r;bTS%PmV1F|ZY6kl624eN-YGBufSMvH=0TSq~bMGB#Mg}iW zG=qKh-S55LjPzcf_^h|@icx>|>cSO$CGu!(;%;Q98R)BrmZQsWuO*K+lE+t*6SuOr z53LJ))K^nrS#NMni8Yj1J@$#RhhcWgww(k}LePk|V;%tn9FuJ4m?m=AAG+T4wsTgw zUvzNW#KNQ{8yEASkB>P^$X-+vJOh_=Opy>-0`dEGZs1-}p|&o@$>37%hOoNh(9L}-3Y_cce>m4aVCsK!F4tLAUKQYEq8myJVpZHW2qkw0 zi*L~nh86GD;st4YeO4t{L2>oSkuCGRFkhJKgf?ux{kfs{zsj~lk39-fPE36)Sbig? zUrZaO3Lym@8>aQ5HqV{}mWuzJ3FSPa=|vj1#OZudg$({C8-p=RE|=7dNx_gEqgp=0 z%rFxzm1B8u7wI&ENWK|3ru(T7^E3~Z@}4+=jG494@&e6dJC$wT`-oNeqn zeDmPyuA>cQpeEGLT}d?kT^}5|e55{n$G^AP6RRJ*dZ0Gm4E0-Rc@AhC`|b(Ki5f9u*LT0hRp}s4VQ+Bn_X1C+Zn`Ui^*cPOj0x9H1OCl%7prcjkdWD_pqtbz&k_8cBUNb= z7s>lGA~CyMDc|D~p2>EAvx7iQ@Rg`rHRJkB+_?fCj#omZ41=3ghrouATd~6#BDtjH zO)X!f1~{0>@+I4q07tqNP3Mg?nhf2ogf|?W%`-ea!;?YWqhGLN&{!h)jbVu>%i`X$ zM0>&mQEzpj_cHrwfKFWL-Qstf-pYY+KIh>F6*1n{Ld+l8(1}r6=#+|3rmM@(y*iRC`1L-u%b4D1hZF$r@yfX^a z@}i&HlPr$`0a$=Y3P61{^VtH0r;2I`5LXP3&SKc0uP}UHSOUCO*a&v<2E?!;T7ElA zJ2M&PEQb1G_{3tEsoB@CIRgz8YIrNLvxo-U**!}&EuDsk*HNI_53gfRk`Lo7YcyXfH68;0L$Z$NTfuY1F%+)&B05(CuBf6I$AdKnlW0)8(GIk z&^@hP+wmCX=@Qek)G(a)&bERu9owneir+5-p2qN;w!eq^z8NZgMN`jG`GW)}WHqRb9X=iK-<`ciq$iJK#A7P|PXGcYT*1dikWK)U`& zh8tw~FXZ`8$bvA^>&$N!B$(+U&cK&^kxyR+flS$}5LyKhn6kiX4wy|vdj2*OsC UCtPq*csKCfK<(8}NYq~SU+R*zEdT%j literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d59a1747ebf65d942324e29ab35f92306481db4 GIT binary patch literal 19024 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f21574ada3797b51e3362042cd04d3c231edc251 GIT binary patch literal 7644 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 K=~L3lj{hHb(+KYX literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da15bdb93cbbe0663562bc32205644f2dd17ab45 GIT binary patch literal 12516 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 rQ=W>Rqebr{&~x7uW$DhP*83FJ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf5f886df73f39767e934f245c0f17611a8c63d6 GIT binary patch literal 29042 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 G`F{h_`BRht literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 000000000..20a17ed09 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,112 @@ +import logging +from typing import List, Optional, Tuple + +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 ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> 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: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command( + "checkout", "--lightweight", flag, 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 000000000..8c242cf89 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +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.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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 000000000..c183d41d0 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 000000000..16d93a67b --- /dev/null +++ b/implement-cowsay/.venv/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: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 000000000..46ca2799b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + Iterator, + List, + 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, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__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 = get_url_scheme(name) + if scheme is None: + 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 + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class: Type["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> None: + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.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) + + @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 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 000000000..b1debe349 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 000000000..c1884baf3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,121 @@ +""" +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("colorama") + vendored("distlib") + vendored("distro") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + 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") + vendored("tenacity") + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b38585c401a0380d72d8150ff666db71d210853a GIT binary patch literal 4725 zcmbW3TWs9M6^4hqvsdj}wl0=s`9fRrW$lP-S(0y2oJ5u^1+^{ok|vhZEU4v3OPRZ5 zhO?HJu>l1LP`M~z2Pj}0Esz!{Pz5qjKNWp!^HQLFi69zD8NU>H%A0&CQ2425xXZOP zjaESk?9Tbl{5&(9IXuIEq|-?RSIeLNu7A{u&^H`{D_S$2J;ey!MH-q!nxuscsTi6J zN!$(_;mNSy;>n2LMkk{ho{W*m?A9R6%XSt<5U&lC?V=7L(zGO1y+J#f(jp(D$ux=G z3DH9#M8dPdoY&mG!3ew8NNOfYY0;(7`Y}lKyPm`W(RcS~VJ+N+U@mDb7R*zsa$Mkq zz)6AY&s)1cCG@8S-Xd_bz*`00CUA?utpc|R+%E8Tfjb1=A#kU_I|c3%c$dJt1>Pg@ zUV&wS_X)gT;BJ9?1U?|}L4gkmd|2R&z()i=D)1`;_X?~CoE7+(zR^ZnKena3l1s;CMm2f4TIp;i1TDqm=u91>vQdzg< zX=tjXmu6&*SkOaCd7ap@IW2=&W~OXW0vaZl2+_E#>P}YGvRRUCvq)HhcaiIi(2{B> z$>e$6fGB#&)-_TKRv+0em}Ntgr-+<4eE}t!tQU)ArcN0|R!f>(lb9u=0=i_`(o_Z_ zn9emqZ5?itr>R+#%a+Y3QHx6QTVCiglGm(G*``ruB&QcGld?tk`VLHCT`EB z`2YIr2I>UICK_o7G&iK#=Joe-(y$f@=K3DY|7PfBm~9Jmo5T(Av2TPoQTa1m;;RRj zges^Tv6d_ zGDf|oxBNXHrPQPu>?Ny09@tA)6P;-OI3Au-ZQ|hqQ8kXidwUSj}glkztpUPSlRxnHb zO5gFUtuxYVsrjqw46(ED?qqB4Ulty-q_bR3u_|6Xm>lhZx$v{xz72o#=&QEfU$*ru zxApw~-9=}m?acheRoomImLA7j?wt9}+^;JS4lW)3^S(#%q31i$!OS17{O-!boy!M? zei^>qbgSvk#pU?^uiE#2*`8T$&n$K?ez4NscPqJo7qrLm=3j;HHht1`Z)ADvzTXZ! zX#Hc?XI&2`moslXiof}v=Uph(@f0N@=_f5HkzQ>D>xIqJ>E7O98GSA%hF=MPepG^g zCvrrYD;QoXujUH`-e^Wm!;9q!W%{)4#q*|NQnjdhF-^A_ERPrE1~p+b_3KUo{*Mbyd^Kv%#yVKoQdQ<0{yr)TlGNGPP{}AP@sUj>N{JcpT0yv@n`^C# z38#o{8%~2~S+kDv#vx(b49#}-H&PhHGHupKQ{SHK#&H6TVp5I3VU*MKJZrRR^&5Bw z4}Oopupl`obNNE90Q2Pq$r=5>Zc})1tkxZs=ZtfpK^WMxqFRE=LmOp6EkL71gg3&1 ztS8Q%jYlgp-EcCE`;|3W+~A$yp_E`+hc*dWpId{3s|94V;&g8kj_*{Xt@lGQy-3V* z!@To#P{zC@uQdjodQkZ=)$;`>#sB$IfS)*9eJbcP1p|KY0afca%$XTp;F|pYqDrrp zEhp_mP^4-~o6PWY$VvL0Hmg9?gl{wWB6GG>O{(U}6dXieoRN~6*IC7jFtcdrUXsx= z6gp;7;>D_!w?EVD#d0~#%vVq3=`t%*IGrg!{XNW&WiMvhP>xx_3z;@ebAMuFbolK{ zBNs+TJnZ+x;A5<6Ky~$xVL0cf;nNVJCf*qz9lekndFx01q37XQQ!jmnoI&r*J#VvD7l(M>6ZD#Y6_*BZ;#y? zyFGDh;@Q9 zc0L?i*)_D%^4ed*e~bS$zT7fCf9~hwAC2Go;rtJtL{TKY@V<+8{S&7aF1xscx05d3 zv6kO;@pjH{e>}mPD=zMY_KWmh7t6kJz{LmG^~f&X=l68GxQF)yA#yI>%{dq{7^>EO zk>2m(ZvW1Dh{G<<_?|%*pYV--7Z3QxNf)2;jbkqE^NrIkKI0o_T>PqU)WumBAM-tZ zEd9Cva5dQC0P!h0^>2|Wuxb#WVSYwJ{B>%g(_GZ%Mpfw-VSfchrwcJUrA3|9Ib W7q@c`gqI)Tj@8i+qz^p_Ir(36{rLv~ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0522538a9989db6c5737011b23fbd3d896f47c0e GIT binary patch literal 41302 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

tQzgOc+M3CT3!kQrUET?$B-sVhJo6{- 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9879c2df6909d0fd64fbec57dec69a97c86a817 GIT binary patch literal 122082 zcmdqK30Pd$ohMowPzA+WNbFDuNq_`sm#o!7XkU;lupO5pmrL9W0znnNRY-z>tvE^t z#Y&74C&IBE<3wqrSZU*KCsESwM0V1hbf=dpfdi?bdz5bX%w*m-^AzLhPTX&L-tT|T zz31L4F0!-q_r333TbEmBKmT*i|NPf;ev+A)Zo!lHt-tCl{$s1K*xwXi3j3StOJ#r4d`|Y)<#VyW>Av(1i)8zX z)t4dJeQr6^mu0i;vq+8$7AfTw8?V`yZL`SPuc*!N<;XehRw?y@)t4)$b}iMKssEMI zPJh&5Q5=%p`YZjD2ZTDblf?JIl5 z!GHU_=trgOlFGFfD-{d0*eX>NTO==QcP2{St(T~M`Ie}Cs6_2cWN$)ERj8>-DwnFR zFV*VuEm@#04jrmxzgD*X*S9oimzH7PER~kyy=;Lpszpl=>v^>=-}2x(sRp^LrCPje z7|d3n)hkiwaV?epH=!phSn4{Yu21UYO7wB1)PNpp^Kv=L`-onS_T{Tn;l4_Pg|ZAO zeOkQ!*H@2ltgPh6*MRUxl0z*P->Tq7lx^*LbbcJd?OiA5hnuIC*J^DOy;&!%2DIv> zHF!5jYw=!%R-Bq&qHjIIyG+72AiUcod?UhxCgGb9-fI$m55g6b@XZL1n1pXZ_!*P% ztq4D76246xpLH4x6q=0#CMmZEE0EUJH8?*Ga5c#x7s^HLHmzLWcI170eqP_b2tRKU zz7ye3nuIqZ{DMjNE`bZY|E@{+iQpOeeg>mMfYD+3 zkOm|$Q{k&fuAM>Kq|WSc`seze`@>kQiQ z*Xrw(B#b~n%`1z%wBn}bx6apv71xd&U22Ywgd9IL$#FWECY?f#Zt1^BUBGWZ>#Uup zMb0AB6*tM*gYa3C@L;f#L9`nXr8FNzMFm;vAX1AueLV||9j84xhe7T72b20k2)}I- z-W$w!5#JO7o&A{aF{_3B>cy|HFJiSwj{yoHNx{2Ug+W-rfZ+Y#P0H*GE<|DSueJIBHX5cV;{Jnd(pg9sgx z`wbX-vD$~nwfqXf>phb`3?TepOu|1F1W$n7;|Y{~UMs~n$ihC3u*c;=4X^kHSm=`o z{e&U(V`>{NXt|Y4mhO{CcOjv*L+Z}+2Q21s`J7l^LuwhH(#i;Durh{`@}m5>Xu%V* zYs6|oXj-IC8zBGj+ICW{3%1tPpTZzCA9l9 zaw13c3AE}H(x;@)8fL?jYD=Hi`mJQKmO4#Zbm2p{XvEN>3u=olqeY)fYSAZA`zNKR zrOz8$bb-PB8KnLKYl(Y)OA@#vqJ|0MeKDyAS@ZMxJ{5Gz719+$>prFC9!<)fW0HHA z<$l(Xdsxl=rKH?>Cb=)N+|LvDngO}U`mA${wD!}pAu``bymSD57f0&?GwFCzCv z{2KD?@{Ty&!InQGX#_UTZ=3HqCSfs`Nd9o4I`7`2>wm7*>w6xf`#jqIJVy5~FuKpFE&Gv{ zLfsLzn6&JLAn}^!E&H)XsrtSwzbO5s^jFW@q@T!R(qFR{@0wp4$~k2c`V|@h`X~L3 z{MEa__{)ItmsJ=$rN0G?Ur>7@R#`YphRoM5@T;7QUz+55A*lf8KlrTPKfisxtHDds zf0h0YH0{?|&kmcUc^NI)2MI>>t5yM(akj2wSl71Z|1iINK;wbC<-FO+>!{16|$*Mf%`+@=AyO|k{4BoQe-1eSbFehn!) zM1=T|U)Nv;Y0yGxzWE{2d`nNmdh3*CM9;DqRL!J}-vpRkxw5g^K-ivaQA`&$Bx%p{w${njdrtSq%CIl!={w7BoFhb$w`OCx73=j;zz&VF$E2uuHx zmcI7C{eoK3T-zD9HwOFT&Zh1_IQ&3BiDxv0f^C6_9K^qP%HGakpgW##1G_Xpb!P@R#GV*E+5uBMO@>Wg#+<#-lLxK9qMDLw2r zdJvJ%MUDi5feu-Tr|#-&Z^vI})2Tpb@JOIHo|Tj$ttr%pEJ{3OxBOV29M9M-w+H&V zBfC4>BJuR*K#wf(wq_hvBw3Lq7U809@Xw5vzTV!D5(zh+497FIAG`V^GGLEcqX9>J&E^~2wG zN^U#NW|X596C%z=tg*W@fI*_t*(a-p#q8?~C;&$5L&x^`oA&Q%I&`3UUp%FmLD<9CM@-lOUea9E#{aF!X?KTckyf#8a`Ruvp^GU4W$0f8Z!4U!c32H6^_% z)ZHz&MLI)4n##clCMAZ@!6)0^kb;#1wL*K`wO0uZ$U!R4rBCrR_SxAMckT~_Pq7kh zDBp$E(i485Q$8DavV}t{g@4f!avqZVd934bXBdFSGU%nXoS}ZOoGC{Fk+xIutRsDF z9cpQ^)!!|&ID&0*JY57t;?ASJ)D>Wfv}1t?7Ev&sew;uS?qp36ne5b&l$Oo`KrWSr z1FcTs%PQsmAVDMjfk1bktTwYPfM#X}Lwp9Yk&G84{Pat5TZmzZ);57w@u3R&EpvJJ zam6BA$n?f%ldK@w?ESV{d)(!3kug<*a(A1SSSx_EX>%lMykhCM*4ml}(zk`xv^%a@ zu36)bFfdw}vU%S>zv@(|M_v^fkb3~jQ=wJ+IwSl0POfTtXz!|)-A${GgrvT1xxO_N z>JG2!q}AVpvg+GHXTyR1RSjq4;F(q3ohMiI_D4>Ig6kUAtX&lbrmZJ@2-Fo`)!W&- z%8z7HNLhtBj!OIhoE!`TT;YaZ;BCKO!8-Q)2l7Op8niH?a>6Niowv+nm(1bA(tOQ9 zd4fP`et$gO@9$wv#JAh;f2=Ri&0~}>(kdZ(Md+o_t4Di1g^zF=UKcELHfu^LPeajd zsxlIv7E3z*F>u0O3g8^Hg|i^TSD!)4a~8?^f=y!qp0p0yA~r3y&!TLNP|Mjf2m>fV zPP+#!U8!1({`c->M_gJ;^W0i1hHQqEg54al584N9r#BHu7HHKT^Ky4vo_4g^IxKCr z6FC;kkRy^I+TqaZRIHb>2OXDfm+~BzAuG~kYH1|<1>l1;A^>D8_OLh9?hSZ5Xb0|W^R{(|y){7gzyg78 z?(`;tWye4z--7%qd>XcOhuQ+&;T;Vk$xFx>F2L)*S$=iia;xIlP3zV4@io`Gr@dQa z6~}(faM6>+rB;QiXdZ9?nRw%lo&bn8d%JvgAjdcuG&TdStzK+HSj*mlj5;qGg0Yh& zZ*3ai|Mn2r<7xh$fN~o9PTHwJ7^BY?MZo^oae`+EG5GyVt>b>T2AQH(ks1{91EL*W`E6yl~nkALBR!|S}|mrjd2 zXEv)~blvE(XvM~8;ik!~d!o*JX3{b)o&ER|v)PMB!qL*YsqFfRmgx=qZf)2%n^!U# z9+jh2TcV{~C-b&N-P>lf^G4Q9dzQsK%Omppss#zu`!y$w;WZFe#)&ir5hW6_bY8~uNCM^00|(G{jPsNl&|7TM;c5g(M2K zsmc)k#8dfp6wmal^av-bQrUJLj=K{=U2K0RLJJ$HHNtmKJ})Z#;Zvc$ZpjbIk*Fen zyAtX#ENF#T+iUn2uE*=VWj4EL#+~_0>U7T1SkBU`?bFLQ$Cht?W8?JJL$R%gqS=S% z?6#crI~JQOoo!3kY|7`5@fWlKB!H7p0|Vy+`1t*SQ#TgV0G7f4rhEa_D8%(ESLj7t zzCsMW0T`^W>_xn6*oznI@Mz`p?bGFJW94gK-#fj2Uu^xpXxaYB>;qBf0oKQae$fPA z{c6R>Z_+PqpwC&AOe@f&*)Hq0XuWbI^$Ju)7>K4b(7kZ4UPFr#diB6`*_v3{n#t_7 zx3c%#So8fY-`O(pc+|Ov_exL$$VL;F^=c`nC9LOjXc_RQ%a~FP8?ts-hHQhD-If!l zfbQ*vecL{0)%vP zxG`rJ?HfrCs06!8C7?D=ZJe=&t(TmGcF+YG4%(4L>DZRA$|FMbJ}79Y7Nldlw;j8; zb>NRwM#Brv!;9rAd(Q-vPU0A_!*aGmqHUL=!t@a$<`x?;+ppU@l`uBj-d^yMwBdPc zz`J&~g*uc#?)H>oRtOxN-`h%KO z6qFL7T9xNeNSGD{wTk1My!nk&t|7%YDJfNY-g3unaW0CcmChEHznJxG)^O&GJL~+O znasR*EzXpK)?w>A?!_aIjn+@OYk-bM?!VYPn^Qcx=9$df?%byjUpzdTd+F$G#)|PZ zZ)eoc@Sw5#rk8DqE!*(ZqWxpm8@V@^eYgBemA8uazwJJ7CzlF+FVEu69a;3$wy2}v z*YDab#Rsf>cUbA#m6`tL1_$18Yirzg2>%{vg;WLosI|sjZ6P+WkQX>9CKKdhsHJyTi{Dzz2NlO*_RDpj$z9=t1qR+0#?fD z2djHThI~OQfr_N!*>c^Fk1tq>>e81hi2IBP#j-~dWcHKR2#phaE@J6^1~UOmRb?4a z8@REJ7~>=^2=#+-TF3 zIBDXqwJVQN0($Df?KH?cIe`C!lG5vE_!rK@>sJ>n z@7e6Gwf~xKcP+nT!Hd-JlYhTTY@0tB$lk^)0Y7x06Q}aNi(r|aXi@>gfuDu z0YQg15cKv1v64u(1A&3W5^$D;5K6t5rXM(yHVF5SgODqmeIx_pCmQ}R)nF42}BDKW7+sOcMLC+IlmCTpnUAPXvaDLDLrWEunt6;YgsB{&Qtoh1D<;s&-hz#BoVdKQz@p^&HpTn>q{Q%^IIHlMHRhN7;Q z?;+Jd291T9^M4>9yb3S2Qu3Z@yEwp*z_!W7+oL(#*^;?@@7TJi=brKWTb_F+7RNmI zMBVq8uO4cU6l#N5hbmIOORqnr8Vsw3t!#R|LlNq#`K2w*<^I|-I zvA`;%FhP~li)2PJnW3i&^JWO)*S}IGB9aIVSB*(8cfHgV%U&IIu4Z6pR{9W^EaLie z3ZvJ*;GaRn#nCj20q9cvN+=Xjh^_hs^;FwiiG=(Oftl`S8WsjX4SS&!3r%bWK*FO& zD&CCN9VGCIt&_6zN0qRtE+}I*Ebo^>lF%mi0&#?b-TmHx7kg?4 zP#htJ1}qO^YT_9N5v}r<2w`l_HNKfDB!rARAl2+q_fan=!ZQ4j1w<$u!pp@v7%+e$ z9Mr63ZZir18{{eCoc&nWOl|$E#n+0*-O=^OqRa1_vs?39ti!wCp%m3IPxZKCJTl%f z>Dd@{Z{%Z*mL}~-Kc!|S$v6L&!sunCYBl+$-L;9Y8;S`$2w*mPRZfS%Kzjt=9{M05 z15Q`>4h<1|NuVl_AmLTRqmwO)Tn{YY*+DxD2x?M#K-D41L88k6_P&#h7}0UPp%nTw zQsFugo|K4w9%=lDzvX~$&lWG6c;4;a&8t_hUZ{b_9Nv}Ny=%PQDlZctc|j6D;f3a& zZ1lkS%wsm@02QaAeQX`&-r4K8&sE1e(0&t_|ju?1lb7tth0_ z=vCH!*gC16-=Vv$r=Te0GD~g8LLbjsldAQn5Yd;%V&Ma|H_ zE__@eYj`YmKfd`h2<%y9kpAfObGr@NV~5r95O%~Ci_rSo0>8opW};Z3JR#y)P|gVx zIFz{gGtxo~7?Brh8JGl|fHBbF`V6iE4J8?pvf&ZM=u1GG&uYm1#XJcqqMWddJ%y&w zqmTOiY}ow%M<4Z)AiDEpACa*kM74raMQ8{z3cVD}=2ejH4Mq|t&7NJ$u?s0CU9xF|u7o5H=;SKnJaG);Ll{-^hKHPZe z5CjD|xx>z1y_aFht+?unX0LeH;&A2OaauBSXR>pKop&4Foq-$6T$kz87bLKS*#qb_igXf`AF=^Yn$j4qwb zsE9f$*bWE&@N<;(^LYINNf(fpUPa6m3#4m6MUbxD3yGD1vM_4#gp{px(Ap(Pb!1l` z$jF3fS_=a!OI726oNE>Gfw@h7bcq+zG&+njIHS10I&iR&_Rj=u6jNWRRtDZSMFx)( z3U2YXca!cq2>BFJLqp>Y^n`$?b%lo}_s;jLNsIz+gHD*T(f z2QN)UhH=F_!3Za)$+VGax2ftekER~ussYSBA`C$e{}+_SJB#hcqRHLzAqRwl-;e!( zlZ@13<-a3EGj)_&!L(pAxdrc9tgf=*#+f|NGp(bQpMP*<#iYCRmv#jHnhEosEG)LR zA-#CiNn@ESM364M;!1zX2Gzf#-wsyq9YiOHssyDy!7}PJvYA>ioT_iJEf!s7Y|t88 zx=hq48sxOUSTRE0Y{+ZAer zPc7R#<=HY@uq>LhY_@VKe%@I6{rd0JPcGX(S$QDpE>{DWeZS#54U@|bOjaI5;0#1c zwOeDJtx@+@hN2Q?E*! zW=m=PQ({1-YyrsdXdl6*6b&b?rr>$k)RK)8k#7&ZHZ-|p&t&1=NzcBhdmm?9YEzOK zmv@m*`4@U6aW6En*%UZV#Y1!o>x_48DXwjESytD6E9YU@>_?P%XnE2zSB{r)*~s>G z8=h#)z&HKQn=fyPd~|a zm5ulXgh?D^+(7~l44HgDHB7OAQXBQqm5R@=Hwzc|DCbdj^F$%a9d)S|q|rg0I4u@hT*lVh{Ke zJMkx%3UuzInHf3MW^nb-*N~2FgKYZ`98W6R3iH0!Mz zYo7G38_9gnZOJbf8G;1;x_!KPvS#Zo&(@h`)g#R_-iCKA_C=dU9Wx~rW7}_)tez=d zFBM8NRZo>}nJKNEE?pffT|JTicIn1DX-E!h3U7Thf9rV9Wd7D@N!@Ja z^0CJ!D>q&~_zn|~bWM6TN8Ou$^#k+Z)L?0UqY(~gbqW20YD7`;vqd_4HLV7X(nxmJ$Z=b)QkIp-{JZQ(eH zQUyMZIl_T%`flW$D3fh}Savntv?LzL3L>6@nKp%cLlF3b++*Ykr1E5<#J^Rd46-jW z`a~F{=yxp`JTr;~TYmLm1PjMouu;5sn(Zq0m_@kE40$y^+hwjCNTVvEA7gkDO(?*J1=M*2>A+dI4E zI&W`xpbb;+ET#o)`9c`XFhxQvLc1^(!b+z_5jILfwK}+bQwg1grCOlvltE6!)Mz`k zW;HA%;}j`G6G9dChgJ1J_#b856*m&Z1`Dj_O<0V%nl@(oLRJ!fif5h z)-#9^IAJ^4AU9wZDso3(cR=yN#FxRjwhj_3hFJ)RUPwqpDebVEg6N|&!u5`jbGXFLt*Nm3Ti z6S-go-a#}{zpitqENvl)?7XwuLXdi4JLrZAI~Y>_9#|rtt!I|{dV2a{-|C<$lz%|1 z(V$hi2LbGLg*NjJ{5o%WZ<{4Ee`NRQiZN-@y>i%k#|D|$om5NiqW4lPnH8gty*T*n zV9Z@Ne&4H)Tze$u-ZqnydnNsH`gBfhET{IDc3Wl^sGgjPsI&Z6@1a&N;3 zG`k#Ochc~S6C+P=YIIxPbh{eM>~EG@@is@yM1|Z9F$3WWw2Y+cqqFlc0)wG8n0kS* z&2tcnhGCg0`evqNyc8j}0<&(KmdfcOYn-G*G=cIi{-DI%-=AXy)o+Ky1O=1Bpw<-Y+RN( z+MhAlBBF~zlO7F_R_4etu(XN1q8J2q$U(VAJCn9}8ertD5QyR_%!ewOs;xy83cdb{ zU_d+XdCNP_;%TQh=JdYpT*3+3GK7PNIY^0f=ygB69-tR-Kgw}>N%T5QuS4_-&}%VX z@x_`S5mZ)2FSZgb+{DF=<*c<2WUEHBwCy$oPPWC<+jt>xGKuGMZKc71WCv@`TU0d} z77)Uqafbkt=z6k%3U`MhB+w*79_V@fXXU_YMQ&&AB1SK+EWbYl_b~1bMhHj!%@h#G zPl|pZ97z7K;jnE9rN(nmfvVU%6$+h3NFHqYH8(QCaFoh}Y^rOON{%2fpG?#>H!m$q zyuhF6xditXZscA8RH*u2@d`92H9zUKfmBuNI3m1u5M2fxe@95^U_vtj1ndr#0P2Ou z40W_Kh;LXjMHCs{ZA|Dx-GkMC1kwk8j}k&W49s}{1+%DCLsS~2Ct_2T_aZIklz6BO zY^MJ^K8$Eho7E(JH$!L==+R=5%RkD{l+BF(lx$}#@H)xUg%pD}$&Lfl)KxTO?|?0U znX&j+tb=wku0i>b@j&R{FhgOI5C))@MT3rrph}rlYdH|2nOH*Pf>eLC!*b~)L=I%W zlhXW)|AS`-t$yV`dTpUs30tR_8*SJV6_N{(oeTp#7n(7ww}?`ugAsyrCXqA%`<{<9 z9ln3}p56Y&*4E=KaeF|LAZL4u3P@p-F76<=MmSaKvlTW#G#!ZzU<3rWVepWtLeh*? zHloHXv^9JIi6IqmXFs(ErlUEYD;bwFMw>>DM{~UIT2fQI!;YDZ?5DS1+#W4m7t2^T zmcN$vNbm6Onf$^lM=u{8+xK>U z-9-Ky{#$Df&*Ut+;=1e_UHXOWU#1|@9TzINlLdp)^M|>h%Q(Aeb7He=7uxwLC)egI zWTb<+^6v&gkEx}Jwpk5XB^y~?o6S1R8Hg+)+7hC%L3>1SI%fQhCOCp9s~jRKF^kZ8 z^)ciZe2^9g-iWX-d)hJMQA(qEDP4pIlO7VNeLO=KWJy8{2TwJ77oqB;XUKNxG0a%o zc?brFY(XhPJ3M;~g25C+s1V|P+BukV(RsQUb7r69=pqZtq-WR(Bixh=PE&8NRP#JI z0359`@g7Sv^eSyI6;?vdCmhT(EDi7U7t*xRB%eHpGHE|!kKPXmZ!@$|cvNN#{KJ0c z>m?{xZikEQ^_YszHLspSU$}Idz!eNac2;$05~pYM5&g{r5upAtO6sf^_mCvz?Hlc_VG-(5N>$i zR_9GX_6~rO^s{q2@cM#PQ^IjSwL$AeI4F=b*QlD(hA7!jjVa<_RBK0jLDfBh0+|Io zcm~LSNb64P-s@Ej7e9_411qsh_Me0rNb2ef1Dy%qJ`;DfEri%eckwIkueRjKc;H6k z%?EF7JA8HB*kdnmj4e6x>oBeAPq@mgpUEk+n)h@qQiy(HGf4EuOX^*2f|^m;LVdHb zzQwH_37pDr+@Gz~pL{e%?at=$fYy)As_)&R0_(t{7Wnyc0UNWYhnX)N9S8DjnL#aR z8c5Y3L}C-}ee1*TTTj$xE41}6zXCRUlKf?qWfZILW@pd_F2yEViEn3)F4*RBJ+h1K zPs%vr;wfw>m31f}?gaVDsIGV#b9W%$^DuL_pueQpQ??>qm@q!A4|=$rb-Zw)VORDc z2hPm5gzNAD3s&qSnc3LF(%_!=;`!IWmzzFX|TQQ4l_LO|M zXg)o3acK1Z$?U4>?D|-C{dD%4SoWHU6*s!LN87Jv-NnxzjAm5B1Ry2h$_&zkos1N-4pYf`hO^WE+{k5Ss*O6^iMXv4w^C;! zOU=kL9Ff32LAFW0{00Md+MPgrvdnB#A}@a}8Fn72Gu)@6u?b95uxrzXHSK&XB;_xluM@J*`mO~8fKz(-m~z)I)!Zt#d1$B(m1fw zHw+EjLEvZxeG5j=C0YpQ9~v0tC|<^4EA^v+p|cPqwVfshUX^#@08#EoY8+R`aU~dk zn3NQZ^gZ=>v~p`Sdu!BbqMoPPY0&0&FE}7(O8~w>L}jzb=o`dz!~-j3u`+ zmcZFKTDoI0@7}2U-aB@SyNa)LlqMeJWY642{4r|M>C_2sfWkHDbae|Zdr84NO-hxW z(6gsO&+h7X*1Et`YNP|vLv4gUw1-$iBD&_zqoMGqf>#z9fhgHJO3@9YBpcHVTZ6;8 zGD4SZoido8=y?VRWW7v}d>T74^vF7Sts@gtGF}dV0~!SI7t_p4Pal ziRKa$@c_p=df>{h{G3Wj;ivbwn86^<9Ff`jV1z}o|31qNLkq2SMrxf_arjSAAai&d z8Mu{Qd9`hP*;l(J)_f&6laoK2S3Ff(7tO7I-9EABPttGYLSf;)u0h7n45hKwu!R3IlH~07``q=#dk7M{(Je*t6$lAdF!-idCY@M`ywPX*s}>e;!)P? z_Fosp?tjtZ7f4Vy`(O^3_6yF7rrN;yoE}OMwf1B0uf?P#ytp@E<0OKCaUUeGG;kka zM~zguE&_mWrd1Ncq9j_qG=Wx!PQj@O-k20x<4HEqbbSgHn(!mF$+L{x^O$fW=V|6G zMJb#cfp}y~-ptl}pV|NXgJUh@OD7zYWgDjRH$vO6C680{pYT>$AuXbnp^z;Sw_sqB zB9hxEWq4u7?Cw@7@rAvE+Nj*5*PD2;);_A*GqSvJT}fIKytO!O-4Z5CebCPk0X==_ z;-P7`H|F+^dEk~Z7P;l#IDQ5%cCy82^Y|WEa?aLnyU{XP+c;vM%2^KC`lcr@xrz>)+a z54;)tOM1X@lk-J@Q+5hjnGbB!W>lE#bV*0t!#qUcXTi=^BY%eK2;73$sdEX`qf&t) z-amX`LE08{6W^gwt?n(oQxm2$f{z^%(5sP@wV8acBf^TL+8U|Kl0v%AmJd;goX2H* z4=o?g0n^R|-2p4jPjY^J^MYH1Z5oB(JQbdU4pjCHyL~(!P`T%&Ch{ z%odbP7u3fJ>c`tAHcS?5j^=EBC#PW4KKjV`{Zl#XW((I(6>fZ|pmJ>4_57)VhIfjq zqD%Kr79WV_AGlpuGF`a!R^ir}!jc!=&$_1zYhr~pus)qE-1ftaSm7Zgo+*5QxY5PL zj4sCdEUXv}N0)B7v1h7am&&hh!VW|U>`34go6qW)XZ3_j<`oWTRHk>#MTg7K5QRK17kx@EbJsj(m(jQPd4Mj6&Xdso|`tP zxKm>*71~(icBpj|jkfu*1@l&vmQ7vB&(n(fA1Dyqda5PIlf0(xnJm~A&Dk~!vC6u! ztcjE<4^~t0m5*Ki*mS}ASi$;U+HB;GJX9`N#ifo7#!UEEnSvul? z{2;e@wzzV-cy+9J^+e%~^^?UrN1D*k{DR9{uikTg-$c`m{2P(Uy4`PA?SVuHJ~((S zLgqU;mcmkU(J6#r%9>mJGlawBvgl4We!S1TrQfPp+~l$Sz~gH2ru?A7ig$u(Gi@4d zg?jTR%}l=#sQXM!Un7lM{1Bt3tK12>e!<*U6O778q?NaAIUWA z&8-Ya*QV*%Re2YsaLmo-89D1JWRI!z;FW-HDdj+ZGQK54{y(KD(THd;{Z27bm9gx~ zv8u7YNu0-(AIsiA!-eT`ZY29w&hfE5*B^ZSfg8TRUi_27$@=5brN{4(xd%ggWUx!8 zXeLmg1Xu>#I(#GmmqL>sU7VvC>DxHR|1U@g$v3SBgIt5z%Fid#xX$*+)VW+_V3zn- zwqM>p<}n;&(OjFJY<~YeB<3_DZBcv?6Y%18@;Rd>B-;#-wZB3ynor>xq<~$1R+j6i z^9dE zSKcOR{EApUToQ9#%b_Iho5x9Jf6Mqw9&yj(KXZeypDL^emIQLHSUx62>$cxeCd+q?WW1AKKKilihh9B;?dWt}Q>?D(?R*qlI+k&( zaOG@a)!3f53s?Lch_wt=yypeJy_K`r1Q>(J6DJQleu=Xi4#h z9VmjqAGB%*iLf)##B|Wo0ox0PLJvz=YLz-hXD51oNbVgvR1JQSnO7Ao!UVyVuvEB0^|zXf|!TZnOuRey3qBZQOvDSz^c!p z>M*ksBnQCcBo_mRKswC0^<=_+^>Ks^)N5?ge5J05tl$o&+8ptRT+_GW*p2(f*Szk$ zzCE@=J7qI39|yr<2GqLwIWS;#7&EW&9bk3DN{5gDCvd_th{@0p!vxN3eNqv8kDwkf zxw7(od}$P!s(U5&e4u#YKKx&_#4jKpNf2@tT~34D?tg{GI)7# zx}Z8%P(7Y?BW0>!$87ZqbmwN(kLus7pIUKjvijIa(^URaqLG%5x4in%YafkyHqWly zNTD^1a+>y3-SSk8+h28GbHCx7zUM#;|JNLtty($K^o7Hab=MxWMm=2K4NP~2dc?$x z%!rVY6s(tTQN&{EIRgYSp$hfT{InXDgz~RF)RW(t!_g@{EnRRz8c=3&qvbW)%cu*93=01WyMqEOtKLJ0$lMT4S;Y(#W z0@f71G}&o3-z8X1Xq=2M9nyJ=FN0wdH?WD5&C5VGR^u)@ua@hL+M)E<_+=ghRgq9u zXdz5ntl4h{!p8IR7?Q_}7sqBrjW#!ujFYvbWWh{g0sUM9&>-^<1<;Zw`0-OMEQN2xXNn7ce^oiu+tZQ55P3;yCYgtp@rF8)O`W(gz=EI<$n#w7oTI zDN3SXpi*|yU$;p9QX&e$w<{kPC`_73@?`qw8TdRc%BHdWcxh;ISn7RIffK&@Q z*T4W@JHI?uRufK~qmvenL0Jdb&VylMwia3T9@}%wyJ7u$1``R=`p#~%>62)kp8)rr zs``K(kjRe*pD)pYS4=`CSPR2=29_!HP*alUhnl6{LU;hFM1trKt}9bGoHoI*Id4r#A6ogvV+9>mmDJ2f6*c9I|Zee&t86F zEIe7TGMclJQ->NBM|O)~bv}a7PuY$1nW>0bb;%vHhF5~O7BDnpZu+cBk%2BFYua?G zGVy^uob3gJ<)38#v|U$(4BKIq2U^qADv!8(L4kpS`l3N1mIBK>lXKm}4@s#BXK6rM zMXZvcCnh3sjjd6tAhSvvz+Cwq%CKIlGC;-2N<<5ob)ecBoER@Gbs^Cc@-{O@>J?A` z^ysN{CX1b?ztT`!x|SNH>Z)Cmh=@8cN+v>hEuSV4fwqk(d-ik{YhU_bQs`<>!;YST zB2 zW;#YP0o2;763dBdHc-io5}QQP&{;97zw`Kx+k3(tCK@&)<;=EO{m3;F%DI7-GwH=u zo4@jdHv-R}nTC@`#hQsqoX1|VIaYq~*GfAE+q}!ikXdj5D9NZ-G%jQ_7AL9W-UKcI z>O|tM_499($MN&-tilI(cnx)!%mg^AP=4fQ?(+lVmDe92SElKTZL#trs%_xX<@{WJ zgjZ@>X%j(4Czgs@4ra7lf^PTa{- zo5jKKH35ru`eGQJ(di7qcMv%a^q~6B|4;fFq1OPtzKEA9PG-lq#I2pmCFIb!7H&1D z)F3EyH+7>N&AvKf2AOfdw$)Aie9 z_1mL$JEA*UqJ^zE&#&YGwnIE%y}fwXh#eMoljR3*Zk#GVI9YTMmV10ld8ect197u` zs{F`Q$&s1TvQg`7dCmCZ3G20@*Y|$A`L*V$@+Jh2V?IJmKVafCBM$bIAb+VxP`nvHm zuWY?luyMA$dZrYI&RZ**sm(>rR)|R#RgJA1PldTd)AahivGsc=SMQt3-#=SWHeIkX zRsZa!4N#>JAD~S2IRlAZu=E3S z3NeC~&tjpRH~}I2gf`LxgiZ5`JvyPn1SVRr;jfwV2ky2N);-}${cv+KmO@WV z+Ou1*Xj&_bf(eNfMTR=HPbM%SDFAzrBSZf-V+EPO#AM5fh;7AeLt+AxQoUrqAOuu_ z36w)*Q9e-FWMWVbmui@wt7helolck`SYUi3A+}jyRn+jIQx@c>+V=GN$_E^ zEgV8a6tYEAK29$tI8lwB*=EG7m8h4>1$r@LM3%)|Q2Gh_x~t4YLq<2zP329z;wdmH z4JjHz^77+3K1htRlMvE(k)3GKs!_#v8#^uiJs3>(AQA4VASZ=kZnJCGT|m|r?eGjr~2u@sdg2w~oHI3R>^Te9+} zGs|L`Wxuo)WNx0bTe8aU(AU4L^{C>Rgegn34^7*-FXNR!#T(8_&^G#Tu}-}iHDqQ; zK+B_K>S!s^R0a1!3Dg90Kue-IAjwsA8!0*}vo<9_g7+iv8}tT}L^|BNR^^dJT%9*e zuK95A?$o(!m0{K8D9M(;2{s!I-s6Ez@MFZ&F~jO~O+3+wGbws|yF0;~(1YEy$%5QXNQ* zz(Vd9-y8Orh69wEBtsg!(eil2tfrfBwW&=E~~>H>%z^^Zm!a^Z3*%+}xm> zh`f_mf?d39>CDpVu}$2h&|>w}BP_H2c2)JTeah*DvB@yMT&4{Liw8Bahk5ZB4S>1u zQBE-v$V+xP4Fg8mPhfg)rabRzMgO*qdV<; zjCwQf>qwFY>j;TV8sb@6Yq{-`au$KgD7{D(!-cpCeNkW8s~^>bYw_!X<>yW~i!2^? z-FCUBT_rJB2`oKbxuY#~FkmhaPI~DtDS($k1+?Lxc&O9#{C>t_2}&AR@xf!!PWO5K zenta|1+}z+0&P6lb)gs$HR4m~r1C6*GlKSg;BY8kqA^KfnUxnzMuB>%(CbMQJg1Gq zJ!YfOXF3X$_djqHDpCAE-3N~X-Nb;aYJNZC0H1eJ-av^q66#H^7z+_O^4p9?nwnkt ziph9Te-(N?g`&l(*kUpsW9+!hd8>l*{s)eS7sY>=Rl&~9`TdLrsoUs09-R3nR>dv~ zz(}YO&;B;!kis%6e`qoa)Juh4&rrcHQVLpbEXW+V#A_#_f7xLsTa;{aDp0@Ofcn$O zxIn3*@;Qn`b-y)22e3$}kAi`8Xq|PEw zC9>OZE?91xpzp9L;-HLe_$M9|!k*s``mR7(1Aal=d@u&Vz6JMWPSVlME=*E`OH#m< zb;1)_)d7(Z$3Xo2?gNG$nANQBz>OzqX0t##uv~`2!WKo!1(Q!ZnN?0mRP?$S|}bOe_SrQf|BwPwB)J9?C!!8X1NHSGWX_F--Rqv|HI1<~jW_q+T66H7(wg!7$9I&uU$qa;n180-NFhzF2D22`^PnA=B zX*i=i1*a#GAV8do(MIb>dq_#imfqhY6xN?MSZS_-?9XuRv+fP4%X$0g1c^oP=%is} zkC}9srK-_aiqZcTwvb|-P&*V}fDQqqkc(Zo`p8sb8_` zexsLh3=z&ER{JxQ2GjmD!wO3?Gym61J6(g>!1D;TuR-aE{YYE8;WXHars)#gPRkIk zX&TP@yzSBoTrKXR@`9UwgLa_xzezi^zN5Z!t-c8D z9qiG1I+SS=mc{1rCuklII=ia1Jo;aF1OqC`&j*ddD_F<$KogPqJC^E%&zd^6hElVB z$5LHprC$1^!?FMrT!y+oU_PDrtU7wxLphO^91fT-Ia&!rxr4b8QX#Mh8jG^XD(#mc zRo-Bpk~5emrIR7TT}oQ5)GqrXizDx@>#Ag}e%SF6yvXCZaXmbVF!+}!7${$QqFX^=p zxrZ{&VzuMKUiG`y9XNmq+eDX=$X*% zcF&PmS?J#|4}PCk4PU@SFo?U&^>ww0bOP84etOon?hqzHct^uFGMGEptL%UsuhF6* zZ|B5)&ukeDTwVNf`Ag-~p4G9uoxfH-OLY>p#Lp`t=Z1lM1vqM|n{gyeb)ENP?W?zV zBdcM*xdwmN)R7(BQ0-QJd^04|!lRV{3p4JUD2Kd86*@s(ktP3WxgSI=1%-Oq&~>Xp z?DT(Pn<6+Q5`=KAmwWd7AQ2d!q$YlX!oG(u9Ld-oI4!fABI6F44V>6zb`S7hQG3I@ zP&56ljfeKM_>UajegEM-AY$oOLS>Q?F`H&GiHN6i0-2k76G~K;(~Iocls)uXLsjpk zF9MPBzv$~n^z~zU{Uu(t9`4urbBYQeAZ`nWaZNRKi=W%%R!teTvzvN3*-fgacy{P) z(0EcNGsB2mgK=A=H=daQ#&~7|2qAJ8M-~!HG9e8e7{yNOH?AY~ zo2y$1xculoQyg?zvb#9w>;}^IDWYI zN6l|G-@50xY7@AJ*#z!o79V)0P#!v8#)CJ^ z#0`c3E-T%ayRYteeM|J-)|;hx{dFXEZ)@}cx@j5a;}uoI`=;EbGuex$v#Vm+RabE^ z#hRJwl_P0WIZNMx3*)Bf()ClG4KuY36tw(yap~}(nR4%o?a#JHmuh=9uCs_u!T$(ti^$kYUW>3W^}pC``n)4BeSIy^yhXV zu5Per-Uk5B5yg9IZI17*Z%Qi+g9sKdG$z?~Ua*o|K{_UJ&xKsl5+)1}&7EZg%WA5_NC#Kx1X4dVR zUbjECZvW)EgYR0hGdIR^R*hthWzQ~c7=L1N>AlgM${Ekn>#mq*&FpdtT7K`y(VrD8 zpINc_MrCZpw$bd_x{VW0OxEp-7S`TIN+;Z;XYwnj^Owc)myHGA&fhSzX!-S(u|*pa zLw~lYI5FUMLZ&+vXv>`?mg==M0jg$e)=bn-*6gGo%MyRkBp5qH7j`VIr8$8177sW7 zdhR|e;Qi~lbiBhP5colD{h^Z7AJ$hMs!UA~3t_@@Zj4MsjEZd|=S1eZ>&1e>-iHm1 zwk37fRF5xeHMPOlX)#s zcZ;envXYuLNr6X;TlonJSH4Lvs)oBbvR#3AHjV@sLZ;V0(u&8{2jSA3ZNC*-x>lPd zzi`<3E`*7#R(Rl+HN>1noDpZaC^6e)+K^p5^i8mw%fSn96cOzZCux_9rRyCAWC*Pq z^q22Dw{-`4PD+6t%FhwAiTX}fL+35mi^nt1bE!SDMG+~6kg6pyQU?Cboy0FN)KR^wHH`rb3 z9DB@!TZ5^(AF$-S?$Q`Hur2l>YcP|UUAeRpB!itSVoL8`wv@3@*^*ml=yj{yPU}#b zZZRR4Hs_%8<6zAO)1=I8XoxNZgSAE0AXwz<*@6{!=}daNbIJpTa)C+p1Ka|W ztrHp4ZzsrB&`C1rY*4U*h}68}nGGhttKEx3lHi>Y#2M@C(sZI_=r}gI#f05ofdDjG z6afd25bl+yqaoRa3fjFg?5+`<-4>=}BcWQL%~>V0c|+JC*`gSLfiMPdu<Zy|4=M9+-?yl8l3xU%MB z)#s|WctIgn_v7zc{AJnjUEL81N!3H-BXjgnLY*fQ3m8D+b;gV*11z7`JQT2(oMj9H zn$#e8;3yHTQ8nkbqdEQC(H7Q}?bYmBgz8%F_U&xGESNwqmCpU6;R3kYL(IDZ7QJ*$ zHfoZ*XF4&tkV1t5sc!^HMp`ABx9mn-(d)$23FMu6NUmO10=0)&aV?#J^$~-tZ7{@4 zd2z@!yN(5ZS%w8g>{;@Z(Z^4eR8y@668X;t6;nkWR{o_8EGEQ|!7FN4KY8c`aQ-d& zj73JvMQ{k*VTh^K4E$Jw_W)b=y&>F(4Qa9tCtNWDF*mNo2K-N9Md0FTc1ELm4-gU8 zoss_J?kunZ;6p?iw(kX_WOlFb-Is%Cl*)StaLtX1Sv2qo;IS#fu}839z4@5~BGl7~ zOGk0taU+{hqEHPlp^waBiem&!E|_U)L_m8NtqnVw0a2y zge0}!A95lrhzbcg5oDH}TS7JRX&dN<6ohJ4-Q6PI8quLdNY;v$Yq$!i)X;x^m$_C) zKd(cxlj9RZ$2ppd;KmIbn2R90Xi4=Gq~k(G8%T~}s6-ctyuX(4By+$Ed3&)fVT0t8 zgxoNxpFo9jw-l~MEFJ!et6AT#AqPgv^C;bzjq92DTro*$eRLob7+*~Knt@cHilN#^ z2cD-HhC^cEF3Pq+Y9ZTj0Ye;-3ak)1%LPN~;oIvP)@;Ds1Zw4iFavH-rC@9)U5$&8 zsJ)mitXJp(JL8mgeE6O+@e{76Vm%FdneUE)BEW4^4IK^M_pJ@ePe9M$AX~a4fKEO= zBXP2(Q`CUGa49|UZ}aR+_H^LDGF2oOKWqd0%^6J+9t z%IYLO8GhHM(|s8c?3F~{k%E&C86(1#H>r*seP;O4%3w!4O?3&5XKPWY&JRB(I)dvMZWk7ft{5#HJ2A0kqT!}9y7<8GzT2LvXx>uzek?mm9w51R<94IMU%DI> zh2U#S%IT|o_$WjbnTwu2a`DLMs;QORe_Z*t`|wOb*~R@o%k<#XSTZK9gU_RCLi+QJ z+*x-%rN(85xm)2=l3O)XQu@C#QZut4GRgK{%^y4U)$(ZO>S5b#ZsF&PaOZPIZZxCp zcEz&cUBkFgsq~%9lF@_Xw((sP@>J$FBr97!dU)72%x-`>81ZIKJ7yg!J!`7j;*4kPf0aze|+wq%h_p&7XshFwe=$$TT&L>)pf zPI7I1=-8g!yAL$Avac5KsBZ&u2G&;DfQ0M?r3F7N0V?T2i`(2x{xlBx2B$?R28=PJ&8llDyTz4*4E4n8f20j6VwFlg2QU2N3IN#+`E z6mFobW!z=Qs2tiZ_~wC;WEV5QH=DV96BG>uz=NcOpwtvD?xuv7IE-|#!O%1ybp>PW zSgmXrYH&D!!IoaeZitjX;^h88vnio|!gy*MI626SWMUV;Nr} zwin>@wo`#%2lf#{^z1m{v+x)Yt=5D}ghKUApBs+YaG4R^yiR}69HWhrLeql1zD84v zWDLNV#keninBR}gB;Mxe1U(qUe|F|OD?)hPRS8%+M)Y8t0(%H)HB~fjjW^4 z8Df6yP1!psj^^yi47KPk-N&ZLdM zU4Qh`70p^;KDI{hY<*VfeUVZ{%TF)RTVZ&i!2;J^Yg^oXhTh_A7xNMMEqf~zyaJlW#b?hbHc7 z3-$KW5%j7>Ipp0Q{o@O;HoM(wP}JC^%$=}V=Po`$HqVKyUgWX(wTR7Tafm7QBv z_`|Kydyd9xj`D=XFBOkBzEn2pSrv7!nq{Rdo-V4771d8=G|ZM(VpiQ~{Qkl39Gt4$ zH(9!G_{dCl>6rE9^q10aWv`eiD5N`R^6A+4QC!JhA9dHGLXcWJrZQH*ajf!<2d1|l zi)}wPwd%ePRoJYjNIif4F>*egI5FvIin^P4p+vu3KREH&8_TD+9E@!_I8}G(Llz3_ z$Euj8>gxWN55II68ZOVysC(z_?3`gIqxkkFTpmFrI`(VJ+hwaY zhOA(E=5dfgP3lmJFtowqT`QEz02 z3;|Nwu=l8H74dN71Y?~}~;r6QFCQHPMU^uZb!f{cEAvkSUG zJ{$BJ)dB-N+{(;1PC%|(t;vvZI#M->II0bDBo@ZRF4e8oqCGWzLAoi%TiqFK>+Zu% z!|ayK@OF|bR@WxL5`sxpQo^JZkWd8Ft8#D`8o$$qTQJp8)tVrOG$KeT7)Kqh0q9#e zxy&JH)b=!ZiGyUNl1r%}J4E)Zp-j>!x}ll}p&<2ibz{rHM=+0E0XjIeM4~+Pavo8Wp($KqLre{wDr1mLv5MF%Vj_M{B4b0=T{_K4r(1Ti(u5N02QZ?s(H#IO|lAcs1m7p@I%f2fZt^|l9a z%U)-Iv}G`$I)y98W$+aI8Y8glavMG&5<6Ynz%CpYeGY@;hQ~03We}jDLT;M`;T^7{ zh7g_@MD>m-LqF=h2igHt1{N`M&~~(gBzi;$0dzQDjG#xQ_Tb`rS_=>zQ<(KnL9ZCm9YK6R zw6YTtLru2AHt!lbA~(k~dTJu=#}3@Wk)L&OH_UPJi>EylHSU=>_v3;o&wazYf0j|i zTn}beum5)XYw3UDp3dHW%`t8rUo&ETX8Ty~B=+o_s>$r_QRntw;}5%M=gs29jq6jH znOPfJARZ#!>6zP!SMq_D%;m<0Lo8v00Pg`DY)L)@+O<;nc1m<`rG5;qQ?a4Iz#+iu zxGHtP?!XT1<5w~hnxIvsF&k``G|W1PD@YL27Q)mwY#~_1IF}G2YP_LWg*71d4@^ZW ziU>@$!_sPCqLAu{zJD-G!uAZUQi#)V98xPGeU_DBFsP!sJ5M7B7(wZwJ+Hr)woR5q zU!A(eDn+6JRHwFQCq_~XlaP1!Q(9^mc5u=#1v|vjz!D+}7~&YBWQ$!ZQlH3eL{(`I z<`Ac{K8=sW^MsAZTnSFJ1V?LAo}_2c#;isbxHukWrb6J#P6q_%1i6Bcn80cTk_5jt zc{HzooGC!`Kbr(`H$04BxCcidTx!jU|8G*{zu^UEpvUkho~qghI<=H$2LMurfx;w~ z0@M+|1jh}ED||1K{0go=5K1n;x(e6a%#>74mo&sm8YT*3C7VHP7gbCbt%wz^zy*x% z+>84lJwky3(jUPOBR#82O1R5d*me-d6XC)lCiQ{) zmKZOBk{R^1(IFvrGdtLe*`?yBv0>E3;HTuEEeIeu@x!v5WO>Wx3Y8BO!_kW!=?03D z!6SGm55b2l=jr_U#Up1vzjdqbcM2MdwE8f)O(xy9K%q+&~W9Yu0f2d_$v#XC7AWLA}3s=DyY%cMyVGfWKdvJSt?N+^fJ*eZKj0F^y9`I>`kT z-reK(K~WQUxgh4GBs9ng33fw@n2?K@(jYE$;&j@n z+vK){&a`QpxjnK(r6}sHnW2w#rX6FMJeYPm|Npo4UVHCzj*KboOz-{O4PM%3@3q(S zTWfvquNf}|W{i_~?_}*q@H^4^QB7IIdUqfTd>0k1{TOe@?UTjZqeVO3x*sk~3ME`==5B91(CAfk7-kEx|uQ>~hd!a5SmVA7OTvTw->&c(mZ<$`>ogmrgg_KGAS{ zbkQA?`FBQxcS>jCy`I0#ih1%G+}{nZVWW(99A6a#faQlz5yn)Tq5c#wdU+D|w$u+Nr zHrC)?A%@*4i6jn07cCwOP(^V45rH%XNHh`ij#vB;19o)@0Sg4p)U)dCq~9UI8bo3z z$dLm<+;O^tu2(kM{Awz>fCNzJW}9doG(8BV$0L2+U0`ki;p&7^2v9Y*|EZ&APEy1* zfVaopUz?;Fa695{Ll^w5-%b%_9p`6C!vV#uSu$le`-?> zr#mU+9<@+(VfIHrY^56gsuf6OjMNU@(rZnty@}pUFX%`%Jj^OA-HzTqT^JEf*vA-f zN6<$-KdQPwD$2*u0D%IkAi$RLiBO}DArLc}N?<|^GT3}vX@Y56g*m2eyYe@_$wdMV zfEvcID3L4rA!6Eg-J5pB1`zfS<^l{d5R4W_#G#D1Jk-)HfzkDs($=2iq}>4ou`*hn z?NR%#wUMI;0t4ylL-J?MAu4Pxkj2d5>W)Oiqcxk1TP%@7_;F}OqPubQf}WWex?$lC zY*WoX6kaFVrQ7h=*(BX~ONG>8BtV9v+?*>25h^FP7P1IW!1aC?bgpzkWagPmt;xy| zu0Nz(&IMsT?^5b#u0eFJRaXItOSl(m53cI@0F1(q(Fpkh)yB-Geth$y;>`$%07H=F znWxy(dDO(3W7M{C@#&G{6qt%r_QZqZV*Du)x1&f*C(0&T|Jx{jC|7@u6I2ZETClCp zQ*w$kg$5VfC-ZhhgFDobXzkT_ZHMTD^{1cAjEAg_GE_F8^7-t>>S}*@cyRSR2cqb$Ca|+vF}! zsjdMo3i8=`Uc(5?Y#~rUXW$N%T6jYb>LFD=lOsp_2aiL8%^9c?`~LCn4uGC($H7Kw zE*I>lHBZ$nG%vT-DlO9AUe$EM8fxJk%8=)VbO^~-3IqWONFcQ_I;LQGaL zA*QcP2YIZ6y8a>``~{NPLQ|=+%~Wx10}BpzhPj+Dx>Ppua3`D}bw(-dAdELdWxACB zDq&&UuDS0g)-Zw!AQ}UP*7IujRDL6z4DbB68J9bLHG7WH^^&SqAV6&KN@}dFgnC(R z)0>0QrRxw3O6YI+Lav|8UK$PGIgx!Q=*&GB;;^Dc*N< zklY{UY?Im3_R685bemWNH&A9nR2Jh`=4ayuF~*T?I|ng@X2=?y$*Ue)^V;TDHbXJ+ zQbRQ7PI!FIcaQ}MBEY?kZtEObe~laGL?qPGNwH}==$D`$>Ox+^yIhG#6nk&6b#QDK8@4V@k6!CW5MYpJ zm1+N_-ixEI0{e}12ereTo9Ec?IpeKQ>R1mb+XYD&Q6(URgNJE)ev$?_rjHz9bH<{s zBJI;=?9Kxi5~OWd&vb0l7-}VE)ff`JzsAtLpkEQ_rZKd$7dpqtM?uy@4hBDwJ9|Ng zOyQ%*>&TU7^CW;T8prJitWOh#jtdP0V%fw7!)C3Iu3Zg%Lm)2ZZ`UF1$d2Pxva!~M z@>mTQq(E|8PZs*Zgg?n^-hV_^23=uuKO(nMsRSlNv_L+PCkqv>a1PE2v7gpMhs-Vj zu{jQOWTDUYHBmELir=U6w1CpHNorZOvdL5X0gi$&LqHze%=XL5Gim{B2IbHO)sYo3 zdOzBiwqHGrJyn?HY$VPDa;R)N*tcS zYg1~+?_qFd;~{FPNg+iiQOA{A5jb9hba?A5^f9MiD=X=Qxm_6Bp;P4_pD^?GPY73N-|4yoY7_P}xV9BipW3&LOrJTLYUQMX0w{s}C(u zoVAHR`Y2k`>ewg3e1L-N?~GS4w>y<93_@s&(TKUN&vxt%HosDD5k{DsfjFlAb9|(* z#54F%h5OutXR~QLjvt3YUvI?td;A10LsjotAB1o&K3x;PXL5nN#aD2H-2(2%tla`W zU|-mKaW8}fV~1bsf2DsS9~j=c*xe&qx^pUH*Iahd1!Hv6*x*$5@|oh2nY@A*mR(#n zvQ3o4zxc$fWv^AfQaN3buIe8A7c1kFnVb2MI8af z6(XT7TpnWcutGZ0N29fnA_+7wgEY`_=tQMPe70k8If!S6m5ms~V14TEwIPg6nsXJ} z<_9__m(4zKqJ?9%No;uJ3;+qNK?_s`R&Ia)@k4fTyU9uE?Srlacs}B1M-lpcXH2W% z)14;cMp@Tcb;H*;%pGku)`x{WJxQf%oQ61wkf;{J_gM_N3y?TF29q}lNK`Bq%Yp1g zqiaWNqoH-tMe8TCZi}YfCX?AgsQ&+FL$T4^v!TI2&58@+F|-QTzKk0e#5=?VHiqpu z_8dBMa0UqRLc95v4&rZ=2-j);tTx-)3EqKYbogY=R%YI@5`+w~3+TY^s^h*<=XV9j!G; zll&puN0(6`JX3Qo)V;Lh)wQE{PNmk*Rn#&u;X~74EmnQ|NcuZzi?0T9p5JvP zP&QXpH(j-6qH4{hUC}!qoUD3Cy{)Q|zw!7U0Y>n>^|)~YWS93%z5Nn%>GBB>A%Go# z0pqVO3F+%^5f7KfeRymXsJXeH_awYA0vQ|uI7X&sh73U)ykNS9AVY>g`NlLhVFac) z0@e5&{EMu@(dMbF#pia-q-I6)YObW#%v6O(GSF$b(@9gI&pXZb$RDe9CTlNN)X|-M zFa=ncA8P3)fbH!)-P<=*DSt!-r4K?bI z%Uxk>yd=_g8TKB5L|iLnI(@VejF&bhY7ZU=rM z0HXWp&?+o@8Ab=6Us$sctC@aT+{4|34dEG7p!R&W!)QSZX7dQZ&UwMvAo~NiH^f7c z#qch(yIUZ0YOry$85BVxh6@Oe$ZV>)iHhMJ5lp!h*HB~(+2-=MBn*E`h`xvlfX1aL zCB?g@GM2rE$k}}t`^H+q_ATD-9lz&&`FnYAX2pi@WzMYKdOexX&+mfLVsV9))m!|q zWaVEo>vbQ0jO=_R6=z_;U=^9qE1N6m!tq3t(+Vn=1US; zDHQ_!{dp9pwu#3vQBKZ_aD+?jag5;y)Blr+7|&%DLql!RSbDVKf#{@wS`f}fkeNlhe)fH=I zN-M_)XBJgnO1_btlU#gbsWhA5*8L8)f< zi4%h|j6-YG5h+4XMcpX6%T!)AWiY0A4618bGwRrM%{E&gv(3#@nG=iOF4g@QwI}g) zPD7%$p?td~lz7O)ER-?N9gZQ}EI;0Q3&eBJO>4ucMD>?hKh*jAoyQW@9=p1`PpVpm zid|LPFLF`6(aM?Rtlbnj*w0)KGl@YC?&mWm>4Y!xvoXtQ%@VwY?EXdbDM-}$!)%FX zvl`#U&L(EkrSU7#q6iQjM9-*%K*o+TYf*tkNzujIx9k#o?T)xCp?!@Z#U3TSi4|uZ z+2or`SW=ePj5-`D1g__1T@j_)-T?yLw0*&fg*N~I8hG=F0j@uCXdbAV0SQ|50gc#a zQ`5qym;C|HPjq*HBS22NWk!u%)#&HePIeg@--R}iXjTd=B#mk-6s&@T4=frYmtu&?U-4=^G_neOmSaCd2A?I_}^%w@UaBFidmwf)fC@O zrI)ybKn+@u?JO#Nq5oq4bWzhpQB$;V#rR-Um{F?XY^-(paU(lKJ8qokK_a2|C(x?H zabuycenr&@gZ^(&tLkn=?37%`tD%C}DWOtaEj!9R8u+Ow#T}YL=t!j$mtXwCT^H{f z>z=M%KY{=A*GGfv)sFFcVsb(>#v*J6D~#PSq>)StSZ5J#C?!k}1g{r)12xyNU96u^ z@dXs8<`Zrg6jpRRYHk|rPIDBk9pg3ti$N#-|4bW2YLgmRzBkY+Ghw$MJX!QKay*pURGYe&GB za(!$9R)u0pNWij^AvM?Z4W?B>MKT3a_VwggqKEX3P(Jz$CG|?YPL6>;#EtV9u!#bP z_m8rVqCrinH5rU8mX7OeDzp(oJ`n1Fqi5{qE1OaOSoxGq>M8bH|<=slJMP zy%z)UV^y&v_Wh0Iq>4S>3jye+tlWGdFqPBzUU1Q9$ruR1#<^heXkaQ>JtLy)`2B~| zArp-Q*)`E0LH`+hF-$`ZO}bkjMgAEr9M^<&UzsihV-rL9eVU`BL?Y1E8|``Zz}TK> z(}8IDBa?XtqrrpHBjY~KWO^(I>TOP^J+Zey_6Yzm*~x0_aYKTj_G)!lDb+{QDzAnc zXBIEHv~Ffe_)^`CzX{A+Kw4J9!k34KhV$@s?XKzlnJu{wPau2kfdw9+mM z9aOCl^GI8r3H4+2jOAdo_d?Cv()vL^w9hMBv`O!lqU&g7lSvaFm-Mj zXhw4onr)4FQ)H{~SX29xMxyqp#VAp?0?bUdP#9hfZ1F$#*qebMUZYoZ)zEgl{|NN+ zkA!1bcEL>SySb)%kuQYU+ zhXGq7k=DWu#IWH&S*W|lP(y=4-uOh_NxNF(n!Y6y>;hwtB^zbx+-?O&1v!PQU zq6x*_UG8Br8vqJ_U=TpvqZ(jW>>5*MHZw|V?M(nLwm62<**|Nfq3j!mOJ0dy3Z6{bOmSQtj9;W{|b$E0c^n>C0Ocxfr2(S}?5gO-_RJJhL7nFAr zbRA3=Gipu*MkMe&*Xj1CafW)6;(`~=fuCi#CJt%Wv#VCi+A_V)#xj3yvfUGQq^~x2 zh9%PhtAq0cAlRotj>0TCY9MBTETx=a;N`fuL znl9K8EG@2vS7{u^5@T2Ek%KZ#B?!K5f|ZC7_hU zo+H`@0@5II;82RXY-tk$1Df5#dzLDfd%jiClIFMZCALE!fo~+5!c= zawSqq98R)n7ko)}j$D1IqHm#pJJb|8^f4FwD>-Qn;;3?2xEq2U0+%yI_o=8y2Q3xR zy{~1caI2sd?pRDsN{*jt{5ncgB5mRPZN&gWZth$@49*m@QWW(fIPWCBXP72)If@Wm z`TrH=fPmtBzROx-^2wSF{82qu+c3U)vUU@HEcropfvr=q zBYOJ-lU4gK_`jNUwW{WV|M{%BV99i_dLjsb9WR~=u7aqoc=1ybYjx(Yc>@stk%Qr7YlxLJrrD`7;ueIYP#H2@>KdEqT|OZ#&1R)eqg4g&{SGu|e_ zLtEcst+XOl-kRaDcP(r?YFXWY^A=lwC}j$t|4DU2+9(jZ4bSUv*b<>*UwflJW~F zGx;>i-uvR-iTwI#us(kD^j_46;=v$5s;*-Rmx{H}&D{|^?L%1l$_h7jlln0Va`#3V z1Ahm-na{;bvUy8{t?S&X^d7}_=*i_a$jKe{4q6On#mh;|Uv}(`%HaBUSSeSoNV!JW zU7%KX{BUp|6JR30eIa17I`374YHYu0oa|t5fd%X!c;AfZv?7Vc0B~f7c7?| zs=E)Pg>LgW1`l!%Gm*!(w%=oA+-=e0V2;#MpSLh+Euv29)Xk=yH0V%p;EeGWej49p z@_8mUOPy1z`08Sb%_bPX#b@6};xxk6gm^bv6Y0U*pOVqu2y>iI!yKpVg_esg41k`? zz}R&(!pVd3NT819IeC0mub`)4&~SZe00~(3^<>#sN%G?~ z#MYMX8ti>1{^^V0#B2UjNSvg6w=a>&4Wzi2x#TP%WEfGj_5W01nI9(8!)26jzNceQm`nD-dfh zTC`@S2vG`O4!jtcth(oN>+c-;%|laF_e?IjCt7^(_uw+p5)&E>Bzk1m2K=f-GoWBkHEeIIwr zzgbJv3GkoM65||(B)&c_DA{#3;l??Jq8XiV9OD-ZmP(Raj~NvzJ?6u>(aWRGt;g(? zKqp$+w&9_zyp4G3ONYJYqN;Z-Dr{_`O)SW=oMJq5fM#)(DewLQ#UTa7vc5LmWPNE8 z6al0Xtg^r2^rA77RV!Ja#$nJ3YVC_nUp+?~UGh;GL#No=Ti-WHr6gpIQi!J*LHY0>DNNX;F1{#`CQT6hn7Z1T>UP%_rlAR8B z>a$`Gei^M_#P@Oxhz(Bc`7WpWQv@HjEb;mNIlgA{AK9KQ$cOVC2X$fDbU}EcAUr~0 zMnTC)+6})C=X1I*un#_0yn#*Ec}kn7JnU`dl)sT=S>8&KE<{iRECpH5Bmp(^DwktW zd&JJAE|*chK4bxJ{8}zc9Q#_0g7Hb*XHqHjZ=&g-l}ld_-nb|rry$#xbnl7!PH z1*c5{vjWtkiBY1kR>{N@TI5g|s@mr-poUM3A9v)KD{+Pzb3; z&b!SZ?{|G<8}mDrj)W%$ZN8?V6^J49 zE$csquW$xlh5f+;S5k|i@EBdRWiqQdn$}F?v16~+Ol5>;ib59-jik$ivAm0Yul7!5 ztVC8EekDyXPRL$?yTFR8>9?QTHkVs8S+w)=rm3Qxles(3?U~D1GPZrZVKQS~)W1&c z@u*v0ddXl~Tzh;B2zuY8UD$)-Y*)PK9z*;KkpT#wwY^=l2HFvn3X&10+=3iTp8H^m zLOZM@-Qq1c1uWXbFf6iq;hh%TXV_e-*h+Bl42h9}kZu$`(50#w4ogCv*yZs=qo~Kh z3Ehb=6Pu20Gc!Nx1ak00p=+nC4;>a`i8-ziqBw*hHWv~4W}IK635knz=aLY5BMEG+ zh@x&0H3mU|IYZg&qG{#~>FL1@hFz|CrQv3qS%ARsL6O}DlLSW>(BTt_H^rOJuv%9a z6Sn(L(14-x*jj+;gL_YhacymR>=5~IB-iW4{o}_RNKA_{gExvaCGS9;v0q_TOmg`x z{z3dY4`NRFE0Z_I1?FkSD_4&=jDnXO#*Gs%NxYXxJXl&eqA*_YxnhlJLZShXk8Rq@ zP5kBE09HFWxU`AH9!qsaLLvof5NK$3&}356`cXtLBE!VC+~E?tY1o(7M+WJMTuYKd zST(KK!guj8){$_#m3lSAbTB>cI|3zZ`4YRY3K^&iY}R5t#DO;#C%rJkf)j0IFdM|l zGmSN^Hgoih{V?-R>bbm318l-cN{i&x;o7*BSO7VZZcrz+e;nn zha=boV8}_=?UX{Df@I{u2pq6O!t8D&wPw5Mn;GrufLn+&Luk2f8n$O0hf|j&TNr#p zo8D+KtGdfF-=V{Bjr7-r9yI*%?!I1$Rjb@=yFtyGTMZ4mfyyNrRr;kWij)Sq3 zGng!p3fI7BX@<3yoK~i07%hC6RPbrGB0Kbga5=M(RDL(_sKY)l? z4<(3}xg=EGi_ye*!BDAMwLoTCx6SHkFAKMFvH}%TD^7MR`IpGN5a`?6krjY|E~<5* zV7R><&1`RvtA$^~5IgR9H^QVYRMif=!ypq#Z&sm<0W>4x%C_p%FZLs{16;F9iS}Y< z4`9a9O{IoT^a9(Nnxw7hUSBt!m}VAmbuF7-w=F`JBS0G0ie@(BgD}=7C94QoDdN=* zY+Q7*&z$wLrwI5nDkMB+aoy|Yv0cmIeujz%*!2*f*HkIN7LJ_{E)OHv2MJSLVc6~j z>bWbzw16g`x+J@E?d{@>MVXBpLi_No`3w`q2hz|1`1Cq*RDe~S07_5*bX%8*qi682 zH5G(u_NN;zDF8a1glblU($G4Z)zh*Iv24X@IJ$BY=2g9i5vgE+v37N#rwl|lphp3A zT)Hha2%MrEbgH{YWZ$e18b^O#&;uOjjrdlCM$`E<6Zth`$7br6 zf3x)U((zz)?S0YOee*tV!2{lr?e8%LP~C)Js{`XlCLPuS3GvlY;-X9*MlHq<*g`>O z<@qn-d8f16Ca&q3r{L$K42DEZK+{wmB0x0!(nZ5BLp1z?qT!d>opp>9Ys^KxKT8sQ zFy~BWeHQGhOnjB|4`BTRd}6$f1cqKF*6zZo*Mj1$NVaHlRfKDPQ}J;Gn) z&`%S)Q%)>*cnM!APLpnwDep8&@ybOpiP*W&*%vKec#e}@g?2!6wWxB$|7_+=Vfl1n z%|u}hex%P7FMi?4i%*XDzofz@x_Zl=N^dvdMzM+DYmuJN@H_T`D<$TY%jVtFS4s=* zl+C`J#vQsLUHVgX|8so#4iaaV=*9pO0Hs4XHiw^a$22KWR&SnX??U(%z01gs=C7E@ zSOLqs7dBmlOXrIBvdTwWC$p-fY1KC&=?N*$1>S{8{aTXS-Ajv6!|9+`O=}W5aPMrf z@$c{eN4H5DOkk!tixADIXtU0CTaSzP9I;J!5x7vsXsbR;n>W zuk^)xX^Tmfht3a0(@Nr7;YTY-M9<&S%njw6 z>_COT(UmSx2hQZ{W*mgKP?qrw9=OjX5eCPOnvw?mQp`jyAMYAJ;C4xqcp){SD!>|2 zbtT>~z)zK+50-E|Ngbj`@Qo2Gqn}No$)VVzx*?Abzu{9y|l0(cG~&$_4p?47+bq=6FK<;g0YjY`4=X@%FZ)X zMMTrYO@-(d)W?C$*Sq`>{RT>RFKRp(S{&1GixLomt*z}%bYWgEYvrJ*Il5@;WY)H5 z+P06e^L)H60NE7X4FJ8;I()oY8>VO z+%+jHaI3~QHcjsHYt|z_BCc^@+@2QAaXqInaNps zZufP+FS+h|x<7fz^`JL-9TX*!S1~DNvVjRTC{(iD%iHaAk(v^mPA;5CE`%mV@``z% zC#6X4WWc2!1NAI0^tS@*9sAIy2Q2n6_3oiZd$8xqU^>iSSO4p(J)wit^GBI95*jP>|ki)_h<^KgH$+bgp)@15_i*TaMa&A<67VuPN zWPGAY9=Z<7OBi91lVJGRoDUB5Zv6wo zs*Uhv?3|JB0y#sZJIvYZ63{e_;a|)IIBcfPeu8L>WGs{A;ZmHZ z_BFn@cyOu=%WVaC4hVl|)85297(P&#cYET60Xb!Usm&e>6CprEBobc`*qKCCum`D9@H;fjE$JpD#Z@j#Uq;+ym#Rn) zdQDrv1k)SxYSG%bSIp8$7c6K%I00YKDgvfh$WSeQ5HWT5Q5|O&B6+1ScI#FPW2bLc zR$Jmmv$Dhk(*GC$5t3#=8Fm609+@M15^lDNxGW4Nf8kg~D;HWtF6`i61e@gDzsAwm ztX*ZG`{bB`@sD91Br~&L1Uy)3ur=WTVa@grbR54^3@wCR+eLq}8dAWyHyBm}go%pD zYRN|J@#I`6)33e#kN0+mTd@g9A>hW^WhVd#hyodDMhC4$8{LsESn?S}+uTHmb60o* zmS3tm-Bjl0CB@!Z$L(ov2ae;@h>VLvlAz#PC=3G2Q6Qw8=!H$6Go+>}ik08FYU9R@ zwzV8zIE)!lixSd6nZoj5BDHYbmG4tMfL3kFeg`}($fO>piH`1q_!hOPGnUbT&%tEH zQK!c>hO@X3^J@oTnMpE)k&)YQ18!oqi<$TvrQa&O6pY?+AlmfEWcI+4?z zthaw`Sl2@ciIg66#3`a|N#uYhdLcdpS|}Xgj{)inLpOk0*Q9{Tg6Wq20S)?qZ-@2( z^ZjoIaI2}pyIu&wb^;&_CM6CCEB{ABm80YkVn_^Y3uiF$cnxkdI&mC+WS3diXR! z23E{Xk{e^}D^M4YF{T$@cOLCU{1#?{M=Fv-5eS#XtPx@+AZC2im>v;%a3s_&fve~t zT=@!zP69=(?X3Ty4nzEWLl#PfpSqKSrl9sjsDE&vP8MCdbI~o4WhnJo29xTbY2Vr3 z-%iW`e;<8Ndi7{b#fJ`Y)8B!k3zA1uBenstG!0h75wVY55)vK~ybE#^ zfY7#Y?Jz`OWwnIb1x~_JnW$Pwhs4iX5(>9M-X>!I_ST5V!ExY9XfK|xDUxt&u~J5u5T?ycc)xY{^3%@PCaj&1Y(Y`J$QfGz>G|rtc((>^lPyVP9xX z(<+4g5(y?Tei6F??HARGLGH5xVC@Y65)&j%;X5a)A$CGhbD~x^puJ{u1)Qy-gvhX} z6oyyF@qSb(Y%dcc1x*ntr?AFw%%-7CYL!4t!0 z{+nNl8>cYCHo~>N)M%?Ounboqzd>d?wDE-b$x=$Mf)1ux75T7XI+=l~WD+v5&I}rq5IUlvf9fMBUXE@YE+#`}5_grI5?ni;vg<@GqP#a~6~;s#jhxA*g> z$aD?fz0Gzq89_Ve$&dk`w4jvMXy*eeAK$vBRb$eJk=+Td3FRRad+CYA2j&$gTqh?^ zu2@03pe3*S9jXXQq{^00;S0CihpR!B#1}d6Tp+Lupvr-zjF5nSD1%&O?HE)M8lq_p z(rMT7Wa|k|^VLY4{Y@0q%9i?wEryKmx6xFmZ&}aVIWgR7etU-$wQl!`yt-YU$6#GSyqH@eXHZTSiil%7L zlw~ATq4++V!sG>(PpGEKuP?AdttNTRDgVSEW_*t|EeKmLb9VoLS!A_mu}b{Y7v9J< z&&}C6#Rq*ibLI3BEeYvm+)vw2@dC@DhYE=CY3~#YVQj*&M7QF4_aIp5)%0np_oLwB z4HFa*;*tA~TyPk!6`gTx*gJ=IzX0=4pScoY6(w6BTj}tE=685O6W8ayfyW0TY#dQG zrM>;z_@z2#kpX}o3AyVc{4gJuvh_R%8ajY`Nf9sBjpu>0-|knl8oa_IxE27_G*1@2ql~UpybX%pQKsk}Wt~Y! z^fk7!<3FUB6sM(BXTq?}!%O5eY(a8NFlU0&Zny;m?GphSEXwI7gRKuLOG?q+v1)*w zb^z@LrMVo4e2N#$Kg1rf73fH35sqOkIh*3(ZtPom!z741-F=J+W(rP(k# z&SS3^heDt*dzpBEwZU6fawqS~}*~QtY>8!DiQiBQ2k~ZF<_ zS4}1fE+nX)4*{%!4!Cc#Xi@YEgF`QB91l(Zk^a)vv2e<=WGr-9)OYV;LykgcR|3GD z2~m9&j7EH#Xco+YQ-rKjJsBVm_B~|R43|r7T#H(_hdOk${}f5DM#tNR{YN`ac2i?l zQD3@ggBZSk3M#RNU{N6!6zH95lcJ6LLJeA8-e9`k(nP2J(kWDJjRz7pEO%I;vY-{M z7ApV(AK@%O6Tuv?AzDacs0kk*>;iPDc7cYaj{wHc!}^TS+Taw3b4J&a-=`=6#&e63 z*1gq}MlAq@52dOx;|`eQJ_~dU{BO2K?6s>_i4qE0?h8z@Z-nEH*kTgTQmrlB8tXIu zrDV6MEiO0sQSvNtUC;wmpGajQEVL_1EGcsclFjPeMN4g{HGFqB`~nVy*KSyeAoUOT zb`2a2uV1^e-Yw^Y|2A1?kE+~eM#TPBkHb=$`;#+x*>N}$J}vUf-Hg2<7AyoAY^jNg za}C%KzNb&O(-<_cvD5_x3Etew_otieQIjU{L;HKRZ@If;k5H!*$>0&X1pns4NGv<_ zL~4l21oezLTE8Q-G0XFdt*nqmufYZ^UTv(a@)frkzk^T&Qpx6OKE!6Yb?}ci|23`q{Y=0+M5sz*XDt!1i ze=FLbXW8(?il{NIR*Iz-@zcLN*vw)on)$iQMzR!#IY67l>MT{HphL{3ROk0I(<0 z55R+9pY1rGL_xwr8XUO$!$kTzNL|2YRiUF=wVK1OlNJU9oh;H4E9Orl*COB)14=g$P;Hy zo@sBdhoKExgfrHpCUh0jU??wi4R*rVZg2pag~W1u;r*1otyAMk?L704uRc83dmP4F z5xAxusIGI2q|*qQ9knnxdVfZEEg2C@jv%Fp)w+qQb^Bn9IRFSO#Kj++GiM zs2J0+;6>RHrr~4js{Mae<&3-`V*qR`P+Qd8b1W^G|C)>gYXU&BbP<3dJhpcNR|yPW zuc1><3nE!N_XG$|0f8c|C+5n_y=XA014m(9PZ9@9l{Ru>0na^3sY*K6K;;e*GGcKG zL;!NAh-m`_mPD3dzt1>g^RvMZt$n1|XT&q&AMuSOjU>aF zTMB$rrJYR~PN5X8gS@-#wij>C9UUTYFSmB4Mn#i~`YA~04n?7Y_*B|l;J)Z7r3$dT zUM@@$;S%(^X3|=B_9n&oy>&%ZT|=ApcH%Co&FLZ?(LAARshh{DmcRu9U;#V5!^^tv zt1Ii41eL`Ekmr8U2|ym`W+>V2CraRqq_AYo?4~SJDcRZOzIWIxSPGj zS&Qo{H67aqBhX9kHuka=@m2M9DV0KJRlK)l^{z6VgCr3Pr4m<`TNoVGGHKCP=-es| z3s)ft+8);V6R4Pdf^KNYbv5AQ^Z1)*ka zQl8H3?e_4(BtfqxhyMfccvW-=mjWVHXkrd`!N4MC`tTysJ4AjKinlmXjsh|2NBf;P zP%BEZa3=i}t2lf_^aisPVeQCk8{;0U>m&P*_ zUTWr{Fw-Luc%%^%4u^6-n9uN+L9H>Rl1zsa1I%vf=u&Nj!yzXdRM;$-V?$i$%T3xM z`C^)*3krde=xEp{Xim)ec9RB~Isf^al=gPL{;(D$1L-mcrWA){*^31FbpRpp zY2#Q-kk)`nFJm}Yf4 z>1YaYX*4KmFJDc00j_S(r=0hn_nl8V568nVrGOuY*Xj})IEmr87s9Lru>ww5yg+B* zk~o0VnG`}#pDKk2nL^D3Nh4+^IGf1tL+9iYnec2t59v^Cf}yfq@acR{5#J>CNf&sF z!!uP)GfP&_RIi*_x^|{C^nPaQs;rUSQ^Doeay$hU(O|itp~BlhIOv=9(Rd%tmL|5# zWs0py*cnVVu;wD%{QWu4Paa4L1S;MK&!gg6fhVUVnr4Q9-H7+INo_kpFVbtiYhwI( z=fl7Gtw>(*1mIyfb}E*5Y^JQOz}1tq)MNO)o=1dbamsVr_lV~doC$Q?i{f^h+buv( z=nS>tbH4=L29rg#zd}x87!VU;MOhh$@Y%SG1KyNm){Snd6HTxd4d2$rOPo&?Y6~UA z7Am0!AAS{Y6Q#=EMor@|Ye|6XY_a-q>kWv@$;z>XfOe~IGMnr`hlQyVa~xtE>C}rc z#^rcdUoCJT>-t0$7H6QE6dYex+qtEg6QCT=;2;xWHW5#SggfVi?d8=z-ADfyoBZZDYM)*$Ay@D@Utbs*g(HTc*ST7C;;p zHgr);8OUrw17Uavpf#<8rh4J(`Xk*YSBLwfH7+rmB8D2`L2;Y4&<3f?eSyaHShezQTQBJ#Nlqk8Tk33@nhn2msig0f~`uWRCYkqz$<0qJ1@+>BKG*?Hya} zoZ)H^o1v}Pnj!=6W))-ir#69R8@E)zpJ=~`D--s93CrZ>)RV{yT8@hZegS9Gx3P{ol2J? zB!n0fyE0 z(5IIZaI&<2K3B5<$L;MrtehNqSn^pN!h5sDYCEI9I;hSc#~w^?cG@SU5IfXoao~T6 z$^es45i{-W)P@PG!4>Wpgzo%hex*BQw*W|^a`mL~buFc!7liRm$@kipe7Ps2^p3F)(wrWFai1GJ}*%XXH9Uiqx2=aWx+oxL3P+60XBm}4W?dCwa> zqH!53KcZbaC(c8*EVaiEbw|5ZAeLfkO|okphLfp*LRFK;)8#uK>m|$I(rGqCGLaWu ziGTBNBl#*g&^K4q1+C^kpW5XeLT*Sb&4KV@!fm1;QMjlV0wDIfMmk`VuFk<)GbF+IVk%)DSu;Bz|tQe|30ON60C5EbLcz(0lx z!}X@MAU00TS^`N)Q*`6MFge6Tlv{ruRfu@4-i)0579V_<$xn&h5XG5IgZ6>MgqaQY z8@-6m*>Rkj!h-rp-~*hYHWeua4>ei43Gk6S;A$6!Uz_pF+BftgQ|I^^v9`mg7Ifr$ z1?4a7y|{O*=2G~rp=j%a-+khpf`?{`m%O?Do10(XJW;&y2bIglw?!+PFD<=N*?hTn zq7p8Rn%}Lcd427-*3T`j8(;IyJ6^wIyeYb2Z#3L8x%j^5qWj+ECzF*cql--6VW>)9 z8XWfE(O0pOZvh;zW@5oXLc@44#a=bVR6+PpC{d;b22FbWF&A&~xePN!IrdnqF=d0) zkSe-7^_0O=*0|+SHS_-iM>UMX78=zbl!eBYM$1->*G`nJiWaOA@_gtK2a<&|)!L7R zLh9@9Th0R-=bgfc?GOTvW584sBmw|pfU?a-al=}lF`EU(g+^7Oc_o%4KjLr*K#Ed? zz-KFfbT*kii5S00fbC{NfCa3|sL2Qa!14P#CV!t`B)NsQ1GU=%_*8oDWGf6+*iA?P zoqxq)qrLEdr_M)lG`n)9uJJv{E`9mzi)SwcXUak^ zZ+>y}uND19<+m!MWm_(!y_Z}1LgmHEvGU2>rk^CG<*tHXrMwl_cz2_~Q?-2j;mOdt z3(3!C&TQEc&DkNPkDZ#TyVIn9kVrSF5&sUsx&Ew0>Q$j$m@d3sFx?FmN3)Crw3#pfO9K&j` zNCycq^c@aK2){lAS#`i$9msp>fomT8d3Ebg_~+W)@QSMWE}bmJx+wJHmN~y3^GBt( z?VjiS&n0*IjzBr?5ZGg%LTk?Y&n6H1FD5-3@O#dt$S<9*m-#}@d^ca8!&sZcer%da zU-wz(>{pVWtwzbIEZMfTNVI7~b1H>47>+>pX~U_fy~AmC(97YpMBB9eet@0=xIb4=5F+N!%M}@N_nv+>I_#v^2_?O%@XMD~!v0A8eDlL^&pc&)?;j z-(Vtz`Z1fv6mx$K&t_G_BF0*Nn$mZoZQ$hb2*3q9n0cv9EVJzdY}niSPN<3lC}jx_ zy9f~vtg}$fbZ+g7{!#Dfs$Zyz=GKm+Oyt&HT@wC@&s*H^gR;ueRihnHwpvv3QtfnU z<3wrW`2Ck^FXvwNMQ?vFy7HmP(uXICA4U|7;)aoo_xb0&-16z%x`|u{Gw7LFwehXm z8$NH|9`8uX)vbG@X?sUfrqULV6}`6jmBmw4cOf2SFnc#t-iovB_vvU4g} zIg?#DlKC_E(95g)8G;)WH$-?qe?GW1JLO;1Y%NULOwe}deQ`WH@kn3zE!V=16SCV{ zI3J>5x|ag%gsbNlQ4vliT`tt$;Bab>=d)0R+wM7pUH+_p*l)id^dg#45KjPW>Pn=d zCAlhXDd{uis-MCNw=^Jr^sI49&>g1dOgRZ7R-LeaK=Ej^(p$7HBe*y z>dG3GlY zGUhp`W4Tq5{nwg%s451`y&AK8%2S`+GPH*N6vRHiw-3}imQc%6w_3;6zIpq^lJ#G&xx9U{ zbjw7^{+}72WnJ72hbn+CE;r95(dbY|kCFn0hRT5>iXT*EEd_*APB8Ua5a?NN#4s>z zA9_O)tx;*E`!Hm)MR3IorzgFgZNh1?JY(xXTcrJI=+o_-2%Di$Uuz6)rCBI>O;5+MoXY+4vzOrKXTnf!{eyovlJGX+&DCf#`HI|XZJ3#(B_w07HDd)~SO$iY7ER_}XFt1c~{Y})eH zsw+*~Ux|FLI$FE;d-u=OEqm?ED`zfMOxE2Mt=)1h)mO9CJMZz8Z9{}gUm?-}E4q>6 zDOxg z)ew;=M`(cOo;d%+Sm8u=?OcB8OY5UcZlB7(V{XN!@2sD`{lLWS2PRiMa$)B?1&!}5 zZFsHam6qwH+b5Q8pI*9mV(H!sdy((*os%neU)VWS(0H}D1j38V)fap)znv<*Z6g1+ zxzcd7{{Cp|!xQxnPnI5t795xrQAq|hbY~)83Z@T2~XsNr*aw)S9)ac&#u>aN;gDElm2cXxGN>t0@5Ky z(OnS8e&kT{UGct!%+ZN$l<)q+2X!pYb2{ir|1l!*G1rs6 zuHc&*`>?r@U0H8t+vn_XQXySJZPf~Efle3-L(2rsk2Kkh57${);4$&hI=;Y7U2j+2 zA%~cp5&;!&hK9zfL-h74%E!<`4MC$_Q;cx+Z}Za|8F7gp*-^QmD@LgXL>ni-cQKD> zR;+Z>FwhVK(TkR;#3MtEx*%&2*G|2CdJM>zH;*r8mC9ol#s<1)qC>=dcArDd`*w>v zEH#wP5TGB2pa7npdLM_l${tTk4h1_A>fLpmrUX#hU^z6p$#}Qud3KL+*cxOC`x--G zjx_`{kQ!pdt;ro)vyCdX95}liOVR~F9bd$GiyHd5&#;qc-EvAy5)~3*ZgLn>z21mO z&H>9%T{2yEeMSXPJljOQU=eo63@@iz0>pNz9y0 zd!V6DZBr;B#ZVz7Af&8^pi?J!O{9+SgaM{diGwPTpyZ!t+%1Tk8spDd#qJ$Y#K6av zYMUySBW!-44XAu0>NZ^&> z^L!wG zhGxnuMvsktYJBnK^h-~?^-#3*-V3SM{Jz4K;6N6Zzn_u3q#SuGt9e&_F&kmsvWx zY3%fOQokLT%G^4VG*?kKx_2aLDy?KDJ9k8Ri5gleTGd>?(7&L9WaLirz#Bs=8bg*F zxB5;Duf8zCa?R5g!|mOJ5kCzou64Wy1ccgE=BDkCm#Zxpp6rizpAcV(0QAFyJuro% zM$bS$&I`xM)*Am7@DI-u5o;GwN{q6HgM{lxl^r3xUoL`ky|KYLI8Z-8$BJJ z@UOSE8*S^h3IlYnwxrhJM21iv!h<>8c=Xe0`@&7<_I47E`>XrkEG)`Oh-LufZRj`ohjolRS18o^<2-nz}IP5Q}W!&1>UyQ+)%h%Vd8f!L2N zg>S7HW69BDTaQ_QheGJm85ZsovAu-2*chUOhxTGmR+}U~?SL-u;9)EWcyGWa35>y1 z__E8uW9Y3*M~&_y*wf+VR8&6%J!1dOt&}1BOg%iPiX4U-6TZ`($9Mu(aJnOt8tmn2 zdI)sZXY|rQHwKXULl0^>Vbq*1U5*?|#9wxc{yM7Y89a{My|5_ig}ngB$<%L_32{2q zNI>(vjU^mwrORb4Yx`R^&2v2|H(**AuEc8>xkK(hHUZE4uOgui>OyggoSLZ6KE2DU z@|t`_e5|j|q(`825R-q2(`5j3(KKf7FyPggwJypfMej=bY?7txYW;<|ZWzsfz>JrR z6(VDdn6A~9ptxF;TB#=qLo1$`C;Gc!JO=3@adqlwK$p%LiOQ++ZCYc+xdaj38kiqk zGFTc6_dyx}&Py6C=9->$E@8=kOHo6d=edv-;(Xmzn9G2R_FL8_!M_UefxA@g&Ie{z z@v3Gj8-2Z+E^raBS^{C-B=1m|s0jmyCMt2q5$K<~ki2R>ss^GLuI|7eBC)_|s}JLz z*sTMhWyANM?4XBh-RE#MpCIpN@Uaiv#=X%E`=SN#6PQ$-ceS|eT5?iu`86MMet0bv<$M^aKuw>`$ntzS&|Ksj&8SWK zB`p7S#-uF_RAr-p=$G{1Xy}D8# z`xLsJDlX45#N}D=Ou9HdgBui2$GxbprTY|T&?Hjes7Ovy*w;#|>jBcUpuZ4uwBz^* z=vsz`x(z#`tEItACh}3}$HJ+uDlV*0!GV)B7zXjKTz=v7!J+7gvwBiPIrcg8WMP#G zuK~NF$z?elU$|*MuZw|F=-`PHXS7mM!j?k?^Y zW_Rk;6O+_+lz z>&}i|hKJVU;;NnlZC1T@^*`z}vtoRW&zFSmyT@JrAa^}8&$@cJHCiQYQ{gGxMycAB z4*`(~zMR}-2a*eD`E(I3D8+Lw8H+^h%Q43rvK6Yuw6!IHk0`_%%u|Et+_%9BYzY<2=KxmWK9WwYCRYUunE>55z{$vnngUT3$DL=Xl1YdoJDeR`pwl-nuWk|3RFCB@ctE z;V&z?=J6L6i9jO(g}`RP@~jENEQhsf?QF74nXwFy3s^OY065V8ASoqR6=kfzD}!#T ztR>RH)ge!%Fms7)QN5SwuEh)VKASaEsm{SOP({_tdtcl;viB$c)XbuJ$j*wcEiN8ef+que> zMm!i@a`Y-lJ3v0(Z#{JXbjT7OG(Yj61{M)0!+v8h~`c%tHakEg%E#Z+@ z`8$tolQ^o%vxn94QB}=WQMH@CC~uNk{%qIhLA$5eWCR{8N7hAF<4hB1ugP`2GL ziLTlh-?AO!Yh5jCsn3iRDZY)a7(6zWH@cX}nOa#*#zKY9jFCSQ2Q-*KzUhhFg&TUz z$_NCnmwE%m*Hh904c7~@0_E33-oPD*g&C;9`p`OHr>jX)`GfWRo1)1~^&HOC!qxjV#Mw%D!5Zz%$Cp$%=? z)(>Bfk(2%6=mxBy2z(rZ&ZYt`w8Fu)k)NhXb0;5cQyi5h(jB%c?hB~V7-jMzlPyeQ zoN?n=cNTA~L-*HkrZ*xpjDdL^k9_93CpjnMrDNmybHSXsVBU1Faw1qMH{}zMi3dxr z1(H{!&wG+9Gp>1(0~u;5qXc~szv4B28HqD$Lznj;gsjRJa<{)H2?Rq5h=-JJe^+XE zN>^G}peIF6)AXl<2N9bc&(pfoU{;Xvv>%?6{rYzhzti!KWn|($qbmz!NU$p#X=Yar z(yXprq}km$$Eu|*uB0nZ$dL4|eB{aNDnObqaU=@%!?Vq4??L>nFO)It_&W@e2#-vW z7X=@dndGA!Ho!`P(A8I0sXN<{p zus>rQ4@*V&f}e1ovA=uZ(N=m46&f3N2z)4yY_1||cSznK$+TY)Q@bfgL|1|uTG2!a z<-nV8wSEOQLu}HF?tlpbdYRd`wwjD&kB|81>Am5W7`}bsh#QA|%mce)y3Sy1 z7PE3`kG6eNtrN~B*(ajNM7t@67b?qugM_B(al_H*{qYX(#2GIetfIvXo)kcl`IhQH z@Is{@p5Xv)ZimaR*+DD7(lu4G(0uT5jltvH5y#Xo7dOm3y$0xJ-Apl|>fn@;XW@3}Q#TRu48bgo7e|*6F7;d)Rz^zNIcg&aaeBhnU z;Cz^nCSt-)Yz%Voupptu-}7Poa$2K6S3)1**2W*nu=O}>l8;)!PV!C&IKR|@1p2ss z(a2l}?UQ830hMeYEmrx^)Ac9P<`_{T3GcY+>wEH53G`77g3zk%urSu-%Ru37dp0>LSvl zp)MCRg|#NE4ESqXBm%M0@O&QZi7!Ey95A6NZ!eh?pgo9?fsA?vf1oXDbil!Sn^pjA z6Hk7|uk&RF*c3|163Db)P3!HP$~%}4`>#MTSH4-4QNUXtr5=20env+JO9Ga zmF%jyqNUNAjgv*2qB)ypatos+k4)q~f`>CjRbxxXz@+eoYmpSz+L{<3ii&Gyigvy= z@K(?Fnxh3R!sJK%F4IcPMcr^dFp{6ty>{Gor^x)L&>@F^ZGFO_LY@p#@fF;B)##RMh=AkX)KY{hpE= zsh-^8>742bsLvEE8r?g-^qb3HUp`(L-LN}ay5|EQz~!0`nMd}3d@Iem5%d(4DuL6u z|IO}8dnTLin#|u44Q~0_^-R2vaF-Ze*1XjJPYhqetXUMZeA+CQ&2w%DGq)EsML`!a z7h%LYA+c z850g>Wo-Ln7?r=kd80Zk<}I&mCg)+S+59Z5+03kX78pTLmd+yF+^l1ztQBMph)&|U z-03W%UDeuH#u%A0Lvd?aNi<$$6BTm|O^lXrn9SQ44Q~7>=2%Ni8|`HiahSWn$e+8q zTnQI)Ec@(rzpy2YzriQU#^VU?%sqHE8M5l51Fl_I7;6&ktC{1$k-?Ep_S)Cku^N00 z$GRz=MKxm&P8BbkE31zd)PFp7+dolP;}~*#Fxghm{Kva{+#M6foP@G)c1+lFud-)L zq-S%*OUGKLiW_44wRCI`Bq`Axb?k$gA)Ak!tEV}%Z!-~GnrN+ZFF@?b*v6mDydySZ zkj-mwb27MIRb(w;@g-vC{TB0m8;LNAObr?`R7`#FR*H?6V@AnRhM?kpUVRu@Yl6;Z(t?g;LmtBvC{=ICde#>Z^X7<;z?-pR3u0Yth76e;bTq zT|1uU7ZS~Pu1+V9&^j_sdud#2A7Vt5flFaTdEsphz31DW_6NOq2Gc7%<9;jGfIi;3 zd;=Ieb-iKzHOm^LsLJ1Q5G&kN>JjIka9u+V2DHV&VBt2#jiMv8FJ2YV@}KNr6Oco+ zdGltagoBUW+oz?!W0eI(l?aWdM90xV*sC&>-pszRl{-dD-;5$d6S7c;?fs4d>NtV4 zmG`h)$ZNIM(Teasx7rAYB(7!7{L}z(Wf0G)`iZd!!@JYigt52I_8;NiNWo)ys9u&~&z-CXvfsglO=*2$99li6#c zX=@agGK^9|t^JYu^9%grYiXeiQ3{yq|J2yemWd;U>=@-HnSkZt zG5${`+{leLnfwZqZ!+PUHU2FVKa;PqMgM_!78&K7LoT_clvB(oW&ktywlW>ZD+qvN>oN6eYZB*>g(AQ<^fh`buPOiGy$H8l#E zlrf<;*=!0%2B?=&!Y9Q{3YctWvX#lFS?)?EtC$GH2(awpPth*n)@nS+p9qfQF+PQ4 zHn+`!OpY$q?u|CS?EEX`y zU?P^?H1dScAxOyD>^V8hB7-{-lZINz+}058y=?$Qot+7cU_nibnAZno_1QF~#NKVp zrYlQ{$9ua^%?1vif$vO4@HAdy+g7q|w=vnmgkn*($;sYzAD``FayOIROzvTFFO$7Y zc%&Qqm^{E_Ka*A_4>Ea($-_(zFnNT@K_-tf`4p2wOg_z|ok<6i!%RAvbTR2>a+FCg zlVeOCW75xLfQfP%MNxs0C#lf32cdzhqqG77%94DVAs4Xfro zdEPr!Z zpLyb`Coc4i`=?TupYzXTl#Hx@Zu9xgqYam~Pi1UGsVVMe{XhQF8!3V0+6#=am0WwH zD44u)H0=Wq{#;wE+j1i%$-8Rwq3Md16BR2j`#(URSG}L*@n?*zzi``>uWZaW9a=dN zT6rn&QdKmx_HxRV(B>I*H8Y?xjJLx^Y`%wBzN7b?#$na&GO zM^PZWgD?VTwqpDt>gC~AD_K8$7Qs?oCP zl9dxBD`(P5Mgr4mB@<~SqsyjCS51_zy0rFx_H`|>Z6jxxlsFXiwBDlLv}`M~EkEQa zvb#>4)@vJ%-NfDv8f>=RE;cCAB3l$_8W=@hrE-bmi{)I*^b&0^$4C~-YJSnigpY1pOGvpsk4B=`N$d0{PWNMq{&f@n}dfMF;-^62A4%?W0SU{StD#g zL-1u8=XrRid`Dyex&sXteuY4^!_0dSf4e@cc!xzd`HZ~_InS=^kxN7xJj(KAVOt^5 zLx`GI!qYMp0Jbzdg5nWG=h0lw)qz|1x37m4|8RL7=ne>#?Eb{wMAg|4W))%fFmrhA zkgxd{#r3AcyF2-45@g)z>quh%KsI-W=01W9&dReOt--uJu_pW1wOB@q!CvV>i%fZq zARDlV1F&IwZ|$zD)`Z3cAhPG#7G*`OxY56~TdFk))eR=1FcFy_uQU0kmF?4{zRJ-$ zGxiOHNgFkPUL1h5mi8I^2%T+j(hMDhcfoptVioKzXL+^FAavI7SkMn?pqq0xY!Ss4 zkxHs<5Y7{sr{|x*j|}lI6M{Tgs3m4#O`CD}lAhNR>8I;Y)@3egGS_L8mHAPV!a#@6 zj`g)HVH9j*q+_H{zumWK3E1~)o~4`#url0nJ2J7OwH4P-l2mb{|7xEopKx3GViSc;3yXY}U$rSH@N^2;*c2}|ZH_*H(L(7*j%G;Mc9_gZG@6uxCWTA=x`pzG_Y->w z$XmZWoH@K%^DT;N-=L@xJ5xg??bM`>8~P7}ZBpXd&FU6>sRj3P1KV42f&}}NO)9a;gI~O&;PlNUdJcJ76dd&1(8rOh zTdaH}TO-n}YRwR{kx_gZajmC$I{1RZw_F~V#c#Ru1_yd#Ob21k(i zRemd@sB}d|LmG<1t8WNwE5#-VY9%P&DUA#07Q5STBA1U9FBmBsoi&0CJ^IGOU`GuH z(`%t&f0bJ%cre)h#KqG;p=Cbzio&2Z*CBzJ{ysH1w)k&Y4)HCJMcxdC(5&PzDJaZI zjK>J>pN7ds(NAePHTjytz+AXSgFG)u6DEaG3w~e$uX5#H-8Nz}N#v=56NW-xq$vy6 zpnWP0CdEOQV4fDgjuFh0EZ6a3tNvlo`t(R6y`aD!llVT4;hs7iE13xkIK_D3FbLip zoFYfTZZlj6GtgxsXTUA49}RXa8>(0Mz9q?{)7=38nLnqo-;Yim+&c36zBE~)Q9Q!9 z&n;enHaU8#QrbWF_}p^{E8wJcr7MxgtDpvR*en4ryqz@%UI1!kJG>~>tugGY=6B}H zOQe~n*9_2+e&9HTgcUmwlaOYSUNb7C>O3 zF@rrlP5?49m=QctolXGcO==uW!h;#%^}5AXATl5j_B-)4H)g*soEl(6rw& zcL#Pq+xbjfX)`n$1x-B)Df?B#gmCkeoFp+2Ak#skp~_YxGOk2OAO@%SPQGQapmDrt zJiH$ch@;Vj35RzZ;~;KI4(AV+@M2EkFW93JU%gXzpB7i(hg#7DNDvXtg}OCkvMz{d z!Fj%hKyrmPQ|ma+t=uyy0$Q*~=KqT^1SX6R0^@>CK~eR=V{fovx#M0tmRcp2nhApQ zmX>u2msNP`jZ1yKSm^Sj^o=5p|H(3QCN>rBjb(Xk~&4Zk%S{>7dF02Ue_FQy z(pQ1D{!mbhp5OMobcQN7s@X>7jG8%9cb2sL2it4^bd5I8e7L;^@BgZN zxGb&Kts|P7-~Ig2=MDFe>K-bun2aB}DuMmTCg_OLvNTLphAnnhu@!UOAW?` zoNxSJ(hxmRy zR?VM1ysYGZ1Q{?Y>NC_p2vQLhry`ntU^lsw6j_p0>_C2d3?TV&r&M=Jbaav*mE=J< z(|7>ck#=%5Ns~G)-%40W*TCJY53WLn+}8?cGjEUEyV4s9_q2mkACg0L2*>HxPA}b3 zNxFsILQci$Vn21g{(9Z?k>0ChT@PUlb`<#Gq(YAQ9uVl9;Y>QLsFy@E=ggPF<0N3OGBiaq#ggjf(&N9eyhK^&oq9 gi26Fm-kqnu8}i+qvwk;ADe%-fOrA%#6k2$8fPIs8iQ=8GGW2bU>WlPD>_VQeBklW^IQ?^oD$SANQ8nPq? zhQu+u)+5C|dyT3@M%_sU&I*^2lHQIZRnV>6bQW(ri@$P#buGI*s_21FW6%QOiP5m= zhsH)j^-5+ELR%n05t12%u#j>A&?01)sRT+AqKZ&N<-<~CFdOyBOee&b9voHjsGgfD zn9PoO>_BGZOXZBd)S>61`dr!de_k6j2DJ7I{)e!wXdJ_}TvD!wid?rYWDxKu$c%uc zYk--`s)XdNg;SII{wj@ppwFz0mJkEyBRT~ZboL52Wyo;aWg&1hC4R!w)z&6%ynKwG zJ#650>9+)1crK+#Fw9-BkVWZ&C))|_U8{P5W&YwbDryU7GEgM`Lq67fK6rS~t?Ty!VoIeO92?nPSAL11SwTQN9X$(mr7}SJHSd~_bck3T^z3%K9 zWGj)3LbFSdVmwE;6N|*+Eb;r7u*CTT_sX0%AvPNp%+elGv1924IRZZZ{ECl z`{sS`C%;A_Aq1oM(J#fH0|-5(8*lhp1h@GJh()9#mD7>IWjT)0KHZn~!OH8rfwP$L zucfOC!LE%$+}bT%MdhK6&cn%oH#LqJ2@-EZYLQZ&Jw> zv`MpU6H`B?DixdE=}H%KHah~DfNtjVEp|pRG^?WIG+=jkUez^{b1h^G4>SC@&2NEN zL^kIgmR#?9d%D`#+m!&TSI2$#E{ANtcUBTSs=az1TIl>5i-NWcrRGsvV+~xGNd`z4 z@EyU@>>2HnraM9U;$k`P_|wNfIydD+W^JM=#9Y1J9FjCH&ctJZ=GJo`_`fZE73$Vnpldy*_eXU6+F|IKri7+@nN|B1VksUHbtBb4+oWl$VU%+_g!=Wmo|Re;q2aD;O4m!1>}{X@_?L| zyXZAC_$3)s+75qC-un7HH;a<~%v_RpMCMCbvz5H%gdlZ_ie9V(+Fb>$N{W_U%+-Sh z+pZjyq`E)}3#ep}1i?;1`s$_Yaf%8Fa;oKS_9JG!S;Ex>l9m60u93e=bMm>huH zP*#yO4ih*svU@2q+&HmHBY$TT@4W4QJUa0h?_9AVz2<;#v9Hs z=0PUU-DcTJh%yvP^A~Whfp20;Qgm9h@=CTGB@jfqC_q z*WXiaDRK`8jg;gLCnU?CSK*o_%Y>#bp)uhI;EYzkvLgUmCq35LBp3|yw z@eWRkdEYH+DYu-lvgnMwR*cjypjnK#2Be>nuzgJjZeW2#8BOMbUMXSV!?^^zXxUba)-T{U;w= t$NQe)$;|-I?b!@>ak0%oM)h-hHc|+Ouh)O$cm0lqFHZon_zm{Oe*q-SRi^*| literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17de4c88addac488d5a34524577e0954c9ca5b72 GIT binary patch literal 6497 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 b*Vebbw4VIZ`rb?X2+xJ?zWIt^&8GQZhNA?l literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11de836001d346abf57560f643e717ca818ddd42 GIT binary patch literal 3842 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 u|A1X*l1|5xH*_uXIqjAet(1>+3PFO-d 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 DwT9Xn literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 000000000..2c84208a5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,70 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import logging +from argparse import ArgumentParser +from typing import TYPE_CHECKING + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +if TYPE_CHECKING: + from argparse import Namespace + + from pip._vendor.cachecontrol.controller import CacheController + + +def setup_logging() -> 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 000000000..3e83e308d --- /dev/null +++ b/implement-cowsay/.venv/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[attr-defined] + response._fp, # type: ignore[attr-defined] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length # type: ignore[attr-defined] + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[attr-defined] + + response._update_chunk_length = types.MethodType( # type: ignore[attr-defined] + _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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 000000000..3293b0057 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 000000000..24ff469ff --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0363059741cb5ae0b200ad656c763cefb64dffb8 GIT binary patch literal 468 zcmah`yH3L}6t$C-LPQr3|3E;^6|kZXEh;Q9PzK0irHN@R>^O2{gCHagL;kof3(~DnqwfUb)S=YJDT2*yI zV$KP9Kx0GE7c>zr1oC=!hW+JbO zxP;IIz68$tke7NWvz>5j8w#drGmn#tct8s<31L1L{GDq?3Lu1KOcN63?YLdB|q4;N$n=_7oKUr_tiZ{5_DUFH{1ii;2c literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7a3888bb6dac2a7b4971ada369a67d0ba0fbf9c GIT binary patch literal 7743 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 G#s38)HAiv) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 000000000..1fd280130 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,181 @@ +# 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 + +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, + 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 filelock + """ + ) + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 000000000..f4f68c47b --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 000000000..586b9f97b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,494 @@ +# 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. + """ + 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() # type: ignore[no-untyped-call] + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 000000000..25143902a --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 000000000..b9d72ca4a --- /dev/null +++ b/implement-cowsay/.venv/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[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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 000000000..f9e967c3c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,206 @@ +# 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[attr-defined] + 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()}, # type: ignore[no-untyped-call] + "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 + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + verstr = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, f"_loads_v{verstr}")(request, data, body_file) # type: ignore[no-any-return] + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return None + + 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_v0( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return None + + def _loads_v1( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v1" pickled cache format. This is no longer supported + # for security reasons, so we treat it as a miss. + return None + + def _loads_v2( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v2" compressed base64 cache format. + # This has been removed due to age and poor size/performance + # characteristics, so we treat it as a miss. + return None + + def _loads_v3( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return None + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 000000000..f618bc363 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 000000000..8ce89cef7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2023.07.22" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 000000000..00376349e --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01ceac2c105f65bdc2d294f0b555d050eb0e1576 GIT binary patch literal 351 zcmYjMyH3ME5WKS;5@Lk{2_ew{Wr}!%DQFN)5YRva4K6r2_7R`BhjqRravImbAu~tAKJ?BH;B>zS$0{9i z+Bs8-7r;c$sjwzGi5eGi3BicU5pdRryfm4T+rd@{1v9jh$H`SZpatYC2P-R6r6Hl( zuuBGnFv$!dL0--pyW&S;Py5!-{MlmFhA$Um{DwB){gu1%OLP6E{<^ew>+40!eFN(o BVsHQe literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d612f118032a60e3f8a7f0f16386551356eea54b GIT binary patch literal 678 zcmZut&ui2`6rRcN1hlT4V*w(KHU1X1b5 zoBj#PdiIadi%Tn8j&4@=`Co z0*8A7ya5r2U<|r4Dltryu9B!-6#@ldFtF-J^EjzsSI7FGG3RR(sgV}xAB>55%s?RW z7Hf4LPwH6M8fbIAMr=Viu*FvD%n3Z!AQ-_)Q~#%R%-=F`y`vOXNK=keo)`L7A2U2w z+;Hr;?g{PWoHFclHpCrR7(vJhO*>9u1+13^EXPGNBbn!K;xwYn3o+y55n*yRCQTO$ zH&}0&h!%HcHY<$s6)R2!QRIsvrB*m4EAM%sm8YIDlJfW9P+C2DiuyFch>vkX(q5mU zTZG>pZlKkNH_^SdRdk0&!x+2wDUEYPk}Srur5Ix?4@Srn?lw_OHc&R=eVShLu3SYq z;n>ZB@Nv+?ITAylY6w&ffqXv+Nb37uHafDFld{Eiwj}(>kIo;60d!!u zU$$m;duq3L?Q`44J}_pWIR(wvYi}>Vd-4S|_rUVL*_fHFsoB~!&u(i6s`+B&*~&M~ Yesyu@(pT-w4}s3_TzJ0DPK)CI06yfbjsO4v literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..668ff6e559fd99f121aa817c6086bd33524fc21b GIT binary patch literal 3360 zcmbVOO>7(25q@uf_$P`hi4-N7iOEQIVmcOSJ8By@Z5l;!r6P(fSc+Q{X%@`xle99) zW#6tWOI8XUa*&V$QjwxIiX42%MX(Pp3KTu|SR@xJG$3Q+0s`~8>Oz6$s4nIN zM(2Ir(gUtb*WM$9_rXfJAQk1DT=eC9l;}d<5C4GfW5F3g_kSeiLJc_pa$D)zf6*6g z>I;FsaIU==$wi*g*Vdvh?CKkFZB=rL%R6!%z}pL*#jaczC9I2e%)fYGwI`u%ebC9p zU`0@mG_^K+Iip@@CEeti#?|*j2cAp& zov=DGJaX~!v^qIFJ;u>$ju>|W^QKWM=j}PC&08@t{VPYbZ0-bA75vP&s&0`zG-Cf| zcFruati8;NMrn4=%#IrN*un?dk*hz?PQ5jfea8*#;IwHLtgKNi7g!NA3~J`0m0!wc zz{2a~naRK6zA(*tz18G4?FG&nk244N!nd-68?}dwI zIXDgq592}?-1s(7F-3SBmTXbik53zip>pH(4hVaQK8#myr7v?o{P)EN%B4!+Qav)% zk>4#rHC%2pt;{6EW!$*N9DgHKoB(H*xxgXYv8+2j#<|HYt?6tS!~}Q4b_0Y~lMjOC zxqn5tN4?hVa;6eEUDsy}8=oz%ShZ$OJ1bhvw4vLYp)J+YY~%k>kR#s1k0!SZ%b zyo>fhgB&3%{+JNEJHrgi6+ z4}zEkasrY-iEb>dFMWIyl0Z&C637Wi0y$Anf?FNu#6QbF_NRqqdBL6;eAV&6b8l#N zI_~&YRW~&NmS`g-A6@Go}-TXWisByy6+J0$B&&6WlG$Sgz~!*$swk zHUgL@kzf|{K_HH7FO~7@3m80md;rHn^>2u2m~s4*_3r{FaM>$%hl9Nz_(}a+@^wB8 zn=yRW^FV7NrSw}trqW)R(6-&4*D55oEBbcC=(ZT$T>Mfz{*82gw=2H-Hq?vN@tPEu zpWA$8j{vKkrLsylwI|>(mDYU37u=D%x8?5J@h|1%H`32qxAoMw0jr&-@?>M%B;5-T zIr5d%@lWZw-AHuv;!f= (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__()) + + 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__()) + + 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") + + +# Debian: Use system CA certs: +def where() -> str: + return DEBIAN_CA_CERTS_PATH + + +def contents() -> str: + with open(where(), "r", encoding="ascii") as data: + return data.read() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 000000000..fe581623d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,115 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState +from .resultdict import ResultDict +from .universaldetector import UniversalDetector +from .version import VERSION, __version__ + +__all__ = ["UniversalDetector", "detect", "detect_all", "__version__", "VERSION"] + + +def detect( + byte_str: Union[bytes, bytearray], should_rename_legacy: bool = False +) -> ResultDict: + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + return detector.close() + + +def detect_all( + byte_str: Union[bytes, bytearray], + ignore_threshold: bool = False, + should_rename_legacy: bool = False, +) -> List[ResultDict]: + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param ignore_threshold: Include encodings that are below + ``UniversalDetector.MINIMUM_THRESHOLD`` + in results. + :type ignore_threshold: ``bool`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + detector.close() + + if detector.input_state == InputState.HIGH_BYTE: + results: List[ResultDict] = [] + probers: List[CharSetProber] = [] + for prober in detector.charset_probers: + if isinstance(prober, CharSetGroupProber): + probers.extend(p for p in prober.probers) + else: + probers.append(prober) + for prober in probers: + if ignore_threshold or prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name or "" + lower_charset_name = charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859") and detector.has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if should_rename_legacy: + charset_name = detector.LEGACY_MAP.get( + charset_name.lower(), charset_name + ) + results.append( + { + "encoding": charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + ) + if len(results) > 0: + return sorted(results, key=lambda result: -result["confidence"]) + + return [detector.result] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a194796533866576b06dcceb206b069766cb3bad GIT binary patch literal 4601 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2242acdcb91bb3ad3b4f1765ce6b931f942d9d72 GIT binary patch literal 1420 zcmah}&2QX96o2Ejz0R`Rw5gJ2;SyREWTC7@s|tjmKsFFS-GH=Q@MYw+Cs~6(mYLbY zMmYp25*vw%6H5PuDxCQv-~wt7$Vw!np14KbMyh(^jlFKSCr0v{H}B2+`n@;)qtU1V zu7%%z4RCWVR8$PKVl^e zToQn*1;!Y*NTBW4-3rqK!i+5~sO;-UQ)}0JCe>%8)iHceT&oMVnblMYMG~3GnH=)O zSJjnE#a7>BjN}(`2(r|`0ojE+h;bQ>fGiOQiM=S+(bU^6P`#ANmrAa*MeQ?-UHE#w z)IZG({ibbYh8PYQ&n!yAB$SkL<)14z*_@w)PesgC^4VfA(zNC>0u7t?WJh!ReSL$7-gY`^FpSvh zmuVUaCyWOXi&-L9{q#HGjhxnPmfUutu;&a$vY#f`TW?--L@3$n!1KTHwwZ7S;lQDI zEl9cJ<3t2ZIz8;jARmj?V8rW~$+U22u(UO|OuA$hU~$5!K@`j@r*zic8;fpz(BtNwHCpmwJ|K?``H#Y&L3SmAdFBVuctnXV$oCmZuK8Mmxdrl3BN|(~CMroXP4f#5y-wwT~(Bw#G79x*R zB}Z8WpEX}riM)a&YfOj3XHi6{P51>BP^I@ljtjTcRYfi<#Z4qn_Tfy^jm6VCnCDJ4 zVl3VD9|3NYN+~!sr(E;y6{TwCs>gV@nU|0|R0W*Rr(1%O literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9d866f1ebdc73ddd9a047891a5be7d212c9a370 GIT binary patch literal 9671 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6d3f85dd934a14d144c55195b4c137232615206 GIT binary patch literal 4155 zcmd5^k+| z-WeBcT-1jM94XKi6(yCBFmGFmRy;wGkdP1$D|n!jw0Ia*0)%+jC(L%MUF{R+-m#sZ zbu0FbtK{Bu?>%$wz2}_ooZ~D%n<|1!Na1{hIZq*m%RWGIa zRWa(;I#gB@G*2&lkYH8!D)+Dd7IY@ zdC#O0uBoy5cMnqw88aLB-h~MTw_l zu&L)}); zpVl&3)|iavzNN>C;i(&1_C`3JS`O!n#VJ~$&{IumPvOwcFAJP%#NAM;DReHqwnymu96RK%en4iF|64$?J8;rJj-nqGhp!2}b;lzQ6epNf?U z|JR^vDu2zl?r&-R(2F*;F%t26YNT60Yydu1VBFvIepr8{%3tywQ+$cUb_Q8Q510rj zkLb|uN@|7@&t(%SRm;XTTO=M0I#;r>jP`(`8rF%og&dU*09hJnqte~qy#`GB40N~9 z-~EA_e{{<~N>w&siUUu?K`U^$7MR!yOjw7HT9m=`kJkLtrhodeF#Uh7JlqctYp4$& z1KJiybR}5@hhVx}TSG8!8vvSLoF*T9c1?v%fB3Nwrkb*a<)Wb}x`Fou^j1{(Em-em z4hKm8Js_Pevn#|w_cfhamtd!b(w*&cD-qmum0iI1xw6Y>MUr+2^7=U7aiUC;MoZqS zzW~mbL~#4Aozt6CoMq4=+H*3AxceG88E#mB$j2(JxJjcG2`T%U%9a4T5Uo7T4LG|U zpX>S&D)(o*UeV_C|Me9d0dSi)LQ3Z%b2KPAxwDf7LJWr^n@eb#ipfoFVeZP+$gJ{} zB?s1S@CPVqAkWgl9l5fkT)sd9smxJO<6-y=A0-_q2vYKJi?-_+K8R*?O`=hg#)MEvYY|P)CuL|2ixpLvJfgZBv5B@}~^-P*QlUx2t zYvRNm?uj(^?AS!@*tB_U`VM!`3-Ms1bhor64K|pMn?1+3{l~4)$Q}1RpCturQfNyG zRo^tFk*89K29jYjFkF3mJ23uiXsR|eV-C&SnY}k}9Ub`T>HDX*f+O_-xLiGiq~Pt+ zTIsRS`{@AF0gs{4`46uE3rUDZ3nuL%D|K?FxRrByAW&t$rNb=o_|0o6D z{r9=#cY=gmJ(qN(gJ=6j^iVcugq&)kbP%TSx041#XJIaj6d4p>coe?Hq++1>+J!-P zI+ujVZ}Y0QTu5S)A8A&=LqN&AgEfLM+e2$vatMW;%@I;3(U9P-0X&jWN`q~Hw>M8; z1vdT9&;bOc;6~@&&I)gNrF#ptplk-^Ew2pFXe^AG!Lcpx7+DA&u6V4WQBqe9w4mGR zIk^kE!42#RV-HoK)%~RX{0jQkrcqr(fN@MkdaA^GyK(bLB z1P)pL9;kaMG-Vb;#fTzuko-U(g$VpW=v0&pt=xeY73J+hEbZ)I;s!Psxe~cR3vOEV z*#Z=W@C(BzV&XNn3(})w8)6nrly37RZ|Yzc7-AU5ijJj8=(G7mIu|pX^zLi?#)xa_ zw4%Td8G;U)<==3ErI&~#9g(g75W0_7ku`I^Hgn0Gx%3~z@ozBINS%)FExn-Q3$cSA zt9K)JSDoegQ=8YS`u)rY2*~HI=3>38L7mtfuTI~eB-2lykKSF1Dc$d8Ao z&Hht$1PhP)o|Bs8Z<#BXXzhHi~)pVT4J%qsno#;cFCdjbfTaM4Q*( z*O*Qf?C6F(@&R(>5d?oCoN0{U`C$p8QV literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..673ffff155146205c1b89e323021c3c2e0660d6e GIT binary patch literal 5051 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 Cx71Vs literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb24c86e00350502c7222ab045cf3ec53e7cf6a3 GIT binary patch literal 822 zcmZuvy>AmS6u0jy*R*LNY9dmJN+6)h&{&X#p<+qf6rol~4MVe7?%C~~xG(OUqGN^$ z7?>KitOy1s{s@>*m&gl3Ol*|`44ts=QX~+T?)mqA@8h0-dY>wlGLWbG;iI>#0q{*Z z=f|3Y$+`r`fC37A5WqeRw7v!bgUO=gG|B0G9Rdw>0o9)ZYA~Ie@2s~*QQtSR5;K); z+TRt`)I_DXcYgzSwl+HV?(TGj*&D<@YeF&8%VI{?J%>9*abfkTGjSz21`PBe1%2%S zU^+7>JkT1FXC~Fw)NM$l=jiXK@gL62IZIYpe^5!G%x=zzdMBb@c(}_6XWPVay^yKd zT4L7mNt$9#_I)Pi3g>`0JW9lDs9Cjr%h4p#R$tZ8YM`*j53a#T%!EZK_L-U62)0kk~8H-tyro=eFnz0rD1!d z4{yK1C-${*y>VhU{^2fN9y+7;(0#pdVy}$nFFv0cS8FdSN$tGdrd$-0OAY*;rX?(% z#qza@+L2tS#5_+Fh8iVVRDNDvm*~u1D^$LdEJ+v2FTEknsSY9h0#?527k-w3dF6*; Xne|cQ{qS9~T2->pa%crA1*a6zI#ie**vn|WJBb(e!_15e zj&g`lBpiu~6H5PuDxCQv-~wt7Xw^taJ#mY0B2_){X6!BQiIMiroA)vAz2AGYzs<}{ z1Fq^Xzeek2fT!wEENjdRKSAaILI_C=3GoO~yb&8o$t!8T6q||VS(-OvJ1Ki*0tVcK z(AtC0X4YY8beHG!%XQ~(f~Pvkmu}o`-1=-i5|T&lo{X~egVc}vA`+;qHnK2Ew_4Jd ztmy}xC}k*JX!c?meb|?*(eZhU$vZr2Gme_s#+|G0T&1lhZGO6b<90AkUT@>*FuaY& z@39sJ9tpuSLTdn7d@9iJQ;~3$e10~ZXcP5SpSID} z;!H4EH*!<3cr%}(G>Cm6C=~{JE$=@6&h2CgbLBQmu$!ICy&1`mdu_Mz#Yb*yz2P>q zuott{&$BERZj^LmmatT=2H7{l@4IXFSbEQmqqf`a%TAVFUVHnJDx zjk+#HvoPasfHM&?=>}aKg|42AwQiqRFqQ4sCi=8i6nqXf;w>c4cHxOLvtRzhsXcaH zf3kG(=Z!~8?+(l#W>0K5|Nf&luMf<}&dQ%o<;Us$>HC!-`oK$VRs!8-h2a78N!{4U zEgkeBJS2P`#X@y*nOBkK6_qSvM^isx+qKE;CN&q8n;ME;_-k%~zlz-dhqZ5IocSqV zKx@9JZkPz{#D2QfL+oCLq>#GGya>3c1J(^bh0=}slo}P4FQxf3rHSqx@)b(I?)mXZ zqv6gSgdb;1_VW@xZ(dWGyn!U28IMT7;+WDp;jgHGD!=O*815)jMOKvJ8j@#waBA4r z+2eVzXO9hHEj|eT0o;bALU3%4x!QwsN>$UU6SS@A67+?tfO$P56SF)T@9JpWh5Fkh zqrZ)Q4EbEr9=BsOPh3Hh+b9+IG}KcWC9I)V-O)uncitO;bB&)znW|1KBRMV+LQby$ axpD-Tj^OeUten_$r1pFD!YSacbNv?`0ah{q literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..adb2e9edeb545c6fa5936e4939b9f1cc79a9176b GIT binary patch literal 3029 zcmbVOOK;mo5MJs@(UNQ_=@V(YNSY!#SVEH`K#iiPEKxEOnKCS;Xmp`za&5DrNOeg$ zkkEqy?1@i>{cl0IO-#}ureH>Fp&RK$y3tNlAQ4h0X7na8V|OAG>rO1x z#X*-~(L2$pHXdq|pcPr{ga_?4s_`QofzsepvxZUQiJ)z!jMa4+otXo z^>-MRoqpE?N%yJF8SQ(_gcf)E+dFRG4^506otw<3J>9sbZ?mE#E$MxK$K^}3sylSq z)}7FVo-=i)xH)Tnw%ye&yJ)!Gg0zQQDnx=9P8Y;#w!Uplb~!;|+Soq@!fnDxM*!DF zOraAsBb}HT?ZnMkCozZ@5`m;Ry}sY_b)OAe5{0L|V|kRp$dt1lXC8BW+!CXvwY9}K zG^vN?9@S~zv342vbeqDKnBlve8nB5?MlGipj>a)6d$^)Kl+;2p5H-!wyG+vpNz=Nn z*|$+nYuZ+n>XyIK-z-(G)=I5vrL-DOwAglC+bdb!p3S#omAeb4dtDX75dao8&HPVW3^uk8Xt>J$jvmk=1)Wdq91c>fuNm8&_rw zs7?v6vGG*kIV^~95nwNd5K0Ruy$7HcGCT!ej!xrq2x)*IrZ!bM$X8YrRc^^zOIclO zC^bc{1}A2^_IkOhw3Vh>ZUo|`@>&@!gT&?Lx?EO+Bn+TcE?o|yc5>6Z?((o?I13%uQ%6&gwk#u;gxgf z6@=1@Udd!f@;IFVIP?mdKI4@rDDc_82ylE-U?Nnz)Kvgs7_oo+w|paOU^9W6ZceT_3@p`6Pp!v*(zESy z3+j*Mgp0r=T;#98Fd;1qLJ&1<&%?OKT8_`p z!}!mis72HvdAo~>Ww3-_Vi^FK2FZdL5uV^4GLG3Lk?o#eHSiH$hWcs^&07DGcUY(IkeJL+w08+g=>uAI-X_1 zrNyK=Sopx;2~GF@hJEk-h43fB9|*q#sD;##u}wh&lxt9ss)5vikG2ez=5ml|U0q#n zHiCFnsY7~9PUn6;noBS;M^NDPP6J>x<4|R?BzF?>BfzC`W&xs^o`;-}&E2R^G9`9W z3(~YOBGoyb8jh!Ca_a~y*cohw`6eVzIN!6C?uq!xWCx!W2A3Xy7{Ns}VXaQ12$UPtck7-)SKO_L* Gs{a88?Ebm{ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4d355863219a132a4babf262776303d5302e30c GIT binary patch literal 4599 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 Tf$r<_)7-&@TdxQVy0-rSiUP|8 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9227f6dfef825d2713b0e64669353f50eb3a7f6f GIT binary patch literal 15343 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9948cc2f67461bd5c777ceb1a375dc54a4cbd686 GIT binary patch literal 4416 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 T^QrR$!wAa_d!8Wz&=vj%Z6Km3 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2229dc8b79c7f8a6a8d25e5f602e5418b34b7386 GIT binary patch literal 12115 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 z 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 U>IqtXZdP&qx7r712zHh0e_4)L3jhEB literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73575dbd4d0f3e61784c1750187e7d8fe9a3ceeb GIT binary patch literal 19159 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 R;$8`|#XlaCX@I{2`ajUgmx=%Y literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f705fe5f97537e966df5ae5d1d65a97472f0ab9 GIT binary patch literal 1436 zcmah}&1>976n~?Yw6eP!rw&fM>BYpPAc|MSzO)eXwQgNX)+uZ+)n(91W3O6$Y-eVZ ztntB6L)XyIQ*r)<;GX+Ow3n9TP=rkjJ@sa~F@&7@Mp~ttTr!|HZ{C~t`Fo>Z>-AZ{ zHUIN3;h!eJ-|A2kl-(fWj zToQn*1;z-rNTBW4+zQhJ!i+5~sO;-U6KmIeCDo^-)e$@-uGInC%xXp8B9YAGOb&SB zs~XFtqN{H_Lh>Uy1X*g}fb7B}>~tBAfGqnC5)moZ(Zt&>P`#ANcS^3bMeQq#UHEFQ z)c?PiHwg?8fKA)V3^C|4o>`QJNhm4h%0E|bvKc=IfQp!_PMaslnM>4miAtL>-5r?IdX@^h-WW#HbVL7pzE~0{KV<3x14qw3?jDj zMVdy!3FCgmVwT7iKYbv)q0_w2lKV~+cAfrE_R?gnd2Q7Zp=2w4&;Q!nX2R)*eTU+; zAmxsaQxP!fYT=g99Hu4g3hpK?{`J7D6b1~xc#mEcw&xwnFPW~XW zxwtz4q!=l#T9cV575F^Vb14$ed#&)vi+E{WFPd|MzmGCiomfJ0S|Nm-eF)^E6IeZg UwG&u=Zq`ZTw+r?e;GXCDAJ~~!l>h($ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a720ffd201c70da1126534af68f72fd270ff93a GIT binary patch literal 5855 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 G^zk1G$g|%7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..358f2f3401a452a72c7c3fe0fa12454974c35bb1 GIT binary patch literal 22188 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 UPku9gv$&aK?~Y18$cOuX0I^o=a{vGU literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d838f95367e3330f77e341e75f61013a9c23734 GIT binary patch literal 83036 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

bp^S)HPHAbq}hDx))VKT}PEs<)1xyR8SRE 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

-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 V*G|#O3#)-!zc)WPN3g40{{?@XSd0Jw literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0980e5f46d69745ddf56b53e5c47ec50dcb2de44 GIT binary patch literal 39582 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 Noq`c9LkkNE{ufZ%b|U}) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65b0f4c2195f40279f407a7e1e07dd8e46b6e617 GIT binary patch literal 77532 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 %PeQFu$ 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 GzW)cGy-$q* literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ff70684ee628c02e61b2954ce89d5471bc7fa69 GIT binary patch literal 83109 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 E0IR-~-T(jq literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c2431aca8d654b7ca68f8f5b1ae78aaba44d8d5 GIT binary patch literal 105284 zcmeI52Y?;bb^dqNJM3E!0t5(DkN|0ssJ5|D@4Z)+m1dC^)L5;AB$`P`z$64aBq0eV zAq0~+?hV@%)0;8oi7JWSY|D)&VO((gf8TfRWzJY{g+%e+(vH_0&2Q>^=bb(0esk`; zeYk7aP8IlH;pXo)^!`O<#VdsPzeB>p8#iB2QE^R0Qjt_HuUJtzzp}ETp(1I;|B{NU zE0fkq8`!q8?PS}_c988T+ex;wY!}(CvfX6&life5!g&f>u9iK37S}mY)Lr%<*&eb7 z%N`~vU)s;`O8vw~%U0=_{@QPV>@iw%td@_{ zJ_D29c+G>fTqD~?`y8+3!LmbSPmn#4_A`}96@Ds`HnQ|AmuXM>beGRm(x>t+{n}dR z%X*hykKW~SC+!ox%QaoKChJ|EEqa&xq~0ZU*AdaXTywD293p$DY){$4WDl1YvfkxU z(YyRC`)JR;w86XF<7gdOCC~NO9s^{Lk%x}e@^P{QwPui(Yh>H#sN=O9y~}f+pf%CE z=Fw=Y~c*x@6wmedzV{N?~<~y%d?jAF89oOmuq_Iy&Wl= z^)9#er8k3j$uV{rm(ja?r&;fE&*)uljj_w4va!oG+1O>QGIANQ_&l`CrRd#uE_QjH zwtD65WOvWI^v~{km;3H{?DD8`vCH+n6?HLoQ}1$H^e%lCz037k?{ZD_Et3^Dftv%M5$&UHUTq#5hi4w}bO8&mFzXt5;buGqjN9SFh@0~IOUt>0Qc~m!fX+PO=v5S4=UGCd_>~d?ls>b#2 zlo|NCd{rYKEw9AbHSh9VUn#Rz&sDRzD)+wruQjP4i<0 zUL$&!enm9GHt${Rzms=kmPj*0XXjmBpJ*L2aEtarIS#x9quwa)>xie0|qtarIr*1KGj9q)2Y^O=EL zW8TGbnX1OCM(=X(WAv(`ce!Su)?~-K^k|G-?vu?7x{^E_z3Tss-t8*y@=VdYd@a$t zJZn}>aBGZRZq2F*u8H2|Ip0~U@rXFy<+=Af@A@$V&QQj?d?i`$a!uB|Tob*^*HLan z#(j1k@1|ajV}>+#yY1v%zTcR4xg5RAYsT2+a=F;$`u!CL+020R>=e7)H;x&2ov78g zJ{!ASlg+za6UPjE&pXF1_c&UwWcR8X_s@El=WRZAu~m6D=34sLyi08nV|PD!m*>vj zXW;vd<6UmeW(KZl-n-nI^)A*l<6Z6>GXt+#E_S(3%nV$PRgKHBs`1#J#|&H>z02iT z)fn&D*yXvhRgL>Z?{e!9W#V0p8BD9u$I-j{?=p6I))>2db#c7Q&o%2^Zf$-~cAq8FUypSL9{Y z1dojO$hd!uUHTrs@vzzZ4BRK?T^tMV+C2vRc5r|96Jxhp-sN>-RpVKkuWH=7dsU6+ zj8(09@A7=Hs&Tpb%)s;Y(tFOvF5mOcd6(ykvCBQOvCB2t%)m7>H{w}x1 zJCNL`mm=^;*%-Tg=h3^^r`a(BkB@nGXYcY#(YsvEdY8v$GXu_`%-|!|?)B2g!Ml9V zE_!*Ea(aU6-_N?ncbC1x%PYKF|MF~o754B2XmK2` zyvw8aBzF0Vy6Lwx>It498@pJulXrRC?s=DcHt$_--JMYbUsdzo<<@N8<(e3~T#m8J zK9GDM8sp6`=)dHoo>Tz)@em;P=(cKKVor?Jad81)2~vzdWwV&3K1 z2di>M?{ZD*-85cf=Jk2^u=ng;zV~vOf$QUl49hNdx#b{5;qGMy?w`F&#x>b71J^WH z)#$BkRrB8Ek>&32a-SHx+$VaM%jGkJ`PX~*aCw(UL@ms-w$rB-s~Xp2s~Y!zrx6+V ziJ1Xskau~e=0{}Q8nrN&V^^4GYCd+kHO4NM%VY-bk@YUu#MtF>Iq!0P^WMeQGF2`5 zH)e(-oOk(-vSS9WiQ`>ft@%5=+*)qD%k_WSo#46{ySzfVI}N+`F1JQ4%(MNadbgMJ zE?;Lk?{fVI8@s&1J5@FA)2mEXqo;SRgn49C!d#BMA7;?(T{5nTvvIg*wzI}7MJ0^o zpe7ivmVIO7relU9}-Vc|vRgG(6-o<&88Mv-oX5jkh zU0ySe8Ms_-o*ws)d6&!4yI9U>H6D-gJ#0Dea(z~-asP7O<@&4=)|JZm)jS+C!%@w| zF3;C|-sRTpT{6DX=Dmxp@-B}n=UuMf6Yp~WY-Zq^zBb0kmHMe}94#BY%U4+L4lj?4 z_ZhhSZoEr9oJMXMyS;bvE?-5AT`rf4UA~IwUG9?|GjMAh?{aIJcS#?NR^uqNFYjN4 z*d-sW`&n@oB-aeknqy>-l|4>2&N1aaHChu#WLz^?YvODit~rrwkQs39w|~sLwkF1I zpLgY5dMSFBzRY@;TmO9C<-6^py8`|m8DCYri^DzQT^z2D-sS6zd6)ad8N6JMcX+vf z*1I;|#XcG{*c}}D)c)h0hTd=AXXyK$z0245m*-vjARD{%Q#N+ZyYyv@U8`!|yIjtC zmuq6|(wF?9Z)tfC5}!--uKgbEBOa#zc8*_q1MeI*j(PVqe)%ax57Ym#yM}XyaRa?< znU~(REF81L(ff#Z`ObarwfLot-sN(<$4h@lMZx9fMH>mrHgJ z{q6Wos`h&C^8NQwe0uNF6WQ#*H8DHzn0Kmd-2Zr;x14uzhO(6{n|u53_1>iy`h?1c z-}^9bp#QSo<(fDu<1sOIxjuU*hg;z#*sP-9niDkAOLH&Pgxxi_CCd#lGYr^Ayi1Sl zI(E&wwApb3kBpgt%W+i3<#?}w%h~P^)@a-ieadb-a|FGcW`<+rUFQ0DCx?0boyNS} zCyvUvoEh&69G-d`a$1#J& zE{`df8MrmZE|;^JfuBjNYB+=PuI1S{YG5RDP4w<@d%bu0o}+iMT;^T__lSzZyvsFN z?{ZCcz7yAEGXvK|?_yaavN&F#TBB#}Cwh0_KH^<^&5w8KiL74Zns+-QW2{Ft%qzvJ zX1=w2%Q+1kkpRHstJ16JWM?i zN4}|dYxYs^(i1W7ns@2B=3|#z%Vh?B8iO@Di?PeI`PgNwnum9e-8Or@cj=csRTK2k z`!!~;Q9|!<7cx6$IDW79E_i6qf8GeVu zJu-_{U)A2$YN`S8`&$^7ZS`CK-tIH}|Hur?SbjbZdH1Rs_l$X$%QaHfs7+YTDq;FN zj(4#v??#Qre=R?-u1QVo^>IrN^ie$cie{dr#cwQZyvM*b*^0(B(X-q$#;x}(m$Tyq z^Q>uJyZ^|sgK_8y?<1b2f4l-FXEhpslbXM;%l)H@;Bt&v9yM4|JVc*f_P(w~EIrC4 z>R(&lmtxjD3)}1%mwS{O<1!v&%yOR?vy9((=Z4F1mI(Kcm5eb;U&edpG2`xgp4IOt zehd34%62c$nrCUtb=m3D!9n@b?=jC}|8U1KW`G#A^!2{vS^n1gd%5J@^DOs_a~>^b z=}q_xHXF0t^91FDbiOYAnf}Ds-8VeT_uD5_Ff5nJ2J}>{VB9;-$m8;HIx>2eYihIx zk%#5zSuV#s%jFZf6)~IoG+lc8F8N+x!T3&h9@EmB*?YKL6Yqm@`JL|6Sj;j@l+$C_ zD$hm*7NeCO4rAJV#Iy939~OyXQIE@zc4_lfs!d2CjTSgaS0$@q&rKR(*Cb7_Ym;@b=Oyc5H|Ujals#Ye0@({? zFOt1DnSnh&o?HU^SIIcozfLZN{hMS=xYFMymw_)&7QucZxdQg@lF_h#pIiz156M-q zpG?kx{Zujw_8*h0VgD(a0{hR&1lWH`u7Um6YrHq$BLtl1|}DUr#!Nzmar-y*cR$`^}^q?6;ErV85O04?8v~z>ZITcNTqz{%GlfJM`Nk7eJ42% zd`B`6_L5`}?4?N!>}AUTS0u+{`O4%@*sGGeV6RT@hP@`a2lm?JUfAoB`(Uq6?uWf0 zc>wmt-w@^u6Q}@b{BPVT;Ko*vFE`Ved?yfW0eu687%oDcF0Gr(y3+ zHpAYRY=ON$*$VqW@(k>Q$+NHzCC|Y=oIDTvNb&;gqsfcmN}H0Gz>g;{!#OuED><@oy#mJ%t$! zqoR|OlN<2w{MM~1>UmTv{MWj^bv^%Wga6v%zjmLj{CxY*wYP5}pU)n5UT^Yxlh>Qd zq+GpW4*i01=oghkzoZ=cW#!PXD2IMkIrMAHp&EgFU3v5y%A+?kkD}f%hki>r^xMjz zW0gb4D~C>04xOwVI#oGzx^n1D<vf(=PQRUWDeDpYL!P9D~~43qo_B`q05v* z&sGjyt{l2jIdrvhXrppylXB=f<c9-l`mWn{w#w%%Qr{ca%r(P#(R6c@*`A zIrK8+&?}TfuT*}!N}26yWwvXS*{)S)yH1(ydS$j7l-X`nCcKIH4fO`uO;`G!^4s^3 zrhQr*rqYSk2MDPiN*jw)fnJs z8Uy@XV}RE=20+bW{ok(ozeDx^4c32M=@%LUys0t3FICrmrMmWO)wSQKuDzwY_FL7p z->I(sUUlscs%w8_UE?Rf%EnJXwQZzo+i=!4)Em?_)tggQZ`y`>(*b+8u5Y`Gdc$wA z&+AQIZ}NJxXZ41o#;>UAd{tHFYpgo@egC>f@83|>xmi``o2okBQq}pks?Jzdo$;zV z6IFF4tLjWu)tRoUGgDP(wyMrtRh{{&Ity8KbfsF2-WRLtB&s@RX?(j(S?z3%gO@A& zMSVlH)~F2EqGjrfhdRbGNSa9p$Gxlx;6jR=iX>{xVg$D^%sK zRF%6*Rqkq4xocGAu2q%0PPy%RW$GK0Id4=QxJlLTyR3e?()UyWzpn~dRBnAtmEulS z!@E=s?^ZRuM~dQJRl@sJ3GY`Wd_cMQK~yjnLG|=S)zg<$PhVyw)sfpQ%3lT-EM%RiBb->2_799jdo)uoCD> zzmUFtQ#JdStQfe;uT(95t@`&HRj#*GhkvWu@;g<^->ZuJK{YY0HmIJeHdI(6RacwS zH|;~c>8N_sei!wIe|aLWH+j9u>&>3k8{Q+@yY&q#<~pgI^~&+LD97KbyndVV`t8i? z%46SAZofmh{SxK&OO@L%Q$D{!`TR=d^Q)wCu2wF;M!Ec2d~y!>VzQsDeGpiWF+jK%C`qRh1`H zPo7jIc}g|pX;p~LstQ|F54NfjJfj-$tg`=e%KOi2?Eiu?`-{ryFDaY9{Pvx$S9CAz zRjG*AG!poMMg>2VTKkcz|2EbAAFJa3L^|!Ks_;KkZU4Dy_3NtACDq{Vs;N6v8Q)+{ z3^j*$Y~NHZ{G}@0uTY){LG|j7tWB&|tV^mmRBt0y zjfP9Zox`0uAFFj=uu=B~ zn{;1rofO)7DYRR3U+`9`v)iQ3Zl^j6^@jHa?~p>fL<;RvDYVO^(5{d|yHX16Dk-$9 zrO>XCLc3N9?K&y6>!r|c(0#!hrOs}WI{PlwnXdFbDW>mBF%_kl9+P6aQ;O*>DWx>ptRK2^;7RWTn>#e7f|^C2mrhgB^fQMG)O)iTr?-WPma74r#I%qLYbpHjtq zS`~A%D&`hd%&n@J&!}QPtBU!YD(3ULBlv=J%ZpMLFELl++%Gd%hpWA!JA$w39^z}N zWBbPaH0$4V4)vz9>P_ce)EoYVr@Y?e^(L=3KLy=eN= zoJeyL%_%e=rWr!>A)3=^K1TCVni`sq&>TzCn&vl;4Q4=>ZAWvNf9-u+PnzyD2h$uzb23eVri$ipnnP*!r}-nz zA7C1X)9_6+@=Y}I-8J&{H_~~H!)W+E8|l2pp)lKi&n3CycU;oj)&}mp?H_1((rs7K zjG*}>%}AP0(Tt+`N1D+zSJRB4`6rsOH2+L9j^{HO-|oe?#-PG?&p_PV)(xD`@_X=I?2)q`8Uae`x-f=Cd^a zNAo$FJ815txr^p*ntN#OrMZvhewqhp9;CU2<{_F}X}(Ky8_mNsx6^!&<~uZx(0rff zQJNynCYr}+9;bPN=1H2TXr89oOtXb%E6p=B&(b_c^E}N9G%wP;MDsGuD>Sdtyhif_ znjg~qh-Mqjk7<5F^HZ9i(fpj|b(#{*cA6bDZ_xaL=1rPk()^0%*EGMOd5h+^Fk9P= z8$RjOlTY5-e)`%qYZ~g1T)%PI?Nf)oe){OO{LqS*6hB$~RPi5+R~P@O_|L_EDPB|j z*W$kw|Gju^@zcfYivLmk&*JsP|0>>4{O{t8#m^LPD*jLLe~X_j{$KHP#m^VNQ2b)? zOT{l2zf$~a@oUAe7r#-wx%kcEw~F5`-cr1^cw6!I;&+O7Z2I`7OE&%0roY~F>88Kg z^tYQX+jRM+Pi(qk)8B3S`%PDF`iD(dZTi%J_FKCwL9$;{-&DJ@Zbkjp4$JX6*VZkq z-&)1>wN0yPS2ZT}jkPQ4R&VVVH`cCTW!T!iX~XJ-Yuw-MWaWke2JoVI*J~Z&8$piM=+Iw}w>Or;Z>T!7E zAilh$zG={!#o-OCZd|pvzOk`2U0;|!YsQRm!zR~G95#7O?W8FqM@`(?(>{*cxM{@L zVbg18PN|(TedMU=TMzh?t#-^&bH+^`Ic3g_TE5n1jy$C7KJJ<)oz%>cx~AJ2j-e-N zr#E-ZpKP^bj+``X#E5y*$4#6#ZbUN&9$ao0JGvL#TuV3CHup+CX?X7z@qWvf=6Flg|Q8iZ8+z}0n2&OtP;sli8I6F&Ny z@X^;W92@O-O944(^@g`PoQ6eQ>SK*ZR8~~r{}pT29#~mXYF$}b`CP^5Qn#T)E4#Pa z+@@WrVrXT@cAGnNx_nrvH5XshVp}ej+EsMyjP>mW9Sk}OIvI2pbTQ~E=w`5=V1I)u zLBXI}aDc&qg6;+f33?bDEI7pAP(e?F!vu#L93kjsaHQZU!S>#QKDMQ=pr66fg8l{r z1jiU0D>%+zpkR*4%&Tu@CrIY=I62@H!>M8CX@=9o z))|H~1I{v>9d@2$I5%vaXE;A>U0}E{;3C5_!p^mZXNIkHhKmC(F-!v18=hsyZeMD+ ztg@nOx6NI;?)v{bF1Ec}EAUGrTUE4epU1wUE02A-Vc(DaQLQZaN4Lp?e^@C`{46Og zCh?DHW5GYRT^{^-@Y{H*#RUJjb{72OJLJKi2Y(9-{s|o{_$PMCgFg@c78d-II$7{f z?ve+89{epV_@{KS;Gfzp5B@y(TUhWHFuwp9g;n3;r4VTjrlx$b&x*{uUPe zvkDgcvk%CFKM(#E7W{J#u;8EDJrDjo_*+=;&+Bf%KfgyF{CV)Vu;5?N!-9X|A$joU z!QaAyf6*Zp{AcvcgFg@c78d-qJuUdpJUkEnJosB!@Yfw~!N0gy9{hRmx2)jbzND80 ze{xhF{CV)Vtl%%zA7#ORR-Zih^Wbk`!N0VR1^=>sdGP1K-@<~wp`Qi++5Pk2&x5~( z1^+qyE%=uolLvnu{4Ff_R~%!(zw)>|`19azVZp!ZI1B#OgYw|dgTI9Z|G9%K_#2PU zgFg@c78d+#jmTS?~`%y`rtY zp}a%-4doruZz%8Jzo8tEenUAR{f2Tt`VHlP^c%_n={J-E(r+jSq~A~uNWY;RkbXls zApM4NK>7{kfb<*60qHlC1JZ9O2c+Ln4oJVD9FTrPIUxO(W5C1&;TUz)}!Jnj5_)ndZ4}L8C^TCg# zFWj*24}PZMkC7?-r%%hXf1dqYTK1oTKRK-MpE)BB|2+I#TKLbxpV(IT&z_YJe)7SO z3;z}|_?d%0DX;LKJ15WndG>eV-!VJ(2l^>LKtJUN=%@Su{gfY|pYj9rQ+|Mc$`8;_ z`2qSVKR`d_2k58#0QX?Z5B8onCxrj}d3pBFv%d@f7LolI%nRYaa6umadHA=q@L#kb zg#Q_f^1)9&_;KNnp@F~g3ET$Cy~ zAbrXgkUr%LNT2crq)+(*(x-d@>0D<(`jjsqeaaV*KIIEYpYjEyPx%7Ur+fkFQ@()o zDPKVPlrJEC$`|0D@&)>*e1ZNcU!Z@=7wDhz1^TCaf&M99pnu92xbLgp;jQv`#|NFq zyK-6{?|jNL&+o%ZHHwEkzcU^%DS!okuWae&`CXq~p5OEQo{!&|#q#m{uo5OY(iQu{ zl$|`k=lLB&6g;%Sh|b6F`S{)LQRUkMBlngm$oY6CAJ63DnNnLt zLEdl5^(qInxn9ltt9gGlzyD5&pU)@A=Myjv{xTmS+;Q=RHj}1UQ7BCx+G<#vUadB_ zY5VatrPf@0QHyQ4h{-f<+hKisK?j45f=&jV1zilf3c4BWC)nShN>DJU793!3prAXx zz5MdlrGo@L3=S3?VsNOSr@>)@!wrrQ^fEY7aFk$sZ$Tg1(pS*W;AlaAg8>5meR#Zr zV+H(s*?@rp{{3J;jevho6);%9zb^?mLBPMa2RKQ8shm`?c88^cEEECmj_&7xH8}>!_@)LHEayH#;_^iTEle# z&of*faD(B-fae=t5b#37ivnJ3IJA|$=3)BnD-91g!f<53QHG-fjxii-xMQ5*_^@?? z;lzNG3?~PiVmLM6G{fluXBf^5ILmN$z&VC<1I{y?FKks>V7M@BU1WGh*jj6NX4qP1 zxH#Yv!z5t6;aLHf8ZHaiV0gCSj&lr`hpj6NR|Z^VxH{muhK&K&7&Zl5Yq&1pd4}r) zZZO;!@O;Ay0$yl%QNW80hqex%uTpAhc)$^cBZaL>qYOuftz!(whOOfa#{)ZDUR|1C zI8j*GG0AXp*gC~gy?7a5)rcCIx% zGi2V1wb=VdrxUmj_&7xYBmsvC43D*m|yEW56|rO##;$ zt_ygc;rf6Z3^xWm-|&Kf7aCp^@M6QEZR|rC*2eO)uuvLdI5OZU!_fi97>*4%&TxFd z35F8`PBNSvaEjqn!yVHMr-!XG3}*(MWjH(F9K*Q*=NZlqxWI5>z(s~<1gteYGhm(J z;($vGlYsSxX9ZkpxGZ3U;n@MtFcG!82;oPwEJj3~6>jJ}tVe2BpGXmBco*8zo zGh8gJE-f)k0@fRz6>zEHvVaYSX9qmTaCyKLhARWEGF%<-T*JnIYYdwLt~Fd|xZ^y- z^|TBLj{y9360s;n;xV495qYU^p@0 zB*V!8rx;ERIL&Z+z!`=!1I{v>9dM4}T*Dpn4CjZf3k(+qTx57gz*@sI1J)TX4!FcH z30QAeV_@I1ry0XNvr8;PH&E}d_9 zLBI+lO`F?{Bf9=l0PZDtZjsQg!f_uH83xAF{c+@0LS*Z#k&v z_Er_$X102BzYaaH*8!yihPCOJirs#x*zM=VE+7@VfK==PQn3q2#V#NfyMR>e0#dOH zNX0H76}x~`>;h7;3rNK-AQiiSqcqT@*ah^lQD! z0jbypq+%D4id{e|b^)o_1*BpZkcwS^7rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9 zFLr@m>;k>m1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2? zfnMwaz1RhMu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m z>;k>m1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwa zz1RhMu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m z1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhM zu?zHK7wE+<(2HH57rVgWl1kMQyFe4W)g_8upo!h;62&gi#BOzoVi#y)7dJBuP3%^e zD0Z>c#BOzoVi#y)w_0KsXkxdzM6nArv0GiD*ae!{tu9gQ0!{2zmne3DCU&b!6uUqZ zyVWI%U7(5G>Jr5+(8O+aiDDOMVi$ucLle8zC5l~aHL+V=qSytR*sU&6>;g^fR+lJt zfhKmVOBB066T8(Vid~?I-Rcs>F3`kowZtya#BOzoVi#y)x4J~J3pBA?U82|pn%Ko) z%Fx7ab%|mZTTSd%mne3DCUzl)ppAegcJcWdn%KqXYiME@pRb{bU3|WVCU)`p8k*R} z=WA$U7oV@8iQVcF#V)REVi%vUp^4pUiCt_pv5U{wwwl<*=WA$U7oV@8iCuiYh9-9L z`5Kzo#pi42#V#)7#V*i`U7#1cKreQIUhD$B*adpA3pBA?C{gSJz1RhMu?zHK7bvmI z!Ll7Iu?wWw#a1tNfnMwahf6BqW)-9o(8O+`M6nArv0Ern>;g^fLJS$2*e#SOcCppO zZlOf63pBA?C{gSJP3#s*6uUqZyM+?PF3`kop+vC@G_hMKQS1Uu>=q<;fhKkfC5m03 ziQPhpVi#y)w@{+k1)A6`lqhzACUy%Yid~?I-9m|C7ieO)P@>ocn%FIrD0YD+b_*qn zU7(5GLWyD*XkxceqSytR*e#SOc7Y~#@%b8>*e#SOcCppOZlOf63pBA?C{gSJP3#sV zc7Y~#3nhwOpo!f=iDDOMViz~7ppAfD>;g^f;`6nwCU)`p8hWvdoxRuvn%Kq7D%;tM zU2OGY7ieO)szk91^kNt2#V*jqZdHk57wE+<(8O+)#4gapZdHk57wE+<(8O+)#4gap zZdHk57ieO)szk91G_i}%*U-c+K3_u;h7;3rNK-AQiiSRO|v$u?tAWF2IXjpclJ9 zFLr@m>;k>m1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2? zfnMwaz1RhMu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m z>;k>m1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwa zz1RhMu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m z1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhM zu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m1(xmX zn%KowFLr@m>;k>m1$way^kNt2#V*i`U7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}> zyFf2?fnMwaz1RhMu?zHK7wE+<@Gq*f3o!%{hFA5zcXkUByEt>%&Mw4|UDu0U?CixZ z(2HH57rQ_&c7a~(0=?J;n%Ko)*{*A17lUO(6T4NVOlQ}`E{^qL7wE+<(2HGQ+0HHo z%XT3XyAVT$UhLvn6T7&X0jUIh-#fb|c5!Aec7gwYJG&4=_I|zC#jEmS7wE+<(8O+) z#4gZ_U7(5GDv4d77rQ_&c7gA`vuk1(r}APKShll^n;B3}*jl!;Yho8$P3%_fva@Sq z7dv~g3-n?a_-F3y;%1e-L5W@5>Dg6h7dJC(XD@c~n!VTsda(=iVi)MeF3^izpclKn zT4ls8(2HH{?8Pqd1MBSOVmBANHoZ0%yP6T5Ph)0H$i=RLA)m&~V93R;<~{Ce8nbnF z;j4EccCE9EV|`~An2TMxJu{8jI=gVryAZq9*~PKGvkUZ{U7+vm0)1x}=sUYW-`NFP zXBVA6(^bB+i>u=5JRRTeP|(2RcB|Cc1^Uh|(06u$*4eF6XBX%@yFlygqVs1j!#cZF>g-~x@9YB0id}U6 z>{t`KRqE_w=iL#z*4f3*yCZh3vx}X5XBX%@yFlOB1^Uh|u&mg%&MvlEXZKIUu61^? z)pvG*zOxJTon4@Hc5$=Hl;U5M*hS~wiCwfs_ja)xI=gVY@9YA7XLk>$G51ZUG51ZU zG57V;m;vcDWX zkWOO;q|=xI=`?0QI*l2SPGbh7)0hEiXBUumb^&Q;7m#*#0cmF!kal(fX=fLZc6I@2 zXBUumb^*S#3-p~`pzrJgeP;ipf7w9{?K;PK~`pz!U zcXolkvkUZ{U7+vm0)1x}=sUYW-`NHF&Mwe*c7eXL3-p~`pzrJgeP;ipf7w9{?K;PK~`pz!UcXolkvkUZ{U7+vm0)1x}=sUYW-`NHF&Mwe* zc7eXL3-p~`pclJ9-`NHF&Mwe*c7eXL3-p~`pzrJgePrMd!fKI=c`R0 zFlAd!?4mPdXr0}HrZHn@>+E8%Y+J3fi)oOC*4f20NJH!FqVs2Hon1_WG_=kxI)8@N z*~K(SL+k8fFlA_+T@0oSt+R`1kcQUTMd!fKI=h%AXK0;WOp`OT&MrEChSu4|VA;?* zyO<_tXr0}HrZMB~o7lx**|u6|7t`bnt+R`1a)!RMi(^gfqBCS$P3)rcXJ}&Ap4r9D zUhD$B*adpA3-r^NfnMwaz1RhMu?zHK7wE+<(2HH57rQ_&c7a~(0=?J;da(=ion4^s z>;ipf7w9{?K;PK~`pz!UPh$ppu?zHK7wE+<(06u$zOxJTon4^s>;ffr@l-B5yFf2? zfnMwaeP|(2*#tih+n1Oy8Gti4&pclJ9FLr@`8Z*#~ zU7+vm0{t{*pr6JJ^wXGuei}2-Ph$r9Y0N-BjTz{tF$4WHW}u(O4D{2Ofxfc~^qpOx z@9YA7XBX%@yFlOB1^Uiz-&UE z*af6w7m$iwKq__tsn`XiVi%B#T|g>!0jbypq+%D4id{e|b^)o_1*BpZkcwSEDs};> z*af6w7m$iwKq__tUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhMu?zHK7wE+< z(2HH57rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m1$way^kNt2#V*i` zU7#1cKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhMu?zHK7wE+<(2HH5 z7rQ_&c7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m1$way^kNt2#V*i`U7#1c zKreQIUhD$B*adpA3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhMu?zHK7wE+<(2HH57rQ_& zc7a~(0=?J;da(=iVi)MeF3^izpclJ9FLr@m>;k>m1$way^kNt2#V*i`U7#1cKreQI zUhD$>G-jah>;nBXW}u(O3^cK8on4^s>;ipf7wD%k1N}5+pov|3W*6wEF$4WHW}u(O z4D{2Ofqoh@&`)Cq`f1ES6T9}zF3?Y72Ks5tKtGKcXkyo%*#(-|wP$vLei}2-Ph$r9 z&MweTV+Q(Z%s>;n*4YL6&Mwe*c7eXL3-n?a=*2G3i(Q}>yFf2?fnMwaz1RhMu?zHK z7wE+<(2HH57rQ_&c7a~(0=?J;da(;Mv5T7-P>MhkySSNQXkr&PGYn1a;%0`SiCx^x zFf_4i)0lB86T3Ez8E9e`H#2N!6T3Ez8Cy;4;%0_zHL+XJ7gS-ZiCx^xu&pL`@yws0 ziCvqyFfpU8R*3> z(2HH5iCx@`M0XbG#V*jqZb8rN0!{4V^R=D5*u_>8yEcs(Xkr(?zqYf9UEIttG_i}D z8HOfyaWliv#4hr)p^07OXG0UaxS3&SViz|v3{C9fI~9aM?BZsIp^07G%&?s$b~!V{ w&`)E=TQIR(t!H+DUhMXPjO|6S+jGd4s>399Pu^MV_H6Z7MUTeADl01fAC46~cK`qY literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db1c6a97bb903c98fa47cfe205ebefa496733965 GIT binary patch literal 77710 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 L6^*@0OG^G90%D~2 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..303c9ff5c97690677ad55b29f4ebcb2fde26cd25 GIT binary patch literal 77549 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 OO3(FIo(Kf_hx0#=WM>@! literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f237c319ec2d8d8256944c363b3391700d49196d GIT binary patch literal 7215 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 QbDj`R-M#djz=yN>KM{{mdH?_b literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27f58a18eb8978e69579ef638e2490024d09ec1f GIT binary patch literal 1621 zcmZWp&u<$=6rS;V{bPT`O;V?ZQz;d~f@GBxORZF)64NAv#*MHm#Bx~KyJLIZS?@Bt z+u|yR9wJB-Do&_3)GG>S{ssh>Rzd=ek`r9G1%*P@6Eowr6XMb8&G)`}GyCRyZ}(?i zR{$F`Km6p@a{&C#ozajJaQrO;kAVXmh=B)92suvSlqZ>zz!FY-vMCFk#u+bbW(AgU z&dZy5fiqa~R8ti=i#1O-b%Aqu$}5-!f%EvBH*HP}tl$}M)|?es#pk`ES%e@3R)M2! z14l>FzBJ6woEuD)3x7i9l_6D@-A-kb_$@@3H&g94NgYM2#E*k9t5!F!y>o5sPTgwu zJ8`pvR$Ls3ZR*WC)%DGB0Czw9=znhG82QV+at()==_#B#~<;XW6d z4G5x9(qMl`fhe1R6DB{ws1uAn!4xK#=?P|bf+?P5I{7VNjo-HgdasNkPUcbW5DY*$ zRVzbsjxCmTDu;1^2+diR+jk?&B0No^al@}kxL$)`pJq>f4^#M z_)d(`e8cx~Xt-X0k%#)xyzSo)n*(Fv9_rsSu-h_%LDcp8R~8nRjL?nHe9*M-vepib zzzqzGg*iSkZ1z<+C^Ed39d`JqF-&$L7?ATUp9iHg-Lo*#;BB@VHkf(w5FF(6-R!em z>B*;0bERK$i+^Zyd$$gT=EB~_fmYh99cTgxBUVT5(X3KZcG6#IM{^*rf355)kF;ZU zE+}WY;{B$FEQ>0Z<%xSUtXbA)aT5<$NQQ;dbnSNSrpTD;iJ~^b*s@p=ODrJdt$Ks- zq7&Xx!o0;7E;I9D8~j$O{#sdkR$2QC=yLH%?TAl5HvZ+4pvbGEZME_Rs zH=W@^vg)4FkfhlTs@ehj!z7`+J*bTOu@?^WR#9yC63s;~QO?{YNj&cf+5@al5O w!U{7-5`^&ibpT&K1WSkD@*#LlSO(bhhOn0o!KJ@5Q?U4S?#<_b&EnYq088D5nE(I) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de81f7e5143ac5bfb3a1067dcbce60dcabf1ea0f GIT binary patch literal 38678 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

I>tw#Izqd;cOS{dQFY$jVDvnzm z+bd4m^h{3JtY+MDcbf?U1{C$Ovi^Ro7%V+)xc==>=Fg?d3(5w5QNYT#Aur=r*|Xt* zA@ggUwsGFVK^ti?$Cn2KlibyRcY@k1zbu3L|0sN?<$^l|mRl*&d#G(#cI$uO!OpN; zA`&-FVnywRZ+4!f`R$10fF3rxH+zg*zKn>WSHsF`4->QqH_ln+=Iwn;6SL%m9_!D| znc6Q_)OhUMh8~vH=x4D~NTk>Zj%g|jnFpH07ax_?QJRUJ$4r{$8cafRBU_g02Tv8h zC7?k7B@U`M7$27LE1BHk^(>d7+P0dxKLgGCIKkfmV5yF}#(&;2>6#C2pLE^u&v$fA zx~BZs{j-6#`Hryp+|Y7^zu|dQ+fdSZx7ne*^Dp&JY(kEnev0YT64^nS!1KngIe*Db zkt^IO-EcFX6DWaqNt!nU+065D46o32icDA&p|;!YhvZKfJ$l<#lNg4r{S{24AjAGN zL2mwZqL2dhG2Un*d;`d`{nQIRXb1u05oUB5qu6I9x_`|aj#g~&0DvHc#l+{~S@Vui z`MmL+Q}G49b)e|^C}^A^eHDC5zizHwbNRVFw!2z?&l5OB3P=t+eB`aXw*Sihn?Lxy zxA~C|vQj%BD|M~+O7E?fkJ>(LyFEPX>ny9e@9SK0`u(j7jU?EyOq%`sCcO_f*UeWS z{IBY^Wr5$aagj7t?OPDZ=Gv*_*N@-m{kppT#xY2uwe0w`?UT02;}4p*7apqHXRE{W z)iqPS*L!cbVC84Sv(r$e6%eX;9)&4GtC^>Z~l^EEr~Z2EQG zbln#}o~`M65u~f9c?c7iEO2w}jUIDxwyXSj*B#~8x#=9NvVhQ1vvP=oowMyP@<5ms zhw=K9<<@^gdg_ks5WdVw&)Y1!&{=ROT`cV;zDE@UQFy zaG5M&WVGbrge`>-rek`1M%cgTcthBSQOgh6lkTqKP>d$=v)WiJR9BGeQAmNKlu`60 zDSECfoYeeALm0zleOXMKd5@+?vQ%Z40PvBn9%Y+fwy+PV;ESqaW?hfa*{MNuqzR*H zGNtIbUUu_ocZ^to$#%>LRZ0r@_(czd573_hMpPln1b_ve3K*f1e!V-{!b|AB#^2{w^GI z5U20`-0%6?ubtx0dKP%%tozf#ut3C3ON7G-f_Y~UXKs3`;HoFZu6FWeyT5Bc|K&ao G;Qs-dTMi8X literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95d9cabd69b5c45f7deafccf65b87444136be2d1 GIT binary patch literal 4937 zcmd^DU2NOd6}}WniIS*Tv4hNxY1e6fT*bAi*iEvf!3z1W$%-aJZJ@RGATTBuGZ7_? zq~pm*i#=pOf)wb6p-6%F!9@dXhJ$radm0AB=u`JHO)8WT0Sc@SL*5*_fB--3oJ&!E zk)3Sa({=%$d+xbchnM#|=ex)JOC%B^&^rJ4rT(J;A>ZJ@YkXDN{s5G_L?tSdCQ0ml zX~ys+eFmFk8KSZ(m*xyU$s7KpAI7}uPX`PkDHy?I&P$Q1h*`?o*Qcv<@|N?G-{y!ACT9z4~y5i3`Ng8 z@qr!8kr~_66yse}$>lWD2`4g^KAU}4&y0;eVQ>lW1akTL1;sR+kg4U;%Dk4koOilB zJ!|S$^o){5W6*UrJ3Hryu6i+>fzdpA@)`#UZhreTh`YqD&E0?_TE}fcyIOrccjQX% z)n>>V18-#d!R+{TOR?>IjB)%HeG?1)4eZ>O7qW&X+sm4vXRa({)PZFn}DOIXx$*V40dV<@sznYbu5!+i=F&7m&3z_@Nh9K|CN)sVUEnB@S1l*)f3Z5l2J+0r!o)}tm*^FsVqod z`-A#>mpEk9@H$P#0Az!PJfDMIIj6wA^~ zd)8dk=)s$K@@qbav$XV29TxDgFxUnL%uZY`AY3U3*5$7HL5+CEeXzuu00F4&``(>v zx7bI5_)*90jum0G>t3WJ9Df`+aA)o*VS+=C#OOztZeLnCzdCd8?UHz+!h*4aGjw`q zI}Cn4?@e^E54-q;6!>39BZ9{pcF~wt(f|tPK@|@35Y7fN*$ie#6Cz=H_%MT@9Bc)} zwI6_ATNgk8E}i|q8MzezT*^XsLFiuTUL7pXl;ONJ*3t zoj9TsM|9#lW*>NK56M4Zrd@)(NMPHTX0%-uJgwe)Y2)?JPm~6K^d_qNLe2Bz^>Bmy zn@QxS_?Spk6fTFg@)mNes+lJ3vy1i`L*a8N*G;1+1#L;U7k=#C8q2+{$TdtN_|`NC zfX~ezUvRXRKlf*ToBT9cl;S1vWLsl}hvgLl;wg$93lslNVt?Wo`|uc_7->!|BqU07 zUxLyO$M+c<=V@yst#(9L#k@vx-tP#pk!NUYM~kgEw2q%8w+}mAa@(8qcuIOMXc!Q6 zlwk#KGXh&H(B?eB$N*D_D^|8(_tAclmPwv?f^lTVZvJ zuNtzkJ&#IF)lydj{jg9v){mI&i=HcSk?#FGb@G zmItq{j}#C8pcFj|#=9NA?zk^J=vnVA4xB1QPgerqtAY+IEIeY9fT;LjxQVtMI#X3^ z^E=jA*x4O%e2l#-jt}ymC0-iu4Q%)X&^JN?m^XU)@uT65fdEw*S-X9`oxyEde`eIP zUd4jFrTtgl`9+_PRcA~4?$2*c^Jmk#IZeY26&muETLA1w4NuC=TAHv(=jL$~$56Cp zZC`8FHhvONmtWZz7kRzm08O6|2DJPUl8T4BL=wd4M zvqdHC&X^J&=F2GH>kBbYpcqCWqc{m-jhGlJv@$jiqJ{#g(?U3Ik}ZzohqgqHk8g=A zKe`oSVF)6=72^3b+xvKaig8`w4{=xc?Ix9qMNI_N5f(GLjqsTmx+aIVumYcO?CcVL z!lB`&)wj=6ej`#9PaMV|)J23BR1)WC?eOdjA&y CFqo$R literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..816bbea5fca0a3093f8e37f67f2a27b180b7cf55 GIT binary patch literal 2521 zcmds3&u<$=6rS1j+H1#2+qj{ql+;yPiUaj3tsn>$BsZlgsp=w_D6UWiQripRUx)${C%ACQ6)vsHA=(rPi6X(xkt>x}9C&Yb?Ko+K%9XM9&6{uD z{CMBIndhH+dou(||93yyqX|NO!$!L(vC{eqltp3^lRBhEE0m%xIZ{oo$U>K$L?r>3 z>?jpQBICqNG>EBK^0FMwQAr9k323SdOqU-PKM*JJZ$9K)a`_-4n=# z?4LNgK*PSO=la%Vzh=0`1&aZqPWsGtFT8uMT#Z){6^$FMeoz*PMJm)J70ILxQjr6x zActufXc@Jssp)FlxIFhpU_c8}d1{F)(J;X+=R=OR`6r)hGhWTo{3})s7N7C7 zaoayVdtMuxKBY~b9MjHv=B#5Knese`Yj&;fST)P_k5s)mZUkEKlI32~9Q(Xh5BwR= zJysk!s&U)5j?|6nN8lLO>ULez!OZlSR`nc@88t)mE$(w|*0&vAtOsGz=7#SFS9W$h zDMm;d_Q>&M7s%?4TniLZUP^?juDeFf()BQ->ou`M(6hS!@vPxQJuC~hOhwU)q6bB? zEfD7^5Dn6jsIohj(T{!`J0gja(8Xj{0|E4l8OV)t?99rvS6mRTQw zTOG?Gh61PRa%>=S40|@kh6KP6e60^aoFNqA!v`%Y7qNFsxk~4|Ec8yCndD2l2v=;L zZj9gP4ahh099^R2f)q*~4-zW&CE#`szyEwt<7k2!|-wO5ODdk4RU-e+@g!-0!9<(6_)+Ma+- zXot9er)6H+SWEAWiO6El!NPEYe3s)12_DEt094n@kJ&+(pbB57;46hk*J^@@BH8S^Y};K{Q#uZ|emf&}GS*e% z<7}eLljZmlzXsRe$0unU9O78U>kZiwe#>#JKHc7k=k53N774(K5yI)5M9DO)NXZvN zm*r_PN1wtEM>swm1-Ts3k+AQ*>9NzL_s{C5&rMFfbF!c?4CF8c$;W1%D_%Yk-{K4) zm!@3L)ghxqNiKR_QuUxZW3U=4!q`{f;}!^U5q=$dsd3`7iBBf(?AU)dk-y)!_j7k) z{C+xjYy4h%-#Vd6-_L_1-yXg<_@-#AslAV603Tt`12uCqb0c#nH*{A$_(%byiSQHA zDb&CDQCR6(q4YXk&X$Jd@0HS^@`DQ6N@6d7D}zeuaC&7Zg~+f{I+j||Qh*n-VJ7~Y z04bJX1cs9BF?^mx#0nastR^x5KAamo2uHVMiYMyvC||zKM!*r#T|S~6%&)S6j=rRa+>23oT}#tw9_ Q12Lx1LjqfuKobe-AHV44=>Px# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b252bdf51f157dd14d94ac4e19927e454e5ce300 GIT binary patch literal 6645 zcmeHMO>7&-6`uVexg?jgYU|&wEG0H<29anKKo4#qwFWFB2ghiDx~D{NfI2|Y7HBWMwimHdKy~3FDdLNIk}3x+d}-fXa+fP= zB?XRJ1Zd~*W_EtwJkI;x&kX+<3Izz1gTMMi>Qz6PVda1<+&D=H6Gy-lp25a(gcqj=MBu(c)q zjoKbq%h_D`M<^W>+2i2nuh|QZ(%vhu4}19>{DS+yPjK)P_ko|^!7o&E76HdtxMnQq z7(0*`BOxPLQ81#V(3nK^C$fpInN&^(wPW4eldPz~)B_I`5xWUs2j%M(brV|ww^*5( zWhJ|RmYrqNxT>Z|72Fe|`>i2MiMO~}k`7wE)q0joi`6fyC9@Vt7_#F!7w7@ZD!*)( zb#>M*)mpYe3ARZhp5ZkW2G@K@yhsEf5kJMY5uEAMb($KV))mcY9aQvwHK(Z=Wi&|@ zC3j(ZVnU%qxe3(}siIHQoOCmhnN}$Ncq5q5G==H|Z%-#OhDVxEsRGq_0!-H{X=tE} zyuoWqX2S4i!Jt8xy*-A2P2AMrQHL6yeLIxrKaNhSStY6$lx!+@eNv4Mrt~+a$D{pY zm!hK=`=ggtc{-zX##A+h6hZ zDP8HD0)Z0O6)ifInuIQIx2{DifRga5YbtLD*ci&C^g=yIjV>mJBUbML zkXaiC@&oepP}94o=Y-XxopZv9aAfuMi*x>x@M=+bbw&90lLL)E$;uoi$e2z z^*?KU(E9LuE5eDr`VK!h{4nu}aB>rNAqEEm7V4<-_H>FWT06)j!_Q9ID26$xP80b* z0@S!7p8@1ERpgsrw(Xc-Hs%4RHtJD;asf+mLA_-a;9PCI>b4!YIaQ|=FS66_++C$` zu@jKO{`LDWg+oS{y=ArlVX6Sf>X7!JbxwQVz$a)FVP|;92HtvW{{mdJ9$orF}wyt7Z*W-i5w%(%H`^>}ozx7NYO-Jvm_tY&? z?78-rlfPC!R*T}m7r&%4SlDk}| z(Hd%s?5*+wlkyF(MPSC-zo4w4|EG9j6zwt=5zU}Z@!Tl-5Q-94g0%)FmMjPN8XGkH z5L3_qGnukEdXvypWZDX=?fC4lu`4*eFO%7BW7bF%SAGEG%LT}%hmZdB^c=q;G_N+G z@qsCptHx$Dg3ko;Zg@Tn!_a!MNV+1NbQpB0B~omOlv+*|TTVSb_K9$&Y%R`kifM@% zPX7iCS8HK(+aX)1bcU3gfXcW9R7edgd+wOxF=^XcK#)rL5-Fu?QtO(YI&33P7WsAwQt=q5IWq7sD5 zp?5`SwNbSyHk8E9qS#py&lJTotKp_nxUCp&d&qwf{&{%0{nS#Z`*F{bc=`(u=MQYp zNo{bw^tA(*%zk9Q^L=dqR`D^h2xIuw96Ykf3Z=WijrJj6Y^+g?ytE&PiKu}qS9U~H z<5onCI%J5F{y=$SRU#1SBbIJ|96_ zlq7tyDvwaSeb9C!nDH2#me&knDwEJ5$H~I8w4R{4Hj~mP=_@#?2gw;E=a8I7GJs?V z$YMDfnwc_1e`OMEXsv+n+vKmFz*6w#WzVq<*5`?Aa>RRl9a|d*iMMWnyD#1oOLZrT zbtgXbEZ21{ow~5>>EB=vc?KDrdy!c;+Z(SCZ_wgX=Q&&91Fel?yYUgqQ;`icH|qa$ zb8YEFPoN?lv^I`7)d|ohL6UvFLsiZfN<#&;EAi=kU=fdk{ zynKgVgHKQ%(Z+zRa}2|LP6D5jXpuzMd5-D$l#l#FAWTn@bU*V_h6ya3d`7TdPjiG9 z=L&z~TK>!nKfJUKpRNB~pW%pb=> 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) + + +def enable_vt_processing(fd): + if win32.windll is None or not win32.winapi_test(): + return False + + try: + handle = get_osfhandle(fd) + mode = win32.GetConsoleMode(handle) + win32.SetConsoleMode( + handle, + mode | win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + + mode = win32.GetConsoleMode(handle) + if mode & win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING: + return True + # Can get TypeError in testsuite where 'fd' is a Mock() + except (OSError, TypeError): + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 000000000..e999438fe --- /dev/null +++ b/implement-cowsay/.venv/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.8' + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f38990e9bcdcad899a581d9be4baadccc94712e GIT binary patch literal 1302 zcmaJ=&rcIk5T3W)Zo4fY1w}*)7`-%xu0Jjwj0ph*66{4U^s*_t&vtd&t#21_8xuM7 zz(ErThx#uN?%qi}>4_Kv*~G-eledNvV>mgpZ7mw(JItFmZ)U!kdEfik-=6?nL+?IV z&n19wbm%UnqqN?m(f|`oW1r4$?{yAcUj{zA20VHl#3+Qd5l9%E2+&a97 zEW#J`hEt`@zSy_3Cb^!x!jB|(d_HL&zNGa)beEF%SjvzF`G*2>%qgI7JvspK+| zAg=3`LYeD&kkIwAW3Jky_v!lc)q>r=*@YHCoW9aZPMK?7jhC%TvE*p;mbb9FqRlKn z&>qdsXb;2asmG3EyP8$5+Pusw-jw02y9Hm%uJOv6hVWX|_exIXPWIMq&9yu}RV^6L z3PtW}RjaD$=w>=XGuyRlx^7i0PuH_mU&vTRD5yC%ilPoja$Klgdxizc+^TIa6e_08 z#lI&rj^4e=n5+)@h$*3zi3<6sFK416iB1MG>5oMWX;Bdk@L`wbL>%>9DUe-mKM54U z4M&(RMNLi$B4nVH!b)mGXR6A!Z6kQ!q8>KjsBbXr;s1bwNEkwjbEy4+Bjb~JwZXF} zWVu8U!z5@#Mwc9@BlQ5neuhw?U-1%jvWLru5DdpD+m7)p!^9xkU5f8CmM{b_czg+O zYa?f2d-f|7Lb%xA=#|acH;Z8vxr`#HZ9)H1#7IyHfl?}uD2I?bfYkPlovF_-`Lj6z q@!?}gvh<0pM$=oxhO_Pb092b%G@gc2*-@q?*q6qpCnEdf4COC{ei?}X literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..713b801dd5c2ec8a84d62f90276c3a389b8c2758 GIT binary patch literal 45638 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�`o7?xnwx@58=c*3g3$C9&H8YqCuKzG7{(8Rf*F%-Q;*V+$m2*EV4jy6vvp3>W^`Fndu**>kf4)*qb1&WdJ#M|3TVG_M; zPAfa8e<&zkp>-C@VM-2Ba-NbtO2}Nt?Dl#Palk? zMv(fPCzVX0gz%U8btJEGA32#n-LlWT3GtGWkIJjc8Deca0Fi^8v4#} z40|#f1&+}JTo|=#J}BbPvpr~(|4vVs%eE0$_8!FNjvadbG|*}PFpOWUW0hZ0R+2)j z#~%t$>%;$y@&NZ}zOn7!z@~WqK^ez~f5Mghg!BD`3;l$v_z4#Vb@FXLb&0*ZT!_WTOFP4g|k nzTeCVRoJnXZ~K{R3su$jkj1Kg$8$*JekcYGbvb|7$s_$=16l*% literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0490e8d4f723f11eff74a12457b0280e3a212fb GIT binary patch literal 60191 zcmce<33OZ8c_xT`Apim-z@1=u(_Y zhqC1<(squhcBKW`HAhsc(nZJavD`_=WxEoW?VbrCP$3G#?okqV=eU=1SW=BsT|P6J z@4s&)_^7heXYwRoym#Nd_uY5jz5o9I_vbEGjt)ou|Ms)UuAk|2e@7S6VG&QBj8_RL@Izq;f zY1ld9>UE(NW5_(5JL2wjk9c}LBYC}fBl*4gBi>%`h_BZ-QqWs4QrKHKQq)^CQrufI zQrcTOQr25GQr=rWQqfz%>RW~@N2+?OM*O}0k?P)RmS-KV8L9299jWWBW7oFf`jLj- zhLOhJ#*wDprjbBzU}Q`0mXWQ!TSuCEn@3uDTUa^!aO+50Z`;VW-fiqUXSjW&qqk#Z zd+&C=&Y%mMhAv4%r2K|=ysj6ndUv9Xb!b$%C!K{Ha+%$mmT{skC)H4XUpENny-ds%^d4Zj`N;K#56ZcRSgsGb1>r+- z?qQZ&h}!klIrMemt<`DoGpxk`THK=Q|EVc`tuAb@ z({VO@dz$e%y|z#5X7x8-nABZ0ep)xF4>bRh8af-$XRJr2qGA5zxnI(!$F-+B!bgWA z7mr=-506J9W21rGjCFz=9vX{`W^6ba4|04slY_H~QQ_Q)^N#Ug^wMZ>B%E3IF3>mCnCe4zOnJ}Xqd}*Ph7b0>~rBzgbVjaPXtFp!^pHp z!&jqy(J7R+J{Lwid^BUHg2y;+jLXmM7z7l>RO4#)C8+w}b8*1-Oz&jecrwzceeVQU~(y7zg0OaCSMh*6yF z$6r(HmH>Y0VwE)FZI_}W!|~ua-mxF;jE%NkZMqZ<92^;r6jGGiRyIzE*trJ0M@XUk3+Wj3vOt_^+Mf<@Bd6Qd!2(0_4a5VOF~W4!&( zvf=V?Z|!Kk>gU44;UFL8g%8~?5hK(!8~)fj@nQ84VKQwA>AQ6=xUfpBackUsMaS!J z*y856wFE_{EqdLk-lU6LuIZjhJ)uRhm1#?qMwK0LGgh9M&w1nKA%}EF`F+W%)J1R2aZB9%l64;nMDbR_F_bHv zDZg>7>$o9qjGN--*Tpe9uM3#Y60Bx3ir^&XcqF6CKP}^ynzW!Jz5vmOF=#ujdI*hy5~KD50dqLGr0uU`oe@(`nGTD2-q_wK0G{- zF#>>R37!;{p$@p5=dLX1(KO+*4S?BH7QOl~idSY_5j zTh~AH2+HuUA;D^}=<*9^ENO4UW1Z1nICC`Z&YvCp(ihSt{)G2d`K;w#Pr;fMch+n= zXa3BAv@?IzTQ=X5^48AS(hlz{2d^KTzxcr6Uo9w~KfhAZlB{S+RkSS@rV4h?^sKrI zXD65Z+m_w!X;0CLry=QSNbn0i4?Wu-Rn^a0=Z$mDRd>ybyFKY{U#z=ty#L%=zPI>v z$DSufy=U*5PH*4)1pNf@V9VJ0*n;ls%jER+jWCFUb7x=Q=O%)~4Au2ztbKi?YIgbX^KB#>kS1knFR(EcXS{pMb4*c7tFPzp4EQOF8P)E=?{WaNbG zNFAXZq|T57sVn3}nhQG49d?CtrKQsA3AvD;7s^GN4_a2&>m@q2*B8n|S`Y&D+FKa% zA}tDmX6-Ew6(B7M6^9D(w9+Yapd@2GEkM=SaS;q%#1s}`(ZCqzmw>Ln1^5WC9uVqM zFe+q+*Wox35CtqTYil&fwGPH&Hg<9`))6z&8PZr}oX&9%>BU&Uh~MzwAf;EsADUVx zFAWFuxEc=)fPUnj#qjj2;SLQigKV>Gcq72{eK->itaM$U480VX6qO;81cxNJhVs$} z1I2(V8IC<2sz~ji2Ekf(Oz8uL;Aio8HjuPJPmV^S5fEG$P=@gNXmGSYEWm5JFXDXx zx^(%Eg!_XNC@T;7@YvX8KYfIeG2nYpufV{5k+kERi9VQ;pGEDdj?r*9M7V^g14c-Q z)%?Q4=oTK;3UVXD`}y&3e`FvM<~M7ND3SgNj-%&4d+ga3bY*M=gl7m35gTlw_WUot z*f<;>4E9eozWCy1jYS6hQ)3f;sfQxb=?`B8n#TlNKd1a-qriI4o>T_yEC8sbkI~TF zE(|z|-a1mCN#FXj=K zM5~k&K?R<`0>Gz7S5z`%y5UF{mebGs7F|*8YX?)covFedlmW0=On02Cg=IG{&t3l7 z$c*VL4hAgNk+SkcKEzP;pl%w|ZwSxGK89$zXC2b?<1d1+)vhH^WTk3I|GKz1rVZL? zI&P3k=r?PZhBWJtdb4Srr@evx#>Kdvi0nq>rYGQV~?zkbbNa+Rcg#WzpQow|8$?p)$n%C}`!pY{~qbj`WugUcR2 zP`E4al~dPGtvIWb&gx}n?V3yHEmE3!h-Pwip28W|2WwUx+S)s}cg0(m^wvGr>0Kr7 zdWzSK`2CR2Lr?xy^AWx7NBWW@6~-Tx>yfUTrUZK#ysg6taa=<(d_{(MC=-BSVC;bW zDUO0dVpv6e-SO;)3c%G>4Dl_NtHOqyV~=Ua2xkAjCV7pjU41EAi{`C8AwtmGa42-%XG$?Ffig9vN#lt8-?~8<= z_hSU*>DdF+8uSlFz-RhJ2}`pd1B1*^q@Sb{L2k-F0$4zJDR?Cq84g17A){czqTRq+ z68|YT92pf*JxC%sPr$U7#wLbC{)=GjC8iiCl-Rq8i;Vvxc22Hxa=_mY9v3ABxUmuR zYM5xXa8m%Z0FziX`-zii715o4G6H!3+Q!gP*Mf3GQURhR2$!owM^q3TOoShpYW9!e zCO1j+N+c?`b{1ey0hb^8pJi;P@&eR-YE*g!%scPdvFJ(V1&P@| z*$gCH^8#|ysAL^+HA!GN&la#25pqSxoN= z+`(VVU+$lO0n>Wq{pzVn3n+xeCe9ub-ZTT{h5SPkAll_+&ijK{%>Bed`G7)$@L=PV|b#w@DLe@#`UkN_3t>YSce_Fmt+ zZM` zNoU2fvnsotw7+4do5+%R6AD1EHsjg|r)3H5P5@#xoL0|7MUFdULie+dxM4^w>k{w2 zPN)&bv@xWgHpPuYvUEwvr!*v!x6@|r5}18CN_pu_ZW}Tuu1etyqi(50T$UW81zNXR zhs3g@XNDodm03r~NOH6g-SuVN!sQi6<{+!XTMbyS0?e@qc?BE?@*?IEvLZ|{zJH7h zi{x%Ua)ArLl`%%J|I!#_zCd%~0g$4|gOFL__Xsg$VL~7Y2I!RudV#Uy88eg9$83_A zKHw0fWcKkfK5~`xGZ`BR5eUv_Ou{v2X?`+-J4GQ#z=y}6Aps)ogF*nh58zpztHXP8 zwMa5Klca6viv|aI#-(K-3yT8t1*`(+)=Y);QEr+QRumE$8}t*bZpMu>^@Dg40DwlP zL!i^`Y^X?t7t51Cv7Ge-l;&SS0&J6`a}~^<|MHm`{i?To#ao~B)+d5@2ks1{ye$xj z6_m{6q`hSVb)EP`%G-?0(wddht;y1@3*9TtCz8!4Ql%$n-0wQPt0fJuO)PxsTQA)= z{lNWwcdF#X%rj|E-c8$_ZT@)DQ=8~rZ2#WwZ|`2J-<$SSC5jii7O#R*_Z-%fVC=A7 zSWZTCOgf0mqw6O>LjvG$m^Q}s+-ETf#pNIsq+it%Gi_2ry+9x^z1)qD0$vfV8smn` zV7IxFsEmBHfIWmL5VuO2QGk5odEH0UK>OJ>0>jGALSTKC7{=yk3GFK=2i@1fyCoOC^GisZ`e0^EXjT;j2L+W}4+z zMEREg3g7C7L@S`8*)FI=B{J}5nlAr9@XFW($NMEcm+%r}kj$_wXug0r#Qw>TVw4|A zK>VyA)FoKOERzvy0x?1>sF{W%JnWYiLWz9)`Yh+Cakk|mUb{i zmND?{`0L;akh4`OvCjg0V(U_7pOw7-1I78vNPy9NOpg7o!=276xLG+@nJ}gD>SvB* zUAgmSk9=t|T~aY?0Y;kled!CU;G~^%&ZUZ7_kH)H%bsqq)5I#jZ`9=#33s+HUbx@6 z>^Y>uVd_O^LI>EQ6PPfSzJw;SxI7r8(kp+)!_g>-7Z|lo`dxp}FKKv*eiqR<`v}eQ zbR;T5RQZVFJLLm`NiIV_Bzc5QY7H84QCH09Z0e^3^jL*hp$zWU>6w3lf=nI&m}k>@ zD(5dPI8*K&OST;wp$;K9HUMiF3aFR#FB94|Oq9YZogm&)jL zQqP{phn;p#yGG3+vveM}PUpt0oGWe(S%?e{S(!QvYPFCdWGQ9JwjmO-WE~-!^knYm zc3spf-HuzO{AqWzK+bgoS{F)J%C9ul_>USDJK7beB~)i~alV;a{7F#vje1zC7v6%#qA--fUIH+IftsH63Q>y zs!^__vu@ohdHse#s0Lm@tJ8TQmsZ_qy;MF99ZASgs*^@n`kgb}s5YUM={zYXemC<(T332(JL&s*SZfLu7Px*ziSO#g+zPRrr-!XsPJGRDs&jV6S7fcsU z7sU;noy|Byyg-_dTt&PfUKr2+$l2k2)db?Xh%?8F;--*~(2A(EHgP#|CufVhkY5mY z#sDE0vuHYxFRN!?cM|gDXoK`tkRO-mbt*^_knSkIA&>e!AZzZFWzB`bd^K%yJ`8CI zkSt+yKcoZ1=81F&BSRod5=mZGLZGxIc;7@M2rA|XNYD?lC=_h4e<40|3iLaWG~ds` zrb&_kjrvbqICI)R4&w|p*#S`zkV*tp0G_AFuFxOBY6SHe{)Rf4_ty|=sA=}sh*+gY zp=@d-JW|7`gc>03n!So#sM$}_AbL%ySp_3)(9;oEd$JA5IzCTcgj&dgz^5p_1cLLU zF4Xj9>TbL6)3Hu;=;U!n=7GB;%+^0PiZ_cA710+RlQ{wCcLv5<_kooN4)X_E)pZ}^ zNqiBKYr0i$b)r7yZF=ME{T-?1!%6SqCFfy=1JA}xP*v`a`Rn;E8ApSm$GDGzBnu9b zDOMLqq=4b<*npjAj-i@TlFGkLWjP<`J{Sa`E{f&xCS} zl@@1Vo7f(e2$%$M!>jaA`N`ZL(&O#*;Hn}p3W^3w1(we|JT?hix*SM5xhP}sxa(B$ zOGq+~6Nk^AIQCp0{bbDSsTs>4%v#2I?jtv7{1$D|@qpERA7*lA3>6}0v6)P+w_f@)2vSdbr3cABD(&ZPBWGu`E zi)SW<+*HOy-!r2h$(Vw}gJT(s@ZK5Q7#A62EUlRhb;cSQ?H`_i`G)=q8?KBIJT3RT z)U5J8|0^zeLbB2-&;Av7((7|mr>5}?H^nECb zT7Kay5~M!!p_H?BM*ptEnJz28z5CYgZ**NhJ<~nc@TjbwPG%d@-l7>Bi1OL)`TV&P z3FBAKA!pt=pFg{2rkkF(|N8#)_034AJql! zK6B@pbYt_~={wWurj|Ez@8z!6wk%v(ymJ3)x^2he#Qlq4quY+?pXl^;NA-_dJKl`k zi=+=7`-$U+j=%PwzTckk-YvdU{6^iv=N9u8^A{#w-}oxiATT&diatlYNfOI7Y%a_+>S>`oVz ztrTrf7Hxm5%XgK|8Zjg{_s{K5cprM}(`8kOoY!g-{oiUzlq{8Po$XE+m#-9WO%_9Z zu-Kd`J~(^$-Lmr4;>z33Th68W%I8>)9=(Rx1D>` z)STYhk#6o>ZERoMd4K0yyVKkE+~4t54c>oy550fWas7LCOGD*+&wIH#e|>uIp@e0r zaaYp6`(0njT0Q#rUIPq&=0fQ}+f2{wUPu5T^l&yXUg&>3-m9xVqyOL+-g43;;`@P_ z%ALzys=|l*YtIoeeOGYw46Yz!Ge@_pnJt@v zFJ)yxMo*g{Su+t~0J)!;T7>l*$OQ-<%t|eiF2e?nWX$H+V;LhK7xh5|_ar@x3d6#f zlgu=jf{3`f8Ua%9H7YbLw*?5z5U^<635Y%7ZzKRC!qrBVAVJVd5Ixb+5}knf!QVtB zo6#-X*TP>4q8zN!LOZyBg^}gXAd&fb!lVKi{T|&TNi%m8$p(hr!9?XkyIG1x zArl@0I{tT26)e3+Fims#AVGGNrwdEx_sosW98VVqV5^3OV#GOTl{Jau3*C3l zELC*O_Rzew;`V!BTMJoP6DwO-o#;*$Hqmk`oUi-pUaHl-;JtHlsiJkZC+#a?Q+myT z(xQBOBd06N*H+O@lCNpW)f5#Y-u)+r`T%z#m+ zCHQ{BDDk_Sw*=lnLmUpu9&bg*RV)O>^a&=ShLF%V8|Z(1h%J)1Z68X;EkmRg&N`&> zOhR}DPt)L|H>qipIDxpOPv-6MOvX=Z@?a)~UzT`tsf{6-XI45Gmw9bcK;b-2zLcClcOcggmwJcfHPwp9~;luMnta$j^q$R**~STH>qq654k3+W{{&n-rjHTUG^%sAa<;(U8!nIR<$jf zQdJ~1BU`Z9fizTVJFZ`zF{Y~{$bL7Su*xt_Wync4Y2?Si97<_|&eIn)DvEtm5bndxdyX-sw!h%fA z(xsJXeDX`~jR1@kA4dE=SwqTjs!@yYB5ZmsSJAr>-X(k~0f;Z^RiH={3`r#!5YhrR zrl)Dv0Dx4Mn6M3(fs7U?2^r&-s4P}ftkktMYZ7o|+Gj2BVA2$=iGXq18YKdO9g09E zWMYbuTQJ(Q0jz0=z@{N`1D$dZ6bA&JA=uk5Du} zs$9V;d=43R^uU{lnYgI!iPfk<#6yC)5LtSM1?woe1(o5Dic}Ttm{m8)NlA4nc{33@ z^EVERjrp6}Tek%o{lHrAfx8qOS5(p2yfIx1RSxX;qgJzjpTC2Cs_Aljpi%Ce*bS(Q zB-fZOKjdOBzIcI~2*3CuL}SB{SC9%E2F!vHlPLLk`qN?H0Yy4PUa(X2pTn>)BdO-! zz9~{uk`QR4^sGzBqJisTmS9~kcB@RwUIZ~9*p$Iai^Dq+x&I<^2hbi&ulg^^!ypgf zx-Z)=8JuSbAQk)>q z_0sJh(`}a|OCu_WXYUApj0nHO}NdQSBMHfg41%sdlgnXdE?^BMhRCh^MX zLr{l?1agOHXZafnCxUzkx>Yj&i{(mWj&L0$!sf4$fUqfL9Mr0_V*YZ!Nwtvol>CjS5zg8w>~+0 zc((tmJ!@v%f*h{0YNqGLS&3vL^QaHr59o@kQ8llGBwlCd&Mws+c+2`u-m>ph##fAr zc`(u@bDVf|NuWhHER0~uv+%$wNEdIT zw6u1~R0K*szwp{Kk1E?11Ifz0OQy0XraW`q;|8a>@Nv1>T>3ayZ!Ujq5tEAdEV|sn z*~^K&DOcOIp2wyfbC3RUv58Wr8&zst=EM5Ol|Gy{o6I{OJCEye`kbKvX={PG>iyQ8 z=0c&j)JGZ+`2eP6#}iWK{XU3owKM39ZU7>zmu=($1|KZ=fFZTafb;IPlE5jGOEwM-j>a z3S+ilObx^{(-i+mge-Fb)|pQilMxA7jIV^MVifjSQRtZn46T#Z5s)TE`Ux>{f1p=u zcocJ=xb7=Zz=urm(lWfJ|6lZ=35m`(q6#}y9-w-)zc$KH`|NTm$;Z zH6l4H%EtiSsSfuybc0roU<=1sV^V-~M8MuNDQby~MR;_^-Y4LyzCNCiCIkYLH zqyLEBw;bgKGZpV_r{LVuob)!QysasB+mfwKV1w2DwxR}2yC-iW_ogm_e4XOIs;{8rhb#M)_1}Y&xSe_p*4i#GmZ<3xE0XEC7GrIfMj~$Ob1P+WB^&92^)(1m zz_=Mq+-da_z`TD%yVDNHJ{fa6R4cWw{Kid+4T`)z#CbVHU?b~LGw*R~*~z|B4r3qB znkdT3UQtEiI?MeGwJ&i04yj6jW<_8P*wi8#3N#HcMi22BD?c$Z0-Vp$lNpVvBD#HS zU1mID8Wqg^-(#(lvXF1Mq zU%hp8!Jew>5HkFAM3pX-Eojsba zs1`i>7ec9u?W80ro!>ckcE#6{^tCJmzw7-@LCUvl#kV)<+k5}$vhPs31*PWqBz^UX z{s+D-kL_r0tr`QhwuKp0GDv*SrbV0zbR~g)=JAkmiTJNSjL-^wz#V^&TMSDa629l( zP*F<$C4D!Vf*%lRXf)g2x7p2|j|)xaZNG9BOY|9)?8l#ci0e-GPovM=G?AV;f9|YA zpiMH8V`;1rnz5H@<~ca z+R6QblK+H6i&iPl8Y-DsS)vbDjand9R&A~uWAo9ZttDyOwP<-@+qGI;mpGp)4uC=t z9Y;`HK8!e{zo)u&K`KEMN34noG-Q80rlL{1ZfW{z31mn^cIUO}kY)7k3E>b%hmb?s z(Nu2tlCAqGw8vkAB2d#FDnYy^l?7`(nTAll6BEmeb9vgx{J$Zn&ptHueF|LwalclO z6$wXaS<6cIrp=1milg}TW#CeAKw^rHtr{hi-rI%xerQ`V~)eD)Un{Go138aA9V+R5Qax7VB)}9q9S*W_^Fx z|1aO)^-ui%Isa_m`u9w_8^18=0Nr4Y1Eol(H0V%@9D~ihZfK{Jqx=r-QO>2a=w9h8 zo-2I==@-fs8hCaLK~gtJM#tY~oy)OgHV&$kWnW1|99 z&d5|o)V_+gx&KPZf1`vE$4u}|3sF$G+a$_6R={Y7fiN@EgwJ_6#4I!YEdG>$dI<({ z=aFPg6!Row;t)3qR*Hzr0$W5Abs+=e%wUNB?PzsIoF}PqqRR!U{d;sK6YLo?h?fyw z5S)L4dSD!%h;oDqnP5I+hcr=)?I_B}*$6PQp5B)F%8zsJQH3-mKcPe+>uIR)5STvj z8ROUpVsMNxMMfX;d4kX~nJ=8Ei2d?x+^weeGr&sx9|Cczsr}X5g4xi`k-3q?r@vdU z82wIJvVLDGcmIrW&Cq7wBUANE(tQ+0!2+efXKv5e5KyBYmT@U><4pIe$9FSlE@!?o z`0ke7DO=8KfrQxWoBhNb89&0DY3JN9^!mr)jx-;+RfW@MaC*D=R&gSb zDuFl|*QJ%Wn{G8Fx)!)pX$NvnWtSk*-$2p0x?wsv(|zOgqw0DX>UG@gn(InBE7Qd# z^9{G`k9B6(Aw5_EJaxz1Wk{wyz7bho4bGa*?K++Rfs3H0Kcl*B+PI>mNcn&2!hu-oodyb_8Eh~XN$-tibb*aEX z@Dx+1nW%l>X;^d6!{Jw4TbFp|PRmNoj%3Y_RL!o(x?EScel8brzzU!on7?>?=+@8! zZxd7jtA&+`(A~>-E-x2$ptEHaw|CvzHEaC3EnNw*`qv#2aX4#E`|D=S5ZKo=;*pbc zZfFSbvU%NlH6PYgSbGkeLbJJK6e7 zsqSZ`_ESy9pVfAqsx|(+){JwG%+$H}X(14aCGthTqD)GDPBWY^w89q|%v&DYOy*$De#iMCOwkG_YQ5jgVuSb{ioB@(BoK9mthQF6CAXVkX>?MK0^_NFcTs z&LNvT&G_3sO>Q%X3ECZ-wrtjJS+4I4yF!+iWhb!STrw5Qn4X3EMXWQ2AQ0mK1sO5i zB>~$YF(<1{$!$Y+*AUpZ*nh}r0;HFMqaN(4X*&4qKIF6?_{?W(Uf2?-i8qQl9mr`! zPGelm*p7??&+|FRLrB%FfrB}hAm`6&3hK$MrjWC~DP*Xd%4tGlntkfr(5D^QecGw& z6FL;D-bcRQXi(L)&otJ&aIgt4Q*!`8V*8EC_h&2}T|fCFB-sIE;s$0HM01@TU{OWJ z2gInR6_O^~qbZ)1hyW7haz(J|a7a&4eig$`JX!9=lwrz%xOJD=*QXhvt&4UjDm{Y)fC~qaH9}cNU;HsHB}QFvv}LS(%tg~!=Fa^XTb|_q&?D#Q;Mi`uVNcgK zEZG`JgD`J;)kXmAnd{F;z5ur)w<0NLli&|fUUB>Qt>cNq-*{%G`zvQ)ZRQl1_*mIz zJ{xR_AwF?c1QYF#)uujVf3KxaE+M_>QZ3z8d@$%*n;8Qg+3p>A2@*SBy`^ zm6Khu0IRq%vnw0b1BYu8WZ7~l#{bEs1n$ogm8T@$Lj%|<0a3weE4-^Lv!Ax0o(9kz zlDTqe?4YDWgh_RKuw$0Zu9Q+RHZl*$R>Lqby8{C=lEkqC@@m)1x=`*LZpr8l--^uX zJ+Z%)7mHxl&a`Wo`7lfuq8QUU8IFuHOLYKGwp5~Hki9^aDXb(dW7yzDgfphLBAmYl z5DZRhh{Z~gy2H&(-4_Z&0EZC8WR)V=*urdv1=)>)VusO+V)-N4cL*zUePI@6oHaNw z0dX9<#Gtz@lOrgwZZ6v}AT-KPdXcQxr%AJq`9;IUVcIxtBL8T`_!8P4wd6;Z+Q4!g zp0kR_EORk;Ux~m z7$Ad%GaHSSFc87MjN&;*A0}(A;f@?YRfFrJeLIfb~VCi<2cCvH_OLuZ# zrtaQA!mN|GuN!fafw2)M*hhx03go~lP@^2&r$bra(ib7g8phOkHfFA`ukX0Z^d%Gk z8(I`D7eEPyObnC~DiGl4hqisg!I6uh;DK1V)<{Wru@`_Kvc9HUnEW&E{g3_Nli&a3 zTOa$=-aoBMww<^p7(lFhAA)e~eVjOrMS++6E8LMnxa6Uag8Rrfk;~XX3Wq$*W~#&G*>}7TJCK5}6+nH1xJA8ly(T;zyRzA9VUXl0xappA zgMISUk|u|7W^iQk?Mmnq4R^pa;dJ3+3s>%anw?4|jL3$q5G%sYTUx0Mketi&DBnBV zGZ%P}zhnM$Q149PWa03_z`c_*M_2Pp=Id^^+-h0yrt(|px^#Z~*Kk7i=B;zBEBSRv z{I5UpPHigxEVAKx2lNVWx%0EJht8U{JoNf~_?#8bTkf2_-@Tl77%wQtRXPj%vmP40 zI zucMe`gyYebH`jEgViST`T5P|6;dd?|ulsuU?|cS)Xy;sK(p>b!jyRUrj)9Vp zDl8Qpd@KJaz90JDG5nS3r=}m4rJQH39eZrDn;YR+msd7xASQaLY|s6UA9Q{ny!4@K zCm)%8?-@$Wg-?t+O949*jBluK{pgl_n8dRut2oIvzS)GUKzw#G#tE5TH6kE$9y8G~ zzijVCFb5dt*g{sMVn}B24-PHiXUL9x(uiaoGXIdv!Z^EG7-tU)nJxs(39d6G5~xqc-Eb45ynh7F91(Iuivk!xutYX8hy=2GByj2k4 zn7P3tMl{0H6N>c@j*W#_=Wvd|{!oNHD{L=72FYPga(|)FY2@@ms4NH%o3X*M3G@t` zVj#Ya(4BQ4QYILm$LOn(td_}&N|hpeHM}85zZ)W)nRQ46Cj+@;Zbz>1V;6@I!{0QB zs6QFoail%S9zjYV68sD;d_+e+P934vuIc8h#YbY7 z2(mLAhT$pKiZ(N*QIJsm(t1N-9eoEPRiA`#|08U{j8H#)#gY=ZV#qHRQ2nS{ zlg(>>;~KL1h&^8>+QEIAg0Eqy*^(mCQ=0)**vD*}IBpE~fQ;`{4C6Kuv|=rB(-2{2 z67iy$Rw)l*Gs3#Tm6X}Xvprn|(>XHMhPSL35T1INeK4>hny)fQ@}gwW-UM@Y@hOs@ zTsS0JAW|!0uSO?E`UqZtOc8p9jEkVl!A=O-GMJ)RBD-63y`gLE z+cu2kM_CIh6?#N9x=&D}Z^dWJR--pzzGNKOab++phBX(7E*{Z8SO|0O<5a{>u`HNY z0Q(_a42Jp;3M|TFzo5$zY%hUGdK_RTpK+*$2D=fn}hcaeJxD|C!GI9*N@Mdrf7XxCva5;-`O#;K~eYe*kT{ z4@Qd1xwVN4N!#|MZU5rH1KWN{x=VtFbWtUK5MZEU#lzSXsIZQVLeQ@@C&$UkXtxQ3uicimPwFH1|@fs0r6jR$4Q# zGQl%~;!pkylAF3gf;Ko44i#&r(~3y>I);c22ox@Wz1J&{ZAgYmLJ3O2ju7#kbtt%q zdA%DHSO->IhE7T)39>+}pef(dGUrnqe!;qb!la}9XkvdZgOLj&VrQ}Rh&{$?W;VeH zbumhDk)=p0gx`h0#PF#hF&5*oQC@E9A~QdxkTil@3+$3FK*q(w^b!9|fhZ%eNsGYB z1?!SxZy?Sw+bIDH6jAG1RUwDjoM#+-_#%@G@G5u!#B70W7~+u_c}iA1{-nphV0zPW&#~+w zdo#Fr9=>rR?R33z{QB`5CrJi(=K7fxr$6cRC-NRTYu~e@vS4;1&Os62CBEqeScA#2 zb;VChGe(|r{w73VfXqEa6C_Ay*hB(h5LujY7V1!*l#@ZsM}Rt_Sw}>4z>g`g`Ya@; zM+w^Pro>3eYZwwSaJ4WaXq2Q0;p(Fn<=IfX$!t&;x<*ssG}^#a$Q6T$fYr3u<3r=a zo+W4BN@(%sqYs^R5SG~M9|_LKRH%RoxnAkH-t(0cbg$r1aj9Y~rT%^dbr>|OL9W{5 zNc(H;&;g1NwI$CVh@e!mb_JfHz6L~tp^^hnWXEQPN~kH*Q&L$Na(onI(-L2PR2`X8 zQl6tgON85#4UvXq(WO!nzQyuhR1CIin7nA29c3BdXw}j%P*(bd@u^aJA)Tr3zlfd1 z=%2(}(l-+~&Uk7~$w;AA*A9+g67f+!jqfeg7B_4(iRKGNm@mW}Y`+v*PH^_~a0h7} zFzx+U(JPgxhdw8_i|!84*-koph7yt&un5-1{PpMG)4A;B=~6#br5Y_#GeX0EYBzh4w z8>E_Dh8ErF5!AFR&YGmNX4zTCa-{7x3}#oo=x8?o0<_DXZBVaMARIx(p4h(ZX_Rwn z5!rXyQ~yX(z%P61aBtS}4`t}!TDhP#UNh_R3WVAZJ#`=cLy2-v2&ePa!#lc7#vj=Z zJC3#)e(cT1#gE(ayY=R`^+ue(Z8CS~T4Vd3zt{v}*~HbprpWW5-8fG##m+hiL~F%^k-)>WAu5AvP32~G z++_o|9W81AX@(v&K{d*20B9v*BzA~}V;4vU`Y<>Ipd)~-O@WaySdU?ozr7S+k*PPB zWC?Crkto}UL(kx60(Rg>@_wmT@JP0*{+Mu^Ayqu9+3WH58i6Jk1} zJS1RPEQoDAMv`>7E3Br9Vu_XFo%_SQ67HP2X}268*lp(yVIa9@DPf+M41g=p`2gK` z2cLz(VUhL~I6tyn<7o=Z)NdXU|LdL4}yqZTPDtCH#Mn8prKS@944O;jW6z{)UXW#LkL#m0m?@@iG;(Vf@P z6FL|)u#MhC8yf5*R|!&E7EuW`C`D-vgB+<%o*;~EbObEsKeg_;I3hn^(Tlx1L7H;; z>M))zi@j8RlEtoKtrl2kYY=TAQ^+hq4#E1He805x(h`}3z$Q)dNEt%5XG?O zaTrs~{A`sVP+%ORk^YI{;08^#pO-fUVtQsodIgWNQ6AR=ENG)`cj*xsn*{qHpfyoM zdG7Ogxr}ijI{u-)i^W}FYQl`2Wc|Y=E4mP?6&{5RG_h^A9MD0CYFE$u1+d`~6v!{3 zIgYd`91&RDf25>~AVz}DenAOA7O>A0N1VG&88U1M$yo=y%_y6 zn8-^UmZDMmR!Z8EC2fm!LUe;<$qATTu9UPVOWNNv>PtJ`*Xfx>t4I_k)V>S1bpPr`gTCl9jx=WL{n3!rd3{ys(_NUC4HMmWsC}UE9Pf?^4L4O5}7P{fWf&*#?_jshFwRhZc9L<}z>0Y$knq znl=kh!w603Z~P<7>SZn!X7!MFAk6ijDBNOH)@$N!D~y(OT4CL_dZ}nQ6lWl5W-vo~ z{j~WD<{N!LKKND4=r`R2@~QJh>M?BcR&pf3ahyf%6m=Y;DLw6>MpPIn2>c8L3cI~g zo@}LwXqwpV10p0)bBb{gGeBT)SpvICly72cLh4Hb-y7|O4WPyngNO}KQrT3s{m;K9yIwGD#~DYAId8_08zKtgWIw4O{hUO`0o-pZbvaD z_kzo++5#e#-!OA@&ER!yeb-wEqjnY!#+xc@fkk&w*=#&r>|d({dn_>6O-WDFL(i7A z3SGmNyS;aMAM5M|^|$PZh1*ZDbfb4;cVZ99+Sd%$ihA(GLq4|DyLZaduG ztvCF*+JK9<_4aO;`RyEb?$pz{%Sibi`!TEW?UK4<2IJfN&BtPXgx_6@bRJTd)$EHABizD#>c z<3n3{VF#tBKih_9Th~8Z6&FDtLiB@({tbsj8BZgu;77FR#OR6Nh#?ypuq*x2jGh25 zMy=3;Z@8q^rtKf`nwhvV+Pn6DN(t>t|sg-h--;g`xk)P*?)=76X<0m-eS#$@S zLO?33{K`*r;{H}8UpkZTyEf^Kyi*9g&~jlouG93TV}bvs-3a68j=Q8jO}j$*)45R! z55$h4cIiy{jmvMq_Fc(~d$fEV!50CR(lMP2QpYv4L%33>ioe^mE4oLzgIzM5@@P`< zK+W|NckV-lP4DW3yUa6hr_?ft1RrLXW?w?`UL(^k5E&;VlnoN3OI3f{bY47fh#Jp2 zLOvE*xJWhI4rUd>C3gSN$Mckx1CKrHblw;8ZiI#3NqzK?R13ZR>~!95*B-{|h*V$s z6{TYuYklaLQc5~gf`~#k21o&KWqDXw$?9*`7eqCU=RtLvceu z?~$Ml^pPK$UKp^68>x}OIf#=8ye-HGUACK(0xkMsilVdzn*0xJdK5^ zisi5z3>E4-j|%ax&P`B*D3&BOaK z=TzpPS|@A@Vi@CvEj7#$K7;^cb~G%gjR@}udLmg+!1dBg@1ca)D(2J5{XcXDL5>*c zh0(WpM4|T`J$LrPv9lNYE`0jgV?t0z3%)D-nV9t*gd)rVmP5>&qbCkOcmCJ~rXyg+ z+uT2*!HiRM#yLiT&zOlTN30r0;Dj?#H%Ji0G0`ZaobTc?kS}=Dkd7fsdcnOwb(kLO zvvjtfion-H$38&D2@@#_q1H!%Dl>K#IGn`-dk^I@Hu=lJ#Ex8qIA&kYF(R9~C9N*y zS1`H>;sKZ*T4tcF5+Cp(;0pg;B#?mQlLW;3x@&_3ByaW;4;*E$8SYx|Sns;-xZW7P z-2-*0xKXA72csScHfEz_p97_e9Jq1+eg3WPWzWeqC==Pn ze8=^=qRRRHrRM$jV@q3~SuQ*^3;*2eyzSyPA&H7bg^cFWzpclIuP;XaqDJu-WGwWw*Os5M#C zx)8@kBt-w8x^wDVXXfn`gJYZWNrit(Mo`K6~rz!oF1b?s+}-@<=x}-JQHMx$wDf#pX|}8H^=e>Dort ziL0sF-Sge=TXZ!IiO|ByRQ1kzOM2(NdDBX9Q?j^ep(I(n9k$X4y3@Vlt4sP2FeT{= zFq7~P-mlX6o56G_txctB_x#Ila26$9zs8<^LZr!)`gBq8%`01X+ zSfJo?@ri%@08xvu-9lamhD>+}wj;fN{;ld|UpM(8m);_&dqD?cb>4R0a!Xs4EEl&! z=3db84|IexnDzz=!;oG5dd9a`eE7 z9lDkHif$4B z6&y>LXO8Ie$N=$0y8lhw&$23*MAl~NUxJ$Ic*(*x?Yr=?cn;NAlpoQ<1j5+q>(lcW zZohErg_L{ijOkssmxb8ffo*+V-*+WzkEQZ^mYhBE2H7hGZOH-z6Z@Y1+xApJ7uoVO z!W%_!_n4iy`T4oeC)&UEg@?`ttO&LE7QQ~eBq?T~NYm596dR6Q%;XU67$MJNo*SZ9 z|0HS%mKbDkA?znkDpjt5l156-Q9|N-m1KydIKselbVj4aJ)z`%Bx;BAt#q4`X9&eW zCM!6co6I)s;NmO3d2sIFyPhNOddl9jnmm?kC;o3|iMj6aP6v`whq>%=smENnR;Mei zo6jd`0#C5|WBPQ@iJydi70vvWCoXxv(;q3(^KzGM?@T z7pB;sQ>O(oFD4i#Fj=19{LSb;SU9L>k>JgMEU~g5UWcM#<2qvtn&b}r!81;$rV$6k%f@^G#7uDQBpMICHfpI%!73Me8QK3B2G zhkaGn&JrZVQNl$|nF5yJ4ZM7gMD+ZI*6p+_n_vpg%-h8+mevnFQP6^~v_hr-69T|) zYCtZ8J|WhiOYXk(8shI3=nDI>3pDN9-a_HqDLB2bt&9}Txfuoy7p0Cz$Y@54(y=Y$&YwrZ2}l5Xkw;)<00*iRDB4xz>e%-*2XPe3Md3LCPO>}0m%HrH}4 zwu?^MT9dZji-iwtyI0+LuS{N_eC4I_}%wA5f(g^e`v{h z2;`4qdx*F0&_VxUMCfOhwQ#<`3?V+1uq)dZO!=~+3mNe+L2$*;h{!Ern!wEC z3VMM3$DqHM7`(*76*4OpSmaWxnC2XKAOHGo(3O=3!`hed_S`ijlJ&_P&e>j!sJPw$ zC0A7MiW@G*sy0l3^#yuq8i=M_*zc!!#qCeJ{R!Vn_5Nh_{*;^I+;249A}Gwh-oM7= zR9ns}?!;POPMaco9c|D78tRXsxkS5yvv-^V&3+A6B!1J-Z9xPh+n_?5Sr`?XLHZlh zbl4$B5-h>BTsH2&w$w(&cj_bB)q?4AZ~^JvLfDZnWK^8eVGyI!5~3pEQDvD-jH#}l2QZ2Rm{aAf8Fm9l-w zGHe_AR$Z#>_-uEksEqAQ*`6$JUu?Kv_ptaN9F!@}Q$7)W2flUy?$yGUdL`)T8un=@ zoY4s6DX*|U!w_q8Ns7OX7N3Jz10_}VAi2JuF&J&L-EjVGlF)puh!+O(Z z@W^wQ|0}eiV(@;Wh1dSiyY4D)=iJIkbS_x#?0ZaPzj zhW#*f(ta2q`^^~#1wItXIc1Y|#$z$=3Tg$=7a&l_!~GHLz{s{W0R=)P6hS8HCy~8B zC8}(C2K;{Mn$~K2)3Q;DAngjv{EQ0K`j=i!)v-18avIia;o`}Nh97Hw9AwCK| zTip0bQWFS`iQ5v%`z=b=Aw0I*02crSgw!h0@u1OY8xAQbO*m9dgcuxDS;s~qgO`X{ z3J${hgor8_4U08+>{}(!P3r_s_$&gkLaS8`N);!qFX}n6f_qB9;~LeVGvTqCffd9c zU%`X852=}BNY-(#1W~CQPf7s+wdo~=4`i{nK7h=KYGfTDgA$4t5c}@{vE{H!Arq

9Oq4MW6X}-T(*<%h{p~_St0yS%mmPb|Eta!c? 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

DBUeTN5?*xunlBX*RIhy$fF;)^)(#T9Yk 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7df8cfa71435a117d9fae285793ce561e5c301e8 GIT binary patch literal 7715 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec8bcb0989f3c595ae0ce7a5b5eefe2649de3114 GIT binary patch literal 41832 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 z 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 J^njP09K}Uo9n$5z8<{EGa-F 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e4f6cfe1dc82a96411c5196c0a310f28a674c7e GIT binary patch literal 19613 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90d95e084005b7f63f9785c98af481dcf3761556 GIT binary patch literal 30399 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 I&XB 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 000000000..e93dc27a3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1138 @@ +# -*- 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 000000000..eb3765f19 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1359 @@ +# -*- 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 000000000..56cd28671 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 000000000..f9f0788fc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1303 @@ +# -*- 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 000000000..420dcf12e --- /dev/null +++ b/implement-cowsay/.venv/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

ezw6n;M6rAO2V2&hsJQbA0Ilv>b*p+ZP$NdXZMgdw+B*Rz|PxH}&{r|8%! z!453tFCcb)1dL^p_WRyyHNmX**Kf&31n}FEv*j(o z?4AJ!z<{9?G8CfB2^|C+$+q!1#)m_Uz=1w6{1%wY@fSSL4c*G)p0z>ak97r(ZVg9I zw`gyBtM}-^ps)QWg-S#or2*3ChE>7YW)iD-oF__&k`~WzFh(YMQ0FJraF+T1w zv|;y#K~9bSpJ2-?H}G`x884@)vijQRc`R6xk99K^`EJ4t=h{!Bd_0ZDd=M;YpVBfWmJ*1J)ZB8G}$3Vr6wX@ zU%Pdil!@ZqB8p#{dP`Cy1)(O42}$BfBpFvk*8MWm?^;pGB~wRj?3b5Ujd=%0?JJ+w zKXecM)uYRuL%*}&Km1kMJ_{cN4c$;xVd|FlE9$1DosL>fyY>Qk(egUyl0m2b#{9+Z s$`wP+XhC_ym}86(`Uy9G;R`2C@UH)Lv3KqL=mgAmybSG?{fD*4KgXc1=Kufz literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f618b6b7a9e3fb7f3970329d5bf611bb3752ba54 GIT binary patch literal 6420 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..847553e6d944375e82a3b7d1cfc83d1972ca8f7b GIT binary patch literal 2390 zcmaJ>O-vg{6rNfCur_N9t|11c6=?{>mBJQ?2}$z@4go9tR5nqXm8y~PPV7x~ZFhD} zO5{j6L@kjT^;G51TW=LT^we|C?S;rljaHx>dg_e|qC`1$W_JApi9CmyH}8A%=FNNG zo4-P#AfO}i$Ddlf8-RbT7co&go8PzMH7AY`(j3x-GWaM`1K4WHsO{EDCN zy?TcsDxwik0(|e&gGQ&)$z{JT86hQPbSYg%SP2{5O1IIY^cWE(!toCMBO|Irxh(3v zMxWBh<$!+7h$%4$1TY8G;A5b6Vz}vXVpRIqrFiIHNOy5)N0Nms$zW@alq%&fNof@m zs+H#PD#7>NyEqUz=U9kKalyU0c4DL1W{Iv7=~Q zu=^Tk&!M^W?CcHqT&(5XL@Pq??{C2pXnuAkJ$uVJ7WdoH)Xd^kB7xF3Gnr->Tst{= zL>p^d{+|7f<W|EnfTIN`p>my7B=5T*l0N^M13|MspJn>e+Q%d4ZR|A1nr*uR2 z5LzAe1D05qR9J<-33YNk6h3I35dNyffY|#6gcS(+pM(4h!1?y^q z(I$1q2hK&>V9_>MUmGme1{-LD9dCnu(gquBgME4wt3sCFe7FiwzN z2XXJxb=t$7nu!Qr!^Fg@-C4{U7?t^7u@aBkKC@EB#1;|KikgKG@ls!eT|xqMvU^Ny zA)};X-92Oy#zYcg6RRy@MI?+7g#ECDRh}?{5ynB{XA`R>>7kR|;oNN6K7y&|xX<>Q zSifV33jEJ<@34FIQeMktb#z!AUDM3Ud)fd(IX!Ed2$}54K{_72`%W&D3@lp@ut7Vu zP?F~~Yre87CvRVuGuM*xVo9y&_{>VFq?@v4lyz+2qID)$x^HIJ<pNyiH@wk;0q#D;$E+6e6op4*X5{hoMk9C(Bi!7cIQgCKBp zXPw7zo~%hUI_jIbd@1$6luo>q2KPpyvEYXH2Wjs! z5D5Jkd=h*r?bG)G%0oZFR)rLoXwfO%I1iB>M2uau6bRW8Lf_ExItb649dc`%!@7=8 z9Fh|(W9%onN?4Z=*6w^7X8>d6+sELIaLU*FAD|OCS;v>+19pTJiqfv7Muh#Tw&d{4 zDI0GAJECWc`PGV^&k`+LptwB5zfJi+*$gEUxghZ*9yb0FSE-Aqd=rrGetn}xRx z?;_q$yp>pc*&$|c6|$P+gEf%Neb5Zv)69aS<}DSbtaF~_hR>Uq<>go4Jf9`%op_O+ zp?SVc80lCB%_%zVc_4(ZF90~P3x;2TuU>(LT`>7Z?0~`>K&RK;0FF}4E;xJOABMeK MeWzaox^mC|13xD>2mk;8 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99e7457bc3d5cb32ab035ece2d742d1f560800a4 GIT binary patch literal 4528 zcmbUlZA=^4@$K4c)?iozCgvjn6G9Rv2d;tSuDRq$4!DpsK!eS-wXRwj?*bLlK&s zC4%!h5h_L3J)5~^gqyGOyEd`or*vjQil?Ma%Ir0U&Yuen#uZhLPo`BMoROl5c_pp@ zXWc+bh)dHUHL8ju(b!B}68*I9Dxk)&?)tWznzWc;PCd#SNJ*-ASuGK@XC$3a<8RNa z;=oK)4v8vG6J?lCjT89L2tP75ICLRqYHYUlLTCFbARmI!L=vF{5}^g>0-2%&`noG( zE8sT3?II&kqGO5{?APu03X>xh#ZjhYlocGJQ>+xLrsyW%gn6zhyHIi69;pVr24t{+ za|`4$6>*1%zf!M6MNPGJhb*dTS&E?%EkI-A-}Wz|`5CoLREt6usVw;j9Kh0vBC6#M zM0Hqf_X^UogtvB1)T$!2fB>~PLj@-@!IBJA)*8!_*?J3q@wGT9GEeSOqp&eXNzaM0 z&hmU*imN;?qkI_`)}1lK19&AVqr!TFP~s_k6kR1F%CZw_?wEP%#bKS1MMYHa(z;y{ z6H~gA=VOVeqVT*z!vx>8FMkx6NhQUAnh}%WLNlqr*|<8Ko(v3p@0~zsa3C;}64D8= zE1XItlt4T=mk^Vpq;|zpKUAXgf$sN3>HR<=J{g#sS7%aEZ+EaKpu|X^6ly5@w#Wk|QRxeg) zY~y3Ld86s*uSeFKPAu4O)NFK~TJP*%us>$^Z}@uGea8^pmuFo!D;Fz2a&5z8@@f}( z7bsulB5-^~H$X`y%ogsn)yHq?k;-lu@Z02C_{e*(X~4z{O~LANvqj3dU$}I)aaP^P z)(VZa>BZ_B9Be4Z?$g+PIkrP%JO0de$}PaMV`u2PhV!F@Wdgdxw;X2i*vlY9OpR$n zPu+#51WvDrGn#ps%u{}PRAN3tX3}27kSt}zjzO|SegDUVya(%Dp|99> zISACC46-&$#ua%Ep1C{~GRHz%j z-^JGLW$e(kF6Fl?M5C|pWsvfU z9YJkVF`8-bRDAF=^P+DiuKFOYr(|DL^}{e=e*uq41gUuwFk6St6E}WvB>v%mN8f(kpo=FwCx*PwZ2o zC_sgSTIkNfq43Z^_}u7OotsXnyeOs8(=)sfRik>1Auc6N#RXA{iF#dVcx*g8FcId% z!{bBHxiIK=80kpHi>Om^-Hw)lj8!O+j3rpqga=g=ETVh{n3?Ms^fO#Z=0eR*z@V}P z`Ry9XbM-f`E?!;Z{A;WqTIlCEzXo0I*cy8b+RwedmBw}Nk!{lK{0_BvcHzu|nr~_Q zSYi`2gs zskq8ItYYbLN^3c_-qOFs=IcGTsh=Fr`@5C~m&b06t(?(32aU!3n#Z5>bZegOeB<6v zxI5e`wK{y)wOX^*`1*s!XEwTF&z6HUG?_d(Pp{_by+8Qdu}{Yye)lh)(Wkh9QW?IL z+LepHXjpC3+JpDcJfJ=udN8c@4X!l~J-ob&wBZLAAJ+bE;^D>5YX2~?*7vQ?K=8X; z$Iz}@Z;;l5E0cHLTd?2c7P;G$#x_5#;%=T;Jn`|~TvI@63OuR`7^h>_7kwJn_n12l zcFwswGQLE+6Zih`d5@^y-W+2WG| z1QfsuFjp`ETZ1Lv|2l_Oi)BIhpy4&g(X)>PmtaZc1k`A}G2OKT%nZ&KogJ#;dP0Q;Aem zl?_W(7hXa!F_GYTKP6)_GAhl}rd6t;FJp5M2}x+axK5ta4AbzuhGq_KvBXicMN>@A z?btsFe70@Y0Nfmt)O@=GNzFx4^OoZ<(|mhk<=Co!t)o}l*SAGr;KAN){A`6Oh6$`N z|03`)Y-FrI>UZl7b$$+>XR@(HHwL)USD^VYtTUsa5oeR;zY2_Jq|RVMP>cjn2=KFW zF-g5_z8SgXWTAjJGmi|38*%`QD)8j2f{vkuydN=qbQtFOl09i2)LU{0#_)Nd9EE1f rMp4xBHwe}A4|4no>G>P!dO{98A-zvX`!mM?MFrMs4?QP{7{dMob%wJf literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a1d43a791369d1348816c692bec9033468abf96 GIT binary patch literal 12302 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%0DBQFjOOI`c_lMrJ0UQ8}6}c z<&)`zK>y>Se3FUpz;9w1C=Ax9t~mVxIn#u(7_}@Bju89@InzjEGw#H-h>$xkhILej zc1B}dk@Ae{7V^N#5v(-x8(Ib-T6C0;$SYX#V}`d=pW9Dqvhfx2I#kgJ6p$wmicBWc zlTo|L^0b;UmHjINPsz`iPKoLK4`$#~rt@dagv3mI%5;3nw13KUeaduy%CyqF^M7o_ MVygd)!JN+Yf0;XF2><{9 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..574fd426e86e1ead55d9432987c4ac84e147ee90 GIT binary patch literal 10012 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab8ee7ec50e7014a3c9e99d4cdaebd8467997814 GIT binary patch literal 3208 zcma(TO>Y~=b#}Q+Ex$yGlql2svK+%U<4Oz3c4HWVTvw7m0EQJJ^g5nM(O57zg zyG%`j2Gl}mCBT6lpoLr@Kz+!;hJzrd!01nCFQ$}+?7~4^6g~J?~)hS*x{rC_m*RHSlwq;V;ZLn^Pj^1S9s zx!79B3!0b`*;>rIwT@JWCZ!~{cjrBtH|6CJkFF!NV*{xYc0F;~vQxgYC+2-gH!;o< z7xi30f63Xq!1PL*B(V7|DJ)?E-|;}~!GTT6zv{FK{af-`}| zwp^!J^oL04KY7!mrIT z=4f~Z2*x=8->#$QQedm2CLQ}yI{rL*?$f#5=;ck}Zf9d~Xj1@OL-ODAZh1fS?*ThH z+KwtvzR!+ek$qcHN%mN6MUu0p^J^7xir zuXMF3&kQz7*-im)G~Wu`4N@IDw>s<6KusF>QW|2q|5-XtjsfEVm0@qYF4bilmAM!n zuZZyKqn93|#~kSev_ZY|1iOUgXU>96MNezE(${vIcESWbMSXW2y$DABzpq+|^uq}< zK+m>)QOc+FMd%I> zhIDw^=A#T*<()vi zN!^K1tH-)npjuuX-!{S1paPN(z+2+%!ovIlp;out@%f}OH*2|V2FrajnV@^=+WcaC zM!A`^#6Q_+@ZW;QuHoxB;pZgn!=f}YK(SkGW9 zl(;d!kepsjD#;rQv#_}}1Nnqnjf~Jsa2W{MR?4Tc40`<&Fzj#^vKXtCU|Sed#AVHyYJqdWQy@_K%-d9~3${QIfjP1XA^)cP-c{@!l?JDax}!Tyh{_2Kc_@c2$}{Q1z^ z^`Y_F(D;4fH@?4g^|q)Jwc&}K-~^+duMM3)NTp|YgX4{G-}cl;Q}yu0TKM8__?@TY zyWz=3&#`*X>7Aa_k49=e=f3JW-Ry;{G>;*F*S*VImp>k;N99^n-tozeV7MMUSqq-r z4W4>v*3V4U&P?qDrw)AcMKFA?vQ>E|Mc+(FG%>K`KvMzqR@@z^zDK16m0trdAR|>u zZ%;39j*g>GRlp%C5PWx_g{g8CNCgQ z!J2RIA-CfjY4}6;)q3P?EpqnJsruWKHTXp)YyQd2YmIQ^LFA*!Xa3Ee%KN2s-lmX?z{_ekt6`P|1s(bmvuwE_NfR2<o| zf3W!Q;-lEJx6aoFFEkM#o(}BMsd-uyBM-%YBbeA@u{*?Le#>o^i_kgQY6e>M(r#`D zEtXcuj#L)(n%z;e*3A+zv}y)RF|FL9EoBTtV?7;{Z`V$mSDEtPNt3oMrpPSdXgM`b n0%*E8j(c?panXOEvtOf$zoOBv(a68tV_f9^;41_ZyYhbl^`WOM literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3396b1b96bc25e741306d660f25e26c803efbe78 GIT binary patch literal 521 zcmYL`F>ezw6vxj^qExO55)v$39vc~A(;}7%Aw&w4fmUj(N@O|t&Q8v7wokS%a7n`O zCF0RA;%JBjde>Q6ZaQE2hOX7HRkeEU>34jTNe9aCG8Z5|Nar0Gomb!uIH`(Ujw-Oi zTPY?|kHKdGCc-*tH0V+#!h#t=nla0T$0KVLoJgNZ4Nmy7@W$j0nC7tfYJA|zq+scL zHWrRxyv<6V8M_TTOvCe>>4gm*aHdJJl+VVB$(*D{_3*Uwm~4`Vb42!f?O8XDxk=-A zwid??S`Zx<*!`?~{Nmv7_5R*zbXfuKE9rO3gbv=mq=!2L`ew0- z{!z_M>-<6q?fa=Yajc?bBJ_mjGNDBkko6<7xka7yqQ8to3t7;Bp}DcNiAx(QQdINR yC)c}vYU`8M$8h( +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 +# fmt: off +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 000000000..ef09c60e3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import Big5DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Big5" + + @property + def language(self) -> str: + return "Chinese" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 000000000..176cb9964 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Tuple, Union + +from .big5freq import ( + BIG5_CHAR_TO_FREQ_ORDER, + BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO, +) +from .euckrfreq import ( + EUCKR_CHAR_TO_FREQ_ORDER, + EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO, +) +from .euctwfreq import ( + EUCTW_CHAR_TO_FREQ_ORDER, + EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO, +) +from .gb2312freq import ( + GB2312_CHAR_TO_FREQ_ORDER, + GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO, +) +from .jisfreq import ( + JIS_CHAR_TO_FREQ_ORDER, + JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO, +) +from .johabfreq import JOHAB_TO_EUCKR_ORDER_TABLE + + +class CharDistributionAnalysis: + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self) -> None: + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order: Tuple[int, ...] = tuple() + self._table_size = 0 # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = 0.0 + self._done = False + self._total_chars = 0 + self._freq_chars = 0 + self.reset() + + def reset(self) -> None: + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char: Union[bytes, bytearray], char_len: int) -> None: + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self) -> float: + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = self._freq_chars / ( + (self._total_chars - self._freq_chars) * self.typical_distribution_ratio + ) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self) -> bool: + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, _: Union[bytes, bytearray]) -> int: + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + return -1 + + +class JOHABDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + first_char = byte_str[0] + if 0x88 <= first_char < 0xD4: + code = first_char * 256 + byte_str[1] + return JOHAB_TO_EUCKR_ORDER_TABLE.get(code, -1) + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + return 157 * (first_char - 0xA4) + second_char - 0x40 + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if 0x81 <= first_char <= 0x9F: + order = 188 * (first_char - 0x81) + elif 0xE0 <= first_char <= 0xEF: + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xA1 + return -1 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 000000000..6def56b4a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,106 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Optional, Union + +from .charsetprober import CharSetProber +from .enums import LanguageFilter, ProbingState + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers: List[CharSetProber] = [] + self._best_guess_prober: Optional[CharSetProber] = None + + def reset(self) -> None: + super().reset() + self._active_num = 0 + for prober in self.probers: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for prober in self.probers: + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + self._state = ProbingState.FOUND_IT + return self.state + if state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self) -> float: + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + if state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober.active: + self.logger.debug("%s not active", prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug( + "%s %s confidence = %s", prober.charset_name, prober.language, conf + ) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 000000000..a103ca113 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging +import re +from typing import Optional, Union + +from .enums import LanguageFilter, ProbingState + +INTERNATIONAL_WORDS_PATTERN = re.compile( + b"[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?" +) + + +class CharSetProber: + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + self._state = ProbingState.DETECTING + self.active = True + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self) -> None: + self._state = ProbingState.DETECTING + + @property + def charset_name(self) -> Optional[str]: + return None + + @property + def language(self) -> Optional[str]: + raise NotImplementedError + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + raise NotImplementedError + + @property + def state(self) -> ProbingState: + return self._state + + def get_confidence(self) -> float: + return 0.0 + + @staticmethod + def filter_high_byte_only(buf: Union[bytes, bytearray]) -> bytes: + buf = re.sub(b"([\x00-\x7F])+", b" ", buf) + return buf + + @staticmethod + def filter_international_words(buf: Union[bytes, bytearray]) -> bytearray: + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = INTERNATIONAL_WORDS_PATTERN.findall(buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b"\x80": + last_char = b" " + filtered.extend(last_char) + + return filtered + + @staticmethod + def remove_xml_tags(buf: Union[bytes, bytearray]) -> bytes: + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + buf = memoryview(buf).cast("c") + + for curr, buf_char in enumerate(buf): + # Check if we're coming out of or entering an XML tag + + # https://github.com/python/typeshed/issues/8182 + if buf_char == b">": # type: ignore[comparison-overlap] + prev = curr + 1 + in_tag = False + # https://github.com/python/typeshed/issues/8182 + elif buf_char == b"<": # type: ignore[comparison-overlap] + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b" ") + in_tag = True + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd8a3356e03deace13fd5f292e97b0d2875fd02f GIT binary patch literal 228 zcmX@j%ge<81VYpdSxZmXcqjpPZ3cl#*Ja tpPZAaA0MBYmst`YuUAm{i^C=tY>izJE6`1hKwJ!Bd}L;1WGrF^vH+e1KoS4| literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4d90a2c5a661b460565827f557cdf497c104afc GIT binary patch literal 4045 zcma)9O>7&-6`mz`m*nzCqWmk_ut$dDnu$n8ZezH#VK=oR+dyg?mRuw(3~I$4iYqO5 z+1aHO5;E!l2`VE7Y+ouBL4XuJ^hY}6ROHY@dMeOfq@;l9t&186ddQ8Alpb>GdrPiJ zDK^j%xbyes&6{~|zW3?x@wh^u4E*VD`X6J2e2E>uK;J8yYfvo{jpT_YXaPgW3tk<_ z2cQlb!HSp{D^gyn$az^Hny5)es1nYHy|!#bDoS1vNW}Zo`n3=fS#%I|YGD@BA}p>c z@QX5;#c;HwXtDRCd_qfVaTt@@qn>f2geVh5u2&tpP}YlO>Zo(frk2U5#c9RjjFxnR(W>f{ZK|3Y<*aIP2Sun;W;&-D zb6C+~V4YdCG~JxB73Gb0)JoN0xtyXBNQwIym+`Ie#ig7j#pz z7VPxssn1MU&&=R*Q)OO$~8AbUDuk30n=!UO2jH}ZIbHz7x+i}C!s*Y}%s_|6- zBvOJKEfnS%w_&VMfNt`psbgO?#=Hx%xGNdD$!u3N)e3V%72VV;s^RXn%T~?M3Y_71 z!C*6LvF^&8IW=w;#g5CclHnJG-{ybevrHUtUb`#?*M!wh@3y!|#>lM^LT*bAN_%Bd z+Mbsd#aYQ8@77%jfq(?=wX4{|y%B+!f{62xU6au5MiR7bV4z23 zroG0gS37b!>PHHyo~}F0?p2FU&e5yz#p#YU5Z#6WuLyz%N4@=e^tRW4mA#6d7dAOc zC%kB)3k+T=uA}XM+BVsSb9id-s4p&XN_g8I08}iEag(y2*YtVSV5VbV=&|huX3(jr zY0EOEraaMD1N-ng_IsUirXUl*^S*O9^QO=aD z>?Pf~T$|2be0w}QF?KQg6HBWZEIkPava>oOTLrEmT?B+u>)FgaGv~90KAo-Bow8+q zKQnqNYwHe6SJmR2I>YR2Rj+0N9RSmKwgZLPqM`e3@O-9PcN6Uh_Hdv>crPO&wo1qnXz$UV*UK&df(0U@XcmoVCkn1&aOv~u8T)E!8GEE zDxaAzZsQRQp#wau`Z2&`FILSWT<$8GuohVL@k>|~o`+9bP!qd|_dI;kwlPkV9gG&Q zJP(OxF&=i68DTB7+QCIYz~|c#)*_m+7G3S&>I>y!T3kzbk{$ehp=2Lq`lOTajRCw1 ztPSkYpY-Rt^&;86t-xYncAz`sw;%%)Ap-;#gR>azyNZw0{E&0NpVId9+!;pQuClgw zwc|N~bXPfte6dB`>#*PJ)?nX}ZqIMQDD~UjdTrlo=f3>&3FICVNqv9nK;ugfNiG8i zF@T{Itx5&y2tH^E(O1J4*=8sJ(g1R0WFmm8}4`DCXkD(074@Gd3N2-p!T1Q=59?*QQf9B8}#U=4X6cH;JTcb zD%v*mBp`3D@%rTd%fH$H?US!Aydx9o!4X&TNKNBM<4EHc$^etwvX~?mkbA%_&N0ky zsEz{$vJ5?`v62eNn`={{lpEmFuJCe7bj30=s;-E~a3vECV!NS^a3hjVcX&!?Jq>V;6oo;8b#>kBq zCbb>O3jASb(3%bg*Bl6NoUBY$#Z>Gnnv!DYbRok?{i#9K&=(M4lbM5HF^XfCe6g$@dr!LXD zRpV{GnV}Fs(4`A1To>N$2pZ9AKst@X3bhPN&M_gnil+yc*c_j&E9|-knfDQ6e2|*i3c{s1I=(>Gk)z!eBYz^k&XC~73Yii@n$0VB)NBa z@ZsR2)c=Fwt|6p;+votQJ(DqWqb%PE?g+!)xrN4L7stu@$r;^0T3z_G^XdbJRyuZW-5-?&oQ^Tr0wQp&Hv}54Imb8(<{lNs}LRzI1l+-+tKJM+#LC2q3{Rd zS>yTg+weJ{hd_?b^NS#aIo$pgd|E+45S|5Mg1C8v2>t&g%D>4g8|0P$kfDE(QMml% z!RFq<=J1JUk)r}_M)y2; Optional[str]: + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + :param should_rename_legacy: Should we rename legacy encodings to + their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + u = UniversalDetector(should_rename_legacy=should_rename_legacy) + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if minimal: + return result["encoding"] + if result["encoding"]: + return f'{name}: {result["encoding"]} with confidence {result["confidence"]}' + return f"{name}: no result" + + +def main(argv: Optional[List[str]] = None) -> None: + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description=( + "Takes one or more file paths and reports their detected encodings" + ) + ) + parser.add_argument( + "input", + help="File whose encoding we would like to determine. (default: stdin)", + type=argparse.FileType("rb"), + nargs="*", + default=[sys.stdin.buffer], + ) + parser.add_argument( + "--minimal", + help="Print only the encoding to standard output", + action="store_true", + ) + parser.add_argument( + "-l", + "--legacy", + help="Rename legacy encodings to more modern ones.", + action="store_true", + ) + parser.add_argument( + "--version", action="version", version=f"%(prog)s {__version__}" + ) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print( + "You are running chardetect interactively. Press " + "CTRL-D twice at the start of a blank line to signal the " + "end of your input. If you want help, run chardetect " + "--help\n", + file=sys.stderr, + ) + print( + description_of( + f, f.name, minimal=args.minimal, should_rename_legacy=args.legacy + ) + ) + + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 000000000..8ed4a8773 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,90 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + + +class CodingStateMachine: + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + + def __init__(self, sm: CodingStateMachineDict) -> None: + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = MachineState.START + self.active = True + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self) -> None: + self._curr_state = MachineState.START + + def next_state(self, c: int) -> int: + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model["class_table"][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model["char_len_table"][byte_class] + # from byte's class and state_table, we get its next state + curr_state = self._curr_state * self._model["class_factor"] + byte_class + self._curr_state = self._model["state_table"][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self) -> int: + return self._curr_char_len + + def get_coding_state_machine(self) -> str: + return self._model["name"] + + @property + def language(self) -> str: + return self._model["language"] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py new file mode 100644 index 000000000..7a3c4c7e3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py @@ -0,0 +1,19 @@ +from typing import TYPE_CHECKING, Tuple + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class CodingStateMachineDict(TypedDict, total=False): + class_table: Tuple[int, ...] + class_factor: int + state_table: Tuple[int, ...] + char_len_table: Tuple[int, ...] + name: str + language: str # Optional key + +else: + CodingStateMachineDict = dict diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 000000000..fa7307ed8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "CP949" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 000000000..5e3e19823 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,85 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +from enum import Enum, Flag + + +class InputState: + """ + This enum represents the different states a universal detector can be in. + """ + + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(Flag): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + + NONE = 0x00 + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(Enum): + """ + This enum represents the different states a prober can be in. + """ + + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState: + """ + This enum represents the different states a state machine can be in. + """ + + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood: + """ + This enum represents the likelihood of a character following the previous one. + """ + + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls) -> int: + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory: + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 000000000..fd713830d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState +from .escsm import ( + HZ_SM_MODEL, + ISO2022CN_SM_MODEL, + ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL, +) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = 0 + self._detected_charset: Optional[str] = None + self._detected_language: Optional[str] = None + self._state = ProbingState.DETECTING + self.reset() + + def reset(self) -> None: + super().reset() + for coding_sm in self.coding_sm: + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self) -> Optional[str]: + return self._detected_charset + + @property + def language(self) -> Optional[str]: + return self._detected_language + + def get_confidence(self) -> float: + return 0.99 if self._detected_charset else 0.00 + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 000000000..11d4adf77 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# fmt: off +HZ_CLS = ( + 1, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 4, 0, 5, 2, 0, # 78 - 7f + 1, 1, 1, 1, 1, 1, 1, 1, # 80 - 87 + 1, 1, 1, 1, 1, 1, 1, 1, # 88 - 8f + 1, 1, 1, 1, 1, 1, 1, 1, # 90 - 97 + 1, 1, 1, 1, 1, 1, 1, 1, # 98 - 9f + 1, 1, 1, 1, 1, 1, 1, 1, # a0 - a7 + 1, 1, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 1, 1, 1, 1, 1, 1, # c0 - c7 + 1, 1, 1, 1, 1, 1, 1, 1, # c8 - cf + 1, 1, 1, 1, 1, 1, 1, 1, # d0 - d7 + 1, 1, 1, 1, 1, 1, 1, 1, # d8 - df + 1, 1, 1, 1, 1, 1, 1, 1, # e0 - e7 + 1, 1, 1, 1, 1, 1, 1, 1, # e8 - ef + 1, 1, 1, 1, 1, 1, 1, 1, # f0 - f7 + 1, 1, 1, 1, 1, 1, 1, 1, # f8 - ff +) + +HZ_ST = ( +MachineState.START, MachineState.ERROR, 3, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 +MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f +MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.START, MachineState.START, 4, MachineState.ERROR, # 10-17 + 5, MachineState.ERROR, 6, MachineState.ERROR, 5, 5, 4, MachineState.ERROR, # 18-1f + 4, MachineState.ERROR, 4, 4, 4, MachineState.ERROR, 4, MachineState.ERROR, # 20-27 + 4, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 28-2f +) +# fmt: on + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL: CodingStateMachineDict = { + "class_table": HZ_CLS, + "class_factor": 6, + "state_table": HZ_ST, + "char_len_table": HZ_CHAR_LEN_TABLE, + "name": "HZ-GB-2312", + "language": "Chinese", +} + +# fmt: off +ISO2022CN_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 4, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022CN_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 20-27 + 5, 6, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, # 38-3f +) +# fmt: on + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022CN_CLS, + "class_factor": 9, + "state_table": ISO2022CN_ST, + "char_len_table": ISO2022CN_CHAR_LEN_TABLE, + "name": "ISO-2022-CN", + "language": "Chinese", +} + +# fmt: off +ISO2022JP_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 2, 2, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 7, 0, 0, 0, # 20 - 27 + 3, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 6, 0, 4, 0, 8, 0, 0, 0, # 40 - 47 + 0, 9, 5, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022JP_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 20-27 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 6, MachineState.ITS_ME, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 38-3f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, MachineState.START, # 40-47 +) +# fmt: on + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022JP_CLS, + "class_factor": 10, + "state_table": ISO2022JP_ST, + "char_len_table": ISO2022JP_CHAR_LEN_TABLE, + "name": "ISO-2022-JP", + "language": "Japanese", +} + +# fmt: off +ISO2022KR_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 3, 0, 0, 0, # 20 - 27 + 0, 4, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 5, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022KR_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 10-17 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 20-27 +) +# fmt: on + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022KR_CLS, + "class_factor": 6, + "state_table": ISO2022KR_ST, + "char_len_table": ISO2022KR_CHAR_LEN_TABLE, + "name": "ISO-2022-KR", + "language": "Korean", +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 000000000..39487f409 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import EUCJPDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import EUCJPContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return "EUC-JP" + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + # PY3K: byte_str is a byte array, so byte is an int, not a byte + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 000000000..7dc3b1038 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,196 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +# fmt: off +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 000000000..1fc5de046 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-KR" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 000000000..4900ccc16 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,388 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +EUCTW_TABLE_SIZE = 5376 + +# fmt: off +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1, 1800, 1506, 255, 1431, 198, 9, 82, 6, 7310, 177, 202, 3615, 1256, 2808, 110, # 2742 + 3735, 33, 3241, 261, 76, 44, 2113, 16, 2931, 2184, 1176, 659, 3868, 26, 3404, 2643, # 2758 + 1198, 3869, 3313, 4060, 410, 2211, 302, 590, 361, 1963, 8, 204, 58, 4296, 7311, 1931, # 2774 + 63, 7312, 7313, 317, 1614, 75, 222, 159, 4061, 2412, 1480, 7314, 3500, 3068, 224, 2809, # 2790 + 3616, 3, 10, 3870, 1471, 29, 2774, 1135, 2852, 1939, 873, 130, 3242, 1123, 312, 7315, # 2806 + 4297, 2051, 507, 252, 682, 7316, 142, 1914, 124, 206, 2932, 34, 3501, 3173, 64, 604, # 2822 + 7317, 2494, 1976, 1977, 155, 1990, 645, 641, 1606, 7318, 3405, 337, 72, 406, 7319, 80, # 2838 + 630, 238, 3174, 1509, 263, 939, 1092, 2644, 756, 1440, 1094, 3406, 449, 69, 2969, 591, # 2854 + 179, 2095, 471, 115, 2034, 1843, 60, 50, 2970, 134, 806, 1868, 734, 2035, 3407, 180, # 2870 + 995, 1607, 156, 537, 2893, 688, 7320, 319, 1305, 779, 2144, 514, 2374, 298, 4298, 359, # 2886 + 2495, 90, 2707, 1338, 663, 11, 906, 1099, 2545, 20, 2436, 182, 532, 1716, 7321, 732, # 2902 + 1376, 4062, 1311, 1420, 3175, 25, 2312, 1056, 113, 399, 382, 1949, 242, 3408, 2467, 529, # 2918 + 3243, 475, 1447, 3617, 7322, 117, 21, 656, 810, 1297, 2295, 2329, 3502, 7323, 126, 4063, # 2934 + 706, 456, 150, 613, 4299, 71, 1118, 2036, 4064, 145, 3069, 85, 835, 486, 2114, 1246, # 2950 + 1426, 428, 727, 1285, 1015, 800, 106, 623, 303, 1281, 7324, 2127, 2354, 347, 3736, 221, # 2966 + 3503, 3110, 7325, 1955, 1153, 4065, 83, 296, 1199, 3070, 192, 624, 93, 7326, 822, 1897, # 2982 + 2810, 3111, 795, 2064, 991, 1554, 1542, 1592, 27, 43, 2853, 859, 139, 1456, 860, 4300, # 2998 + 437, 712, 3871, 164, 2392, 3112, 695, 211, 3017, 2096, 195, 3872, 1608, 3504, 3505, 3618, # 3014 + 3873, 234, 811, 2971, 2097, 3874, 2229, 1441, 3506, 1615, 2375, 668, 2076, 1638, 305, 228, # 3030 + 1664, 4301, 467, 415, 7327, 262, 2098, 1593, 239, 108, 300, 200, 1033, 512, 1247, 2077, # 3046 + 7328, 7329, 2173, 3176, 3619, 2673, 593, 845, 1062, 3244, 88, 1723, 2037, 3875, 1950, 212, # 3062 + 266, 152, 149, 468, 1898, 4066, 4302, 77, 187, 7330, 3018, 37, 5, 2972, 7331, 3876, # 3078 + 7332, 7333, 39, 2517, 4303, 2894, 3177, 2078, 55, 148, 74, 4304, 545, 483, 1474, 1029, # 3094 + 1665, 217, 1869, 1531, 3113, 1104, 2645, 4067, 24, 172, 3507, 900, 3877, 3508, 3509, 4305, # 3110 + 32, 1408, 2811, 1312, 329, 487, 2355, 2247, 2708, 784, 2674, 4, 3019, 3314, 1427, 1788, # 3126 + 188, 109, 499, 7334, 3620, 1717, 1789, 888, 1217, 3020, 4306, 7335, 3510, 7336, 3315, 1520, # 3142 + 3621, 3878, 196, 1034, 775, 7337, 7338, 929, 1815, 249, 439, 38, 7339, 1063, 7340, 794, # 3158 + 3879, 1435, 2296, 46, 178, 3245, 2065, 7341, 2376, 7342, 214, 1709, 4307, 804, 35, 707, # 3174 + 324, 3622, 1601, 2546, 140, 459, 4068, 7343, 7344, 1365, 839, 272, 978, 2257, 2572, 3409, # 3190 + 2128, 1363, 3623, 1423, 697, 100, 3071, 48, 70, 1231, 495, 3114, 2193, 7345, 1294, 7346, # 3206 + 2079, 462, 586, 1042, 3246, 853, 256, 988, 185, 2377, 3410, 1698, 434, 1084, 7347, 3411, # 3222 + 314, 2615, 2775, 4308, 2330, 2331, 569, 2280, 637, 1816, 2518, 757, 1162, 1878, 1616, 3412, # 3238 + 287, 1577, 2115, 768, 4309, 1671, 2854, 3511, 2519, 1321, 3737, 909, 2413, 7348, 4069, 933, # 3254 + 3738, 7349, 2052, 2356, 1222, 4310, 765, 2414, 1322, 786, 4311, 7350, 1919, 1462, 1677, 2895, # 3270 + 1699, 7351, 4312, 1424, 2437, 3115, 3624, 2590, 3316, 1774, 1940, 3413, 3880, 4070, 309, 1369, # 3286 + 1130, 2812, 364, 2230, 1653, 1299, 3881, 3512, 3882, 3883, 2646, 525, 1085, 3021, 902, 2000, # 3302 + 1475, 964, 4313, 421, 1844, 1415, 1057, 2281, 940, 1364, 3116, 376, 4314, 4315, 1381, 7, # 3318 + 2520, 983, 2378, 336, 1710, 2675, 1845, 321, 3414, 559, 1131, 3022, 2742, 1808, 1132, 1313, # 3334 + 265, 1481, 1857, 7352, 352, 1203, 2813, 3247, 167, 1089, 420, 2814, 776, 792, 1724, 3513, # 3350 + 4071, 2438, 3248, 7353, 4072, 7354, 446, 229, 333, 2743, 901, 3739, 1200, 1557, 4316, 2647, # 3366 + 1920, 395, 2744, 2676, 3740, 4073, 1835, 125, 916, 3178, 2616, 4317, 7355, 7356, 3741, 7357, # 3382 + 7358, 7359, 4318, 3117, 3625, 1133, 2547, 1757, 3415, 1510, 2313, 1409, 3514, 7360, 2145, 438, # 3398 + 2591, 2896, 2379, 3317, 1068, 958, 3023, 461, 311, 2855, 2677, 4074, 1915, 3179, 4075, 1978, # 3414 + 383, 750, 2745, 2617, 4076, 274, 539, 385, 1278, 1442, 7361, 1154, 1964, 384, 561, 210, # 3430 + 98, 1295, 2548, 3515, 7362, 1711, 2415, 1482, 3416, 3884, 2897, 1257, 129, 7363, 3742, 642, # 3446 + 523, 2776, 2777, 2648, 7364, 141, 2231, 1333, 68, 176, 441, 876, 907, 4077, 603, 2592, # 3462 + 710, 171, 3417, 404, 549, 18, 3118, 2393, 1410, 3626, 1666, 7365, 3516, 4319, 2898, 4320, # 3478 + 7366, 2973, 368, 7367, 146, 366, 99, 871, 3627, 1543, 748, 807, 1586, 1185, 22, 2258, # 3494 + 379, 3743, 3180, 7368, 3181, 505, 1941, 2618, 1991, 1382, 2314, 7369, 380, 2357, 218, 702, # 3510 + 1817, 1248, 3418, 3024, 3517, 3318, 3249, 7370, 2974, 3628, 930, 3250, 3744, 7371, 59, 7372, # 3526 + 585, 601, 4078, 497, 3419, 1112, 1314, 4321, 1801, 7373, 1223, 1472, 2174, 7374, 749, 1836, # 3542 + 690, 1899, 3745, 1772, 3885, 1476, 429, 1043, 1790, 2232, 2116, 917, 4079, 447, 1086, 1629, # 3558 + 7375, 556, 7376, 7377, 2020, 1654, 844, 1090, 105, 550, 966, 1758, 2815, 1008, 1782, 686, # 3574 + 1095, 7378, 2282, 793, 1602, 7379, 3518, 2593, 4322, 4080, 2933, 2297, 4323, 3746, 980, 2496, # 3590 + 544, 353, 527, 4324, 908, 2678, 2899, 7380, 381, 2619, 1942, 1348, 7381, 1341, 1252, 560, # 3606 + 3072, 7382, 3420, 2856, 7383, 2053, 973, 886, 2080, 143, 4325, 7384, 7385, 157, 3886, 496, # 3622 + 4081, 57, 840, 540, 2038, 4326, 4327, 3421, 2117, 1445, 970, 2259, 1748, 1965, 2081, 4082, # 3638 + 3119, 1234, 1775, 3251, 2816, 3629, 773, 1206, 2129, 1066, 2039, 1326, 3887, 1738, 1725, 4083, # 3654 + 279, 3120, 51, 1544, 2594, 423, 1578, 2130, 2066, 173, 4328, 1879, 7386, 7387, 1583, 264, # 3670 + 610, 3630, 4329, 2439, 280, 154, 7388, 7389, 7390, 1739, 338, 1282, 3073, 693, 2857, 1411, # 3686 + 1074, 3747, 2440, 7391, 4330, 7392, 7393, 1240, 952, 2394, 7394, 2900, 1538, 2679, 685, 1483, # 3702 + 4084, 2468, 1436, 953, 4085, 2054, 4331, 671, 2395, 79, 4086, 2441, 3252, 608, 567, 2680, # 3718 + 3422, 4087, 4088, 1691, 393, 1261, 1791, 2396, 7395, 4332, 7396, 7397, 7398, 7399, 1383, 1672, # 3734 + 3748, 3182, 1464, 522, 1119, 661, 1150, 216, 675, 4333, 3888, 1432, 3519, 609, 4334, 2681, # 3750 + 2397, 7400, 7401, 7402, 4089, 3025, 0, 7403, 2469, 315, 231, 2442, 301, 3319, 4335, 2380, # 3766 + 7404, 233, 4090, 3631, 1818, 4336, 4337, 7405, 96, 1776, 1315, 2082, 7406, 257, 7407, 1809, # 3782 + 3632, 2709, 1139, 1819, 4091, 2021, 1124, 2163, 2778, 1777, 2649, 7408, 3074, 363, 1655, 3183, # 3798 + 7409, 2975, 7410, 7411, 7412, 3889, 1567, 3890, 718, 103, 3184, 849, 1443, 341, 3320, 2934, # 3814 + 1484, 7413, 1712, 127, 67, 339, 4092, 2398, 679, 1412, 821, 7414, 7415, 834, 738, 351, # 3830 + 2976, 2146, 846, 235, 1497, 1880, 418, 1992, 3749, 2710, 186, 1100, 2147, 2746, 3520, 1545, # 3846 + 1355, 2935, 2858, 1377, 583, 3891, 4093, 2573, 2977, 7416, 1298, 3633, 1078, 2549, 3634, 2358, # 3862 + 78, 3750, 3751, 267, 1289, 2099, 2001, 1594, 4094, 348, 369, 1274, 2194, 2175, 1837, 4338, # 3878 + 1820, 2817, 3635, 2747, 2283, 2002, 4339, 2936, 2748, 144, 3321, 882, 4340, 3892, 2749, 3423, # 3894 + 4341, 2901, 7417, 4095, 1726, 320, 7418, 3893, 3026, 788, 2978, 7419, 2818, 1773, 1327, 2859, # 3910 + 3894, 2819, 7420, 1306, 4342, 2003, 1700, 3752, 3521, 2359, 2650, 787, 2022, 506, 824, 3636, # 3926 + 534, 323, 4343, 1044, 3322, 2023, 1900, 946, 3424, 7421, 1778, 1500, 1678, 7422, 1881, 4344, # 3942 + 165, 243, 4345, 3637, 2521, 123, 683, 4096, 764, 4346, 36, 3895, 1792, 589, 2902, 816, # 3958 + 626, 1667, 3027, 2233, 1639, 1555, 1622, 3753, 3896, 7423, 3897, 2860, 1370, 1228, 1932, 891, # 3974 + 2083, 2903, 304, 4097, 7424, 292, 2979, 2711, 3522, 691, 2100, 4098, 1115, 4347, 118, 662, # 3990 + 7425, 611, 1156, 854, 2381, 1316, 2861, 2, 386, 515, 2904, 7426, 7427, 3253, 868, 2234, # 4006 + 1486, 855, 2651, 785, 2212, 3028, 7428, 1040, 3185, 3523, 7429, 3121, 448, 7430, 1525, 7431, # 4022 + 2164, 4348, 7432, 3754, 7433, 4099, 2820, 3524, 3122, 503, 818, 3898, 3123, 1568, 814, 676, # 4038 + 1444, 306, 1749, 7434, 3755, 1416, 1030, 197, 1428, 805, 2821, 1501, 4349, 7435, 7436, 7437, # 4054 + 1993, 7438, 4350, 7439, 7440, 2195, 13, 2779, 3638, 2980, 3124, 1229, 1916, 7441, 3756, 2131, # 4070 + 7442, 4100, 4351, 2399, 3525, 7443, 2213, 1511, 1727, 1120, 7444, 7445, 646, 3757, 2443, 307, # 4086 + 7446, 7447, 1595, 3186, 7448, 7449, 7450, 3639, 1113, 1356, 3899, 1465, 2522, 2523, 7451, 519, # 4102 + 7452, 128, 2132, 92, 2284, 1979, 7453, 3900, 1512, 342, 3125, 2196, 7454, 2780, 2214, 1980, # 4118 + 3323, 7455, 290, 1656, 1317, 789, 827, 2360, 7456, 3758, 4352, 562, 581, 3901, 7457, 401, # 4134 + 4353, 2248, 94, 4354, 1399, 2781, 7458, 1463, 2024, 4355, 3187, 1943, 7459, 828, 1105, 4101, # 4150 + 1262, 1394, 7460, 4102, 605, 4356, 7461, 1783, 2862, 7462, 2822, 819, 2101, 578, 2197, 2937, # 4166 + 7463, 1502, 436, 3254, 4103, 3255, 2823, 3902, 2905, 3425, 3426, 7464, 2712, 2315, 7465, 7466, # 4182 + 2332, 2067, 23, 4357, 193, 826, 3759, 2102, 699, 1630, 4104, 3075, 390, 1793, 1064, 3526, # 4198 + 7467, 1579, 3076, 3077, 1400, 7468, 4105, 1838, 1640, 2863, 7469, 4358, 4359, 137, 4106, 598, # 4214 + 3078, 1966, 780, 104, 974, 2938, 7470, 278, 899, 253, 402, 572, 504, 493, 1339, 7471, # 4230 + 3903, 1275, 4360, 2574, 2550, 7472, 3640, 3029, 3079, 2249, 565, 1334, 2713, 863, 41, 7473, # 4246 + 7474, 4361, 7475, 1657, 2333, 19, 463, 2750, 4107, 606, 7476, 2981, 3256, 1087, 2084, 1323, # 4262 + 2652, 2982, 7477, 1631, 1623, 1750, 4108, 2682, 7478, 2864, 791, 2714, 2653, 2334, 232, 2416, # 4278 + 7479, 2983, 1498, 7480, 2654, 2620, 755, 1366, 3641, 3257, 3126, 2025, 1609, 119, 1917, 3427, # 4294 + 862, 1026, 4109, 7481, 3904, 3760, 4362, 3905, 4363, 2260, 1951, 2470, 7482, 1125, 817, 4110, # 4310 + 4111, 3906, 1513, 1766, 2040, 1487, 4112, 3030, 3258, 2824, 3761, 3127, 7483, 7484, 1507, 7485, # 4326 + 2683, 733, 40, 1632, 1106, 2865, 345, 4113, 841, 2524, 230, 4364, 2984, 1846, 3259, 3428, # 4342 + 7486, 1263, 986, 3429, 7487, 735, 879, 254, 1137, 857, 622, 1300, 1180, 1388, 1562, 3907, # 4358 + 3908, 2939, 967, 2751, 2655, 1349, 592, 2133, 1692, 3324, 2985, 1994, 4114, 1679, 3909, 1901, # 4374 + 2185, 7488, 739, 3642, 2715, 1296, 1290, 7489, 4115, 2198, 2199, 1921, 1563, 2595, 2551, 1870, # 4390 + 2752, 2986, 7490, 435, 7491, 343, 1108, 596, 17, 1751, 4365, 2235, 3430, 3643, 7492, 4366, # 4406 + 294, 3527, 2940, 1693, 477, 979, 281, 2041, 3528, 643, 2042, 3644, 2621, 2782, 2261, 1031, # 4422 + 2335, 2134, 2298, 3529, 4367, 367, 1249, 2552, 7493, 3530, 7494, 4368, 1283, 3325, 2004, 240, # 4438 + 1762, 3326, 4369, 4370, 836, 1069, 3128, 474, 7495, 2148, 2525, 268, 3531, 7496, 3188, 1521, # 4454 + 1284, 7497, 1658, 1546, 4116, 7498, 3532, 3533, 7499, 4117, 3327, 2684, 1685, 4118, 961, 1673, # 4470 + 2622, 190, 2005, 2200, 3762, 4371, 4372, 7500, 570, 2497, 3645, 1490, 7501, 4373, 2623, 3260, # 4486 + 1956, 4374, 584, 1514, 396, 1045, 1944, 7502, 4375, 1967, 2444, 7503, 7504, 4376, 3910, 619, # 4502 + 7505, 3129, 3261, 215, 2006, 2783, 2553, 3189, 4377, 3190, 4378, 763, 4119, 3763, 4379, 7506, # 4518 + 7507, 1957, 1767, 2941, 3328, 3646, 1174, 452, 1477, 4380, 3329, 3130, 7508, 2825, 1253, 2382, # 4534 + 2186, 1091, 2285, 4120, 492, 7509, 638, 1169, 1824, 2135, 1752, 3911, 648, 926, 1021, 1324, # 4550 + 4381, 520, 4382, 997, 847, 1007, 892, 4383, 3764, 2262, 1871, 3647, 7510, 2400, 1784, 4384, # 4566 + 1952, 2942, 3080, 3191, 1728, 4121, 2043, 3648, 4385, 2007, 1701, 3131, 1551, 30, 2263, 4122, # 4582 + 7511, 2026, 4386, 3534, 7512, 501, 7513, 4123, 594, 3431, 2165, 1821, 3535, 3432, 3536, 3192, # 4598 + 829, 2826, 4124, 7514, 1680, 3132, 1225, 4125, 7515, 3262, 4387, 4126, 3133, 2336, 7516, 4388, # 4614 + 4127, 7517, 3912, 3913, 7518, 1847, 2383, 2596, 3330, 7519, 4389, 374, 3914, 652, 4128, 4129, # 4630 + 375, 1140, 798, 7520, 7521, 7522, 2361, 4390, 2264, 546, 1659, 138, 3031, 2445, 4391, 7523, # 4646 + 2250, 612, 1848, 910, 796, 3765, 1740, 1371, 825, 3766, 3767, 7524, 2906, 2554, 7525, 692, # 4662 + 444, 3032, 2624, 801, 4392, 4130, 7526, 1491, 244, 1053, 3033, 4131, 4132, 340, 7527, 3915, # 4678 + 1041, 2987, 293, 1168, 87, 1357, 7528, 1539, 959, 7529, 2236, 721, 694, 4133, 3768, 219, # 4694 + 1478, 644, 1417, 3331, 2656, 1413, 1401, 1335, 1389, 3916, 7530, 7531, 2988, 2362, 3134, 1825, # 4710 + 730, 1515, 184, 2827, 66, 4393, 7532, 1660, 2943, 246, 3332, 378, 1457, 226, 3433, 975, # 4726 + 3917, 2944, 1264, 3537, 674, 696, 7533, 163, 7534, 1141, 2417, 2166, 713, 3538, 3333, 4394, # 4742 + 3918, 7535, 7536, 1186, 15, 7537, 1079, 1070, 7538, 1522, 3193, 3539, 276, 1050, 2716, 758, # 4758 + 1126, 653, 2945, 3263, 7539, 2337, 889, 3540, 3919, 3081, 2989, 903, 1250, 4395, 3920, 3434, # 4774 + 3541, 1342, 1681, 1718, 766, 3264, 286, 89, 2946, 3649, 7540, 1713, 7541, 2597, 3334, 2990, # 4790 + 7542, 2947, 2215, 3194, 2866, 7543, 4396, 2498, 2526, 181, 387, 1075, 3921, 731, 2187, 3335, # 4806 + 7544, 3265, 310, 313, 3435, 2299, 770, 4134, 54, 3034, 189, 4397, 3082, 3769, 3922, 7545, # 4822 + 1230, 1617, 1849, 355, 3542, 4135, 4398, 3336, 111, 4136, 3650, 1350, 3135, 3436, 3035, 4137, # 4838 + 2149, 3266, 3543, 7546, 2784, 3923, 3924, 2991, 722, 2008, 7547, 1071, 247, 1207, 2338, 2471, # 4854 + 1378, 4399, 2009, 864, 1437, 1214, 4400, 373, 3770, 1142, 2216, 667, 4401, 442, 2753, 2555, # 4870 + 3771, 3925, 1968, 4138, 3267, 1839, 837, 170, 1107, 934, 1336, 1882, 7548, 7549, 2118, 4139, # 4886 + 2828, 743, 1569, 7550, 4402, 4140, 582, 2384, 1418, 3437, 7551, 1802, 7552, 357, 1395, 1729, # 4902 + 3651, 3268, 2418, 1564, 2237, 7553, 3083, 3772, 1633, 4403, 1114, 2085, 4141, 1532, 7554, 482, # 4918 + 2446, 4404, 7555, 7556, 1492, 833, 1466, 7557, 2717, 3544, 1641, 2829, 7558, 1526, 1272, 3652, # 4934 + 4142, 1686, 1794, 416, 2556, 1902, 1953, 1803, 7559, 3773, 2785, 3774, 1159, 2316, 7560, 2867, # 4950 + 4405, 1610, 1584, 3036, 2419, 2754, 443, 3269, 1163, 3136, 7561, 7562, 3926, 7563, 4143, 2499, # 4966 + 3037, 4406, 3927, 3137, 2103, 1647, 3545, 2010, 1872, 4144, 7564, 4145, 431, 3438, 7565, 250, # 4982 + 97, 81, 4146, 7566, 1648, 1850, 1558, 160, 848, 7567, 866, 740, 1694, 7568, 2201, 2830, # 4998 + 3195, 4147, 4407, 3653, 1687, 950, 2472, 426, 469, 3196, 3654, 3655, 3928, 7569, 7570, 1188, # 5014 + 424, 1995, 861, 3546, 4148, 3775, 2202, 2685, 168, 1235, 3547, 4149, 7571, 2086, 1674, 4408, # 5030 + 3337, 3270, 220, 2557, 1009, 7572, 3776, 670, 2992, 332, 1208, 717, 7573, 7574, 3548, 2447, # 5046 + 3929, 3338, 7575, 513, 7576, 1209, 2868, 3339, 3138, 4409, 1080, 7577, 7578, 7579, 7580, 2527, # 5062 + 3656, 3549, 815, 1587, 3930, 3931, 7581, 3550, 3439, 3777, 1254, 4410, 1328, 3038, 1390, 3932, # 5078 + 1741, 3933, 3778, 3934, 7582, 236, 3779, 2448, 3271, 7583, 7584, 3657, 3780, 1273, 3781, 4411, # 5094 + 7585, 308, 7586, 4412, 245, 4413, 1851, 2473, 1307, 2575, 430, 715, 2136, 2449, 7587, 270, # 5110 + 199, 2869, 3935, 7588, 3551, 2718, 1753, 761, 1754, 725, 1661, 1840, 4414, 3440, 3658, 7589, # 5126 + 7590, 587, 14, 3272, 227, 2598, 326, 480, 2265, 943, 2755, 3552, 291, 650, 1883, 7591, # 5142 + 1702, 1226, 102, 1547, 62, 3441, 904, 4415, 3442, 1164, 4150, 7592, 7593, 1224, 1548, 2756, # 5158 + 391, 498, 1493, 7594, 1386, 1419, 7595, 2055, 1177, 4416, 813, 880, 1081, 2363, 566, 1145, # 5174 + 4417, 2286, 1001, 1035, 2558, 2599, 2238, 394, 1286, 7596, 7597, 2068, 7598, 86, 1494, 1730, # 5190 + 3936, 491, 1588, 745, 897, 2948, 843, 3340, 3937, 2757, 2870, 3273, 1768, 998, 2217, 2069, # 5206 + 397, 1826, 1195, 1969, 3659, 2993, 3341, 284, 7599, 3782, 2500, 2137, 2119, 1903, 7600, 3938, # 5222 + 2150, 3939, 4151, 1036, 3443, 1904, 114, 2559, 4152, 209, 1527, 7601, 7602, 2949, 2831, 2625, # 5238 + 2385, 2719, 3139, 812, 2560, 7603, 3274, 7604, 1559, 737, 1884, 3660, 1210, 885, 28, 2686, # 5254 + 3553, 3783, 7605, 4153, 1004, 1779, 4418, 7606, 346, 1981, 2218, 2687, 4419, 3784, 1742, 797, # 5270 + 1642, 3940, 1933, 1072, 1384, 2151, 896, 3941, 3275, 3661, 3197, 2871, 3554, 7607, 2561, 1958, # 5286 + 4420, 2450, 1785, 7608, 7609, 7610, 3942, 4154, 1005, 1308, 3662, 4155, 2720, 4421, 4422, 1528, # 5302 + 2600, 161, 1178, 4156, 1982, 987, 4423, 1101, 4157, 631, 3943, 1157, 3198, 2420, 1343, 1241, # 5318 + 1016, 2239, 2562, 372, 877, 2339, 2501, 1160, 555, 1934, 911, 3944, 7611, 466, 1170, 169, # 5334 + 1051, 2907, 2688, 3663, 2474, 2994, 1182, 2011, 2563, 1251, 2626, 7612, 992, 2340, 3444, 1540, # 5350 + 2721, 1201, 2070, 2401, 1996, 2475, 7613, 4424, 528, 1922, 2188, 1503, 1873, 1570, 2364, 3342, # 5366 + 3276, 7614, 557, 1073, 7615, 1827, 3445, 2087, 2266, 3140, 3039, 3084, 767, 3085, 2786, 4425, # 5382 + 1006, 4158, 4426, 2341, 1267, 2176, 3664, 3199, 778, 3945, 3200, 2722, 1597, 2657, 7616, 4427, # 5398 + 7617, 3446, 7618, 7619, 7620, 3277, 2689, 1433, 3278, 131, 95, 1504, 3946, 723, 4159, 3141, # 5414 + 1841, 3555, 2758, 2189, 3947, 2027, 2104, 3665, 7621, 2995, 3948, 1218, 7622, 3343, 3201, 3949, # 5430 + 4160, 2576, 248, 1634, 3785, 912, 7623, 2832, 3666, 3040, 3786, 654, 53, 7624, 2996, 7625, # 5446 + 1688, 4428, 777, 3447, 1032, 3950, 1425, 7626, 191, 820, 2120, 2833, 971, 4429, 931, 3202, # 5462 + 135, 664, 783, 3787, 1997, 772, 2908, 1935, 3951, 3788, 4430, 2909, 3203, 282, 2723, 640, # 5478 + 1372, 3448, 1127, 922, 325, 3344, 7627, 7628, 711, 2044, 7629, 7630, 3952, 2219, 2787, 1936, # 5494 + 3953, 3345, 2220, 2251, 3789, 2300, 7631, 4431, 3790, 1258, 3279, 3954, 3204, 2138, 2950, 3955, # 5510 + 3956, 7632, 2221, 258, 3205, 4432, 101, 1227, 7633, 3280, 1755, 7634, 1391, 3281, 7635, 2910, # 5526 + 2056, 893, 7636, 7637, 7638, 1402, 4161, 2342, 7639, 7640, 3206, 3556, 7641, 7642, 878, 1325, # 5542 + 1780, 2788, 4433, 259, 1385, 2577, 744, 1183, 2267, 4434, 7643, 3957, 2502, 7644, 684, 1024, # 5558 + 4162, 7645, 472, 3557, 3449, 1165, 3282, 3958, 3959, 322, 2152, 881, 455, 1695, 1152, 1340, # 5574 + 660, 554, 2153, 4435, 1058, 4436, 4163, 830, 1065, 3346, 3960, 4437, 1923, 7646, 1703, 1918, # 5590 + 7647, 932, 2268, 122, 7648, 4438, 947, 677, 7649, 3791, 2627, 297, 1905, 1924, 2269, 4439, # 5606 + 2317, 3283, 7650, 7651, 4164, 7652, 4165, 84, 4166, 112, 989, 7653, 547, 1059, 3961, 701, # 5622 + 3558, 1019, 7654, 4167, 7655, 3450, 942, 639, 457, 2301, 2451, 993, 2951, 407, 851, 494, # 5638 + 4440, 3347, 927, 7656, 1237, 7657, 2421, 3348, 573, 4168, 680, 921, 2911, 1279, 1874, 285, # 5654 + 790, 1448, 1983, 719, 2167, 7658, 7659, 4441, 3962, 3963, 1649, 7660, 1541, 563, 7661, 1077, # 5670 + 7662, 3349, 3041, 3451, 511, 2997, 3964, 3965, 3667, 3966, 1268, 2564, 3350, 3207, 4442, 4443, # 5686 + 7663, 535, 1048, 1276, 1189, 2912, 2028, 3142, 1438, 1373, 2834, 2952, 1134, 2012, 7664, 4169, # 5702 + 1238, 2578, 3086, 1259, 7665, 700, 7666, 2953, 3143, 3668, 4170, 7667, 4171, 1146, 1875, 1906, # 5718 + 4444, 2601, 3967, 781, 2422, 132, 1589, 203, 147, 273, 2789, 2402, 898, 1786, 2154, 3968, # 5734 + 3969, 7668, 3792, 2790, 7669, 7670, 4445, 4446, 7671, 3208, 7672, 1635, 3793, 965, 7673, 1804, # 5750 + 2690, 1516, 3559, 1121, 1082, 1329, 3284, 3970, 1449, 3794, 65, 1128, 2835, 2913, 2759, 1590, # 5766 + 3795, 7674, 7675, 12, 2658, 45, 976, 2579, 3144, 4447, 517, 2528, 1013, 1037, 3209, 7676, # 5782 + 3796, 2836, 7677, 3797, 7678, 3452, 7679, 2602, 614, 1998, 2318, 3798, 3087, 2724, 2628, 7680, # 5798 + 2580, 4172, 599, 1269, 7681, 1810, 3669, 7682, 2691, 3088, 759, 1060, 489, 1805, 3351, 3285, # 5814 + 1358, 7683, 7684, 2386, 1387, 1215, 2629, 2252, 490, 7685, 7686, 4173, 1759, 2387, 2343, 7687, # 5830 + 4448, 3799, 1907, 3971, 2630, 1806, 3210, 4449, 3453, 3286, 2760, 2344, 874, 7688, 7689, 3454, # 5846 + 3670, 1858, 91, 2914, 3671, 3042, 3800, 4450, 7690, 3145, 3972, 2659, 7691, 3455, 1202, 1403, # 5862 + 3801, 2954, 2529, 1517, 2503, 4451, 3456, 2504, 7692, 4452, 7693, 2692, 1885, 1495, 1731, 3973, # 5878 + 2365, 4453, 7694, 2029, 7695, 7696, 3974, 2693, 1216, 237, 2581, 4174, 2319, 3975, 3802, 4454, # 5894 + 4455, 2694, 3560, 3457, 445, 4456, 7697, 7698, 7699, 7700, 2761, 61, 3976, 3672, 1822, 3977, # 5910 + 7701, 687, 2045, 935, 925, 405, 2660, 703, 1096, 1859, 2725, 4457, 3978, 1876, 1367, 2695, # 5926 + 3352, 918, 2105, 1781, 2476, 334, 3287, 1611, 1093, 4458, 564, 3146, 3458, 3673, 3353, 945, # 5942 + 2631, 2057, 4459, 7702, 1925, 872, 4175, 7703, 3459, 2696, 3089, 349, 4176, 3674, 3979, 4460, # 5958 + 3803, 4177, 3675, 2155, 3980, 4461, 4462, 4178, 4463, 2403, 2046, 782, 3981, 400, 251, 4179, # 5974 + 1624, 7704, 7705, 277, 3676, 299, 1265, 476, 1191, 3804, 2121, 4180, 4181, 1109, 205, 7706, # 5990 + 2582, 1000, 2156, 3561, 1860, 7707, 7708, 7709, 4464, 7710, 4465, 2565, 107, 2477, 2157, 3982, # 6006 + 3460, 3147, 7711, 1533, 541, 1301, 158, 753, 4182, 2872, 3562, 7712, 1696, 370, 1088, 4183, # 6022 + 4466, 3563, 579, 327, 440, 162, 2240, 269, 1937, 1374, 3461, 968, 3043, 56, 1396, 3090, # 6038 + 2106, 3288, 3354, 7713, 1926, 2158, 4467, 2998, 7714, 3564, 7715, 7716, 3677, 4468, 2478, 7717, # 6054 + 2791, 7718, 1650, 4469, 7719, 2603, 7720, 7721, 3983, 2661, 3355, 1149, 3356, 3984, 3805, 3985, # 6070 + 7722, 1076, 49, 7723, 951, 3211, 3289, 3290, 450, 2837, 920, 7724, 1811, 2792, 2366, 4184, # 6086 + 1908, 1138, 2367, 3806, 3462, 7725, 3212, 4470, 1909, 1147, 1518, 2423, 4471, 3807, 7726, 4472, # 6102 + 2388, 2604, 260, 1795, 3213, 7727, 7728, 3808, 3291, 708, 7729, 3565, 1704, 7730, 3566, 1351, # 6118 + 1618, 3357, 2999, 1886, 944, 4185, 3358, 4186, 3044, 3359, 4187, 7731, 3678, 422, 413, 1714, # 6134 + 3292, 500, 2058, 2345, 4188, 2479, 7732, 1344, 1910, 954, 7733, 1668, 7734, 7735, 3986, 2404, # 6150 + 4189, 3567, 3809, 4190, 7736, 2302, 1318, 2505, 3091, 133, 3092, 2873, 4473, 629, 31, 2838, # 6166 + 2697, 3810, 4474, 850, 949, 4475, 3987, 2955, 1732, 2088, 4191, 1496, 1852, 7737, 3988, 620, # 6182 + 3214, 981, 1242, 3679, 3360, 1619, 3680, 1643, 3293, 2139, 2452, 1970, 1719, 3463, 2168, 7738, # 6198 + 3215, 7739, 7740, 3361, 1828, 7741, 1277, 4476, 1565, 2047, 7742, 1636, 3568, 3093, 7743, 869, # 6214 + 2839, 655, 3811, 3812, 3094, 3989, 3000, 3813, 1310, 3569, 4477, 7744, 7745, 7746, 1733, 558, # 6230 + 4478, 3681, 335, 1549, 3045, 1756, 4192, 3682, 1945, 3464, 1829, 1291, 1192, 470, 2726, 2107, # 6246 + 2793, 913, 1054, 3990, 7747, 1027, 7748, 3046, 3991, 4479, 982, 2662, 3362, 3148, 3465, 3216, # 6262 + 3217, 1946, 2794, 7749, 571, 4480, 7750, 1830, 7751, 3570, 2583, 1523, 2424, 7752, 2089, 984, # 6278 + 4481, 3683, 1959, 7753, 3684, 852, 923, 2795, 3466, 3685, 969, 1519, 999, 2048, 2320, 1705, # 6294 + 7754, 3095, 615, 1662, 151, 597, 3992, 2405, 2321, 1049, 275, 4482, 3686, 4193, 568, 3687, # 6310 + 3571, 2480, 4194, 3688, 7755, 2425, 2270, 409, 3218, 7756, 1566, 2874, 3467, 1002, 769, 2840, # 6326 + 194, 2090, 3149, 3689, 2222, 3294, 4195, 628, 1505, 7757, 7758, 1763, 2177, 3001, 3993, 521, # 6342 + 1161, 2584, 1787, 2203, 2406, 4483, 3994, 1625, 4196, 4197, 412, 42, 3096, 464, 7759, 2632, # 6358 + 4484, 3363, 1760, 1571, 2875, 3468, 2530, 1219, 2204, 3814, 2633, 2140, 2368, 4485, 4486, 3295, # 6374 + 1651, 3364, 3572, 7760, 7761, 3573, 2481, 3469, 7762, 3690, 7763, 7764, 2271, 2091, 460, 7765, # 6390 + 4487, 7766, 3002, 962, 588, 3574, 289, 3219, 2634, 1116, 52, 7767, 3047, 1796, 7768, 7769, # 6406 + 7770, 1467, 7771, 1598, 1143, 3691, 4198, 1984, 1734, 1067, 4488, 1280, 3365, 465, 4489, 1572, # 6422 + 510, 7772, 1927, 2241, 1812, 1644, 3575, 7773, 4490, 3692, 7774, 7775, 2663, 1573, 1534, 7776, # 6438 + 7777, 4199, 536, 1807, 1761, 3470, 3815, 3150, 2635, 7778, 7779, 7780, 4491, 3471, 2915, 1911, # 6454 + 2796, 7781, 3296, 1122, 377, 3220, 7782, 360, 7783, 7784, 4200, 1529, 551, 7785, 2059, 3693, # 6470 + 1769, 2426, 7786, 2916, 4201, 3297, 3097, 2322, 2108, 2030, 4492, 1404, 136, 1468, 1479, 672, # 6486 + 1171, 3221, 2303, 271, 3151, 7787, 2762, 7788, 2049, 678, 2727, 865, 1947, 4493, 7789, 2013, # 6502 + 3995, 2956, 7790, 2728, 2223, 1397, 3048, 3694, 4494, 4495, 1735, 2917, 3366, 3576, 7791, 3816, # 6518 + 509, 2841, 2453, 2876, 3817, 7792, 7793, 3152, 3153, 4496, 4202, 2531, 4497, 2304, 1166, 1010, # 6534 + 552, 681, 1887, 7794, 7795, 2957, 2958, 3996, 1287, 1596, 1861, 3154, 358, 453, 736, 175, # 6550 + 478, 1117, 905, 1167, 1097, 7796, 1853, 1530, 7797, 1706, 7798, 2178, 3472, 2287, 3695, 3473, # 6566 + 3577, 4203, 2092, 4204, 7799, 3367, 1193, 2482, 4205, 1458, 2190, 2205, 1862, 1888, 1421, 3298, # 6582 + 2918, 3049, 2179, 3474, 595, 2122, 7800, 3997, 7801, 7802, 4206, 1707, 2636, 223, 3696, 1359, # 6598 + 751, 3098, 183, 3475, 7803, 2797, 3003, 419, 2369, 633, 704, 3818, 2389, 241, 7804, 7805, # 6614 + 7806, 838, 3004, 3697, 2272, 2763, 2454, 3819, 1938, 2050, 3998, 1309, 3099, 2242, 1181, 7807, # 6630 + 1136, 2206, 3820, 2370, 1446, 4207, 2305, 4498, 7808, 7809, 4208, 1055, 2605, 484, 3698, 7810, # 6646 + 3999, 625, 4209, 2273, 3368, 1499, 4210, 4000, 7811, 4001, 4211, 3222, 2274, 2275, 3476, 7812, # 6662 + 7813, 2764, 808, 2606, 3699, 3369, 4002, 4212, 3100, 2532, 526, 3370, 3821, 4213, 955, 7814, # 6678 + 1620, 4214, 2637, 2427, 7815, 1429, 3700, 1669, 1831, 994, 928, 7816, 3578, 1260, 7817, 7818, # 6694 + 7819, 1948, 2288, 741, 2919, 1626, 4215, 2729, 2455, 867, 1184, 362, 3371, 1392, 7820, 7821, # 6710 + 4003, 4216, 1770, 1736, 3223, 2920, 4499, 4500, 1928, 2698, 1459, 1158, 7822, 3050, 3372, 2877, # 6726 + 1292, 1929, 2506, 2842, 3701, 1985, 1187, 2071, 2014, 2607, 4217, 7823, 2566, 2507, 2169, 3702, # 6742 + 2483, 3299, 7824, 3703, 4501, 7825, 7826, 666, 1003, 3005, 1022, 3579, 4218, 7827, 4502, 1813, # 6758 + 2253, 574, 3822, 1603, 295, 1535, 705, 3823, 4219, 283, 858, 417, 7828, 7829, 3224, 4503, # 6774 + 4504, 3051, 1220, 1889, 1046, 2276, 2456, 4004, 1393, 1599, 689, 2567, 388, 4220, 7830, 2484, # 6790 + 802, 7831, 2798, 3824, 2060, 1405, 2254, 7832, 4505, 3825, 2109, 1052, 1345, 3225, 1585, 7833, # 6806 + 809, 7834, 7835, 7836, 575, 2730, 3477, 956, 1552, 1469, 1144, 2323, 7837, 2324, 1560, 2457, # 6822 + 3580, 3226, 4005, 616, 2207, 3155, 2180, 2289, 7838, 1832, 7839, 3478, 4506, 7840, 1319, 3704, # 6838 + 3705, 1211, 3581, 1023, 3227, 1293, 2799, 7841, 7842, 7843, 3826, 607, 2306, 3827, 762, 2878, # 6854 + 1439, 4221, 1360, 7844, 1485, 3052, 7845, 4507, 1038, 4222, 1450, 2061, 2638, 4223, 1379, 4508, # 6870 + 2585, 7846, 7847, 4224, 1352, 1414, 2325, 2921, 1172, 7848, 7849, 3828, 3829, 7850, 1797, 1451, # 6886 + 7851, 7852, 7853, 7854, 2922, 4006, 4007, 2485, 2346, 411, 4008, 4009, 3582, 3300, 3101, 4509, # 6902 + 1561, 2664, 1452, 4010, 1375, 7855, 7856, 47, 2959, 316, 7857, 1406, 1591, 2923, 3156, 7858, # 6918 + 1025, 2141, 3102, 3157, 354, 2731, 884, 2224, 4225, 2407, 508, 3706, 726, 3583, 996, 2428, # 6934 + 3584, 729, 7859, 392, 2191, 1453, 4011, 4510, 3707, 7860, 7861, 2458, 3585, 2608, 1675, 2800, # 6950 + 919, 2347, 2960, 2348, 1270, 4511, 4012, 73, 7862, 7863, 647, 7864, 3228, 2843, 2255, 1550, # 6966 + 1346, 3006, 7865, 1332, 883, 3479, 7866, 7867, 7868, 7869, 3301, 2765, 7870, 1212, 831, 1347, # 6982 + 4226, 4512, 2326, 3830, 1863, 3053, 720, 3831, 4513, 4514, 3832, 7871, 4227, 7872, 7873, 4515, # 6998 + 7874, 7875, 1798, 4516, 3708, 2609, 4517, 3586, 1645, 2371, 7876, 7877, 2924, 669, 2208, 2665, # 7014 + 2429, 7878, 2879, 7879, 7880, 1028, 3229, 7881, 4228, 2408, 7882, 2256, 1353, 7883, 7884, 4518, # 7030 + 3158, 518, 7885, 4013, 7886, 4229, 1960, 7887, 2142, 4230, 7888, 7889, 3007, 2349, 2350, 3833, # 7046 + 516, 1833, 1454, 4014, 2699, 4231, 4519, 2225, 2610, 1971, 1129, 3587, 7890, 2766, 7891, 2961, # 7062 + 1422, 577, 1470, 3008, 1524, 3373, 7892, 7893, 432, 4232, 3054, 3480, 7894, 2586, 1455, 2508, # 7078 + 2226, 1972, 1175, 7895, 1020, 2732, 4015, 3481, 4520, 7896, 2733, 7897, 1743, 1361, 3055, 3482, # 7094 + 2639, 4016, 4233, 4521, 2290, 895, 924, 4234, 2170, 331, 2243, 3056, 166, 1627, 3057, 1098, # 7110 + 7898, 1232, 2880, 2227, 3374, 4522, 657, 403, 1196, 2372, 542, 3709, 3375, 1600, 4235, 3483, # 7126 + 7899, 4523, 2767, 3230, 576, 530, 1362, 7900, 4524, 2533, 2666, 3710, 4017, 7901, 842, 3834, # 7142 + 7902, 2801, 2031, 1014, 4018, 213, 2700, 3376, 665, 621, 4236, 7903, 3711, 2925, 2430, 7904, # 7158 + 2431, 3302, 3588, 3377, 7905, 4237, 2534, 4238, 4525, 3589, 1682, 4239, 3484, 1380, 7906, 724, # 7174 + 2277, 600, 1670, 7907, 1337, 1233, 4526, 3103, 2244, 7908, 1621, 4527, 7909, 651, 4240, 7910, # 7190 + 1612, 4241, 2611, 7911, 2844, 7912, 2734, 2307, 3058, 7913, 716, 2459, 3059, 174, 1255, 2701, # 7206 + 4019, 3590, 548, 1320, 1398, 728, 4020, 1574, 7914, 1890, 1197, 3060, 4021, 7915, 3061, 3062, # 7222 + 3712, 3591, 3713, 747, 7916, 635, 4242, 4528, 7917, 7918, 7919, 4243, 7920, 7921, 4529, 7922, # 7238 + 3378, 4530, 2432, 451, 7923, 3714, 2535, 2072, 4244, 2735, 4245, 4022, 7924, 1764, 4531, 7925, # 7254 + 4246, 350, 7926, 2278, 2390, 2486, 7927, 4247, 4023, 2245, 1434, 4024, 488, 4532, 458, 4248, # 7270 + 4025, 3715, 771, 1330, 2391, 3835, 2568, 3159, 2159, 2409, 1553, 2667, 3160, 4249, 7928, 2487, # 7286 + 2881, 2612, 1720, 2702, 4250, 3379, 4533, 7929, 2536, 4251, 7930, 3231, 4252, 2768, 7931, 2015, # 7302 + 2736, 7932, 1155, 1017, 3716, 3836, 7933, 3303, 2308, 201, 1864, 4253, 1430, 7934, 4026, 7935, # 7318 + 7936, 7937, 7938, 7939, 4254, 1604, 7940, 414, 1865, 371, 2587, 4534, 4535, 3485, 2016, 3104, # 7334 + 4536, 1708, 960, 4255, 887, 389, 2171, 1536, 1663, 1721, 7941, 2228, 4027, 2351, 2926, 1580, # 7350 + 7942, 7943, 7944, 1744, 7945, 2537, 4537, 4538, 7946, 4539, 7947, 2073, 7948, 7949, 3592, 3380, # 7366 + 2882, 4256, 7950, 4257, 2640, 3381, 2802, 673, 2703, 2460, 709, 3486, 4028, 3593, 4258, 7951, # 7382 + 1148, 502, 634, 7952, 7953, 1204, 4540, 3594, 1575, 4541, 2613, 3717, 7954, 3718, 3105, 948, # 7398 + 3232, 121, 1745, 3837, 1110, 7955, 4259, 3063, 2509, 3009, 4029, 3719, 1151, 1771, 3838, 1488, # 7414 + 4030, 1986, 7956, 2433, 3487, 7957, 7958, 2093, 7959, 4260, 3839, 1213, 1407, 2803, 531, 2737, # 7430 + 2538, 3233, 1011, 1537, 7960, 2769, 4261, 3106, 1061, 7961, 3720, 3721, 1866, 2883, 7962, 2017, # 7446 + 120, 4262, 4263, 2062, 3595, 3234, 2309, 3840, 2668, 3382, 1954, 4542, 7963, 7964, 3488, 1047, # 7462 + 2704, 1266, 7965, 1368, 4543, 2845, 649, 3383, 3841, 2539, 2738, 1102, 2846, 2669, 7966, 7967, # 7478 + 1999, 7968, 1111, 3596, 2962, 7969, 2488, 3842, 3597, 2804, 1854, 3384, 3722, 7970, 7971, 3385, # 7494 + 2410, 2884, 3304, 3235, 3598, 7972, 2569, 7973, 3599, 2805, 4031, 1460, 856, 7974, 3600, 7975, # 7510 + 2885, 2963, 7976, 2886, 3843, 7977, 4264, 632, 2510, 875, 3844, 1697, 3845, 2291, 7978, 7979, # 7526 + 4544, 3010, 1239, 580, 4545, 4265, 7980, 914, 936, 2074, 1190, 4032, 1039, 2123, 7981, 7982, # 7542 + 7983, 3386, 1473, 7984, 1354, 4266, 3846, 7985, 2172, 3064, 4033, 915, 3305, 4267, 4268, 3306, # 7558 + 1605, 1834, 7986, 2739, 398, 3601, 4269, 3847, 4034, 328, 1912, 2847, 4035, 3848, 1331, 4270, # 7574 + 3011, 937, 4271, 7987, 3602, 4036, 4037, 3387, 2160, 4546, 3388, 524, 742, 538, 3065, 1012, # 7590 + 7988, 7989, 3849, 2461, 7990, 658, 1103, 225, 3850, 7991, 7992, 4547, 7993, 4548, 7994, 3236, # 7606 + 1243, 7995, 4038, 963, 2246, 4549, 7996, 2705, 3603, 3161, 7997, 7998, 2588, 2327, 7999, 4550, # 7622 + 8000, 8001, 8002, 3489, 3307, 957, 3389, 2540, 2032, 1930, 2927, 2462, 870, 2018, 3604, 1746, # 7638 + 2770, 2771, 2434, 2463, 8003, 3851, 8004, 3723, 3107, 3724, 3490, 3390, 3725, 8005, 1179, 3066, # 7654 + 8006, 3162, 2373, 4272, 3726, 2541, 3163, 3108, 2740, 4039, 8007, 3391, 1556, 2542, 2292, 977, # 7670 + 2887, 2033, 4040, 1205, 3392, 8008, 1765, 3393, 3164, 2124, 1271, 1689, 714, 4551, 3491, 8009, # 7686 + 2328, 3852, 533, 4273, 3605, 2181, 617, 8010, 2464, 3308, 3492, 2310, 8011, 8012, 3165, 8013, # 7702 + 8014, 3853, 1987, 618, 427, 2641, 3493, 3394, 8015, 8016, 1244, 1690, 8017, 2806, 4274, 4552, # 7718 + 8018, 3494, 8019, 8020, 2279, 1576, 473, 3606, 4275, 3395, 972, 8021, 3607, 8022, 3067, 8023, # 7734 + 8024, 4553, 4554, 8025, 3727, 4041, 4042, 8026, 153, 4555, 356, 8027, 1891, 2888, 4276, 2143, # 7750 + 408, 803, 2352, 8028, 3854, 8029, 4277, 1646, 2570, 2511, 4556, 4557, 3855, 8030, 3856, 4278, # 7766 + 8031, 2411, 3396, 752, 8032, 8033, 1961, 2964, 8034, 746, 3012, 2465, 8035, 4279, 3728, 698, # 7782 + 4558, 1892, 4280, 3608, 2543, 4559, 3609, 3857, 8036, 3166, 3397, 8037, 1823, 1302, 4043, 2706, # 7798 + 3858, 1973, 4281, 8038, 4282, 3167, 823, 1303, 1288, 1236, 2848, 3495, 4044, 3398, 774, 3859, # 7814 + 8039, 1581, 4560, 1304, 2849, 3860, 4561, 8040, 2435, 2161, 1083, 3237, 4283, 4045, 4284, 344, # 7830 + 1173, 288, 2311, 454, 1683, 8041, 8042, 1461, 4562, 4046, 2589, 8043, 8044, 4563, 985, 894, # 7846 + 8045, 3399, 3168, 8046, 1913, 2928, 3729, 1988, 8047, 2110, 1974, 8048, 4047, 8049, 2571, 1194, # 7862 + 425, 8050, 4564, 3169, 1245, 3730, 4285, 8051, 8052, 2850, 8053, 636, 4565, 1855, 3861, 760, # 7878 + 1799, 8054, 4286, 2209, 1508, 4566, 4048, 1893, 1684, 2293, 8055, 8056, 8057, 4287, 4288, 2210, # 7894 + 479, 8058, 8059, 832, 8060, 4049, 2489, 8061, 2965, 2490, 3731, 990, 3109, 627, 1814, 2642, # 7910 + 4289, 1582, 4290, 2125, 2111, 3496, 4567, 8062, 799, 4291, 3170, 8063, 4568, 2112, 1737, 3013, # 7926 + 1018, 543, 754, 4292, 3309, 1676, 4569, 4570, 4050, 8064, 1489, 8065, 3497, 8066, 2614, 2889, # 7942 + 4051, 8067, 8068, 2966, 8069, 8070, 8071, 8072, 3171, 4571, 4572, 2182, 1722, 8073, 3238, 3239, # 7958 + 1842, 3610, 1715, 481, 365, 1975, 1856, 8074, 8075, 1962, 2491, 4573, 8076, 2126, 3611, 3240, # 7974 + 433, 1894, 2063, 2075, 8077, 602, 2741, 8078, 8079, 8080, 8081, 8082, 3014, 1628, 3400, 8083, # 7990 + 3172, 4574, 4052, 2890, 4575, 2512, 8084, 2544, 2772, 8085, 8086, 8087, 3310, 4576, 2891, 8088, # 8006 + 4577, 8089, 2851, 4578, 4579, 1221, 2967, 4053, 2513, 8090, 8091, 8092, 1867, 1989, 8093, 8094, # 8022 + 8095, 1895, 8096, 8097, 4580, 1896, 4054, 318, 8098, 2094, 4055, 4293, 8099, 8100, 485, 8101, # 8038 + 938, 3862, 553, 2670, 116, 8102, 3863, 3612, 8103, 3498, 2671, 2773, 3401, 3311, 2807, 8104, # 8054 + 3613, 2929, 4056, 1747, 2930, 2968, 8105, 8106, 207, 8107, 8108, 2672, 4581, 2514, 8109, 3015, # 8070 + 890, 3614, 3864, 8110, 1877, 3732, 3402, 8111, 2183, 2353, 3403, 1652, 8112, 8113, 8114, 941, # 8086 + 2294, 208, 3499, 4057, 2019, 330, 4294, 3865, 2892, 2492, 3733, 4295, 8115, 8116, 8117, 8118, # 8102 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 000000000..a37ab1899 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCTWDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCTW_SM_MODEL + + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-TW" + + @property + def language(self) -> str: + return "Taiwan" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 000000000..b32bfc742 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,284 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +# fmt: off +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 000000000..d423e7311 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import GB2312DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import GB2312_SM_MODEL + + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "GB2312" + + @property + def language(self) -> str: + return "Chinese" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 000000000..785d0057b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,316 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState +from .sbcharsetprober import SingleByteCharSetProber + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + + +class HebrewProber(CharSetProber): + SPACE = 0x20 + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xEA + NORMAL_KAF = 0xEB + FINAL_MEM = 0xED + NORMAL_MEM = 0xEE + FINAL_NUN = 0xEF + NORMAL_NUN = 0xF0 + FINAL_PE = 0xF3 + NORMAL_PE = 0xF4 + FINAL_TSADI = 0xF5 + NORMAL_TSADI = 0xF6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self) -> None: + super().__init__() + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + self._prev = self.SPACE + self._before_prev = self.SPACE + self._logical_prober: Optional[SingleByteCharSetProber] = None + self._visual_prober: Optional[SingleByteCharSetProber] = None + self.reset() + + def reset(self) -> None: + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = self.SPACE + self._before_prev = self.SPACE + # These probers are owned by the group prober. + + def set_model_probers( + self, + logical_prober: SingleByteCharSetProber, + visual_prober: SingleByteCharSetProber, + ) -> None: + self._logical_prober = logical_prober + self._visual_prober = visual_prober + + def is_final(self, c: int) -> bool: + return c in [ + self.FINAL_KAF, + self.FINAL_MEM, + self.FINAL_NUN, + self.FINAL_PE, + self.FINAL_TSADI, + ] + + def is_non_final(self, c: int) -> bool: + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == self.SPACE: + # We stand on a space - a word just ended + if self._before_prev != self.SPACE: + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ( + (self._before_prev == self.SPACE) + and (self.is_final(self._prev)) + and (cur != self.SPACE) + ): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self) -> str: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = ( + self._logical_prober.get_confidence() - self._visual_prober.get_confidence() + ) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self) -> str: + return "Hebrew" + + @property + def state(self) -> ProbingState: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and ( + self._visual_prober.state == ProbingState.NOT_ME + ): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 000000000..3293576e0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +# fmt: off +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py new file mode 100644 index 000000000..c12969990 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py @@ -0,0 +1,2382 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# The frequency data itself is the same as euc-kr. +# This is just a mapping table to euc-kr. + +JOHAB_TO_EUCKR_ORDER_TABLE = { + 0x8861: 0, + 0x8862: 1, + 0x8865: 2, + 0x8868: 3, + 0x8869: 4, + 0x886A: 5, + 0x886B: 6, + 0x8871: 7, + 0x8873: 8, + 0x8874: 9, + 0x8875: 10, + 0x8876: 11, + 0x8877: 12, + 0x8878: 13, + 0x8879: 14, + 0x887B: 15, + 0x887C: 16, + 0x887D: 17, + 0x8881: 18, + 0x8882: 19, + 0x8885: 20, + 0x8889: 21, + 0x8891: 22, + 0x8893: 23, + 0x8895: 24, + 0x8896: 25, + 0x8897: 26, + 0x88A1: 27, + 0x88A2: 28, + 0x88A5: 29, + 0x88A9: 30, + 0x88B5: 31, + 0x88B7: 32, + 0x88C1: 33, + 0x88C5: 34, + 0x88C9: 35, + 0x88E1: 36, + 0x88E2: 37, + 0x88E5: 38, + 0x88E8: 39, + 0x88E9: 40, + 0x88EB: 41, + 0x88F1: 42, + 0x88F3: 43, + 0x88F5: 44, + 0x88F6: 45, + 0x88F7: 46, + 0x88F8: 47, + 0x88FB: 48, + 0x88FC: 49, + 0x88FD: 50, + 0x8941: 51, + 0x8945: 52, + 0x8949: 53, + 0x8951: 54, + 0x8953: 55, + 0x8955: 56, + 0x8956: 57, + 0x8957: 58, + 0x8961: 59, + 0x8962: 60, + 0x8963: 61, + 0x8965: 62, + 0x8968: 63, + 0x8969: 64, + 0x8971: 65, + 0x8973: 66, + 0x8975: 67, + 0x8976: 68, + 0x8977: 69, + 0x897B: 70, + 0x8981: 71, + 0x8985: 72, + 0x8989: 73, + 0x8993: 74, + 0x8995: 75, + 0x89A1: 76, + 0x89A2: 77, + 0x89A5: 78, + 0x89A8: 79, + 0x89A9: 80, + 0x89AB: 81, + 0x89AD: 82, + 0x89B0: 83, + 0x89B1: 84, + 0x89B3: 85, + 0x89B5: 86, + 0x89B7: 87, + 0x89B8: 88, + 0x89C1: 89, + 0x89C2: 90, + 0x89C5: 91, + 0x89C9: 92, + 0x89CB: 93, + 0x89D1: 94, + 0x89D3: 95, + 0x89D5: 96, + 0x89D7: 97, + 0x89E1: 98, + 0x89E5: 99, + 0x89E9: 100, + 0x89F3: 101, + 0x89F6: 102, + 0x89F7: 103, + 0x8A41: 104, + 0x8A42: 105, + 0x8A45: 106, + 0x8A49: 107, + 0x8A51: 108, + 0x8A53: 109, + 0x8A55: 110, + 0x8A57: 111, + 0x8A61: 112, + 0x8A65: 113, + 0x8A69: 114, + 0x8A73: 115, + 0x8A75: 116, + 0x8A81: 117, + 0x8A82: 118, + 0x8A85: 119, + 0x8A88: 120, + 0x8A89: 121, + 0x8A8A: 122, + 0x8A8B: 123, + 0x8A90: 124, + 0x8A91: 125, + 0x8A93: 126, + 0x8A95: 127, + 0x8A97: 128, + 0x8A98: 129, + 0x8AA1: 130, + 0x8AA2: 131, + 0x8AA5: 132, + 0x8AA9: 133, + 0x8AB6: 134, + 0x8AB7: 135, + 0x8AC1: 136, + 0x8AD5: 137, + 0x8AE1: 138, + 0x8AE2: 139, + 0x8AE5: 140, + 0x8AE9: 141, + 0x8AF1: 142, + 0x8AF3: 143, + 0x8AF5: 144, + 0x8B41: 145, + 0x8B45: 146, + 0x8B49: 147, + 0x8B61: 148, + 0x8B62: 149, + 0x8B65: 150, + 0x8B68: 151, + 0x8B69: 152, + 0x8B6A: 153, + 0x8B71: 154, + 0x8B73: 155, + 0x8B75: 156, + 0x8B77: 157, + 0x8B81: 158, + 0x8BA1: 159, + 0x8BA2: 160, + 0x8BA5: 161, + 0x8BA8: 162, + 0x8BA9: 163, + 0x8BAB: 164, + 0x8BB1: 165, + 0x8BB3: 166, + 0x8BB5: 167, + 0x8BB7: 168, + 0x8BB8: 169, + 0x8BBC: 170, + 0x8C61: 171, + 0x8C62: 172, + 0x8C63: 173, + 0x8C65: 174, + 0x8C69: 175, + 0x8C6B: 176, + 0x8C71: 177, + 0x8C73: 178, + 0x8C75: 179, + 0x8C76: 180, + 0x8C77: 181, + 0x8C7B: 182, + 0x8C81: 183, + 0x8C82: 184, + 0x8C85: 185, + 0x8C89: 186, + 0x8C91: 187, + 0x8C93: 188, + 0x8C95: 189, + 0x8C96: 190, + 0x8C97: 191, + 0x8CA1: 192, + 0x8CA2: 193, + 0x8CA9: 194, + 0x8CE1: 195, + 0x8CE2: 196, + 0x8CE3: 197, + 0x8CE5: 198, + 0x8CE9: 199, + 0x8CF1: 200, + 0x8CF3: 201, + 0x8CF5: 202, + 0x8CF6: 203, + 0x8CF7: 204, + 0x8D41: 205, + 0x8D42: 206, + 0x8D45: 207, + 0x8D51: 208, + 0x8D55: 209, + 0x8D57: 210, + 0x8D61: 211, + 0x8D65: 212, + 0x8D69: 213, + 0x8D75: 214, + 0x8D76: 215, + 0x8D7B: 216, + 0x8D81: 217, + 0x8DA1: 218, + 0x8DA2: 219, + 0x8DA5: 220, + 0x8DA7: 221, + 0x8DA9: 222, + 0x8DB1: 223, + 0x8DB3: 224, + 0x8DB5: 225, + 0x8DB7: 226, + 0x8DB8: 227, + 0x8DB9: 228, + 0x8DC1: 229, + 0x8DC2: 230, + 0x8DC9: 231, + 0x8DD6: 232, + 0x8DD7: 233, + 0x8DE1: 234, + 0x8DE2: 235, + 0x8DF7: 236, + 0x8E41: 237, + 0x8E45: 238, + 0x8E49: 239, + 0x8E51: 240, + 0x8E53: 241, + 0x8E57: 242, + 0x8E61: 243, + 0x8E81: 244, + 0x8E82: 245, + 0x8E85: 246, + 0x8E89: 247, + 0x8E90: 248, + 0x8E91: 249, + 0x8E93: 250, + 0x8E95: 251, + 0x8E97: 252, + 0x8E98: 253, + 0x8EA1: 254, + 0x8EA9: 255, + 0x8EB6: 256, + 0x8EB7: 257, + 0x8EC1: 258, + 0x8EC2: 259, + 0x8EC5: 260, + 0x8EC9: 261, + 0x8ED1: 262, + 0x8ED3: 263, + 0x8ED6: 264, + 0x8EE1: 265, + 0x8EE5: 266, + 0x8EE9: 267, + 0x8EF1: 268, + 0x8EF3: 269, + 0x8F41: 270, + 0x8F61: 271, + 0x8F62: 272, + 0x8F65: 273, + 0x8F67: 274, + 0x8F69: 275, + 0x8F6B: 276, + 0x8F70: 277, + 0x8F71: 278, + 0x8F73: 279, + 0x8F75: 280, + 0x8F77: 281, + 0x8F7B: 282, + 0x8FA1: 283, + 0x8FA2: 284, + 0x8FA5: 285, + 0x8FA9: 286, + 0x8FB1: 287, + 0x8FB3: 288, + 0x8FB5: 289, + 0x8FB7: 290, + 0x9061: 291, + 0x9062: 292, + 0x9063: 293, + 0x9065: 294, + 0x9068: 295, + 0x9069: 296, + 0x906A: 297, + 0x906B: 298, + 0x9071: 299, + 0x9073: 300, + 0x9075: 301, + 0x9076: 302, + 0x9077: 303, + 0x9078: 304, + 0x9079: 305, + 0x907B: 306, + 0x907D: 307, + 0x9081: 308, + 0x9082: 309, + 0x9085: 310, + 0x9089: 311, + 0x9091: 312, + 0x9093: 313, + 0x9095: 314, + 0x9096: 315, + 0x9097: 316, + 0x90A1: 317, + 0x90A2: 318, + 0x90A5: 319, + 0x90A9: 320, + 0x90B1: 321, + 0x90B7: 322, + 0x90E1: 323, + 0x90E2: 324, + 0x90E4: 325, + 0x90E5: 326, + 0x90E9: 327, + 0x90EB: 328, + 0x90EC: 329, + 0x90F1: 330, + 0x90F3: 331, + 0x90F5: 332, + 0x90F6: 333, + 0x90F7: 334, + 0x90FD: 335, + 0x9141: 336, + 0x9142: 337, + 0x9145: 338, + 0x9149: 339, + 0x9151: 340, + 0x9153: 341, + 0x9155: 342, + 0x9156: 343, + 0x9157: 344, + 0x9161: 345, + 0x9162: 346, + 0x9165: 347, + 0x9169: 348, + 0x9171: 349, + 0x9173: 350, + 0x9176: 351, + 0x9177: 352, + 0x917A: 353, + 0x9181: 354, + 0x9185: 355, + 0x91A1: 356, + 0x91A2: 357, + 0x91A5: 358, + 0x91A9: 359, + 0x91AB: 360, + 0x91B1: 361, + 0x91B3: 362, + 0x91B5: 363, + 0x91B7: 364, + 0x91BC: 365, + 0x91BD: 366, + 0x91C1: 367, + 0x91C5: 368, + 0x91C9: 369, + 0x91D6: 370, + 0x9241: 371, + 0x9245: 372, + 0x9249: 373, + 0x9251: 374, + 0x9253: 375, + 0x9255: 376, + 0x9261: 377, + 0x9262: 378, + 0x9265: 379, + 0x9269: 380, + 0x9273: 381, + 0x9275: 382, + 0x9277: 383, + 0x9281: 384, + 0x9282: 385, + 0x9285: 386, + 0x9288: 387, + 0x9289: 388, + 0x9291: 389, + 0x9293: 390, + 0x9295: 391, + 0x9297: 392, + 0x92A1: 393, + 0x92B6: 394, + 0x92C1: 395, + 0x92E1: 396, + 0x92E5: 397, + 0x92E9: 398, + 0x92F1: 399, + 0x92F3: 400, + 0x9341: 401, + 0x9342: 402, + 0x9349: 403, + 0x9351: 404, + 0x9353: 405, + 0x9357: 406, + 0x9361: 407, + 0x9362: 408, + 0x9365: 409, + 0x9369: 410, + 0x936A: 411, + 0x936B: 412, + 0x9371: 413, + 0x9373: 414, + 0x9375: 415, + 0x9377: 416, + 0x9378: 417, + 0x937C: 418, + 0x9381: 419, + 0x9385: 420, + 0x9389: 421, + 0x93A1: 422, + 0x93A2: 423, + 0x93A5: 424, + 0x93A9: 425, + 0x93AB: 426, + 0x93B1: 427, + 0x93B3: 428, + 0x93B5: 429, + 0x93B7: 430, + 0x93BC: 431, + 0x9461: 432, + 0x9462: 433, + 0x9463: 434, + 0x9465: 435, + 0x9468: 436, + 0x9469: 437, + 0x946A: 438, + 0x946B: 439, + 0x946C: 440, + 0x9470: 441, + 0x9471: 442, + 0x9473: 443, + 0x9475: 444, + 0x9476: 445, + 0x9477: 446, + 0x9478: 447, + 0x9479: 448, + 0x947D: 449, + 0x9481: 450, + 0x9482: 451, + 0x9485: 452, + 0x9489: 453, + 0x9491: 454, + 0x9493: 455, + 0x9495: 456, + 0x9496: 457, + 0x9497: 458, + 0x94A1: 459, + 0x94E1: 460, + 0x94E2: 461, + 0x94E3: 462, + 0x94E5: 463, + 0x94E8: 464, + 0x94E9: 465, + 0x94EB: 466, + 0x94EC: 467, + 0x94F1: 468, + 0x94F3: 469, + 0x94F5: 470, + 0x94F7: 471, + 0x94F9: 472, + 0x94FC: 473, + 0x9541: 474, + 0x9542: 475, + 0x9545: 476, + 0x9549: 477, + 0x9551: 478, + 0x9553: 479, + 0x9555: 480, + 0x9556: 481, + 0x9557: 482, + 0x9561: 483, + 0x9565: 484, + 0x9569: 485, + 0x9576: 486, + 0x9577: 487, + 0x9581: 488, + 0x9585: 489, + 0x95A1: 490, + 0x95A2: 491, + 0x95A5: 492, + 0x95A8: 493, + 0x95A9: 494, + 0x95AB: 495, + 0x95AD: 496, + 0x95B1: 497, + 0x95B3: 498, + 0x95B5: 499, + 0x95B7: 500, + 0x95B9: 501, + 0x95BB: 502, + 0x95C1: 503, + 0x95C5: 504, + 0x95C9: 505, + 0x95E1: 506, + 0x95F6: 507, + 0x9641: 508, + 0x9645: 509, + 0x9649: 510, + 0x9651: 511, + 0x9653: 512, + 0x9655: 513, + 0x9661: 514, + 0x9681: 515, + 0x9682: 516, + 0x9685: 517, + 0x9689: 518, + 0x9691: 519, + 0x9693: 520, + 0x9695: 521, + 0x9697: 522, + 0x96A1: 523, + 0x96B6: 524, + 0x96C1: 525, + 0x96D7: 526, + 0x96E1: 527, + 0x96E5: 528, + 0x96E9: 529, + 0x96F3: 530, + 0x96F5: 531, + 0x96F7: 532, + 0x9741: 533, + 0x9745: 534, + 0x9749: 535, + 0x9751: 536, + 0x9757: 537, + 0x9761: 538, + 0x9762: 539, + 0x9765: 540, + 0x9768: 541, + 0x9769: 542, + 0x976B: 543, + 0x9771: 544, + 0x9773: 545, + 0x9775: 546, + 0x9777: 547, + 0x9781: 548, + 0x97A1: 549, + 0x97A2: 550, + 0x97A5: 551, + 0x97A8: 552, + 0x97A9: 553, + 0x97B1: 554, + 0x97B3: 555, + 0x97B5: 556, + 0x97B6: 557, + 0x97B7: 558, + 0x97B8: 559, + 0x9861: 560, + 0x9862: 561, + 0x9865: 562, + 0x9869: 563, + 0x9871: 564, + 0x9873: 565, + 0x9875: 566, + 0x9876: 567, + 0x9877: 568, + 0x987D: 569, + 0x9881: 570, + 0x9882: 571, + 0x9885: 572, + 0x9889: 573, + 0x9891: 574, + 0x9893: 575, + 0x9895: 576, + 0x9896: 577, + 0x9897: 578, + 0x98E1: 579, + 0x98E2: 580, + 0x98E5: 581, + 0x98E9: 582, + 0x98EB: 583, + 0x98EC: 584, + 0x98F1: 585, + 0x98F3: 586, + 0x98F5: 587, + 0x98F6: 588, + 0x98F7: 589, + 0x98FD: 590, + 0x9941: 591, + 0x9942: 592, + 0x9945: 593, + 0x9949: 594, + 0x9951: 595, + 0x9953: 596, + 0x9955: 597, + 0x9956: 598, + 0x9957: 599, + 0x9961: 600, + 0x9976: 601, + 0x99A1: 602, + 0x99A2: 603, + 0x99A5: 604, + 0x99A9: 605, + 0x99B7: 606, + 0x99C1: 607, + 0x99C9: 608, + 0x99E1: 609, + 0x9A41: 610, + 0x9A45: 611, + 0x9A81: 612, + 0x9A82: 613, + 0x9A85: 614, + 0x9A89: 615, + 0x9A90: 616, + 0x9A91: 617, + 0x9A97: 618, + 0x9AC1: 619, + 0x9AE1: 620, + 0x9AE5: 621, + 0x9AE9: 622, + 0x9AF1: 623, + 0x9AF3: 624, + 0x9AF7: 625, + 0x9B61: 626, + 0x9B62: 627, + 0x9B65: 628, + 0x9B68: 629, + 0x9B69: 630, + 0x9B71: 631, + 0x9B73: 632, + 0x9B75: 633, + 0x9B81: 634, + 0x9B85: 635, + 0x9B89: 636, + 0x9B91: 637, + 0x9B93: 638, + 0x9BA1: 639, + 0x9BA5: 640, + 0x9BA9: 641, + 0x9BB1: 642, + 0x9BB3: 643, + 0x9BB5: 644, + 0x9BB7: 645, + 0x9C61: 646, + 0x9C62: 647, + 0x9C65: 648, + 0x9C69: 649, + 0x9C71: 650, + 0x9C73: 651, + 0x9C75: 652, + 0x9C76: 653, + 0x9C77: 654, + 0x9C78: 655, + 0x9C7C: 656, + 0x9C7D: 657, + 0x9C81: 658, + 0x9C82: 659, + 0x9C85: 660, + 0x9C89: 661, + 0x9C91: 662, + 0x9C93: 663, + 0x9C95: 664, + 0x9C96: 665, + 0x9C97: 666, + 0x9CA1: 667, + 0x9CA2: 668, + 0x9CA5: 669, + 0x9CB5: 670, + 0x9CB7: 671, + 0x9CE1: 672, + 0x9CE2: 673, + 0x9CE5: 674, + 0x9CE9: 675, + 0x9CF1: 676, + 0x9CF3: 677, + 0x9CF5: 678, + 0x9CF6: 679, + 0x9CF7: 680, + 0x9CFD: 681, + 0x9D41: 682, + 0x9D42: 683, + 0x9D45: 684, + 0x9D49: 685, + 0x9D51: 686, + 0x9D53: 687, + 0x9D55: 688, + 0x9D57: 689, + 0x9D61: 690, + 0x9D62: 691, + 0x9D65: 692, + 0x9D69: 693, + 0x9D71: 694, + 0x9D73: 695, + 0x9D75: 696, + 0x9D76: 697, + 0x9D77: 698, + 0x9D81: 699, + 0x9D85: 700, + 0x9D93: 701, + 0x9D95: 702, + 0x9DA1: 703, + 0x9DA2: 704, + 0x9DA5: 705, + 0x9DA9: 706, + 0x9DB1: 707, + 0x9DB3: 708, + 0x9DB5: 709, + 0x9DB7: 710, + 0x9DC1: 711, + 0x9DC5: 712, + 0x9DD7: 713, + 0x9DF6: 714, + 0x9E41: 715, + 0x9E45: 716, + 0x9E49: 717, + 0x9E51: 718, + 0x9E53: 719, + 0x9E55: 720, + 0x9E57: 721, + 0x9E61: 722, + 0x9E65: 723, + 0x9E69: 724, + 0x9E73: 725, + 0x9E75: 726, + 0x9E77: 727, + 0x9E81: 728, + 0x9E82: 729, + 0x9E85: 730, + 0x9E89: 731, + 0x9E91: 732, + 0x9E93: 733, + 0x9E95: 734, + 0x9E97: 735, + 0x9EA1: 736, + 0x9EB6: 737, + 0x9EC1: 738, + 0x9EE1: 739, + 0x9EE2: 740, + 0x9EE5: 741, + 0x9EE9: 742, + 0x9EF1: 743, + 0x9EF5: 744, + 0x9EF7: 745, + 0x9F41: 746, + 0x9F42: 747, + 0x9F45: 748, + 0x9F49: 749, + 0x9F51: 750, + 0x9F53: 751, + 0x9F55: 752, + 0x9F57: 753, + 0x9F61: 754, + 0x9F62: 755, + 0x9F65: 756, + 0x9F69: 757, + 0x9F71: 758, + 0x9F73: 759, + 0x9F75: 760, + 0x9F77: 761, + 0x9F78: 762, + 0x9F7B: 763, + 0x9F7C: 764, + 0x9FA1: 765, + 0x9FA2: 766, + 0x9FA5: 767, + 0x9FA9: 768, + 0x9FB1: 769, + 0x9FB3: 770, + 0x9FB5: 771, + 0x9FB7: 772, + 0xA061: 773, + 0xA062: 774, + 0xA065: 775, + 0xA067: 776, + 0xA068: 777, + 0xA069: 778, + 0xA06A: 779, + 0xA06B: 780, + 0xA071: 781, + 0xA073: 782, + 0xA075: 783, + 0xA077: 784, + 0xA078: 785, + 0xA07B: 786, + 0xA07D: 787, + 0xA081: 788, + 0xA082: 789, + 0xA085: 790, + 0xA089: 791, + 0xA091: 792, + 0xA093: 793, + 0xA095: 794, + 0xA096: 795, + 0xA097: 796, + 0xA098: 797, + 0xA0A1: 798, + 0xA0A2: 799, + 0xA0A9: 800, + 0xA0B7: 801, + 0xA0E1: 802, + 0xA0E2: 803, + 0xA0E5: 804, + 0xA0E9: 805, + 0xA0EB: 806, + 0xA0F1: 807, + 0xA0F3: 808, + 0xA0F5: 809, + 0xA0F7: 810, + 0xA0F8: 811, + 0xA0FD: 812, + 0xA141: 813, + 0xA142: 814, + 0xA145: 815, + 0xA149: 816, + 0xA151: 817, + 0xA153: 818, + 0xA155: 819, + 0xA156: 820, + 0xA157: 821, + 0xA161: 822, + 0xA162: 823, + 0xA165: 824, + 0xA169: 825, + 0xA175: 826, + 0xA176: 827, + 0xA177: 828, + 0xA179: 829, + 0xA181: 830, + 0xA1A1: 831, + 0xA1A2: 832, + 0xA1A4: 833, + 0xA1A5: 834, + 0xA1A9: 835, + 0xA1AB: 836, + 0xA1B1: 837, + 0xA1B3: 838, + 0xA1B5: 839, + 0xA1B7: 840, + 0xA1C1: 841, + 0xA1C5: 842, + 0xA1D6: 843, + 0xA1D7: 844, + 0xA241: 845, + 0xA245: 846, + 0xA249: 847, + 0xA253: 848, + 0xA255: 849, + 0xA257: 850, + 0xA261: 851, + 0xA265: 852, + 0xA269: 853, + 0xA273: 854, + 0xA275: 855, + 0xA281: 856, + 0xA282: 857, + 0xA283: 858, + 0xA285: 859, + 0xA288: 860, + 0xA289: 861, + 0xA28A: 862, + 0xA28B: 863, + 0xA291: 864, + 0xA293: 865, + 0xA295: 866, + 0xA297: 867, + 0xA29B: 868, + 0xA29D: 869, + 0xA2A1: 870, + 0xA2A5: 871, + 0xA2A9: 872, + 0xA2B3: 873, + 0xA2B5: 874, + 0xA2C1: 875, + 0xA2E1: 876, + 0xA2E5: 877, + 0xA2E9: 878, + 0xA341: 879, + 0xA345: 880, + 0xA349: 881, + 0xA351: 882, + 0xA355: 883, + 0xA361: 884, + 0xA365: 885, + 0xA369: 886, + 0xA371: 887, + 0xA375: 888, + 0xA3A1: 889, + 0xA3A2: 890, + 0xA3A5: 891, + 0xA3A8: 892, + 0xA3A9: 893, + 0xA3AB: 894, + 0xA3B1: 895, + 0xA3B3: 896, + 0xA3B5: 897, + 0xA3B6: 898, + 0xA3B7: 899, + 0xA3B9: 900, + 0xA3BB: 901, + 0xA461: 902, + 0xA462: 903, + 0xA463: 904, + 0xA464: 905, + 0xA465: 906, + 0xA468: 907, + 0xA469: 908, + 0xA46A: 909, + 0xA46B: 910, + 0xA46C: 911, + 0xA471: 912, + 0xA473: 913, + 0xA475: 914, + 0xA477: 915, + 0xA47B: 916, + 0xA481: 917, + 0xA482: 918, + 0xA485: 919, + 0xA489: 920, + 0xA491: 921, + 0xA493: 922, + 0xA495: 923, + 0xA496: 924, + 0xA497: 925, + 0xA49B: 926, + 0xA4A1: 927, + 0xA4A2: 928, + 0xA4A5: 929, + 0xA4B3: 930, + 0xA4E1: 931, + 0xA4E2: 932, + 0xA4E5: 933, + 0xA4E8: 934, + 0xA4E9: 935, + 0xA4EB: 936, + 0xA4F1: 937, + 0xA4F3: 938, + 0xA4F5: 939, + 0xA4F7: 940, + 0xA4F8: 941, + 0xA541: 942, + 0xA542: 943, + 0xA545: 944, + 0xA548: 945, + 0xA549: 946, + 0xA551: 947, + 0xA553: 948, + 0xA555: 949, + 0xA556: 950, + 0xA557: 951, + 0xA561: 952, + 0xA562: 953, + 0xA565: 954, + 0xA569: 955, + 0xA573: 956, + 0xA575: 957, + 0xA576: 958, + 0xA577: 959, + 0xA57B: 960, + 0xA581: 961, + 0xA585: 962, + 0xA5A1: 963, + 0xA5A2: 964, + 0xA5A3: 965, + 0xA5A5: 966, + 0xA5A9: 967, + 0xA5B1: 968, + 0xA5B3: 969, + 0xA5B5: 970, + 0xA5B7: 971, + 0xA5C1: 972, + 0xA5C5: 973, + 0xA5D6: 974, + 0xA5E1: 975, + 0xA5F6: 976, + 0xA641: 977, + 0xA642: 978, + 0xA645: 979, + 0xA649: 980, + 0xA651: 981, + 0xA653: 982, + 0xA661: 983, + 0xA665: 984, + 0xA681: 985, + 0xA682: 986, + 0xA685: 987, + 0xA688: 988, + 0xA689: 989, + 0xA68A: 990, + 0xA68B: 991, + 0xA691: 992, + 0xA693: 993, + 0xA695: 994, + 0xA697: 995, + 0xA69B: 996, + 0xA69C: 997, + 0xA6A1: 998, + 0xA6A9: 999, + 0xA6B6: 1000, + 0xA6C1: 1001, + 0xA6E1: 1002, + 0xA6E2: 1003, + 0xA6E5: 1004, + 0xA6E9: 1005, + 0xA6F7: 1006, + 0xA741: 1007, + 0xA745: 1008, + 0xA749: 1009, + 0xA751: 1010, + 0xA755: 1011, + 0xA757: 1012, + 0xA761: 1013, + 0xA762: 1014, + 0xA765: 1015, + 0xA769: 1016, + 0xA771: 1017, + 0xA773: 1018, + 0xA775: 1019, + 0xA7A1: 1020, + 0xA7A2: 1021, + 0xA7A5: 1022, + 0xA7A9: 1023, + 0xA7AB: 1024, + 0xA7B1: 1025, + 0xA7B3: 1026, + 0xA7B5: 1027, + 0xA7B7: 1028, + 0xA7B8: 1029, + 0xA7B9: 1030, + 0xA861: 1031, + 0xA862: 1032, + 0xA865: 1033, + 0xA869: 1034, + 0xA86B: 1035, + 0xA871: 1036, + 0xA873: 1037, + 0xA875: 1038, + 0xA876: 1039, + 0xA877: 1040, + 0xA87D: 1041, + 0xA881: 1042, + 0xA882: 1043, + 0xA885: 1044, + 0xA889: 1045, + 0xA891: 1046, + 0xA893: 1047, + 0xA895: 1048, + 0xA896: 1049, + 0xA897: 1050, + 0xA8A1: 1051, + 0xA8A2: 1052, + 0xA8B1: 1053, + 0xA8E1: 1054, + 0xA8E2: 1055, + 0xA8E5: 1056, + 0xA8E8: 1057, + 0xA8E9: 1058, + 0xA8F1: 1059, + 0xA8F5: 1060, + 0xA8F6: 1061, + 0xA8F7: 1062, + 0xA941: 1063, + 0xA957: 1064, + 0xA961: 1065, + 0xA962: 1066, + 0xA971: 1067, + 0xA973: 1068, + 0xA975: 1069, + 0xA976: 1070, + 0xA977: 1071, + 0xA9A1: 1072, + 0xA9A2: 1073, + 0xA9A5: 1074, + 0xA9A9: 1075, + 0xA9B1: 1076, + 0xA9B3: 1077, + 0xA9B7: 1078, + 0xAA41: 1079, + 0xAA61: 1080, + 0xAA77: 1081, + 0xAA81: 1082, + 0xAA82: 1083, + 0xAA85: 1084, + 0xAA89: 1085, + 0xAA91: 1086, + 0xAA95: 1087, + 0xAA97: 1088, + 0xAB41: 1089, + 0xAB57: 1090, + 0xAB61: 1091, + 0xAB65: 1092, + 0xAB69: 1093, + 0xAB71: 1094, + 0xAB73: 1095, + 0xABA1: 1096, + 0xABA2: 1097, + 0xABA5: 1098, + 0xABA9: 1099, + 0xABB1: 1100, + 0xABB3: 1101, + 0xABB5: 1102, + 0xABB7: 1103, + 0xAC61: 1104, + 0xAC62: 1105, + 0xAC64: 1106, + 0xAC65: 1107, + 0xAC68: 1108, + 0xAC69: 1109, + 0xAC6A: 1110, + 0xAC6B: 1111, + 0xAC71: 1112, + 0xAC73: 1113, + 0xAC75: 1114, + 0xAC76: 1115, + 0xAC77: 1116, + 0xAC7B: 1117, + 0xAC81: 1118, + 0xAC82: 1119, + 0xAC85: 1120, + 0xAC89: 1121, + 0xAC91: 1122, + 0xAC93: 1123, + 0xAC95: 1124, + 0xAC96: 1125, + 0xAC97: 1126, + 0xACA1: 1127, + 0xACA2: 1128, + 0xACA5: 1129, + 0xACA9: 1130, + 0xACB1: 1131, + 0xACB3: 1132, + 0xACB5: 1133, + 0xACB7: 1134, + 0xACC1: 1135, + 0xACC5: 1136, + 0xACC9: 1137, + 0xACD1: 1138, + 0xACD7: 1139, + 0xACE1: 1140, + 0xACE2: 1141, + 0xACE3: 1142, + 0xACE4: 1143, + 0xACE5: 1144, + 0xACE8: 1145, + 0xACE9: 1146, + 0xACEB: 1147, + 0xACEC: 1148, + 0xACF1: 1149, + 0xACF3: 1150, + 0xACF5: 1151, + 0xACF6: 1152, + 0xACF7: 1153, + 0xACFC: 1154, + 0xAD41: 1155, + 0xAD42: 1156, + 0xAD45: 1157, + 0xAD49: 1158, + 0xAD51: 1159, + 0xAD53: 1160, + 0xAD55: 1161, + 0xAD56: 1162, + 0xAD57: 1163, + 0xAD61: 1164, + 0xAD62: 1165, + 0xAD65: 1166, + 0xAD69: 1167, + 0xAD71: 1168, + 0xAD73: 1169, + 0xAD75: 1170, + 0xAD76: 1171, + 0xAD77: 1172, + 0xAD81: 1173, + 0xAD85: 1174, + 0xAD89: 1175, + 0xAD97: 1176, + 0xADA1: 1177, + 0xADA2: 1178, + 0xADA3: 1179, + 0xADA5: 1180, + 0xADA9: 1181, + 0xADAB: 1182, + 0xADB1: 1183, + 0xADB3: 1184, + 0xADB5: 1185, + 0xADB7: 1186, + 0xADBB: 1187, + 0xADC1: 1188, + 0xADC2: 1189, + 0xADC5: 1190, + 0xADC9: 1191, + 0xADD7: 1192, + 0xADE1: 1193, + 0xADE5: 1194, + 0xADE9: 1195, + 0xADF1: 1196, + 0xADF5: 1197, + 0xADF6: 1198, + 0xAE41: 1199, + 0xAE45: 1200, + 0xAE49: 1201, + 0xAE51: 1202, + 0xAE53: 1203, + 0xAE55: 1204, + 0xAE61: 1205, + 0xAE62: 1206, + 0xAE65: 1207, + 0xAE69: 1208, + 0xAE71: 1209, + 0xAE73: 1210, + 0xAE75: 1211, + 0xAE77: 1212, + 0xAE81: 1213, + 0xAE82: 1214, + 0xAE85: 1215, + 0xAE88: 1216, + 0xAE89: 1217, + 0xAE91: 1218, + 0xAE93: 1219, + 0xAE95: 1220, + 0xAE97: 1221, + 0xAE99: 1222, + 0xAE9B: 1223, + 0xAE9C: 1224, + 0xAEA1: 1225, + 0xAEB6: 1226, + 0xAEC1: 1227, + 0xAEC2: 1228, + 0xAEC5: 1229, + 0xAEC9: 1230, + 0xAED1: 1231, + 0xAED7: 1232, + 0xAEE1: 1233, + 0xAEE2: 1234, + 0xAEE5: 1235, + 0xAEE9: 1236, + 0xAEF1: 1237, + 0xAEF3: 1238, + 0xAEF5: 1239, + 0xAEF7: 1240, + 0xAF41: 1241, + 0xAF42: 1242, + 0xAF49: 1243, + 0xAF51: 1244, + 0xAF55: 1245, + 0xAF57: 1246, + 0xAF61: 1247, + 0xAF62: 1248, + 0xAF65: 1249, + 0xAF69: 1250, + 0xAF6A: 1251, + 0xAF71: 1252, + 0xAF73: 1253, + 0xAF75: 1254, + 0xAF77: 1255, + 0xAFA1: 1256, + 0xAFA2: 1257, + 0xAFA5: 1258, + 0xAFA8: 1259, + 0xAFA9: 1260, + 0xAFB0: 1261, + 0xAFB1: 1262, + 0xAFB3: 1263, + 0xAFB5: 1264, + 0xAFB7: 1265, + 0xAFBC: 1266, + 0xB061: 1267, + 0xB062: 1268, + 0xB064: 1269, + 0xB065: 1270, + 0xB069: 1271, + 0xB071: 1272, + 0xB073: 1273, + 0xB076: 1274, + 0xB077: 1275, + 0xB07D: 1276, + 0xB081: 1277, + 0xB082: 1278, + 0xB085: 1279, + 0xB089: 1280, + 0xB091: 1281, + 0xB093: 1282, + 0xB096: 1283, + 0xB097: 1284, + 0xB0B7: 1285, + 0xB0E1: 1286, + 0xB0E2: 1287, + 0xB0E5: 1288, + 0xB0E9: 1289, + 0xB0EB: 1290, + 0xB0F1: 1291, + 0xB0F3: 1292, + 0xB0F6: 1293, + 0xB0F7: 1294, + 0xB141: 1295, + 0xB145: 1296, + 0xB149: 1297, + 0xB185: 1298, + 0xB1A1: 1299, + 0xB1A2: 1300, + 0xB1A5: 1301, + 0xB1A8: 1302, + 0xB1A9: 1303, + 0xB1AB: 1304, + 0xB1B1: 1305, + 0xB1B3: 1306, + 0xB1B7: 1307, + 0xB1C1: 1308, + 0xB1C2: 1309, + 0xB1C5: 1310, + 0xB1D6: 1311, + 0xB1E1: 1312, + 0xB1F6: 1313, + 0xB241: 1314, + 0xB245: 1315, + 0xB249: 1316, + 0xB251: 1317, + 0xB253: 1318, + 0xB261: 1319, + 0xB281: 1320, + 0xB282: 1321, + 0xB285: 1322, + 0xB289: 1323, + 0xB291: 1324, + 0xB293: 1325, + 0xB297: 1326, + 0xB2A1: 1327, + 0xB2B6: 1328, + 0xB2C1: 1329, + 0xB2E1: 1330, + 0xB2E5: 1331, + 0xB357: 1332, + 0xB361: 1333, + 0xB362: 1334, + 0xB365: 1335, + 0xB369: 1336, + 0xB36B: 1337, + 0xB370: 1338, + 0xB371: 1339, + 0xB373: 1340, + 0xB381: 1341, + 0xB385: 1342, + 0xB389: 1343, + 0xB391: 1344, + 0xB3A1: 1345, + 0xB3A2: 1346, + 0xB3A5: 1347, + 0xB3A9: 1348, + 0xB3B1: 1349, + 0xB3B3: 1350, + 0xB3B5: 1351, + 0xB3B7: 1352, + 0xB461: 1353, + 0xB462: 1354, + 0xB465: 1355, + 0xB466: 1356, + 0xB467: 1357, + 0xB469: 1358, + 0xB46A: 1359, + 0xB46B: 1360, + 0xB470: 1361, + 0xB471: 1362, + 0xB473: 1363, + 0xB475: 1364, + 0xB476: 1365, + 0xB477: 1366, + 0xB47B: 1367, + 0xB47C: 1368, + 0xB481: 1369, + 0xB482: 1370, + 0xB485: 1371, + 0xB489: 1372, + 0xB491: 1373, + 0xB493: 1374, + 0xB495: 1375, + 0xB496: 1376, + 0xB497: 1377, + 0xB4A1: 1378, + 0xB4A2: 1379, + 0xB4A5: 1380, + 0xB4A9: 1381, + 0xB4AC: 1382, + 0xB4B1: 1383, + 0xB4B3: 1384, + 0xB4B5: 1385, + 0xB4B7: 1386, + 0xB4BB: 1387, + 0xB4BD: 1388, + 0xB4C1: 1389, + 0xB4C5: 1390, + 0xB4C9: 1391, + 0xB4D3: 1392, + 0xB4E1: 1393, + 0xB4E2: 1394, + 0xB4E5: 1395, + 0xB4E6: 1396, + 0xB4E8: 1397, + 0xB4E9: 1398, + 0xB4EA: 1399, + 0xB4EB: 1400, + 0xB4F1: 1401, + 0xB4F3: 1402, + 0xB4F4: 1403, + 0xB4F5: 1404, + 0xB4F6: 1405, + 0xB4F7: 1406, + 0xB4F8: 1407, + 0xB4FA: 1408, + 0xB4FC: 1409, + 0xB541: 1410, + 0xB542: 1411, + 0xB545: 1412, + 0xB549: 1413, + 0xB551: 1414, + 0xB553: 1415, + 0xB555: 1416, + 0xB557: 1417, + 0xB561: 1418, + 0xB562: 1419, + 0xB563: 1420, + 0xB565: 1421, + 0xB569: 1422, + 0xB56B: 1423, + 0xB56C: 1424, + 0xB571: 1425, + 0xB573: 1426, + 0xB574: 1427, + 0xB575: 1428, + 0xB576: 1429, + 0xB577: 1430, + 0xB57B: 1431, + 0xB57C: 1432, + 0xB57D: 1433, + 0xB581: 1434, + 0xB585: 1435, + 0xB589: 1436, + 0xB591: 1437, + 0xB593: 1438, + 0xB595: 1439, + 0xB596: 1440, + 0xB5A1: 1441, + 0xB5A2: 1442, + 0xB5A5: 1443, + 0xB5A9: 1444, + 0xB5AA: 1445, + 0xB5AB: 1446, + 0xB5AD: 1447, + 0xB5B0: 1448, + 0xB5B1: 1449, + 0xB5B3: 1450, + 0xB5B5: 1451, + 0xB5B7: 1452, + 0xB5B9: 1453, + 0xB5C1: 1454, + 0xB5C2: 1455, + 0xB5C5: 1456, + 0xB5C9: 1457, + 0xB5D1: 1458, + 0xB5D3: 1459, + 0xB5D5: 1460, + 0xB5D6: 1461, + 0xB5D7: 1462, + 0xB5E1: 1463, + 0xB5E2: 1464, + 0xB5E5: 1465, + 0xB5F1: 1466, + 0xB5F5: 1467, + 0xB5F7: 1468, + 0xB641: 1469, + 0xB642: 1470, + 0xB645: 1471, + 0xB649: 1472, + 0xB651: 1473, + 0xB653: 1474, + 0xB655: 1475, + 0xB657: 1476, + 0xB661: 1477, + 0xB662: 1478, + 0xB665: 1479, + 0xB669: 1480, + 0xB671: 1481, + 0xB673: 1482, + 0xB675: 1483, + 0xB677: 1484, + 0xB681: 1485, + 0xB682: 1486, + 0xB685: 1487, + 0xB689: 1488, + 0xB68A: 1489, + 0xB68B: 1490, + 0xB691: 1491, + 0xB693: 1492, + 0xB695: 1493, + 0xB697: 1494, + 0xB6A1: 1495, + 0xB6A2: 1496, + 0xB6A5: 1497, + 0xB6A9: 1498, + 0xB6B1: 1499, + 0xB6B3: 1500, + 0xB6B6: 1501, + 0xB6B7: 1502, + 0xB6C1: 1503, + 0xB6C2: 1504, + 0xB6C5: 1505, + 0xB6C9: 1506, + 0xB6D1: 1507, + 0xB6D3: 1508, + 0xB6D7: 1509, + 0xB6E1: 1510, + 0xB6E2: 1511, + 0xB6E5: 1512, + 0xB6E9: 1513, + 0xB6F1: 1514, + 0xB6F3: 1515, + 0xB6F5: 1516, + 0xB6F7: 1517, + 0xB741: 1518, + 0xB742: 1519, + 0xB745: 1520, + 0xB749: 1521, + 0xB751: 1522, + 0xB753: 1523, + 0xB755: 1524, + 0xB757: 1525, + 0xB759: 1526, + 0xB761: 1527, + 0xB762: 1528, + 0xB765: 1529, + 0xB769: 1530, + 0xB76F: 1531, + 0xB771: 1532, + 0xB773: 1533, + 0xB775: 1534, + 0xB777: 1535, + 0xB778: 1536, + 0xB779: 1537, + 0xB77A: 1538, + 0xB77B: 1539, + 0xB77C: 1540, + 0xB77D: 1541, + 0xB781: 1542, + 0xB785: 1543, + 0xB789: 1544, + 0xB791: 1545, + 0xB795: 1546, + 0xB7A1: 1547, + 0xB7A2: 1548, + 0xB7A5: 1549, + 0xB7A9: 1550, + 0xB7AA: 1551, + 0xB7AB: 1552, + 0xB7B0: 1553, + 0xB7B1: 1554, + 0xB7B3: 1555, + 0xB7B5: 1556, + 0xB7B6: 1557, + 0xB7B7: 1558, + 0xB7B8: 1559, + 0xB7BC: 1560, + 0xB861: 1561, + 0xB862: 1562, + 0xB865: 1563, + 0xB867: 1564, + 0xB868: 1565, + 0xB869: 1566, + 0xB86B: 1567, + 0xB871: 1568, + 0xB873: 1569, + 0xB875: 1570, + 0xB876: 1571, + 0xB877: 1572, + 0xB878: 1573, + 0xB881: 1574, + 0xB882: 1575, + 0xB885: 1576, + 0xB889: 1577, + 0xB891: 1578, + 0xB893: 1579, + 0xB895: 1580, + 0xB896: 1581, + 0xB897: 1582, + 0xB8A1: 1583, + 0xB8A2: 1584, + 0xB8A5: 1585, + 0xB8A7: 1586, + 0xB8A9: 1587, + 0xB8B1: 1588, + 0xB8B7: 1589, + 0xB8C1: 1590, + 0xB8C5: 1591, + 0xB8C9: 1592, + 0xB8E1: 1593, + 0xB8E2: 1594, + 0xB8E5: 1595, + 0xB8E9: 1596, + 0xB8EB: 1597, + 0xB8F1: 1598, + 0xB8F3: 1599, + 0xB8F5: 1600, + 0xB8F7: 1601, + 0xB8F8: 1602, + 0xB941: 1603, + 0xB942: 1604, + 0xB945: 1605, + 0xB949: 1606, + 0xB951: 1607, + 0xB953: 1608, + 0xB955: 1609, + 0xB957: 1610, + 0xB961: 1611, + 0xB965: 1612, + 0xB969: 1613, + 0xB971: 1614, + 0xB973: 1615, + 0xB976: 1616, + 0xB977: 1617, + 0xB981: 1618, + 0xB9A1: 1619, + 0xB9A2: 1620, + 0xB9A5: 1621, + 0xB9A9: 1622, + 0xB9AB: 1623, + 0xB9B1: 1624, + 0xB9B3: 1625, + 0xB9B5: 1626, + 0xB9B7: 1627, + 0xB9B8: 1628, + 0xB9B9: 1629, + 0xB9BD: 1630, + 0xB9C1: 1631, + 0xB9C2: 1632, + 0xB9C9: 1633, + 0xB9D3: 1634, + 0xB9D5: 1635, + 0xB9D7: 1636, + 0xB9E1: 1637, + 0xB9F6: 1638, + 0xB9F7: 1639, + 0xBA41: 1640, + 0xBA45: 1641, + 0xBA49: 1642, + 0xBA51: 1643, + 0xBA53: 1644, + 0xBA55: 1645, + 0xBA57: 1646, + 0xBA61: 1647, + 0xBA62: 1648, + 0xBA65: 1649, + 0xBA77: 1650, + 0xBA81: 1651, + 0xBA82: 1652, + 0xBA85: 1653, + 0xBA89: 1654, + 0xBA8A: 1655, + 0xBA8B: 1656, + 0xBA91: 1657, + 0xBA93: 1658, + 0xBA95: 1659, + 0xBA97: 1660, + 0xBAA1: 1661, + 0xBAB6: 1662, + 0xBAC1: 1663, + 0xBAE1: 1664, + 0xBAE2: 1665, + 0xBAE5: 1666, + 0xBAE9: 1667, + 0xBAF1: 1668, + 0xBAF3: 1669, + 0xBAF5: 1670, + 0xBB41: 1671, + 0xBB45: 1672, + 0xBB49: 1673, + 0xBB51: 1674, + 0xBB61: 1675, + 0xBB62: 1676, + 0xBB65: 1677, + 0xBB69: 1678, + 0xBB71: 1679, + 0xBB73: 1680, + 0xBB75: 1681, + 0xBB77: 1682, + 0xBBA1: 1683, + 0xBBA2: 1684, + 0xBBA5: 1685, + 0xBBA8: 1686, + 0xBBA9: 1687, + 0xBBAB: 1688, + 0xBBB1: 1689, + 0xBBB3: 1690, + 0xBBB5: 1691, + 0xBBB7: 1692, + 0xBBB8: 1693, + 0xBBBB: 1694, + 0xBBBC: 1695, + 0xBC61: 1696, + 0xBC62: 1697, + 0xBC65: 1698, + 0xBC67: 1699, + 0xBC69: 1700, + 0xBC6C: 1701, + 0xBC71: 1702, + 0xBC73: 1703, + 0xBC75: 1704, + 0xBC76: 1705, + 0xBC77: 1706, + 0xBC81: 1707, + 0xBC82: 1708, + 0xBC85: 1709, + 0xBC89: 1710, + 0xBC91: 1711, + 0xBC93: 1712, + 0xBC95: 1713, + 0xBC96: 1714, + 0xBC97: 1715, + 0xBCA1: 1716, + 0xBCA5: 1717, + 0xBCB7: 1718, + 0xBCE1: 1719, + 0xBCE2: 1720, + 0xBCE5: 1721, + 0xBCE9: 1722, + 0xBCF1: 1723, + 0xBCF3: 1724, + 0xBCF5: 1725, + 0xBCF6: 1726, + 0xBCF7: 1727, + 0xBD41: 1728, + 0xBD57: 1729, + 0xBD61: 1730, + 0xBD76: 1731, + 0xBDA1: 1732, + 0xBDA2: 1733, + 0xBDA5: 1734, + 0xBDA9: 1735, + 0xBDB1: 1736, + 0xBDB3: 1737, + 0xBDB5: 1738, + 0xBDB7: 1739, + 0xBDB9: 1740, + 0xBDC1: 1741, + 0xBDC2: 1742, + 0xBDC9: 1743, + 0xBDD6: 1744, + 0xBDE1: 1745, + 0xBDF6: 1746, + 0xBE41: 1747, + 0xBE45: 1748, + 0xBE49: 1749, + 0xBE51: 1750, + 0xBE53: 1751, + 0xBE77: 1752, + 0xBE81: 1753, + 0xBE82: 1754, + 0xBE85: 1755, + 0xBE89: 1756, + 0xBE91: 1757, + 0xBE93: 1758, + 0xBE97: 1759, + 0xBEA1: 1760, + 0xBEB6: 1761, + 0xBEB7: 1762, + 0xBEE1: 1763, + 0xBF41: 1764, + 0xBF61: 1765, + 0xBF71: 1766, + 0xBF75: 1767, + 0xBF77: 1768, + 0xBFA1: 1769, + 0xBFA2: 1770, + 0xBFA5: 1771, + 0xBFA9: 1772, + 0xBFB1: 1773, + 0xBFB3: 1774, + 0xBFB7: 1775, + 0xBFB8: 1776, + 0xBFBD: 1777, + 0xC061: 1778, + 0xC062: 1779, + 0xC065: 1780, + 0xC067: 1781, + 0xC069: 1782, + 0xC071: 1783, + 0xC073: 1784, + 0xC075: 1785, + 0xC076: 1786, + 0xC077: 1787, + 0xC078: 1788, + 0xC081: 1789, + 0xC082: 1790, + 0xC085: 1791, + 0xC089: 1792, + 0xC091: 1793, + 0xC093: 1794, + 0xC095: 1795, + 0xC096: 1796, + 0xC097: 1797, + 0xC0A1: 1798, + 0xC0A5: 1799, + 0xC0A7: 1800, + 0xC0A9: 1801, + 0xC0B1: 1802, + 0xC0B7: 1803, + 0xC0E1: 1804, + 0xC0E2: 1805, + 0xC0E5: 1806, + 0xC0E9: 1807, + 0xC0F1: 1808, + 0xC0F3: 1809, + 0xC0F5: 1810, + 0xC0F6: 1811, + 0xC0F7: 1812, + 0xC141: 1813, + 0xC142: 1814, + 0xC145: 1815, + 0xC149: 1816, + 0xC151: 1817, + 0xC153: 1818, + 0xC155: 1819, + 0xC157: 1820, + 0xC161: 1821, + 0xC165: 1822, + 0xC176: 1823, + 0xC181: 1824, + 0xC185: 1825, + 0xC197: 1826, + 0xC1A1: 1827, + 0xC1A2: 1828, + 0xC1A5: 1829, + 0xC1A9: 1830, + 0xC1B1: 1831, + 0xC1B3: 1832, + 0xC1B5: 1833, + 0xC1B7: 1834, + 0xC1C1: 1835, + 0xC1C5: 1836, + 0xC1C9: 1837, + 0xC1D7: 1838, + 0xC241: 1839, + 0xC245: 1840, + 0xC249: 1841, + 0xC251: 1842, + 0xC253: 1843, + 0xC255: 1844, + 0xC257: 1845, + 0xC261: 1846, + 0xC271: 1847, + 0xC281: 1848, + 0xC282: 1849, + 0xC285: 1850, + 0xC289: 1851, + 0xC291: 1852, + 0xC293: 1853, + 0xC295: 1854, + 0xC297: 1855, + 0xC2A1: 1856, + 0xC2B6: 1857, + 0xC2C1: 1858, + 0xC2C5: 1859, + 0xC2E1: 1860, + 0xC2E5: 1861, + 0xC2E9: 1862, + 0xC2F1: 1863, + 0xC2F3: 1864, + 0xC2F5: 1865, + 0xC2F7: 1866, + 0xC341: 1867, + 0xC345: 1868, + 0xC349: 1869, + 0xC351: 1870, + 0xC357: 1871, + 0xC361: 1872, + 0xC362: 1873, + 0xC365: 1874, + 0xC369: 1875, + 0xC371: 1876, + 0xC373: 1877, + 0xC375: 1878, + 0xC377: 1879, + 0xC3A1: 1880, + 0xC3A2: 1881, + 0xC3A5: 1882, + 0xC3A8: 1883, + 0xC3A9: 1884, + 0xC3AA: 1885, + 0xC3B1: 1886, + 0xC3B3: 1887, + 0xC3B5: 1888, + 0xC3B7: 1889, + 0xC461: 1890, + 0xC462: 1891, + 0xC465: 1892, + 0xC469: 1893, + 0xC471: 1894, + 0xC473: 1895, + 0xC475: 1896, + 0xC477: 1897, + 0xC481: 1898, + 0xC482: 1899, + 0xC485: 1900, + 0xC489: 1901, + 0xC491: 1902, + 0xC493: 1903, + 0xC495: 1904, + 0xC496: 1905, + 0xC497: 1906, + 0xC4A1: 1907, + 0xC4A2: 1908, + 0xC4B7: 1909, + 0xC4E1: 1910, + 0xC4E2: 1911, + 0xC4E5: 1912, + 0xC4E8: 1913, + 0xC4E9: 1914, + 0xC4F1: 1915, + 0xC4F3: 1916, + 0xC4F5: 1917, + 0xC4F6: 1918, + 0xC4F7: 1919, + 0xC541: 1920, + 0xC542: 1921, + 0xC545: 1922, + 0xC549: 1923, + 0xC551: 1924, + 0xC553: 1925, + 0xC555: 1926, + 0xC557: 1927, + 0xC561: 1928, + 0xC565: 1929, + 0xC569: 1930, + 0xC571: 1931, + 0xC573: 1932, + 0xC575: 1933, + 0xC576: 1934, + 0xC577: 1935, + 0xC581: 1936, + 0xC5A1: 1937, + 0xC5A2: 1938, + 0xC5A5: 1939, + 0xC5A9: 1940, + 0xC5B1: 1941, + 0xC5B3: 1942, + 0xC5B5: 1943, + 0xC5B7: 1944, + 0xC5C1: 1945, + 0xC5C2: 1946, + 0xC5C5: 1947, + 0xC5C9: 1948, + 0xC5D1: 1949, + 0xC5D7: 1950, + 0xC5E1: 1951, + 0xC5F7: 1952, + 0xC641: 1953, + 0xC649: 1954, + 0xC661: 1955, + 0xC681: 1956, + 0xC682: 1957, + 0xC685: 1958, + 0xC689: 1959, + 0xC691: 1960, + 0xC693: 1961, + 0xC695: 1962, + 0xC697: 1963, + 0xC6A1: 1964, + 0xC6A5: 1965, + 0xC6A9: 1966, + 0xC6B7: 1967, + 0xC6C1: 1968, + 0xC6D7: 1969, + 0xC6E1: 1970, + 0xC6E2: 1971, + 0xC6E5: 1972, + 0xC6E9: 1973, + 0xC6F1: 1974, + 0xC6F3: 1975, + 0xC6F5: 1976, + 0xC6F7: 1977, + 0xC741: 1978, + 0xC745: 1979, + 0xC749: 1980, + 0xC751: 1981, + 0xC761: 1982, + 0xC762: 1983, + 0xC765: 1984, + 0xC769: 1985, + 0xC771: 1986, + 0xC773: 1987, + 0xC777: 1988, + 0xC7A1: 1989, + 0xC7A2: 1990, + 0xC7A5: 1991, + 0xC7A9: 1992, + 0xC7B1: 1993, + 0xC7B3: 1994, + 0xC7B5: 1995, + 0xC7B7: 1996, + 0xC861: 1997, + 0xC862: 1998, + 0xC865: 1999, + 0xC869: 2000, + 0xC86A: 2001, + 0xC871: 2002, + 0xC873: 2003, + 0xC875: 2004, + 0xC876: 2005, + 0xC877: 2006, + 0xC881: 2007, + 0xC882: 2008, + 0xC885: 2009, + 0xC889: 2010, + 0xC891: 2011, + 0xC893: 2012, + 0xC895: 2013, + 0xC896: 2014, + 0xC897: 2015, + 0xC8A1: 2016, + 0xC8B7: 2017, + 0xC8E1: 2018, + 0xC8E2: 2019, + 0xC8E5: 2020, + 0xC8E9: 2021, + 0xC8EB: 2022, + 0xC8F1: 2023, + 0xC8F3: 2024, + 0xC8F5: 2025, + 0xC8F6: 2026, + 0xC8F7: 2027, + 0xC941: 2028, + 0xC942: 2029, + 0xC945: 2030, + 0xC949: 2031, + 0xC951: 2032, + 0xC953: 2033, + 0xC955: 2034, + 0xC957: 2035, + 0xC961: 2036, + 0xC965: 2037, + 0xC976: 2038, + 0xC981: 2039, + 0xC985: 2040, + 0xC9A1: 2041, + 0xC9A2: 2042, + 0xC9A5: 2043, + 0xC9A9: 2044, + 0xC9B1: 2045, + 0xC9B3: 2046, + 0xC9B5: 2047, + 0xC9B7: 2048, + 0xC9BC: 2049, + 0xC9C1: 2050, + 0xC9C5: 2051, + 0xC9E1: 2052, + 0xCA41: 2053, + 0xCA45: 2054, + 0xCA55: 2055, + 0xCA57: 2056, + 0xCA61: 2057, + 0xCA81: 2058, + 0xCA82: 2059, + 0xCA85: 2060, + 0xCA89: 2061, + 0xCA91: 2062, + 0xCA93: 2063, + 0xCA95: 2064, + 0xCA97: 2065, + 0xCAA1: 2066, + 0xCAB6: 2067, + 0xCAC1: 2068, + 0xCAE1: 2069, + 0xCAE2: 2070, + 0xCAE5: 2071, + 0xCAE9: 2072, + 0xCAF1: 2073, + 0xCAF3: 2074, + 0xCAF7: 2075, + 0xCB41: 2076, + 0xCB45: 2077, + 0xCB49: 2078, + 0xCB51: 2079, + 0xCB57: 2080, + 0xCB61: 2081, + 0xCB62: 2082, + 0xCB65: 2083, + 0xCB68: 2084, + 0xCB69: 2085, + 0xCB6B: 2086, + 0xCB71: 2087, + 0xCB73: 2088, + 0xCB75: 2089, + 0xCB81: 2090, + 0xCB85: 2091, + 0xCB89: 2092, + 0xCB91: 2093, + 0xCB93: 2094, + 0xCBA1: 2095, + 0xCBA2: 2096, + 0xCBA5: 2097, + 0xCBA9: 2098, + 0xCBB1: 2099, + 0xCBB3: 2100, + 0xCBB5: 2101, + 0xCBB7: 2102, + 0xCC61: 2103, + 0xCC62: 2104, + 0xCC63: 2105, + 0xCC65: 2106, + 0xCC69: 2107, + 0xCC6B: 2108, + 0xCC71: 2109, + 0xCC73: 2110, + 0xCC75: 2111, + 0xCC76: 2112, + 0xCC77: 2113, + 0xCC7B: 2114, + 0xCC81: 2115, + 0xCC82: 2116, + 0xCC85: 2117, + 0xCC89: 2118, + 0xCC91: 2119, + 0xCC93: 2120, + 0xCC95: 2121, + 0xCC96: 2122, + 0xCC97: 2123, + 0xCCA1: 2124, + 0xCCA2: 2125, + 0xCCE1: 2126, + 0xCCE2: 2127, + 0xCCE5: 2128, + 0xCCE9: 2129, + 0xCCF1: 2130, + 0xCCF3: 2131, + 0xCCF5: 2132, + 0xCCF6: 2133, + 0xCCF7: 2134, + 0xCD41: 2135, + 0xCD42: 2136, + 0xCD45: 2137, + 0xCD49: 2138, + 0xCD51: 2139, + 0xCD53: 2140, + 0xCD55: 2141, + 0xCD57: 2142, + 0xCD61: 2143, + 0xCD65: 2144, + 0xCD69: 2145, + 0xCD71: 2146, + 0xCD73: 2147, + 0xCD76: 2148, + 0xCD77: 2149, + 0xCD81: 2150, + 0xCD89: 2151, + 0xCD93: 2152, + 0xCD95: 2153, + 0xCDA1: 2154, + 0xCDA2: 2155, + 0xCDA5: 2156, + 0xCDA9: 2157, + 0xCDB1: 2158, + 0xCDB3: 2159, + 0xCDB5: 2160, + 0xCDB7: 2161, + 0xCDC1: 2162, + 0xCDD7: 2163, + 0xCE41: 2164, + 0xCE45: 2165, + 0xCE61: 2166, + 0xCE65: 2167, + 0xCE69: 2168, + 0xCE73: 2169, + 0xCE75: 2170, + 0xCE81: 2171, + 0xCE82: 2172, + 0xCE85: 2173, + 0xCE88: 2174, + 0xCE89: 2175, + 0xCE8B: 2176, + 0xCE91: 2177, + 0xCE93: 2178, + 0xCE95: 2179, + 0xCE97: 2180, + 0xCEA1: 2181, + 0xCEB7: 2182, + 0xCEE1: 2183, + 0xCEE5: 2184, + 0xCEE9: 2185, + 0xCEF1: 2186, + 0xCEF5: 2187, + 0xCF41: 2188, + 0xCF45: 2189, + 0xCF49: 2190, + 0xCF51: 2191, + 0xCF55: 2192, + 0xCF57: 2193, + 0xCF61: 2194, + 0xCF65: 2195, + 0xCF69: 2196, + 0xCF71: 2197, + 0xCF73: 2198, + 0xCF75: 2199, + 0xCFA1: 2200, + 0xCFA2: 2201, + 0xCFA5: 2202, + 0xCFA9: 2203, + 0xCFB1: 2204, + 0xCFB3: 2205, + 0xCFB5: 2206, + 0xCFB7: 2207, + 0xD061: 2208, + 0xD062: 2209, + 0xD065: 2210, + 0xD069: 2211, + 0xD06E: 2212, + 0xD071: 2213, + 0xD073: 2214, + 0xD075: 2215, + 0xD077: 2216, + 0xD081: 2217, + 0xD082: 2218, + 0xD085: 2219, + 0xD089: 2220, + 0xD091: 2221, + 0xD093: 2222, + 0xD095: 2223, + 0xD096: 2224, + 0xD097: 2225, + 0xD0A1: 2226, + 0xD0B7: 2227, + 0xD0E1: 2228, + 0xD0E2: 2229, + 0xD0E5: 2230, + 0xD0E9: 2231, + 0xD0EB: 2232, + 0xD0F1: 2233, + 0xD0F3: 2234, + 0xD0F5: 2235, + 0xD0F7: 2236, + 0xD141: 2237, + 0xD142: 2238, + 0xD145: 2239, + 0xD149: 2240, + 0xD151: 2241, + 0xD153: 2242, + 0xD155: 2243, + 0xD157: 2244, + 0xD161: 2245, + 0xD162: 2246, + 0xD165: 2247, + 0xD169: 2248, + 0xD171: 2249, + 0xD173: 2250, + 0xD175: 2251, + 0xD176: 2252, + 0xD177: 2253, + 0xD181: 2254, + 0xD185: 2255, + 0xD189: 2256, + 0xD193: 2257, + 0xD1A1: 2258, + 0xD1A2: 2259, + 0xD1A5: 2260, + 0xD1A9: 2261, + 0xD1AE: 2262, + 0xD1B1: 2263, + 0xD1B3: 2264, + 0xD1B5: 2265, + 0xD1B7: 2266, + 0xD1BB: 2267, + 0xD1C1: 2268, + 0xD1C2: 2269, + 0xD1C5: 2270, + 0xD1C9: 2271, + 0xD1D5: 2272, + 0xD1D7: 2273, + 0xD1E1: 2274, + 0xD1E2: 2275, + 0xD1E5: 2276, + 0xD1F5: 2277, + 0xD1F7: 2278, + 0xD241: 2279, + 0xD242: 2280, + 0xD245: 2281, + 0xD249: 2282, + 0xD253: 2283, + 0xD255: 2284, + 0xD257: 2285, + 0xD261: 2286, + 0xD265: 2287, + 0xD269: 2288, + 0xD273: 2289, + 0xD275: 2290, + 0xD281: 2291, + 0xD282: 2292, + 0xD285: 2293, + 0xD289: 2294, + 0xD28E: 2295, + 0xD291: 2296, + 0xD295: 2297, + 0xD297: 2298, + 0xD2A1: 2299, + 0xD2A5: 2300, + 0xD2A9: 2301, + 0xD2B1: 2302, + 0xD2B7: 2303, + 0xD2C1: 2304, + 0xD2C2: 2305, + 0xD2C5: 2306, + 0xD2C9: 2307, + 0xD2D7: 2308, + 0xD2E1: 2309, + 0xD2E2: 2310, + 0xD2E5: 2311, + 0xD2E9: 2312, + 0xD2F1: 2313, + 0xD2F3: 2314, + 0xD2F5: 2315, + 0xD2F7: 2316, + 0xD341: 2317, + 0xD342: 2318, + 0xD345: 2319, + 0xD349: 2320, + 0xD351: 2321, + 0xD355: 2322, + 0xD357: 2323, + 0xD361: 2324, + 0xD362: 2325, + 0xD365: 2326, + 0xD367: 2327, + 0xD368: 2328, + 0xD369: 2329, + 0xD36A: 2330, + 0xD371: 2331, + 0xD373: 2332, + 0xD375: 2333, + 0xD377: 2334, + 0xD37B: 2335, + 0xD381: 2336, + 0xD385: 2337, + 0xD389: 2338, + 0xD391: 2339, + 0xD393: 2340, + 0xD397: 2341, + 0xD3A1: 2342, + 0xD3A2: 2343, + 0xD3A5: 2344, + 0xD3A9: 2345, + 0xD3B1: 2346, + 0xD3B3: 2347, + 0xD3B5: 2348, + 0xD3B7: 2349, +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py new file mode 100644 index 000000000..d7364ba61 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import JOHABDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import JOHAB_SM_MODEL + + +class JOHABProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(JOHAB_SM_MODEL) + self.distribution_analyzer = JOHABDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Johab" + + @property + def language(self) -> str: + return "Korean" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 000000000..2f53bdda0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,238 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Tuple, Union + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +# fmt: off +jp2_char_context = ( + (0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), + (2, 4, 0, 4, 0, 3, 0, 4, 0, 3, 4, 4, 4, 2, 4, 3, 3, 4, 3, 2, 3, 3, 4, 2, 3, 3, 3, 2, 4, 1, 4, 3, 3, 1, 5, 4, 3, 4, 3, 4, 3, 5, 3, 0, 3, 5, 4, 2, 0, 3, 1, 0, 3, 3, 0, 3, 3, 0, 1, 1, 0, 4, 3, 0, 3, 3, 0, 4, 0, 2, 0, 3, 5, 5, 5, 5, 4, 0, 4, 1, 0, 3, 4), + (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 4, 4, 3, 5, 3, 5, 1, 5, 3, 4, 3, 4, 4, 3, 4, 3, 3, 4, 3, 5, 4, 4, 3, 5, 5, 3, 5, 5, 5, 3, 5, 5, 3, 4, 5, 5, 3, 1, 3, 2, 0, 3, 4, 0, 4, 2, 0, 4, 2, 1, 5, 3, 2, 3, 5, 0, 4, 0, 2, 0, 5, 4, 4, 5, 4, 5, 0, 4, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 5, 4, 3, 3, 3, 3, 4, 3, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 4, 4, 4, 4, 5, 3, 4, 4, 3, 4, 5, 5, 4, 5, 5, 1, 4, 5, 4, 3, 0, 3, 3, 1, 3, 3, 0, 4, 4, 0, 3, 3, 1, 5, 3, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 0, 4, 1, 1, 3, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 4, 0, 3, 0, 3, 0, 4, 0, 3, 4, 4, 3, 2, 2, 1, 2, 1, 3, 1, 3, 3, 3, 3, 3, 4, 3, 1, 3, 3, 5, 3, 3, 0, 4, 3, 0, 5, 4, 3, 3, 5, 4, 4, 3, 4, 4, 5, 0, 1, 2, 0, 1, 2, 0, 2, 2, 0, 1, 0, 0, 5, 2, 2, 1, 4, 0, 3, 0, 1, 0, 4, 4, 3, 5, 4, 3, 0, 2, 1, 0, 4, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 5, 0, 4, 0, 2, 1, 4, 4, 2, 4, 1, 4, 2, 4, 2, 4, 3, 3, 3, 4, 3, 3, 3, 3, 1, 4, 2, 3, 3, 3, 1, 4, 4, 1, 1, 1, 4, 3, 3, 2, 0, 2, 4, 3, 2, 0, 3, 3, 0, 3, 1, 1, 0, 0, 0, 3, 3, 0, 4, 2, 2, 3, 4, 0, 4, 0, 3, 0, 4, 4, 5, 3, 4, 4, 0, 3, 0, 0, 1, 4), + (1, 4, 0, 4, 0, 4, 0, 4, 0, 3, 5, 4, 4, 3, 4, 3, 5, 4, 3, 3, 4, 3, 5, 4, 4, 4, 4, 3, 4, 2, 4, 3, 3, 1, 5, 4, 3, 2, 4, 5, 4, 5, 5, 4, 4, 5, 4, 4, 0, 3, 2, 2, 3, 3, 0, 4, 3, 1, 3, 2, 1, 4, 3, 3, 4, 5, 0, 3, 0, 2, 0, 4, 5, 5, 4, 5, 4, 0, 4, 0, 0, 5, 4), + (0, 5, 0, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 3, 4, 0, 4, 4, 4, 3, 4, 3, 4, 3, 3, 1, 4, 2, 4, 3, 4, 0, 5, 4, 1, 4, 5, 4, 4, 5, 3, 2, 4, 3, 4, 3, 2, 4, 1, 3, 3, 3, 2, 3, 2, 0, 4, 3, 3, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 4, 3, 0, 4, 1, 0, 1, 3), + (0, 3, 1, 4, 0, 3, 0, 2, 0, 3, 4, 4, 3, 1, 4, 2, 3, 3, 4, 3, 4, 3, 4, 3, 4, 4, 3, 2, 3, 1, 5, 4, 4, 1, 4, 4, 3, 5, 4, 4, 3, 5, 5, 4, 3, 4, 4, 3, 1, 2, 3, 1, 2, 2, 0, 3, 2, 0, 3, 1, 0, 5, 3, 3, 3, 4, 3, 3, 3, 3, 4, 4, 4, 4, 5, 4, 2, 0, 3, 3, 2, 4, 3), + (0, 2, 0, 3, 0, 1, 0, 1, 0, 0, 3, 2, 0, 0, 2, 0, 1, 0, 2, 1, 3, 3, 3, 1, 2, 3, 1, 0, 1, 0, 4, 2, 1, 1, 3, 3, 0, 4, 3, 3, 1, 4, 3, 3, 0, 3, 3, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 4, 1, 0, 2, 3, 2, 2, 2, 1, 3, 3, 3, 4, 4, 3, 2, 0, 3, 1, 0, 3, 3), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 4, 2, 4, 3, 4, 3, 3, 2, 4, 3, 4, 5, 4, 1, 4, 5, 3, 5, 4, 5, 3, 5, 4, 0, 3, 5, 5, 3, 1, 3, 3, 2, 2, 3, 0, 3, 4, 1, 3, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 5, 3, 0, 4, 1, 0, 3, 4), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 2, 2, 1, 0, 1, 0, 0, 0, 3, 0, 3, 0, 3, 0, 1, 3, 1, 0, 3, 1, 3, 3, 3, 1, 3, 3, 3, 0, 1, 3, 1, 3, 4, 0, 0, 3, 1, 1, 0, 3, 2, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0, 3, 3, 2, 0, 3, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 3, 0, 3, 0, 0, 2, 3), + (2, 3, 0, 3, 0, 2, 0, 1, 0, 3, 3, 4, 3, 1, 3, 1, 1, 1, 3, 1, 4, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 4, 3, 1, 4, 3, 2, 5, 5, 4, 4, 4, 4, 3, 3, 4, 4, 4, 0, 2, 1, 1, 3, 2, 0, 1, 2, 0, 0, 1, 0, 4, 1, 3, 3, 3, 0, 3, 0, 1, 0, 4, 4, 4, 5, 5, 3, 0, 2, 0, 0, 4, 4), + (0, 2, 0, 1, 0, 3, 1, 3, 0, 2, 3, 3, 3, 0, 3, 1, 0, 0, 3, 0, 3, 2, 3, 1, 3, 2, 1, 1, 0, 0, 4, 2, 1, 0, 2, 3, 1, 4, 3, 2, 0, 4, 4, 3, 1, 3, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 1, 1, 2, 0, 3, 0, 0, 0, 3, 4, 2, 4, 3, 2, 0, 1, 0, 0, 3, 3), + (0, 1, 0, 4, 0, 5, 0, 4, 0, 2, 4, 4, 2, 3, 3, 2, 3, 3, 5, 3, 3, 3, 4, 3, 4, 2, 3, 0, 4, 3, 3, 3, 4, 1, 4, 3, 2, 1, 5, 5, 3, 4, 5, 1, 3, 5, 4, 2, 0, 3, 3, 0, 1, 3, 0, 4, 2, 0, 1, 3, 1, 4, 3, 3, 3, 3, 0, 3, 0, 1, 0, 3, 4, 4, 4, 5, 5, 0, 3, 0, 1, 4, 5), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 3, 1, 3, 0, 4, 0, 1, 1, 3, 0, 3, 4, 3, 2, 3, 1, 0, 3, 3, 2, 3, 1, 3, 0, 2, 3, 0, 2, 1, 4, 1, 2, 2, 0, 0, 3, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 2, 1, 3, 3, 0, 2, 0, 2, 0, 0, 3, 3, 1, 2, 4, 0, 3, 0, 2, 2, 3), + (2, 4, 0, 5, 0, 4, 0, 4, 0, 2, 4, 4, 4, 3, 4, 3, 3, 3, 1, 2, 4, 3, 4, 3, 4, 4, 5, 0, 3, 3, 3, 3, 2, 0, 4, 3, 1, 4, 3, 4, 1, 4, 4, 3, 3, 4, 4, 3, 1, 2, 3, 0, 4, 2, 0, 4, 1, 0, 3, 3, 0, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 3, 5, 3, 4, 5, 2, 0, 3, 0, 0, 4, 5), + (0, 3, 0, 4, 0, 1, 0, 1, 0, 1, 3, 2, 2, 1, 3, 0, 3, 0, 2, 0, 2, 0, 3, 0, 2, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 1, 0, 0, 0, 4, 0, 3, 1, 0, 2, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 3, 1, 0, 3, 0, 0, 0, 1, 4, 4, 4, 3, 0, 0, 4, 0, 0, 1, 4), + (1, 4, 1, 5, 0, 3, 0, 3, 0, 4, 5, 4, 4, 3, 5, 3, 3, 4, 4, 3, 4, 1, 3, 3, 3, 3, 2, 1, 4, 1, 5, 4, 3, 1, 4, 4, 3, 5, 4, 4, 3, 5, 4, 3, 3, 4, 4, 4, 0, 3, 3, 1, 2, 3, 0, 3, 1, 0, 3, 3, 0, 5, 4, 4, 4, 4, 4, 4, 3, 3, 5, 4, 4, 3, 3, 5, 4, 0, 3, 2, 0, 4, 4), + (0, 2, 0, 3, 0, 1, 0, 0, 0, 1, 3, 3, 3, 2, 4, 1, 3, 0, 3, 1, 3, 0, 2, 2, 1, 1, 0, 0, 2, 0, 4, 3, 1, 0, 4, 3, 0, 4, 4, 4, 1, 4, 3, 1, 1, 3, 3, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 4, 3, 2, 4, 3, 5, 4, 3, 3, 3, 4, 3, 3, 4, 3, 3, 0, 2, 1, 0, 3, 3), + (0, 2, 0, 4, 0, 3, 0, 2, 0, 2, 5, 5, 3, 4, 4, 4, 4, 1, 4, 3, 3, 0, 4, 3, 4, 3, 1, 3, 3, 2, 4, 3, 0, 3, 4, 3, 0, 3, 4, 4, 2, 4, 4, 0, 4, 5, 3, 3, 2, 2, 1, 1, 1, 2, 0, 1, 5, 0, 3, 3, 2, 4, 3, 3, 3, 4, 0, 3, 0, 2, 0, 4, 4, 3, 5, 5, 0, 0, 3, 0, 2, 3, 3), + (0, 3, 0, 4, 0, 3, 0, 1, 0, 3, 4, 3, 3, 1, 3, 3, 3, 0, 3, 1, 3, 0, 4, 3, 3, 1, 1, 0, 3, 0, 3, 3, 0, 0, 4, 4, 0, 1, 5, 4, 3, 3, 5, 0, 3, 3, 4, 3, 0, 2, 0, 1, 1, 1, 0, 1, 3, 0, 1, 2, 1, 3, 3, 2, 3, 3, 0, 3, 0, 1, 0, 1, 3, 3, 4, 4, 1, 0, 1, 2, 2, 1, 3), + (0, 1, 0, 4, 0, 4, 0, 3, 0, 1, 3, 3, 3, 2, 3, 1, 1, 0, 3, 0, 3, 3, 4, 3, 2, 4, 2, 0, 1, 0, 4, 3, 2, 0, 4, 3, 0, 5, 3, 3, 2, 4, 4, 4, 3, 3, 3, 4, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 4, 2, 3, 3, 3, 0, 3, 0, 0, 0, 4, 4, 4, 5, 3, 2, 0, 3, 3, 0, 3, 5), + (0, 2, 0, 3, 0, 0, 0, 3, 0, 1, 3, 0, 2, 0, 0, 0, 1, 0, 3, 1, 1, 3, 3, 0, 0, 3, 0, 0, 3, 0, 2, 3, 1, 0, 3, 1, 0, 3, 3, 2, 0, 4, 2, 2, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 1, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 1, 0, 0, 1, 4), + (0, 3, 0, 3, 0, 5, 0, 1, 0, 2, 4, 3, 1, 3, 3, 2, 1, 1, 5, 2, 1, 0, 5, 1, 2, 0, 0, 0, 3, 3, 2, 2, 3, 2, 4, 3, 0, 0, 3, 3, 1, 3, 3, 0, 2, 5, 3, 4, 0, 3, 3, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 2, 2, 3, 3, 3, 0, 2, 0, 1, 0, 3, 4, 4, 2, 5, 4, 0, 3, 0, 0, 3, 5), + (0, 3, 0, 3, 0, 3, 0, 1, 0, 3, 3, 3, 3, 0, 3, 0, 2, 0, 2, 1, 1, 0, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 3, 2, 0, 0, 3, 3, 1, 2, 3, 1, 0, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 3, 1, 2, 3, 0, 3, 0, 1, 0, 3, 2, 1, 0, 4, 3, 0, 1, 1, 0, 3, 3), + (0, 4, 0, 5, 0, 3, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 4, 3, 5, 3, 3, 2, 5, 3, 4, 4, 4, 3, 4, 3, 4, 5, 5, 3, 4, 4, 3, 4, 4, 5, 4, 4, 4, 3, 4, 5, 5, 4, 2, 3, 4, 2, 3, 4, 0, 3, 3, 1, 4, 3, 2, 4, 3, 3, 5, 5, 0, 3, 0, 3, 0, 5, 5, 5, 5, 4, 4, 0, 4, 0, 1, 4, 4), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 5, 4, 4, 2, 3, 2, 5, 1, 3, 2, 5, 1, 4, 2, 3, 2, 3, 3, 4, 3, 3, 3, 3, 2, 5, 4, 1, 3, 3, 5, 3, 4, 4, 0, 4, 4, 3, 1, 1, 3, 1, 0, 2, 3, 0, 2, 3, 0, 3, 0, 0, 4, 3, 1, 3, 4, 0, 3, 0, 2, 0, 4, 4, 4, 3, 4, 5, 0, 4, 0, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 1, 2, 0, 3, 4, 4, 3, 3, 3, 0, 2, 2, 4, 3, 3, 1, 3, 3, 3, 1, 1, 0, 3, 1, 4, 3, 2, 3, 4, 4, 2, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 3, 1, 3, 3, 1, 3, 3, 0, 4, 1, 0, 2, 2, 1, 4, 3, 2, 3, 3, 5, 4, 3, 3, 5, 4, 4, 3, 3, 0, 4, 0, 3, 2, 2, 4, 4), + (0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 1, 3, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 3, 4, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1), + (0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 4, 1, 4, 0, 3, 0, 4, 0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 1, 5, 1, 4, 0, 0, 3, 0, 5, 0, 5, 2, 0, 1, 0, 0, 0, 2, 1, 4, 0, 1, 3, 0, 0, 3, 0, 0, 3, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), + (1, 4, 0, 5, 0, 3, 0, 2, 0, 3, 5, 4, 4, 3, 4, 3, 5, 3, 4, 3, 3, 0, 4, 3, 3, 3, 3, 3, 3, 2, 4, 4, 3, 1, 3, 4, 4, 5, 4, 4, 3, 4, 4, 1, 3, 5, 4, 3, 3, 3, 1, 2, 2, 3, 3, 1, 3, 1, 3, 3, 3, 5, 3, 3, 4, 5, 0, 3, 0, 3, 0, 3, 4, 3, 4, 4, 3, 0, 3, 0, 2, 4, 3), + (0, 1, 0, 4, 0, 0, 0, 0, 0, 1, 4, 0, 4, 1, 4, 2, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 0, 3, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 3, 2, 0, 2, 2, 0, 1, 0, 0, 0, 2, 3, 2, 3, 3, 0, 0, 0, 0, 2, 1, 0), + (0, 5, 1, 5, 0, 3, 0, 3, 0, 5, 4, 4, 5, 1, 5, 3, 3, 0, 4, 3, 4, 3, 5, 3, 4, 3, 3, 2, 4, 3, 4, 3, 3, 0, 3, 3, 1, 4, 4, 3, 4, 4, 4, 3, 4, 5, 5, 3, 2, 3, 1, 1, 3, 3, 1, 3, 1, 1, 3, 3, 2, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 5, 3, 3, 0, 3, 4, 0, 4, 3), + (0, 5, 0, 5, 0, 3, 0, 2, 0, 4, 4, 3, 5, 2, 4, 3, 3, 3, 4, 4, 4, 3, 5, 3, 5, 3, 3, 1, 4, 0, 4, 3, 3, 0, 3, 3, 0, 4, 4, 4, 4, 5, 4, 3, 3, 5, 5, 3, 2, 3, 1, 2, 3, 2, 0, 1, 0, 0, 3, 2, 2, 4, 4, 3, 1, 5, 0, 4, 0, 3, 0, 4, 3, 1, 3, 2, 1, 0, 3, 3, 0, 3, 3), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 5, 5, 3, 4, 3, 3, 2, 5, 4, 4, 3, 5, 3, 5, 3, 4, 0, 4, 3, 4, 4, 3, 2, 4, 4, 3, 4, 5, 4, 4, 5, 5, 0, 3, 5, 5, 4, 1, 3, 3, 2, 3, 3, 1, 3, 1, 0, 4, 3, 1, 4, 4, 3, 4, 5, 0, 4, 0, 2, 0, 4, 3, 4, 4, 3, 3, 0, 4, 0, 0, 5, 5), + (0, 4, 0, 4, 0, 5, 0, 1, 1, 3, 3, 4, 4, 3, 4, 1, 3, 0, 5, 1, 3, 0, 3, 1, 3, 1, 1, 0, 3, 0, 3, 3, 4, 0, 4, 3, 0, 4, 4, 4, 3, 4, 4, 0, 3, 5, 4, 1, 0, 3, 0, 0, 2, 3, 0, 3, 1, 0, 3, 1, 0, 3, 2, 1, 3, 5, 0, 3, 0, 1, 0, 3, 2, 3, 3, 4, 4, 0, 2, 2, 0, 4, 4), + (2, 4, 0, 5, 0, 4, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 5, 3, 5, 3, 5, 2, 5, 3, 4, 3, 3, 4, 3, 4, 5, 3, 2, 1, 5, 4, 3, 2, 3, 4, 5, 3, 4, 1, 2, 5, 4, 3, 0, 3, 3, 0, 3, 2, 0, 2, 3, 0, 4, 1, 0, 3, 4, 3, 3, 5, 0, 3, 0, 1, 0, 4, 5, 5, 5, 4, 3, 0, 4, 2, 0, 3, 5), + (0, 5, 0, 4, 0, 4, 0, 2, 0, 5, 4, 3, 4, 3, 4, 3, 3, 3, 4, 3, 4, 2, 5, 3, 5, 3, 4, 1, 4, 3, 4, 4, 4, 0, 3, 5, 0, 4, 4, 4, 4, 5, 3, 1, 3, 4, 5, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 3, 3, 2, 4, 3, 3, 3, 5, 3, 4, 1, 3, 3, 5, 3, 2, 0, 0, 0, 0, 4, 3, 1, 3, 3), + (0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 3, 3, 3, 2, 3, 3, 3, 0, 3, 0, 0, 0, 3, 1, 3, 0, 0, 0, 2, 2, 2, 3, 0, 0, 3, 2, 0, 1, 2, 4, 1, 3, 3, 0, 0, 3, 3, 3, 0, 1, 0, 0, 2, 1, 0, 0, 3, 0, 3, 1, 0, 3, 0, 0, 1, 3, 0, 2, 0, 1, 0, 3, 3, 1, 3, 3, 0, 0, 1, 1, 0, 3, 3), + (0, 2, 0, 3, 0, 2, 1, 4, 0, 2, 2, 3, 1, 1, 3, 1, 1, 0, 2, 0, 3, 1, 2, 3, 1, 3, 0, 0, 1, 0, 4, 3, 2, 3, 3, 3, 1, 4, 2, 3, 3, 3, 3, 1, 0, 3, 1, 4, 0, 1, 1, 0, 1, 2, 0, 1, 1, 0, 1, 1, 0, 3, 1, 3, 2, 2, 0, 1, 0, 0, 0, 2, 3, 3, 3, 1, 0, 0, 0, 0, 0, 2, 3), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 5, 5, 3, 3, 4, 3, 3, 1, 5, 4, 4, 2, 4, 4, 4, 3, 4, 2, 4, 3, 5, 5, 4, 3, 3, 4, 3, 3, 5, 5, 4, 5, 5, 1, 3, 4, 5, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 1, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 5, 3, 3, 1, 4, 3, 0, 4, 0, 1, 5, 3), + (0, 5, 0, 5, 0, 4, 0, 2, 0, 4, 4, 3, 4, 3, 3, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 5, 3, 3, 5, 2, 4, 4, 4, 3, 4, 4, 3, 3, 4, 4, 5, 5, 3, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 1, 2, 2, 1, 4, 3, 3, 5, 4, 4, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 4, 4, 1, 0, 4, 2, 0, 2, 4), + (0, 4, 0, 4, 0, 3, 0, 1, 0, 3, 5, 2, 3, 0, 3, 0, 2, 1, 4, 2, 3, 3, 4, 1, 4, 3, 3, 2, 4, 1, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 5, 3, 3, 3, 3, 3, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 3, 1, 2, 2, 3, 0, 3, 0, 2, 0, 4, 4, 3, 3, 4, 1, 0, 3, 0, 0, 2, 4), + (0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 3, 0, 3, 2, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2), + (0, 2, 1, 3, 0, 2, 0, 2, 0, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 3, 3, 4, 2, 2, 1, 2, 1, 4, 0, 4, 3, 1, 3, 3, 3, 2, 4, 3, 5, 4, 3, 3, 3, 3, 3, 3, 3, 0, 1, 3, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 4, 2, 0, 2, 3, 0, 3, 3, 0, 3, 3, 4, 2, 3, 1, 4, 0, 1, 2, 0, 2, 3), + (0, 3, 0, 3, 0, 1, 0, 3, 0, 2, 3, 3, 3, 0, 3, 1, 2, 0, 3, 3, 2, 3, 3, 2, 3, 2, 3, 1, 3, 0, 4, 3, 2, 0, 3, 3, 1, 4, 3, 3, 2, 3, 4, 3, 1, 3, 3, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 4, 1, 1, 0, 3, 0, 3, 1, 0, 2, 3, 3, 3, 3, 3, 1, 0, 0, 2, 0, 3, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 3, 1, 3, 0, 3, 0, 2, 3, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1, 3, 0, 2, 3, 1, 1, 4, 3, 3, 2, 3, 3, 1, 2, 2, 4, 1, 3, 3, 0, 1, 4, 2, 3, 0, 1, 3, 0, 3, 0, 0, 1, 3, 0, 2, 0, 0, 3, 3, 2, 1, 3, 0, 3, 0, 2, 0, 3, 4, 4, 4, 3, 1, 0, 3, 0, 0, 3, 3), + (0, 2, 0, 1, 0, 2, 0, 0, 0, 1, 3, 2, 2, 1, 3, 0, 1, 1, 3, 0, 3, 2, 3, 1, 2, 0, 2, 0, 1, 1, 3, 3, 3, 0, 3, 3, 1, 1, 2, 3, 2, 3, 3, 1, 2, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 2, 1, 2, 1, 3, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 2, 0, 2, 0, 0, 2, 4), + (0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 3, 3, 3, 2, 3, 2, 2, 2, 0, 3, 1, 3, 3, 3, 2, 3, 3, 0, 0, 3, 0, 3, 2, 2, 0, 2, 3, 1, 4, 3, 4, 3, 3, 2, 3, 1, 5, 4, 4, 0, 3, 1, 2, 1, 3, 0, 3, 1, 1, 2, 0, 2, 3, 1, 3, 1, 3, 0, 3, 0, 1, 0, 3, 3, 4, 4, 2, 1, 0, 2, 1, 0, 2, 4), + (0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 4, 2, 5, 1, 4, 0, 2, 0, 2, 1, 3, 1, 4, 0, 2, 1, 0, 0, 2, 1, 4, 1, 1, 0, 3, 3, 0, 5, 1, 3, 2, 3, 3, 1, 0, 3, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 2, 0, 1, 0, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 2, 3), + (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 3), + (0, 1, 0, 3, 0, 4, 0, 3, 0, 2, 4, 3, 1, 0, 3, 2, 2, 1, 3, 1, 2, 2, 3, 1, 1, 1, 2, 1, 3, 0, 1, 2, 0, 1, 3, 2, 1, 3, 0, 5, 5, 1, 0, 0, 1, 3, 2, 1, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 4, 0, 1, 1, 1, 3, 2, 0, 2, 0, 1, 0, 2, 3, 3, 1, 2, 3, 0, 1, 0, 1, 0, 4), + (0, 0, 0, 1, 0, 3, 0, 3, 0, 2, 2, 1, 0, 0, 4, 0, 3, 0, 3, 1, 3, 0, 3, 0, 3, 0, 1, 0, 3, 0, 3, 1, 3, 0, 3, 3, 0, 0, 1, 2, 1, 1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 2, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 4), + (0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 3, 1, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 2, 3, 0, 0, 2, 2, 3, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 3), + (2, 4, 0, 5, 0, 5, 0, 4, 0, 3, 4, 3, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 4, 5, 5, 5, 2, 3, 0, 5, 5, 4, 1, 5, 4, 3, 1, 5, 4, 3, 4, 4, 3, 3, 4, 3, 3, 0, 3, 2, 0, 2, 3, 0, 3, 0, 0, 3, 3, 0, 5, 3, 2, 3, 3, 0, 3, 0, 3, 0, 3, 4, 5, 4, 5, 3, 0, 4, 3, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 3, 4, 3, 2, 3, 2, 3, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 2, 4, 3, 3, 1, 3, 4, 3, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 1, 0, 2, 0, 0, 1, 1, 0, 2, 0, 0, 3, 1, 0, 5, 3, 2, 1, 3, 0, 3, 0, 1, 2, 4, 3, 2, 4, 3, 3, 0, 3, 2, 0, 4, 4), + (0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 4, 3, 3, 2, 3, 1, 3, 1, 4, 2, 3, 2, 4, 2, 3, 4, 3, 0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 0, 3, 4, 1, 3, 3, 0, 3, 4, 3, 3, 0, 1, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 0, 3, 1, 2, 1, 3, 0, 4, 0, 1, 0, 4, 3, 3, 4, 3, 3, 0, 2, 0, 0, 3, 3), + (0, 3, 0, 4, 0, 1, 0, 3, 0, 3, 4, 3, 3, 0, 3, 3, 3, 1, 3, 1, 3, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 3, 3, 1, 3, 3, 2, 5, 4, 3, 3, 4, 5, 3, 2, 5, 3, 4, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 4, 2, 2, 1, 3, 0, 3, 0, 2, 0, 4, 4, 3, 5, 3, 2, 0, 1, 1, 0, 3, 4), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 4, 3, 3, 2, 3, 3, 3, 1, 4, 3, 4, 1, 5, 3, 4, 3, 4, 0, 4, 2, 4, 3, 4, 1, 5, 4, 0, 4, 4, 4, 4, 5, 4, 1, 3, 5, 4, 2, 1, 4, 1, 1, 3, 2, 0, 3, 1, 0, 3, 2, 1, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 3, 3, 3, 0, 4, 2, 0, 3, 4), + (1, 4, 0, 4, 0, 3, 0, 1, 0, 3, 3, 3, 1, 1, 3, 3, 2, 2, 3, 3, 1, 0, 3, 2, 2, 1, 2, 0, 3, 1, 2, 1, 2, 0, 3, 2, 0, 2, 2, 3, 3, 4, 3, 0, 3, 3, 1, 2, 0, 1, 1, 3, 1, 2, 0, 0, 3, 0, 1, 1, 0, 3, 2, 2, 3, 3, 0, 3, 0, 0, 0, 2, 3, 3, 4, 3, 3, 0, 1, 0, 0, 1, 4), + (0, 4, 0, 4, 0, 4, 0, 0, 0, 3, 4, 4, 3, 1, 4, 2, 3, 2, 3, 3, 3, 1, 4, 3, 4, 0, 3, 0, 4, 2, 3, 3, 2, 2, 5, 4, 2, 1, 3, 4, 3, 4, 3, 1, 3, 3, 4, 2, 0, 2, 1, 0, 3, 3, 0, 0, 2, 0, 3, 1, 0, 4, 4, 3, 4, 3, 0, 4, 0, 1, 0, 2, 4, 4, 4, 4, 4, 0, 3, 2, 0, 3, 3), + (0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2), + (0, 2, 0, 3, 0, 4, 0, 4, 0, 1, 3, 3, 3, 0, 4, 0, 2, 1, 2, 1, 1, 1, 2, 0, 3, 1, 1, 0, 1, 0, 3, 1, 0, 0, 3, 3, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 3, 1, 0, 0, 1, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 0, 3, 3, 4, 3, 1, 0, 1, 0, 3, 0, 2), + (0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 1, 0, 2, 0, 3, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 4, 0, 0, 0, 2, 3, 0, 1, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 5, 0, 5, 0, 1, 0, 2, 4, 3, 3, 2, 5, 1, 3, 2, 3, 3, 3, 0, 4, 1, 2, 0, 3, 0, 4, 0, 2, 2, 1, 1, 5, 3, 0, 0, 1, 4, 2, 3, 2, 0, 3, 3, 3, 2, 0, 2, 4, 1, 1, 2, 0, 1, 1, 0, 3, 1, 0, 1, 3, 1, 2, 3, 0, 2, 0, 0, 0, 1, 3, 5, 4, 4, 4, 0, 3, 0, 0, 1, 3), + (0, 4, 0, 5, 0, 4, 0, 4, 0, 4, 5, 4, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 3, 4, 5, 4, 2, 4, 2, 3, 4, 3, 1, 4, 4, 1, 3, 5, 4, 4, 5, 5, 4, 4, 5, 5, 5, 2, 3, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 4, 4, 4, 0, 3, 0, 4, 0, 3, 3, 4, 4, 5, 0, 0, 4, 3, 0, 4, 5), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 4, 4, 4, 3, 3, 2, 4, 3, 4, 3, 4, 3, 5, 3, 4, 3, 2, 1, 4, 2, 4, 4, 3, 1, 3, 4, 2, 4, 5, 5, 3, 4, 5, 4, 1, 5, 4, 3, 0, 3, 2, 2, 3, 2, 1, 3, 1, 0, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 2, 3, 3, 4, 3, 3, 3, 2, 1, 0, 3, 2, 1, 4, 3), + (0, 4, 0, 5, 0, 4, 0, 3, 0, 3, 5, 5, 3, 2, 4, 3, 4, 0, 5, 4, 4, 1, 4, 4, 4, 3, 3, 3, 4, 3, 5, 5, 2, 3, 3, 4, 1, 2, 5, 5, 3, 5, 5, 2, 3, 5, 5, 4, 0, 3, 2, 0, 3, 3, 1, 1, 5, 1, 4, 1, 0, 4, 3, 2, 3, 5, 0, 4, 0, 3, 0, 5, 4, 3, 4, 3, 0, 0, 4, 1, 0, 4, 4), + (1, 3, 0, 4, 0, 2, 0, 2, 0, 2, 5, 5, 3, 3, 3, 3, 3, 0, 4, 2, 3, 4, 4, 4, 3, 4, 0, 0, 3, 4, 5, 4, 3, 3, 3, 3, 2, 5, 5, 4, 5, 5, 5, 4, 3, 5, 5, 5, 1, 3, 1, 0, 1, 0, 0, 3, 2, 0, 4, 2, 0, 5, 2, 3, 2, 4, 1, 3, 0, 3, 0, 4, 5, 4, 5, 4, 3, 0, 4, 2, 0, 5, 4), + (0, 3, 0, 4, 0, 5, 0, 3, 0, 3, 4, 4, 3, 2, 3, 2, 3, 3, 3, 3, 3, 2, 4, 3, 3, 2, 2, 0, 3, 3, 3, 3, 3, 1, 3, 3, 3, 0, 4, 4, 3, 4, 4, 1, 1, 4, 4, 2, 0, 3, 1, 0, 1, 1, 0, 4, 1, 0, 2, 3, 1, 3, 3, 1, 3, 4, 0, 3, 0, 1, 0, 3, 1, 3, 0, 0, 1, 0, 2, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 1, 5, 4, 3, 3, 3, 1, 4, 2, 1, 2, 3, 4, 4, 2, 4, 4, 5, 0, 3, 1, 4, 3, 4, 0, 4, 3, 3, 3, 2, 3, 2, 5, 3, 4, 3, 2, 2, 3, 0, 0, 3, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 2, 1, 1, 3, 1, 0, 2, 0, 4, 0, 3, 4, 4, 4, 5, 2, 0, 2, 0, 0, 1, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 4, 2, 1, 1, 0, 1, 0, 3, 2, 0, 0, 3, 1, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 1), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 2, 0, 2, 1, 0, 0, 1, 2, 1, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 4, 3, 4, 2, 4, 3, 2, 0, 4, 4, 4, 3, 5, 3, 5, 3, 3, 2, 4, 2, 4, 3, 4, 3, 1, 4, 0, 2, 3, 4, 4, 4, 3, 3, 3, 4, 4, 4, 3, 4, 1, 3, 4, 3, 2, 1, 2, 1, 3, 3, 3, 4, 4, 3, 3, 5, 0, 4, 0, 3, 0, 4, 3, 3, 3, 2, 1, 0, 3, 0, 0, 3, 3), + (0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 5, 5, 3, 3, 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 4, 3, 5, 3, 3, 1, 3, 2, 4, 5, 5, 5, 5, 4, 3, 4, 5, 5, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 1, 2, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 4, 3, 2, 2, 1, 2, 0, 3, 0, 0, 4, 1), +) +# fmt: on + + +class JapaneseContextAnalysis: + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self) -> None: + self._total_rel = 0 + self._rel_sample: List[int] = [] + self._need_to_skip_char_num = 0 + self._last_char_order = -1 + self._done = False + self.reset() + + def reset(self) -> None: + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str: Union[bytes, bytearray], num_bytes: int) -> None: + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i : i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[ + jp2_char_context[self._last_char_order][order] + ] += 1 + self._last_char_order = order + + def got_enough_data(self) -> bool: + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self) -> float: + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + return self.DONT_KNOW + + def get_order(self, _: Union[bytes, bytearray]) -> Tuple[int, int]: + return -1, 1 + + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self) -> None: + super().__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self) -> str: + return self._charset_name + + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 000000000..994668219 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +BULGARIAN_LANG_MODEL = { + 63: { # 'e' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 45: { # '\xad' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 31: { # 'А' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 2, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 0, # 'и' + 26: 2, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 32: { # 'Б' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 2, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 35: { # 'В' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 2, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 43: { # 'Г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 37: { # 'Д' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 2, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 44: { # 'Е' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 2, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 0, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 55: { # 'Ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 47: { # 'З' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 40: { # 'И' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 2, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 3, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 59: { # 'Й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 33: { # 'К' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 46: { # 'Л' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 38: { # 'М' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 36: { # 'Н' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 41: { # 'О' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 30: { # 'П' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 2, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 39: { # 'Р' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 28: { # 'С' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 3, # 'А' + 32: 2, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 34: { # 'Т' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 51: { # 'У' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 48: { # 'Ф' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 49: { # 'Х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 53: { # 'Ц' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 50: { # 'Ч' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 54: { # 'Ш' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 57: { # 'Щ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 61: { # 'Ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 60: { # 'Ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 2, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 56: { # 'Я' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 1: { # 'а' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 18: { # 'б' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 3, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 9: { # 'в' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 20: { # 'г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 11: { # 'д' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 3: { # 'е' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 23: { # 'ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 15: { # 'з' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 2: { # 'и' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 26: { # 'й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 12: { # 'к' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 10: { # 'л' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 3, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 14: { # 'м' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 6: { # 'н' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 2, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 4: { # 'о' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 13: { # 'п' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 7: { # 'р' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 3, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 8: { # 'с' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 5: { # 'т' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 19: { # 'у' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 2, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 29: { # 'ф' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 2, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 25: { # 'х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 22: { # 'ц' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 21: { # 'ч' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 27: { # 'ш' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 24: { # 'щ' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 17: { # 'ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 52: { # 'ь' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 42: { # 'ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 16: { # 'я' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 1, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 3, # 'х' + 22: 2, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 58: { # 'є' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 62: { # '№' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 194, # '\x80' + 129: 195, # '\x81' + 130: 196, # '\x82' + 131: 197, # '\x83' + 132: 198, # '\x84' + 133: 199, # '\x85' + 134: 200, # '\x86' + 135: 201, # '\x87' + 136: 202, # '\x88' + 137: 203, # '\x89' + 138: 204, # '\x8a' + 139: 205, # '\x8b' + 140: 206, # '\x8c' + 141: 207, # '\x8d' + 142: 208, # '\x8e' + 143: 209, # '\x8f' + 144: 210, # '\x90' + 145: 211, # '\x91' + 146: 212, # '\x92' + 147: 213, # '\x93' + 148: 214, # '\x94' + 149: 215, # '\x95' + 150: 216, # '\x96' + 151: 217, # '\x97' + 152: 218, # '\x98' + 153: 219, # '\x99' + 154: 220, # '\x9a' + 155: 221, # '\x9b' + 156: 222, # '\x9c' + 157: 223, # '\x9d' + 158: 224, # '\x9e' + 159: 225, # '\x9f' + 160: 81, # '\xa0' + 161: 226, # 'Ё' + 162: 227, # 'Ђ' + 163: 228, # 'Ѓ' + 164: 229, # 'Є' + 165: 230, # 'Ѕ' + 166: 105, # 'І' + 167: 231, # 'Ї' + 168: 232, # 'Ј' + 169: 233, # 'Љ' + 170: 234, # 'Њ' + 171: 235, # 'Ћ' + 172: 236, # 'Ќ' + 173: 45, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 31, # 'А' + 177: 32, # 'Б' + 178: 35, # 'В' + 179: 43, # 'Г' + 180: 37, # 'Д' + 181: 44, # 'Е' + 182: 55, # 'Ж' + 183: 47, # 'З' + 184: 40, # 'И' + 185: 59, # 'Й' + 186: 33, # 'К' + 187: 46, # 'Л' + 188: 38, # 'М' + 189: 36, # 'Н' + 190: 41, # 'О' + 191: 30, # 'П' + 192: 39, # 'Р' + 193: 28, # 'С' + 194: 34, # 'Т' + 195: 51, # 'У' + 196: 48, # 'Ф' + 197: 49, # 'Х' + 198: 53, # 'Ц' + 199: 50, # 'Ч' + 200: 54, # 'Ш' + 201: 57, # 'Щ' + 202: 61, # 'Ъ' + 203: 239, # 'Ы' + 204: 67, # 'Ь' + 205: 240, # 'Э' + 206: 60, # 'Ю' + 207: 56, # 'Я' + 208: 1, # 'а' + 209: 18, # 'б' + 210: 9, # 'в' + 211: 20, # 'г' + 212: 11, # 'д' + 213: 3, # 'е' + 214: 23, # 'ж' + 215: 15, # 'з' + 216: 2, # 'и' + 217: 26, # 'й' + 218: 12, # 'к' + 219: 10, # 'л' + 220: 14, # 'м' + 221: 6, # 'н' + 222: 4, # 'о' + 223: 13, # 'п' + 224: 7, # 'р' + 225: 8, # 'с' + 226: 5, # 'т' + 227: 19, # 'у' + 228: 29, # 'ф' + 229: 25, # 'х' + 230: 22, # 'ц' + 231: 21, # 'ч' + 232: 27, # 'ш' + 233: 24, # 'щ' + 234: 17, # 'ъ' + 235: 75, # 'ы' + 236: 52, # 'ь' + 237: 241, # 'э' + 238: 42, # 'ю' + 239: 16, # 'я' + 240: 62, # '№' + 241: 242, # 'ё' + 242: 243, # 'ђ' + 243: 244, # 'ѓ' + 244: 58, # 'є' + 245: 245, # 'ѕ' + 246: 98, # 'і' + 247: 246, # 'ї' + 248: 247, # 'ј' + 249: 248, # 'љ' + 250: 249, # 'њ' + 251: 250, # 'ћ' + 252: 251, # 'ќ' + 253: 91, # '§' + 254: 252, # 'ў' + 255: 253, # 'џ' +} + +ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Bulgarian", + char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) + +WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 206, # 'Ђ' + 129: 207, # 'Ѓ' + 130: 208, # '‚' + 131: 209, # 'ѓ' + 132: 210, # '„' + 133: 211, # '…' + 134: 212, # '†' + 135: 213, # '‡' + 136: 120, # '€' + 137: 214, # '‰' + 138: 215, # 'Љ' + 139: 216, # '‹' + 140: 217, # 'Њ' + 141: 218, # 'Ќ' + 142: 219, # 'Ћ' + 143: 220, # 'Џ' + 144: 221, # 'ђ' + 145: 78, # '‘' + 146: 64, # '’' + 147: 83, # '“' + 148: 121, # '”' + 149: 98, # '•' + 150: 117, # '–' + 151: 105, # '—' + 152: 222, # None + 153: 223, # '™' + 154: 224, # 'љ' + 155: 225, # '›' + 156: 226, # 'њ' + 157: 227, # 'ќ' + 158: 228, # 'ћ' + 159: 229, # 'џ' + 160: 88, # '\xa0' + 161: 230, # 'Ў' + 162: 231, # 'ў' + 163: 232, # 'Ј' + 164: 233, # '¤' + 165: 122, # 'Ґ' + 166: 89, # '¦' + 167: 106, # '§' + 168: 234, # 'Ё' + 169: 235, # '©' + 170: 236, # 'Є' + 171: 237, # '«' + 172: 238, # '¬' + 173: 45, # '\xad' + 174: 239, # '®' + 175: 240, # 'Ї' + 176: 73, # '°' + 177: 80, # '±' + 178: 118, # 'І' + 179: 114, # 'і' + 180: 241, # 'ґ' + 181: 242, # 'µ' + 182: 243, # '¶' + 183: 244, # '·' + 184: 245, # 'ё' + 185: 62, # '№' + 186: 58, # 'є' + 187: 246, # '»' + 188: 247, # 'ј' + 189: 248, # 'Ѕ' + 190: 249, # 'ѕ' + 191: 250, # 'ї' + 192: 31, # 'А' + 193: 32, # 'Б' + 194: 35, # 'В' + 195: 43, # 'Г' + 196: 37, # 'Д' + 197: 44, # 'Е' + 198: 55, # 'Ж' + 199: 47, # 'З' + 200: 40, # 'И' + 201: 59, # 'Й' + 202: 33, # 'К' + 203: 46, # 'Л' + 204: 38, # 'М' + 205: 36, # 'Н' + 206: 41, # 'О' + 207: 30, # 'П' + 208: 39, # 'Р' + 209: 28, # 'С' + 210: 34, # 'Т' + 211: 51, # 'У' + 212: 48, # 'Ф' + 213: 49, # 'Х' + 214: 53, # 'Ц' + 215: 50, # 'Ч' + 216: 54, # 'Ш' + 217: 57, # 'Щ' + 218: 61, # 'Ъ' + 219: 251, # 'Ы' + 220: 67, # 'Ь' + 221: 252, # 'Э' + 222: 60, # 'Ю' + 223: 56, # 'Я' + 224: 1, # 'а' + 225: 18, # 'б' + 226: 9, # 'в' + 227: 20, # 'г' + 228: 11, # 'д' + 229: 3, # 'е' + 230: 23, # 'ж' + 231: 15, # 'з' + 232: 2, # 'и' + 233: 26, # 'й' + 234: 12, # 'к' + 235: 10, # 'л' + 236: 14, # 'м' + 237: 6, # 'н' + 238: 4, # 'о' + 239: 13, # 'п' + 240: 7, # 'р' + 241: 8, # 'с' + 242: 5, # 'т' + 243: 19, # 'у' + 244: 29, # 'ф' + 245: 25, # 'х' + 246: 22, # 'ц' + 247: 21, # 'ч' + 248: 27, # 'ш' + 249: 24, # 'щ' + 250: 17, # 'ъ' + 251: 75, # 'ы' + 252: 52, # 'ь' + 253: 253, # 'э' + 254: 42, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Bulgarian", + char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 000000000..cfb8639e5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4397 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +GREEK_LANG_MODEL = { + 60: { # 'e' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 55: { # 'o' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 58: { # 't' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 1, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 36: { # '·' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 61: { # 'Ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 1, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 1, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 46: { # 'Έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 1, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 54: { # 'Ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 31: { # 'Α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 2, # 'Β' + 43: 2, # 'Γ' + 41: 1, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 51: { # 'Β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 1, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 43: { # 'Γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 1, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 41: { # 'Δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 34: { # 'Ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 0, # 'ώ' + }, + 40: { # 'Η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 52: { # 'Θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 1, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 47: { # 'Ι' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 1, # 'Β' + 43: 1, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 1, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 44: { # 'Κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 1, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 53: { # 'Λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 1, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 38: { # 'Μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 2, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 2, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 49: { # 'Ν' + 60: 2, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 59: { # 'Ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 39: { # 'Ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 1, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 2, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 35: { # 'Π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 1, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 48: { # 'Ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 37: { # 'Σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 2, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 33: { # 'Τ' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 2, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 45: { # 'Υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 2, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 1, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 56: { # 'Φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 1, # 'ώ' + }, + 50: { # 'Χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 1, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 57: { # 'Ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 17: { # 'ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 18: { # 'έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 22: { # 'ή' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 15: { # 'ί' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 1: { # 'α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 3, # 'ζ' + 13: 1, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 29: { # 'β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 20: { # 'γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 21: { # 'δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 3: { # 'ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 32: { # 'ζ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 13: { # 'η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 25: { # 'θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 5: { # 'ι' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 11: { # 'κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 16: { # 'λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 1, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 10: { # 'μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 3, # 'φ' + 23: 0, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 6: { # 'ν' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 30: { # 'ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 1, # 'ώ' + }, + 4: { # 'ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 9: { # 'π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 8: { # 'ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 14: { # 'ς' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 7: { # 'σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 2: { # 'τ' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 12: { # 'υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 28: { # 'φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 1, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 23: { # 'χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 42: { # 'ψ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 24: { # 'ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 1, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 19: { # 'ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 1, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 26: { # 'ύ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 27: { # 'ώ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 1, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 1, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1253_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '€' + 129: 255, # None + 130: 255, # '‚' + 131: 255, # 'ƒ' + 132: 255, # '„' + 133: 255, # '…' + 134: 255, # '†' + 135: 255, # '‡' + 136: 255, # None + 137: 255, # '‰' + 138: 255, # None + 139: 255, # '‹' + 140: 255, # None + 141: 255, # None + 142: 255, # None + 143: 255, # None + 144: 255, # None + 145: 255, # '‘' + 146: 255, # '’' + 147: 255, # '“' + 148: 255, # '”' + 149: 255, # '•' + 150: 255, # '–' + 151: 255, # '—' + 152: 255, # None + 153: 255, # '™' + 154: 255, # None + 155: 255, # '›' + 156: 255, # None + 157: 255, # None + 158: 255, # None + 159: 255, # None + 160: 253, # '\xa0' + 161: 233, # '΅' + 162: 61, # 'Ά' + 163: 253, # '£' + 164: 253, # '¤' + 165: 253, # '¥' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # None + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # '®' + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 253, # 'µ' + 182: 253, # '¶' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel( + charset_name="windows-1253", + language="Greek", + char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) + +ISO_8859_7_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '\x80' + 129: 255, # '\x81' + 130: 255, # '\x82' + 131: 255, # '\x83' + 132: 255, # '\x84' + 133: 255, # '\x85' + 134: 255, # '\x86' + 135: 255, # '\x87' + 136: 255, # '\x88' + 137: 255, # '\x89' + 138: 255, # '\x8a' + 139: 255, # '\x8b' + 140: 255, # '\x8c' + 141: 255, # '\x8d' + 142: 255, # '\x8e' + 143: 255, # '\x8f' + 144: 255, # '\x90' + 145: 255, # '\x91' + 146: 255, # '\x92' + 147: 255, # '\x93' + 148: 255, # '\x94' + 149: 255, # '\x95' + 150: 255, # '\x96' + 151: 255, # '\x97' + 152: 255, # '\x98' + 153: 255, # '\x99' + 154: 255, # '\x9a' + 155: 255, # '\x9b' + 156: 255, # '\x9c' + 157: 255, # '\x9d' + 158: 255, # '\x9e' + 159: 255, # '\x9f' + 160: 253, # '\xa0' + 161: 233, # '‘' + 162: 90, # '’' + 163: 253, # '£' + 164: 253, # '€' + 165: 253, # '₯' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # 'ͺ' + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # None + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 248, # '΅' + 182: 61, # 'Ά' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-7", + language="Greek", + char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 000000000..56d297587 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HEBREW_LANG_MODEL = { + 50: { # 'a' + 50: 0, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 0, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 60: { # 'c' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 61: { # 'd' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 42: { # 'e' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 2, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 53: { # 'i' + 50: 1, # 'a' + 60: 2, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 0, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 56: { # 'l' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 2, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 54: { # 'n' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 49: { # 'o' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 51: { # 'r' + 50: 2, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 43: { # 's' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 2, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 44: { # 't' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 63: { # 'u' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 34: { # '\xa0' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 2, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 55: { # '´' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 48: { # '¼' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 39: { # '½' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 57: { # '¾' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 30: { # 'ְ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 59: { # 'ֱ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 41: { # 'ֲ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 33: { # 'ִ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 37: { # 'ֵ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 1, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 36: { # 'ֶ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 2, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 31: { # 'ַ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 29: { # 'ָ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 35: { # 'ֹ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 62: { # 'ֻ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 28: { # 'ּ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 3, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 3, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 2, # 'ׁ' + 45: 1, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 1, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 38: { # 'ׁ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 45: { # 'ׂ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 9: { # 'א' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 2, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 8: { # 'ב' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 1, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 20: { # 'ג' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 16: { # 'ד' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 3: { # 'ה' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 2: { # 'ו' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 3, # 'ֹ' + 62: 0, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 24: { # 'ז' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 1, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 14: { # 'ח' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 1, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 22: { # 'ט' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 1, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 2, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 1: { # 'י' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 25: { # 'ך' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 15: { # 'כ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 4: { # 'ל' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 11: { # 'ם' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 6: { # 'מ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 23: { # 'ן' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 12: { # 'נ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 19: { # 'ס' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 2, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 13: { # 'ע' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 1, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 26: { # 'ף' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 18: { # 'פ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 27: { # 'ץ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 21: { # 'צ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 1, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 0, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 17: { # 'ק' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 7: { # 'ר' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 10: { # 'ש' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 3, # 'ׁ' + 45: 2, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 5: { # 'ת' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 1, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 32: { # '–' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 52: { # '’' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 47: { # '“' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 46: { # '”' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 58: { # '†' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 2, # '†' + 40: 0, # '…' + }, + 40: { # '…' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 69, # 'A' + 66: 91, # 'B' + 67: 79, # 'C' + 68: 80, # 'D' + 69: 92, # 'E' + 70: 89, # 'F' + 71: 97, # 'G' + 72: 90, # 'H' + 73: 68, # 'I' + 74: 111, # 'J' + 75: 112, # 'K' + 76: 82, # 'L' + 77: 73, # 'M' + 78: 95, # 'N' + 79: 85, # 'O' + 80: 78, # 'P' + 81: 121, # 'Q' + 82: 86, # 'R' + 83: 71, # 'S' + 84: 67, # 'T' + 85: 102, # 'U' + 86: 107, # 'V' + 87: 84, # 'W' + 88: 114, # 'X' + 89: 103, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 50, # 'a' + 98: 74, # 'b' + 99: 60, # 'c' + 100: 61, # 'd' + 101: 42, # 'e' + 102: 76, # 'f' + 103: 70, # 'g' + 104: 64, # 'h' + 105: 53, # 'i' + 106: 105, # 'j' + 107: 93, # 'k' + 108: 56, # 'l' + 109: 65, # 'm' + 110: 54, # 'n' + 111: 49, # 'o' + 112: 66, # 'p' + 113: 110, # 'q' + 114: 51, # 'r' + 115: 43, # 's' + 116: 44, # 't' + 117: 63, # 'u' + 118: 81, # 'v' + 119: 77, # 'w' + 120: 98, # 'x' + 121: 75, # 'y' + 122: 108, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 124, # '€' + 129: 202, # None + 130: 203, # '‚' + 131: 204, # 'ƒ' + 132: 205, # '„' + 133: 40, # '…' + 134: 58, # '†' + 135: 206, # '‡' + 136: 207, # 'ˆ' + 137: 208, # '‰' + 138: 209, # None + 139: 210, # '‹' + 140: 211, # None + 141: 212, # None + 142: 213, # None + 143: 214, # None + 144: 215, # None + 145: 83, # '‘' + 146: 52, # '’' + 147: 47, # '“' + 148: 46, # '”' + 149: 72, # '•' + 150: 32, # '–' + 151: 94, # '—' + 152: 216, # '˜' + 153: 113, # '™' + 154: 217, # None + 155: 109, # '›' + 156: 218, # None + 157: 219, # None + 158: 220, # None + 159: 221, # None + 160: 34, # '\xa0' + 161: 116, # '¡' + 162: 222, # '¢' + 163: 118, # '£' + 164: 100, # '₪' + 165: 223, # '¥' + 166: 224, # '¦' + 167: 117, # '§' + 168: 119, # '¨' + 169: 104, # '©' + 170: 125, # '×' + 171: 225, # '«' + 172: 226, # '¬' + 173: 87, # '\xad' + 174: 99, # '®' + 175: 227, # '¯' + 176: 106, # '°' + 177: 122, # '±' + 178: 123, # '²' + 179: 228, # '³' + 180: 55, # '´' + 181: 229, # 'µ' + 182: 230, # '¶' + 183: 101, # '·' + 184: 231, # '¸' + 185: 232, # '¹' + 186: 120, # '÷' + 187: 233, # '»' + 188: 48, # '¼' + 189: 39, # '½' + 190: 57, # '¾' + 191: 234, # '¿' + 192: 30, # 'ְ' + 193: 59, # 'ֱ' + 194: 41, # 'ֲ' + 195: 88, # 'ֳ' + 196: 33, # 'ִ' + 197: 37, # 'ֵ' + 198: 36, # 'ֶ' + 199: 31, # 'ַ' + 200: 29, # 'ָ' + 201: 35, # 'ֹ' + 202: 235, # None + 203: 62, # 'ֻ' + 204: 28, # 'ּ' + 205: 236, # 'ֽ' + 206: 126, # '־' + 207: 237, # 'ֿ' + 208: 238, # '׀' + 209: 38, # 'ׁ' + 210: 45, # 'ׂ' + 211: 239, # '׃' + 212: 240, # 'װ' + 213: 241, # 'ױ' + 214: 242, # 'ײ' + 215: 243, # '׳' + 216: 127, # '״' + 217: 244, # None + 218: 245, # None + 219: 246, # None + 220: 247, # None + 221: 248, # None + 222: 249, # None + 223: 250, # None + 224: 9, # 'א' + 225: 8, # 'ב' + 226: 20, # 'ג' + 227: 16, # 'ד' + 228: 3, # 'ה' + 229: 2, # 'ו' + 230: 24, # 'ז' + 231: 14, # 'ח' + 232: 22, # 'ט' + 233: 1, # 'י' + 234: 25, # 'ך' + 235: 15, # 'כ' + 236: 4, # 'ל' + 237: 11, # 'ם' + 238: 6, # 'מ' + 239: 23, # 'ן' + 240: 12, # 'נ' + 241: 19, # 'ס' + 242: 13, # 'ע' + 243: 26, # 'ף' + 244: 18, # 'פ' + 245: 27, # 'ץ' + 246: 21, # 'צ' + 247: 17, # 'ק' + 248: 7, # 'ר' + 249: 10, # 'ש' + 250: 5, # 'ת' + 251: 251, # None + 252: 252, # None + 253: 128, # '\u200e' + 254: 96, # '\u200f' + 255: 253, # None +} + +WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel( + charset_name="windows-1255", + language="Hebrew", + char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, + language_model=HEBREW_LANG_MODEL, + typical_positive_ratio=0.984004, + keep_ascii_letters=False, + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 000000000..09a0d326b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HUNGARIAN_LANG_MODEL = { + 28: { # 'A' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 2, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 40: { # 'B' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 3, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 54: { # 'C' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 3, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 45: { # 'D' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 32: { # 'E' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 50: { # 'F' + 28: 1, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 0, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 49: { # 'G' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 38: { # 'H' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 39: { # 'I' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 53: { # 'J' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 36: { # 'K' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 2, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 41: { # 'L' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 34: { # 'M' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 35: { # 'N' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 47: { # 'O' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 46: { # 'P' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 43: { # 'R' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 2, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 2, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 33: { # 'S' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 3, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 37: { # 'T' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 57: { # 'U' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 48: { # 'V' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 55: { # 'Y' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 52: { # 'Z' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 2: { # 'a' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 18: { # 'b' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 26: { # 'c' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 17: { # 'd' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 1: { # 'e' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 2, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 27: { # 'f' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 3, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 12: { # 'g' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 20: { # 'h' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 9: { # 'i' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 1, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 22: { # 'j' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 7: { # 'k' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 3, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 6: { # 'l' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 3, # 'ő' + 56: 1, # 'ű' + }, + 13: { # 'm' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 4: { # 'n' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 1, # 'x' + 16: 3, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 8: { # 'o' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 23: { # 'p' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 10: { # 'r' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 2, # 'ű' + }, + 5: { # 's' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 3: { # 't' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 3, # 'ő' + 56: 2, # 'ű' + }, + 21: { # 'u' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 19: { # 'v' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 62: { # 'x' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 16: { # 'y' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 11: { # 'z' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 51: { # 'Á' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 44: { # 'É' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 61: { # 'Í' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 58: { # 'Ó' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 2, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 59: { # 'Ö' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 60: { # 'Ú' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 2, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 63: { # 'Ü' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 14: { # 'á' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 15: { # 'é' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 30: { # 'í' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 25: { # 'ó' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 24: { # 'ö' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 31: { # 'ú' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 3, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 29: { # 'ü' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 42: { # 'ő' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 56: { # 'ű' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 72, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 161, # '€' + 129: 162, # None + 130: 163, # '‚' + 131: 164, # None + 132: 165, # '„' + 133: 166, # '…' + 134: 167, # '†' + 135: 168, # '‡' + 136: 169, # None + 137: 170, # '‰' + 138: 171, # 'Š' + 139: 172, # '‹' + 140: 173, # 'Ś' + 141: 174, # 'Ť' + 142: 175, # 'Ž' + 143: 176, # 'Ź' + 144: 177, # None + 145: 178, # '‘' + 146: 179, # '’' + 147: 180, # '“' + 148: 78, # '”' + 149: 181, # '•' + 150: 69, # '–' + 151: 182, # '—' + 152: 183, # None + 153: 184, # '™' + 154: 185, # 'š' + 155: 186, # '›' + 156: 187, # 'ś' + 157: 188, # 'ť' + 158: 189, # 'ž' + 159: 190, # 'ź' + 160: 191, # '\xa0' + 161: 192, # 'ˇ' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ą' + 166: 197, # '¦' + 167: 76, # '§' + 168: 198, # '¨' + 169: 199, # '©' + 170: 200, # 'Ş' + 171: 201, # '«' + 172: 202, # '¬' + 173: 203, # '\xad' + 174: 204, # '®' + 175: 205, # 'Ż' + 176: 81, # '°' + 177: 206, # '±' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'µ' + 182: 211, # '¶' + 183: 212, # '·' + 184: 213, # '¸' + 185: 214, # 'ą' + 186: 215, # 'ş' + 187: 216, # '»' + 188: 217, # 'Ľ' + 189: 218, # '˝' + 190: 219, # 'ľ' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 83, # 'Â' + 195: 222, # 'Ă' + 196: 80, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 70, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 84, # 'ŕ' + 225: 14, # 'á' + 226: 75, # 'â' + 227: 242, # 'ă' + 228: 71, # 'ä' + 229: 82, # 'ĺ' + 230: 243, # 'ć' + 231: 73, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 85, # 'ę' + 235: 79, # 'ë' + 236: 86, # 'ě' + 237: 30, # 'í' + 238: 77, # 'î' + 239: 87, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 74, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1250", + language="Hungarian", + char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) + +ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 71, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 159, # '\x80' + 129: 160, # '\x81' + 130: 161, # '\x82' + 131: 162, # '\x83' + 132: 163, # '\x84' + 133: 164, # '\x85' + 134: 165, # '\x86' + 135: 166, # '\x87' + 136: 167, # '\x88' + 137: 168, # '\x89' + 138: 169, # '\x8a' + 139: 170, # '\x8b' + 140: 171, # '\x8c' + 141: 172, # '\x8d' + 142: 173, # '\x8e' + 143: 174, # '\x8f' + 144: 175, # '\x90' + 145: 176, # '\x91' + 146: 177, # '\x92' + 147: 178, # '\x93' + 148: 179, # '\x94' + 149: 180, # '\x95' + 150: 181, # '\x96' + 151: 182, # '\x97' + 152: 183, # '\x98' + 153: 184, # '\x99' + 154: 185, # '\x9a' + 155: 186, # '\x9b' + 156: 187, # '\x9c' + 157: 188, # '\x9d' + 158: 189, # '\x9e' + 159: 190, # '\x9f' + 160: 191, # '\xa0' + 161: 192, # 'Ą' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ľ' + 166: 197, # 'Ś' + 167: 75, # '§' + 168: 198, # '¨' + 169: 199, # 'Š' + 170: 200, # 'Ş' + 171: 201, # 'Ť' + 172: 202, # 'Ź' + 173: 203, # '\xad' + 174: 204, # 'Ž' + 175: 205, # 'Ż' + 176: 79, # '°' + 177: 206, # 'ą' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'ľ' + 182: 211, # 'ś' + 183: 212, # 'ˇ' + 184: 213, # '¸' + 185: 214, # 'š' + 186: 215, # 'ş' + 187: 216, # 'ť' + 188: 217, # 'ź' + 189: 218, # '˝' + 190: 219, # 'ž' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 81, # 'Â' + 195: 222, # 'Ă' + 196: 78, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 69, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 82, # 'ŕ' + 225: 14, # 'á' + 226: 74, # 'â' + 227: 242, # 'ă' + 228: 70, # 'ä' + 229: 80, # 'ĺ' + 230: 243, # 'ć' + 231: 72, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 83, # 'ę' + 235: 77, # 'ë' + 236: 84, # 'ě' + 237: 30, # 'í' + 238: 76, # 'î' + 239: 85, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 73, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-2", + language="Hungarian", + char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 000000000..39a538894 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5725 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +RUSSIAN_LANG_MODEL = { + 37: { # 'А' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 44: { # 'Б' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 33: { # 'В' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 46: { # 'Г' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 41: { # 'Д' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 3, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 48: { # 'Е' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 56: { # 'Ж' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 0, # 'я' + }, + 51: { # 'З' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 42: { # 'И' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 60: { # 'Й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 36: { # 'К' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 49: { # 'Л' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 38: { # 'М' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 31: { # 'Н' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 34: { # 'О' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 2, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 2, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 35: { # 'П' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 1, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 45: { # 'Р' + 37: 2, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 32: { # 'С' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 2, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 40: { # 'Т' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 52: { # 'У' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 53: { # 'Ф' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 55: { # 'Х' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 58: { # 'Ц' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 50: { # 'Ч' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 57: { # 'Ш' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 63: { # 'Щ' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 62: { # 'Ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 61: { # 'Ь' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 47: { # 'Э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 59: { # 'Ю' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 43: { # 'Я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 3: { # 'а' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 21: { # 'б' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 10: { # 'в' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 19: { # 'г' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 13: { # 'д' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 2: { # 'е' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 24: { # 'ж' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 20: { # 'з' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 4: { # 'и' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 23: { # 'й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 11: { # 'к' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 8: { # 'л' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 12: { # 'м' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 5: { # 'н' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 1: { # 'о' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 15: { # 'п' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 9: { # 'р' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 7: { # 'с' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 6: { # 'т' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 14: { # 'у' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 2, # 'я' + }, + 39: { # 'ф' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 26: { # 'х' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 28: { # 'ц' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 22: { # 'ч' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 25: { # 'ш' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 29: { # 'щ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 2, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 54: { # 'ъ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 18: { # 'ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 1, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 17: { # 'ь' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 0, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 30: { # 'э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 27: { # 'ю' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 16: { # 'я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 2, # 'я' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +IBM866_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 3, # 'а' + 161: 21, # 'б' + 162: 10, # 'в' + 163: 19, # 'г' + 164: 13, # 'д' + 165: 2, # 'е' + 166: 24, # 'ж' + 167: 20, # 'з' + 168: 4, # 'и' + 169: 23, # 'й' + 170: 11, # 'к' + 171: 8, # 'л' + 172: 12, # 'м' + 173: 5, # 'н' + 174: 1, # 'о' + 175: 15, # 'п' + 176: 191, # '░' + 177: 192, # '▒' + 178: 193, # '▓' + 179: 194, # '│' + 180: 195, # '┤' + 181: 196, # '╡' + 182: 197, # '╢' + 183: 198, # '╖' + 184: 199, # '╕' + 185: 200, # '╣' + 186: 201, # '║' + 187: 202, # '╗' + 188: 203, # '╝' + 189: 204, # '╜' + 190: 205, # '╛' + 191: 206, # '┐' + 192: 207, # '└' + 193: 208, # '┴' + 194: 209, # '┬' + 195: 210, # '├' + 196: 211, # '─' + 197: 212, # '┼' + 198: 213, # '╞' + 199: 214, # '╟' + 200: 215, # '╚' + 201: 216, # '╔' + 202: 217, # '╩' + 203: 218, # '╦' + 204: 219, # '╠' + 205: 220, # '═' + 206: 221, # '╬' + 207: 222, # '╧' + 208: 223, # '╨' + 209: 224, # '╤' + 210: 225, # '╥' + 211: 226, # '╙' + 212: 227, # '╘' + 213: 228, # '╒' + 214: 229, # '╓' + 215: 230, # '╫' + 216: 231, # '╪' + 217: 232, # '┘' + 218: 233, # '┌' + 219: 234, # '█' + 220: 235, # '▄' + 221: 236, # '▌' + 222: 237, # '▐' + 223: 238, # '▀' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # 'Ё' + 241: 68, # 'ё' + 242: 240, # 'Є' + 243: 241, # 'є' + 244: 242, # 'Ї' + 245: 243, # 'ї' + 246: 244, # 'Ў' + 247: 245, # 'ў' + 248: 246, # '°' + 249: 247, # '∙' + 250: 248, # '·' + 251: 249, # '√' + 252: 250, # '№' + 253: 251, # '¤' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM866_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM866", + language="Russian", + char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'Ђ' + 129: 192, # 'Ѓ' + 130: 193, # '‚' + 131: 194, # 'ѓ' + 132: 195, # '„' + 133: 196, # '…' + 134: 197, # '†' + 135: 198, # '‡' + 136: 199, # '€' + 137: 200, # '‰' + 138: 201, # 'Љ' + 139: 202, # '‹' + 140: 203, # 'Њ' + 141: 204, # 'Ќ' + 142: 205, # 'Ћ' + 143: 206, # 'Џ' + 144: 207, # 'ђ' + 145: 208, # '‘' + 146: 209, # '’' + 147: 210, # '“' + 148: 211, # '”' + 149: 212, # '•' + 150: 213, # '–' + 151: 214, # '—' + 152: 215, # None + 153: 216, # '™' + 154: 217, # 'љ' + 155: 218, # '›' + 156: 219, # 'њ' + 157: 220, # 'ќ' + 158: 221, # 'ћ' + 159: 222, # 'џ' + 160: 223, # '\xa0' + 161: 224, # 'Ў' + 162: 225, # 'ў' + 163: 226, # 'Ј' + 164: 227, # '¤' + 165: 228, # 'Ґ' + 166: 229, # '¦' + 167: 230, # '§' + 168: 231, # 'Ё' + 169: 232, # '©' + 170: 233, # 'Є' + 171: 234, # '«' + 172: 235, # '¬' + 173: 236, # '\xad' + 174: 237, # '®' + 175: 238, # 'Ї' + 176: 239, # '°' + 177: 240, # '±' + 178: 241, # 'І' + 179: 242, # 'і' + 180: 243, # 'ґ' + 181: 244, # 'µ' + 182: 245, # '¶' + 183: 246, # '·' + 184: 68, # 'ё' + 185: 247, # '№' + 186: 248, # 'є' + 187: 249, # '»' + 188: 250, # 'ј' + 189: 251, # 'Ѕ' + 190: 252, # 'ѕ' + 191: 253, # 'ї' + 192: 37, # 'А' + 193: 44, # 'Б' + 194: 33, # 'В' + 195: 46, # 'Г' + 196: 41, # 'Д' + 197: 48, # 'Е' + 198: 56, # 'Ж' + 199: 51, # 'З' + 200: 42, # 'И' + 201: 60, # 'Й' + 202: 36, # 'К' + 203: 49, # 'Л' + 204: 38, # 'М' + 205: 31, # 'Н' + 206: 34, # 'О' + 207: 35, # 'П' + 208: 45, # 'Р' + 209: 32, # 'С' + 210: 40, # 'Т' + 211: 52, # 'У' + 212: 53, # 'Ф' + 213: 55, # 'Х' + 214: 58, # 'Ц' + 215: 50, # 'Ч' + 216: 57, # 'Ш' + 217: 63, # 'Щ' + 218: 70, # 'Ъ' + 219: 62, # 'Ы' + 220: 61, # 'Ь' + 221: 47, # 'Э' + 222: 59, # 'Ю' + 223: 43, # 'Я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Russian", + char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +IBM855_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'ђ' + 129: 192, # 'Ђ' + 130: 193, # 'ѓ' + 131: 194, # 'Ѓ' + 132: 68, # 'ё' + 133: 195, # 'Ё' + 134: 196, # 'є' + 135: 197, # 'Є' + 136: 198, # 'ѕ' + 137: 199, # 'Ѕ' + 138: 200, # 'і' + 139: 201, # 'І' + 140: 202, # 'ї' + 141: 203, # 'Ї' + 142: 204, # 'ј' + 143: 205, # 'Ј' + 144: 206, # 'љ' + 145: 207, # 'Љ' + 146: 208, # 'њ' + 147: 209, # 'Њ' + 148: 210, # 'ћ' + 149: 211, # 'Ћ' + 150: 212, # 'ќ' + 151: 213, # 'Ќ' + 152: 214, # 'ў' + 153: 215, # 'Ў' + 154: 216, # 'џ' + 155: 217, # 'Џ' + 156: 27, # 'ю' + 157: 59, # 'Ю' + 158: 54, # 'ъ' + 159: 70, # 'Ъ' + 160: 3, # 'а' + 161: 37, # 'А' + 162: 21, # 'б' + 163: 44, # 'Б' + 164: 28, # 'ц' + 165: 58, # 'Ц' + 166: 13, # 'д' + 167: 41, # 'Д' + 168: 2, # 'е' + 169: 48, # 'Е' + 170: 39, # 'ф' + 171: 53, # 'Ф' + 172: 19, # 'г' + 173: 46, # 'Г' + 174: 218, # '«' + 175: 219, # '»' + 176: 220, # '░' + 177: 221, # '▒' + 178: 222, # '▓' + 179: 223, # '│' + 180: 224, # '┤' + 181: 26, # 'х' + 182: 55, # 'Х' + 183: 4, # 'и' + 184: 42, # 'И' + 185: 225, # '╣' + 186: 226, # '║' + 187: 227, # '╗' + 188: 228, # '╝' + 189: 23, # 'й' + 190: 60, # 'Й' + 191: 229, # '┐' + 192: 230, # '└' + 193: 231, # '┴' + 194: 232, # '┬' + 195: 233, # '├' + 196: 234, # '─' + 197: 235, # '┼' + 198: 11, # 'к' + 199: 36, # 'К' + 200: 236, # '╚' + 201: 237, # '╔' + 202: 238, # '╩' + 203: 239, # '╦' + 204: 240, # '╠' + 205: 241, # '═' + 206: 242, # '╬' + 207: 243, # '¤' + 208: 8, # 'л' + 209: 49, # 'Л' + 210: 12, # 'м' + 211: 38, # 'М' + 212: 5, # 'н' + 213: 31, # 'Н' + 214: 1, # 'о' + 215: 34, # 'О' + 216: 15, # 'п' + 217: 244, # '┘' + 218: 245, # '┌' + 219: 246, # '█' + 220: 247, # '▄' + 221: 35, # 'П' + 222: 16, # 'я' + 223: 248, # '▀' + 224: 43, # 'Я' + 225: 9, # 'р' + 226: 45, # 'Р' + 227: 7, # 'с' + 228: 32, # 'С' + 229: 6, # 'т' + 230: 40, # 'Т' + 231: 14, # 'у' + 232: 52, # 'У' + 233: 24, # 'ж' + 234: 56, # 'Ж' + 235: 10, # 'в' + 236: 33, # 'В' + 237: 17, # 'ь' + 238: 61, # 'Ь' + 239: 249, # '№' + 240: 250, # '\xad' + 241: 18, # 'ы' + 242: 62, # 'Ы' + 243: 20, # 'з' + 244: 51, # 'З' + 245: 25, # 'ш' + 246: 57, # 'Ш' + 247: 30, # 'э' + 248: 47, # 'Э' + 249: 29, # 'щ' + 250: 63, # 'Щ' + 251: 22, # 'ч' + 252: 50, # 'Ч' + 253: 251, # '§' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM855_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM855", + language="Russian", + char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +KOI8_R_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '─' + 129: 192, # '│' + 130: 193, # '┌' + 131: 194, # '┐' + 132: 195, # '└' + 133: 196, # '┘' + 134: 197, # '├' + 135: 198, # '┤' + 136: 199, # '┬' + 137: 200, # '┴' + 138: 201, # '┼' + 139: 202, # '▀' + 140: 203, # '▄' + 141: 204, # '█' + 142: 205, # '▌' + 143: 206, # '▐' + 144: 207, # '░' + 145: 208, # '▒' + 146: 209, # '▓' + 147: 210, # '⌠' + 148: 211, # '■' + 149: 212, # '∙' + 150: 213, # '√' + 151: 214, # '≈' + 152: 215, # '≤' + 153: 216, # '≥' + 154: 217, # '\xa0' + 155: 218, # '⌡' + 156: 219, # '°' + 157: 220, # '²' + 158: 221, # '·' + 159: 222, # '÷' + 160: 223, # '═' + 161: 224, # '║' + 162: 225, # '╒' + 163: 68, # 'ё' + 164: 226, # '╓' + 165: 227, # '╔' + 166: 228, # '╕' + 167: 229, # '╖' + 168: 230, # '╗' + 169: 231, # '╘' + 170: 232, # '╙' + 171: 233, # '╚' + 172: 234, # '╛' + 173: 235, # '╜' + 174: 236, # '╝' + 175: 237, # '╞' + 176: 238, # '╟' + 177: 239, # '╠' + 178: 240, # '╡' + 179: 241, # 'Ё' + 180: 242, # '╢' + 181: 243, # '╣' + 182: 244, # '╤' + 183: 245, # '╥' + 184: 246, # '╦' + 185: 247, # '╧' + 186: 248, # '╨' + 187: 249, # '╩' + 188: 250, # '╪' + 189: 251, # '╫' + 190: 252, # '╬' + 191: 253, # '©' + 192: 27, # 'ю' + 193: 3, # 'а' + 194: 21, # 'б' + 195: 28, # 'ц' + 196: 13, # 'д' + 197: 2, # 'е' + 198: 39, # 'ф' + 199: 19, # 'г' + 200: 26, # 'х' + 201: 4, # 'и' + 202: 23, # 'й' + 203: 11, # 'к' + 204: 8, # 'л' + 205: 12, # 'м' + 206: 5, # 'н' + 207: 1, # 'о' + 208: 15, # 'п' + 209: 16, # 'я' + 210: 9, # 'р' + 211: 7, # 'с' + 212: 6, # 'т' + 213: 14, # 'у' + 214: 24, # 'ж' + 215: 10, # 'в' + 216: 17, # 'ь' + 217: 18, # 'ы' + 218: 20, # 'з' + 219: 25, # 'ш' + 220: 30, # 'э' + 221: 29, # 'щ' + 222: 22, # 'ч' + 223: 54, # 'ъ' + 224: 59, # 'Ю' + 225: 37, # 'А' + 226: 44, # 'Б' + 227: 58, # 'Ц' + 228: 41, # 'Д' + 229: 48, # 'Е' + 230: 53, # 'Ф' + 231: 46, # 'Г' + 232: 55, # 'Х' + 233: 42, # 'И' + 234: 60, # 'Й' + 235: 36, # 'К' + 236: 49, # 'Л' + 237: 38, # 'М' + 238: 31, # 'Н' + 239: 34, # 'О' + 240: 35, # 'П' + 241: 43, # 'Я' + 242: 45, # 'Р' + 243: 32, # 'С' + 244: 40, # 'Т' + 245: 52, # 'У' + 246: 56, # 'Ж' + 247: 33, # 'В' + 248: 61, # 'Ь' + 249: 62, # 'Ы' + 250: 51, # 'З' + 251: 57, # 'Ш' + 252: 47, # 'Э' + 253: 63, # 'Щ' + 254: 50, # 'Ч' + 255: 70, # 'Ъ' +} + +KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="KOI8-R", + language="Russian", + char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 191, # '†' + 161: 192, # '°' + 162: 193, # 'Ґ' + 163: 194, # '£' + 164: 195, # '§' + 165: 196, # '•' + 166: 197, # '¶' + 167: 198, # 'І' + 168: 199, # '®' + 169: 200, # '©' + 170: 201, # '™' + 171: 202, # 'Ђ' + 172: 203, # 'ђ' + 173: 204, # '≠' + 174: 205, # 'Ѓ' + 175: 206, # 'ѓ' + 176: 207, # '∞' + 177: 208, # '±' + 178: 209, # '≤' + 179: 210, # '≥' + 180: 211, # 'і' + 181: 212, # 'µ' + 182: 213, # 'ґ' + 183: 214, # 'Ј' + 184: 215, # 'Є' + 185: 216, # 'є' + 186: 217, # 'Ї' + 187: 218, # 'ї' + 188: 219, # 'Љ' + 189: 220, # 'љ' + 190: 221, # 'Њ' + 191: 222, # 'њ' + 192: 223, # 'ј' + 193: 224, # 'Ѕ' + 194: 225, # '¬' + 195: 226, # '√' + 196: 227, # 'ƒ' + 197: 228, # '≈' + 198: 229, # '∆' + 199: 230, # '«' + 200: 231, # '»' + 201: 232, # '…' + 202: 233, # '\xa0' + 203: 234, # 'Ћ' + 204: 235, # 'ћ' + 205: 236, # 'Ќ' + 206: 237, # 'ќ' + 207: 238, # 'ѕ' + 208: 239, # '–' + 209: 240, # '—' + 210: 241, # '“' + 211: 242, # '”' + 212: 243, # '‘' + 213: 244, # '’' + 214: 245, # '÷' + 215: 246, # '„' + 216: 247, # 'Ў' + 217: 248, # 'ў' + 218: 249, # 'Џ' + 219: 250, # 'џ' + 220: 251, # '№' + 221: 252, # 'Ё' + 222: 68, # 'ё' + 223: 16, # 'я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 255, # '€' +} + +MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="MacCyrillic", + language="Russian", + char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '\x80' + 129: 192, # '\x81' + 130: 193, # '\x82' + 131: 194, # '\x83' + 132: 195, # '\x84' + 133: 196, # '\x85' + 134: 197, # '\x86' + 135: 198, # '\x87' + 136: 199, # '\x88' + 137: 200, # '\x89' + 138: 201, # '\x8a' + 139: 202, # '\x8b' + 140: 203, # '\x8c' + 141: 204, # '\x8d' + 142: 205, # '\x8e' + 143: 206, # '\x8f' + 144: 207, # '\x90' + 145: 208, # '\x91' + 146: 209, # '\x92' + 147: 210, # '\x93' + 148: 211, # '\x94' + 149: 212, # '\x95' + 150: 213, # '\x96' + 151: 214, # '\x97' + 152: 215, # '\x98' + 153: 216, # '\x99' + 154: 217, # '\x9a' + 155: 218, # '\x9b' + 156: 219, # '\x9c' + 157: 220, # '\x9d' + 158: 221, # '\x9e' + 159: 222, # '\x9f' + 160: 223, # '\xa0' + 161: 224, # 'Ё' + 162: 225, # 'Ђ' + 163: 226, # 'Ѓ' + 164: 227, # 'Є' + 165: 228, # 'Ѕ' + 166: 229, # 'І' + 167: 230, # 'Ї' + 168: 231, # 'Ј' + 169: 232, # 'Љ' + 170: 233, # 'Њ' + 171: 234, # 'Ћ' + 172: 235, # 'Ќ' + 173: 236, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 37, # 'А' + 177: 44, # 'Б' + 178: 33, # 'В' + 179: 46, # 'Г' + 180: 41, # 'Д' + 181: 48, # 'Е' + 182: 56, # 'Ж' + 183: 51, # 'З' + 184: 42, # 'И' + 185: 60, # 'Й' + 186: 36, # 'К' + 187: 49, # 'Л' + 188: 38, # 'М' + 189: 31, # 'Н' + 190: 34, # 'О' + 191: 35, # 'П' + 192: 45, # 'Р' + 193: 32, # 'С' + 194: 40, # 'Т' + 195: 52, # 'У' + 196: 53, # 'Ф' + 197: 55, # 'Х' + 198: 58, # 'Ц' + 199: 50, # 'Ч' + 200: 57, # 'Ш' + 201: 63, # 'Щ' + 202: 70, # 'Ъ' + 203: 62, # 'Ы' + 204: 61, # 'Ь' + 205: 47, # 'Э' + 206: 59, # 'Ю' + 207: 43, # 'Я' + 208: 3, # 'а' + 209: 21, # 'б' + 210: 10, # 'в' + 211: 19, # 'г' + 212: 13, # 'д' + 213: 2, # 'е' + 214: 24, # 'ж' + 215: 20, # 'з' + 216: 4, # 'и' + 217: 23, # 'й' + 218: 11, # 'к' + 219: 8, # 'л' + 220: 12, # 'м' + 221: 5, # 'н' + 222: 1, # 'о' + 223: 15, # 'п' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # '№' + 241: 68, # 'ё' + 242: 240, # 'ђ' + 243: 241, # 'ѓ' + 244: 242, # 'є' + 245: 243, # 'ѕ' + 246: 244, # 'і' + 247: 245, # 'ї' + 248: 246, # 'ј' + 249: 247, # 'љ' + 250: 248, # 'њ' + 251: 249, # 'ћ' + 252: 250, # 'ќ' + 253: 251, # '§' + 254: 252, # 'ў' + 255: 255, # 'џ' +} + +ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Russian", + char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 000000000..489cad930 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +THAI_LANG_MODEL = { + 5: { # 'ก' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 3, # 'ฎ' + 57: 2, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 1, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 30: { # 'ข' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 2, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 24: { # 'ค' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 3, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 8: { # 'ง' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 1, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 2, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 3, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 26: { # 'จ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 52: { # 'ฉ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 34: { # 'ช' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 1, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 51: { # 'ซ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 47: { # 'ญ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 58: { # 'ฎ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 57: { # 'ฏ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 49: { # 'ฐ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 53: { # 'ฑ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 55: { # 'ฒ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 43: { # 'ณ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 3, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 3, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 20: { # 'ด' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 2, # '็' + 6: 1, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 19: { # 'ต' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 2, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 44: { # 'ถ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 14: { # 'ท' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 3, # 'ศ' + 46: 1, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 48: { # 'ธ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 2, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 3: { # 'น' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 1, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 3, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 3, # 'โ' + 29: 3, # 'ใ' + 33: 3, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 17: { # 'บ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 25: { # 'ป' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 1, # 'ฎ' + 57: 3, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 1, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 2, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 39: { # 'ผ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 0, # 'ุ' + 35: 3, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 62: { # 'ฝ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 2, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 31: { # 'พ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 3, # 'ื' + 32: 1, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 0, # '่' + 7: 1, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 54: { # 'ฟ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 45: { # 'ภ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 9: { # 'ม' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 2, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 16: { # 'ย' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 2: { # 'ร' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 3, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 3, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 3, # 'เ' + 28: 3, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 61: { # 'ฤ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 2, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 15: { # 'ล' + 5: 2, # 'ก' + 30: 3, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 2, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 12: { # 'ว' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 42: { # 'ศ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 3, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 46: { # 'ษ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 2, # 'ฎ' + 57: 1, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 18: { # 'ส' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 3, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 21: { # 'ห' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 4: { # 'อ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 63: { # 'ฯ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 22: { # 'ะ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 10: { # 'ั' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 3, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 1: { # 'า' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 1, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 2, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 36: { # 'ำ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 23: { # 'ิ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 3, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 13: { # 'ี' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 40: { # 'ึ' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 27: { # 'ื' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 32: { # 'ุ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 1, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 35: { # 'ู' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 11: { # 'เ' + 5: 3, # 'ก' + 30: 3, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 3, # 'ฉ' + 34: 3, # 'ช' + 51: 2, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 3, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 28: { # 'แ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 3, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 41: { # 'โ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 29: { # 'ใ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 33: { # 'ไ' + 5: 1, # 'ก' + 30: 2, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 50: { # 'ๆ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 37: { # '็' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 6: { # '่' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 7: { # '้' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 38: { # '์' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 56: { # '๑' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 1, # '๕' + }, + 59: { # '๒' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 1, # '๑' + 59: 1, # '๒' + 60: 3, # '๕' + }, + 60: { # '๕' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 0, # '๕' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +TIS_620_THAI_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 182, # 'A' + 66: 106, # 'B' + 67: 107, # 'C' + 68: 100, # 'D' + 69: 183, # 'E' + 70: 184, # 'F' + 71: 185, # 'G' + 72: 101, # 'H' + 73: 94, # 'I' + 74: 186, # 'J' + 75: 187, # 'K' + 76: 108, # 'L' + 77: 109, # 'M' + 78: 110, # 'N' + 79: 111, # 'O' + 80: 188, # 'P' + 81: 189, # 'Q' + 82: 190, # 'R' + 83: 89, # 'S' + 84: 95, # 'T' + 85: 112, # 'U' + 86: 113, # 'V' + 87: 191, # 'W' + 88: 192, # 'X' + 89: 193, # 'Y' + 90: 194, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 64, # 'a' + 98: 72, # 'b' + 99: 73, # 'c' + 100: 114, # 'd' + 101: 74, # 'e' + 102: 115, # 'f' + 103: 116, # 'g' + 104: 102, # 'h' + 105: 81, # 'i' + 106: 201, # 'j' + 107: 117, # 'k' + 108: 90, # 'l' + 109: 103, # 'm' + 110: 78, # 'n' + 111: 82, # 'o' + 112: 96, # 'p' + 113: 202, # 'q' + 114: 91, # 'r' + 115: 79, # 's' + 116: 84, # 't' + 117: 104, # 'u' + 118: 105, # 'v' + 119: 97, # 'w' + 120: 98, # 'x' + 121: 92, # 'y' + 122: 203, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 209, # '\x80' + 129: 210, # '\x81' + 130: 211, # '\x82' + 131: 212, # '\x83' + 132: 213, # '\x84' + 133: 88, # '\x85' + 134: 214, # '\x86' + 135: 215, # '\x87' + 136: 216, # '\x88' + 137: 217, # '\x89' + 138: 218, # '\x8a' + 139: 219, # '\x8b' + 140: 220, # '\x8c' + 141: 118, # '\x8d' + 142: 221, # '\x8e' + 143: 222, # '\x8f' + 144: 223, # '\x90' + 145: 224, # '\x91' + 146: 99, # '\x92' + 147: 85, # '\x93' + 148: 83, # '\x94' + 149: 225, # '\x95' + 150: 226, # '\x96' + 151: 227, # '\x97' + 152: 228, # '\x98' + 153: 229, # '\x99' + 154: 230, # '\x9a' + 155: 231, # '\x9b' + 156: 232, # '\x9c' + 157: 233, # '\x9d' + 158: 234, # '\x9e' + 159: 235, # '\x9f' + 160: 236, # None + 161: 5, # 'ก' + 162: 30, # 'ข' + 163: 237, # 'ฃ' + 164: 24, # 'ค' + 165: 238, # 'ฅ' + 166: 75, # 'ฆ' + 167: 8, # 'ง' + 168: 26, # 'จ' + 169: 52, # 'ฉ' + 170: 34, # 'ช' + 171: 51, # 'ซ' + 172: 119, # 'ฌ' + 173: 47, # 'ญ' + 174: 58, # 'ฎ' + 175: 57, # 'ฏ' + 176: 49, # 'ฐ' + 177: 53, # 'ฑ' + 178: 55, # 'ฒ' + 179: 43, # 'ณ' + 180: 20, # 'ด' + 181: 19, # 'ต' + 182: 44, # 'ถ' + 183: 14, # 'ท' + 184: 48, # 'ธ' + 185: 3, # 'น' + 186: 17, # 'บ' + 187: 25, # 'ป' + 188: 39, # 'ผ' + 189: 62, # 'ฝ' + 190: 31, # 'พ' + 191: 54, # 'ฟ' + 192: 45, # 'ภ' + 193: 9, # 'ม' + 194: 16, # 'ย' + 195: 2, # 'ร' + 196: 61, # 'ฤ' + 197: 15, # 'ล' + 198: 239, # 'ฦ' + 199: 12, # 'ว' + 200: 42, # 'ศ' + 201: 46, # 'ษ' + 202: 18, # 'ส' + 203: 21, # 'ห' + 204: 76, # 'ฬ' + 205: 4, # 'อ' + 206: 66, # 'ฮ' + 207: 63, # 'ฯ' + 208: 22, # 'ะ' + 209: 10, # 'ั' + 210: 1, # 'า' + 211: 36, # 'ำ' + 212: 23, # 'ิ' + 213: 13, # 'ี' + 214: 40, # 'ึ' + 215: 27, # 'ื' + 216: 32, # 'ุ' + 217: 35, # 'ู' + 218: 86, # 'ฺ' + 219: 240, # None + 220: 241, # None + 221: 242, # None + 222: 243, # None + 223: 244, # '฿' + 224: 11, # 'เ' + 225: 28, # 'แ' + 226: 41, # 'โ' + 227: 29, # 'ใ' + 228: 33, # 'ไ' + 229: 245, # 'ๅ' + 230: 50, # 'ๆ' + 231: 37, # '็' + 232: 6, # '่' + 233: 7, # '้' + 234: 67, # '๊' + 235: 77, # '๋' + 236: 38, # '์' + 237: 93, # 'ํ' + 238: 246, # '๎' + 239: 247, # '๏' + 240: 68, # '๐' + 241: 56, # '๑' + 242: 59, # '๒' + 243: 65, # '๓' + 244: 69, # '๔' + 245: 60, # '๕' + 246: 70, # '๖' + 247: 80, # '๗' + 248: 71, # '๘' + 249: 87, # '๙' + 250: 248, # '๚' + 251: 249, # '๛' + 252: 250, # None + 253: 251, # None + 254: 252, # None + 255: 253, # None +} + +TIS_620_THAI_MODEL = SingleByteCharSetModel( + charset_name="TIS-620", + language="Thai", + char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, + language_model=THAI_LANG_MODEL, + typical_positive_ratio=0.926386, + keep_ascii_letters=False, + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 000000000..291857c25 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +TURKISH_LANG_MODEL = { + 23: { # 'A' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 37: { # 'B' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 47: { # 'C' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 39: { # 'D' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 29: { # 'E' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 52: { # 'F' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 36: { # 'G' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 45: { # 'H' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 2, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 2, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 53: { # 'I' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 60: { # 'J' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 16: { # 'K' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 49: { # 'L' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 2, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 20: { # 'M' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 46: { # 'N' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 42: { # 'O' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 48: { # 'P' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 44: { # 'R' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 35: { # 'S' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 31: { # 'T' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 51: { # 'U' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 38: { # 'V' + 23: 1, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 62: { # 'W' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 43: { # 'Y' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 56: { # 'Z' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 1: { # 'a' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 21: { # 'b' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 28: { # 'c' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 3, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 1, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 12: { # 'd' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 2: { # 'e' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 18: { # 'f' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 1, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 27: { # 'g' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 25: { # 'h' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 3: { # 'i' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 24: { # 'j' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 10: { # 'k' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 5: { # 'l' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 13: { # 'm' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 4: { # 'n' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 15: { # 'o' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 2, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 2, # 'ş' + }, + 26: { # 'p' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 7: { # 'r' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 8: { # 's' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 9: { # 't' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 14: { # 'u' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 32: { # 'v' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 57: { # 'w' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 1, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 58: { # 'x' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 11: { # 'y' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 22: { # 'z' + 23: 2, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 2, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 3, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 2, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 63: { # '·' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 54: { # 'Ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 50: { # 'Ö' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 55: { # 'Ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 59: { # 'â' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 33: { # 'ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 61: { # 'î' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 34: { # 'ö' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 3, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 17: { # 'ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 30: { # 'ğ' + 23: 0, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 41: { # 'İ' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 6: { # 'ı' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 40: { # 'Ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 2, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 3, # 'f' + 27: 0, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 1, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 19: { # 'ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_9_TURKISH_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 255, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 255, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 255, # ' ' + 33: 255, # '!' + 34: 255, # '"' + 35: 255, # '#' + 36: 255, # '$' + 37: 255, # '%' + 38: 255, # '&' + 39: 255, # "'" + 40: 255, # '(' + 41: 255, # ')' + 42: 255, # '*' + 43: 255, # '+' + 44: 255, # ',' + 45: 255, # '-' + 46: 255, # '.' + 47: 255, # '/' + 48: 255, # '0' + 49: 255, # '1' + 50: 255, # '2' + 51: 255, # '3' + 52: 255, # '4' + 53: 255, # '5' + 54: 255, # '6' + 55: 255, # '7' + 56: 255, # '8' + 57: 255, # '9' + 58: 255, # ':' + 59: 255, # ';' + 60: 255, # '<' + 61: 255, # '=' + 62: 255, # '>' + 63: 255, # '?' + 64: 255, # '@' + 65: 23, # 'A' + 66: 37, # 'B' + 67: 47, # 'C' + 68: 39, # 'D' + 69: 29, # 'E' + 70: 52, # 'F' + 71: 36, # 'G' + 72: 45, # 'H' + 73: 53, # 'I' + 74: 60, # 'J' + 75: 16, # 'K' + 76: 49, # 'L' + 77: 20, # 'M' + 78: 46, # 'N' + 79: 42, # 'O' + 80: 48, # 'P' + 81: 69, # 'Q' + 82: 44, # 'R' + 83: 35, # 'S' + 84: 31, # 'T' + 85: 51, # 'U' + 86: 38, # 'V' + 87: 62, # 'W' + 88: 65, # 'X' + 89: 43, # 'Y' + 90: 56, # 'Z' + 91: 255, # '[' + 92: 255, # '\\' + 93: 255, # ']' + 94: 255, # '^' + 95: 255, # '_' + 96: 255, # '`' + 97: 1, # 'a' + 98: 21, # 'b' + 99: 28, # 'c' + 100: 12, # 'd' + 101: 2, # 'e' + 102: 18, # 'f' + 103: 27, # 'g' + 104: 25, # 'h' + 105: 3, # 'i' + 106: 24, # 'j' + 107: 10, # 'k' + 108: 5, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 15, # 'o' + 112: 26, # 'p' + 113: 64, # 'q' + 114: 7, # 'r' + 115: 8, # 's' + 116: 9, # 't' + 117: 14, # 'u' + 118: 32, # 'v' + 119: 57, # 'w' + 120: 58, # 'x' + 121: 11, # 'y' + 122: 22, # 'z' + 123: 255, # '{' + 124: 255, # '|' + 125: 255, # '}' + 126: 255, # '~' + 127: 255, # '\x7f' + 128: 180, # '\x80' + 129: 179, # '\x81' + 130: 178, # '\x82' + 131: 177, # '\x83' + 132: 176, # '\x84' + 133: 175, # '\x85' + 134: 174, # '\x86' + 135: 173, # '\x87' + 136: 172, # '\x88' + 137: 171, # '\x89' + 138: 170, # '\x8a' + 139: 169, # '\x8b' + 140: 168, # '\x8c' + 141: 167, # '\x8d' + 142: 166, # '\x8e' + 143: 165, # '\x8f' + 144: 164, # '\x90' + 145: 163, # '\x91' + 146: 162, # '\x92' + 147: 161, # '\x93' + 148: 160, # '\x94' + 149: 159, # '\x95' + 150: 101, # '\x96' + 151: 158, # '\x97' + 152: 157, # '\x98' + 153: 156, # '\x99' + 154: 155, # '\x9a' + 155: 154, # '\x9b' + 156: 153, # '\x9c' + 157: 152, # '\x9d' + 158: 151, # '\x9e' + 159: 106, # '\x9f' + 160: 150, # '\xa0' + 161: 149, # '¡' + 162: 148, # '¢' + 163: 147, # '£' + 164: 146, # '¤' + 165: 145, # '¥' + 166: 144, # '¦' + 167: 100, # '§' + 168: 143, # '¨' + 169: 142, # '©' + 170: 141, # 'ª' + 171: 140, # '«' + 172: 139, # '¬' + 173: 138, # '\xad' + 174: 137, # '®' + 175: 136, # '¯' + 176: 94, # '°' + 177: 80, # '±' + 178: 93, # '²' + 179: 135, # '³' + 180: 105, # '´' + 181: 134, # 'µ' + 182: 133, # '¶' + 183: 63, # '·' + 184: 132, # '¸' + 185: 131, # '¹' + 186: 130, # 'º' + 187: 129, # '»' + 188: 128, # '¼' + 189: 127, # '½' + 190: 126, # '¾' + 191: 125, # '¿' + 192: 124, # 'À' + 193: 104, # 'Á' + 194: 73, # 'Â' + 195: 99, # 'Ã' + 196: 79, # 'Ä' + 197: 85, # 'Å' + 198: 123, # 'Æ' + 199: 54, # 'Ç' + 200: 122, # 'È' + 201: 98, # 'É' + 202: 92, # 'Ê' + 203: 121, # 'Ë' + 204: 120, # 'Ì' + 205: 91, # 'Í' + 206: 103, # 'Î' + 207: 119, # 'Ï' + 208: 68, # 'Ğ' + 209: 118, # 'Ñ' + 210: 117, # 'Ò' + 211: 97, # 'Ó' + 212: 116, # 'Ô' + 213: 115, # 'Õ' + 214: 50, # 'Ö' + 215: 90, # '×' + 216: 114, # 'Ø' + 217: 113, # 'Ù' + 218: 112, # 'Ú' + 219: 111, # 'Û' + 220: 55, # 'Ü' + 221: 41, # 'İ' + 222: 40, # 'Ş' + 223: 86, # 'ß' + 224: 89, # 'à' + 225: 70, # 'á' + 226: 59, # 'â' + 227: 78, # 'ã' + 228: 71, # 'ä' + 229: 82, # 'å' + 230: 88, # 'æ' + 231: 33, # 'ç' + 232: 77, # 'è' + 233: 66, # 'é' + 234: 84, # 'ê' + 235: 83, # 'ë' + 236: 110, # 'ì' + 237: 75, # 'í' + 238: 61, # 'î' + 239: 96, # 'ï' + 240: 30, # 'ğ' + 241: 67, # 'ñ' + 242: 109, # 'ò' + 243: 74, # 'ó' + 244: 87, # 'ô' + 245: 102, # 'õ' + 246: 34, # 'ö' + 247: 95, # '÷' + 248: 81, # 'ø' + 249: 108, # 'ù' + 250: 76, # 'ú' + 251: 72, # 'û' + 252: 17, # 'ü' + 253: 6, # 'ı' + 254: 19, # 'ş' + 255: 107, # 'ÿ' +} + +ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-9", + language="Turkish", + char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, + language_model=TURKISH_LANG_MODEL, + typical_positive_ratio=0.97029, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş", +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 000000000..59a01d91b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +# fmt: off +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) +# fmt: on + + +class Latin1Prober(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + super().reset() + + @property + def charset_name(self) -> str: + return "ISO-8859-1" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py new file mode 100644 index 000000000..1425d10ec --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This code was modified from latin1prober.py by Rob Speer . +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Rob Speer - adapt to MacRoman encoding +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +ODD = 8 # character that is unlikely to appear +CLASS_NUM = 9 # total classes + +# The change from Latin1 is that we explicitly look for extended characters +# that are infrequently-occurring symbols, and consider them to always be +# improbable. This should let MacRoman get out of the way of more likely +# encodings in most situations. + +# fmt: off +MacRoman_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + ACV, ACV, ACO, ACV, ACO, ACV, ACV, ASV, # 80 - 87 + ASV, ASV, ASV, ASV, ASV, ASO, ASV, ASV, # 88 - 8F + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASV, # 90 - 97 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ASO, # A0 - A7 + OTH, OTH, ODD, ODD, OTH, OTH, ACV, ACV, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, ASV, ASV, # B8 - BF + OTH, OTH, ODD, OTH, ODD, OTH, OTH, OTH, # C0 - C7 + OTH, OTH, OTH, ACV, ACV, ACV, ACV, ASV, # C8 - CF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ODD, # D0 - D7 + ASV, ACV, ODD, OTH, OTH, OTH, OTH, OTH, # D8 - DF + OTH, OTH, OTH, OTH, OTH, ACV, ACV, ACV, # E0 - E7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # E8 - EF + ODD, ACV, ACV, ACV, ACV, ASV, ODD, ODD, # F0 - F7 + ODD, ODD, ODD, ODD, ODD, ODD, ODD, ODD, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +MacRomanClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO ODD + 0, 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, 1, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, 1, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, 1, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, 1, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, 1, # ASO + 0, 1, 1, 1, 1, 1, 1, 1, 1, # ODD +) +# fmt: on + + +class MacRomanProber(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + + # express the prior that MacRoman is a somewhat rare encoding; + # this can be done by starting out in a slightly improbable state + # that must be overcome + self._freq_counter[2] = 10 + + super().reset() + + @property + def charset_name(self) -> str: + return "MacRoman" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = MacRoman_CharToClass[c] + freq = MacRomanClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of MacRoman so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 000000000..666307e8f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,95 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .chardistribution import CharDistributionAnalysis +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.distribution_analyzer: Optional[CharDistributionAnalysis] = None + self.coding_sm: Optional[CodingStateMachine] = None + self._last_char = bytearray(b"\0\0") + + def reset(self) -> None: + super().reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = bytearray(b"\0\0") + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.distribution_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + return self.distribution_analyzer.get_confidence() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 000000000..6cb9cc7b3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,57 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .big5prober import Big5Prober +from .charsetgroupprober import CharSetGroupProber +from .cp949prober import CP949Prober +from .enums import LanguageFilter +from .eucjpprober import EUCJPProber +from .euckrprober import EUCKRProber +from .euctwprober import EUCTWProber +from .gb2312prober import GB2312Prober +from .johabprober import JOHABProber +from .sjisprober import SJISProber +from .utf8prober import UTF8Prober + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber(), + JOHABProber(), + ] + self.reset() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 000000000..7bbe97e66 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,661 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# BIG5 + +# fmt: off +BIG5_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 4, 4, 4, 4, 4, 4, 4, 4, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 4, 3, 3, 3, 3, 3, 3, 3, # a0 - a7 + 3, 3, 3, 3, 3, 3, 3, 3, # a8 - af + 3, 3, 3, 3, 3, 3, 3, 3, # b0 - b7 + 3, 3, 3, 3, 3, 3, 3, 3, # b8 - bf + 3, 3, 3, 3, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) +# fmt: on + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL: CodingStateMachineDict = { + "class_table": BIG5_CLS, + "class_factor": 5, + "state_table": BIG5_ST, + "char_len_table": BIG5_CHAR_LEN_TABLE, + "name": "Big5", +} + +# CP949 +# fmt: off +CP949_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, # 00 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, # 10 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 3f + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 4f + 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 50 - 5f + 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, # 60 - 6f + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 70 - 7f + 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 80 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 9f + 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, # a0 - af + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, # b0 - bf + 7, 7, 7, 7, 7, 7, 9, 2, 2, 3, 2, 2, 2, 2, 2, 2, # c0 - cf + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # d0 - df + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # e0 - ef + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) +# fmt: on + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL: CodingStateMachineDict = { + "class_table": CP949_CLS, + "class_factor": 10, + "state_table": CP949_ST, + "char_len_table": CP949_CHAR_LEN_TABLE, + "name": "CP949", +} + +# EUC-JP +# fmt: off +EUCJP_CLS = ( + 4, 4, 4, 4, 4, 4, 4, 4, # 00 - 07 + 4, 4, 4, 4, 4, 4, 5, 5, # 08 - 0f + 4, 4, 4, 4, 4, 4, 4, 4, # 10 - 17 + 4, 4, 4, 5, 4, 4, 4, 4, # 18 - 1f + 4, 4, 4, 4, 4, 4, 4, 4, # 20 - 27 + 4, 4, 4, 4, 4, 4, 4, 4, # 28 - 2f + 4, 4, 4, 4, 4, 4, 4, 4, # 30 - 37 + 4, 4, 4, 4, 4, 4, 4, 4, # 38 - 3f + 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 47 + 4, 4, 4, 4, 4, 4, 4, 4, # 48 - 4f + 4, 4, 4, 4, 4, 4, 4, 4, # 50 - 57 + 4, 4, 4, 4, 4, 4, 4, 4, # 58 - 5f + 4, 4, 4, 4, 4, 4, 4, 4, # 60 - 67 + 4, 4, 4, 4, 4, 4, 4, 4, # 68 - 6f + 4, 4, 4, 4, 4, 4, 4, 4, # 70 - 77 + 4, 4, 4, 4, 4, 4, 4, 4, # 78 - 7f + 5, 5, 5, 5, 5, 5, 5, 5, # 80 - 87 + 5, 5, 5, 5, 5, 5, 1, 3, # 88 - 8f + 5, 5, 5, 5, 5, 5, 5, 5, # 90 - 97 + 5, 5, 5, 5, 5, 5, 5, 5, # 98 - 9f + 5, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 0, 5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) +# fmt: on + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCJP_CLS, + "class_factor": 6, + "state_table": EUCJP_ST, + "char_len_table": EUCJP_CHAR_LEN_TABLE, + "name": "EUC-JP", +} + +# EUC-KR +# fmt: off +EUCKR_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 3, 3, 3, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 3, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) +# fmt: on + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCKR_CLS, + "class_factor": 4, + "state_table": EUCKR_ST, + "char_len_table": EUCKR_CHAR_LEN_TABLE, + "name": "EUC-KR", +} + +# JOHAB +# fmt: off +JOHAB_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,0,0, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,0,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,3,3,3,3,3,3,3, # 30 - 37 + 3,3,3,3,3,3,3,3, # 38 - 3f + 3,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,2, # 78 - 7f + 6,6,6,6,8,8,8,8, # 80 - 87 + 8,8,8,8,8,8,8,8, # 88 - 8f + 8,7,7,7,7,7,7,7, # 90 - 97 + 7,7,7,7,7,7,7,7, # 98 - 9f + 7,7,7,7,7,7,7,7, # a0 - a7 + 7,7,7,7,7,7,7,7, # a8 - af + 7,7,7,7,7,7,7,7, # b0 - b7 + 7,7,7,7,7,7,7,7, # b8 - bf + 7,7,7,7,7,7,7,7, # c0 - c7 + 7,7,7,7,7,7,7,7, # c8 - cf + 7,7,7,7,5,5,5,5, # d0 - d7 + 5,9,9,9,9,9,9,5, # d8 - df + 9,9,9,9,9,9,9,9, # e0 - e7 + 9,9,9,9,9,9,9,9, # e8 - ef + 9,9,9,9,9,9,9,9, # f0 - f7 + 9,9,5,5,5,5,5,0 # f8 - ff +) + +JOHAB_ST = ( +# cls = 0 1 2 3 4 5 6 7 8 9 + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,3 ,3 ,4 , # MachineState.START + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR , # MachineState.ERROR + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START , # 3 + MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START , # 4 +) +# fmt: on + +JOHAB_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 0, 0, 2, 2, 2) + +JOHAB_SM_MODEL: CodingStateMachineDict = { + "class_table": JOHAB_CLS, + "class_factor": 10, + "state_table": JOHAB_ST, + "char_len_table": JOHAB_CHAR_LEN_TABLE, + "name": "Johab", +} + +# EUC-TW +# fmt: off +EUCTW_CLS = ( + 2, 2, 2, 2, 2, 2, 2, 2, # 00 - 07 + 2, 2, 2, 2, 2, 2, 0, 0, # 08 - 0f + 2, 2, 2, 2, 2, 2, 2, 2, # 10 - 17 + 2, 2, 2, 0, 2, 2, 2, 2, # 18 - 1f + 2, 2, 2, 2, 2, 2, 2, 2, # 20 - 27 + 2, 2, 2, 2, 2, 2, 2, 2, # 28 - 2f + 2, 2, 2, 2, 2, 2, 2, 2, # 30 - 37 + 2, 2, 2, 2, 2, 2, 2, 2, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 2, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 6, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 3, 4, 4, 4, 4, 4, 4, # a0 - a7 + 5, 5, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 3, 1, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCTW_CLS, + "class_factor": 7, + "state_table": EUCTW_ST, + "char_len_table": EUCTW_CHAR_LEN_TABLE, + "name": "x-euc-tw", +} + +# GB2312 +# fmt: off +GB2312_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 3, 3, 3, 3, 3, 3, 3, 3, # 30 - 37 + 3, 3, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 4, # 78 - 7f + 5, 6, 6, 6, 6, 6, 6, 6, # 80 - 87 + 6, 6, 6, 6, 6, 6, 6, 6, # 88 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 97 + 6, 6, 6, 6, 6, 6, 6, 6, # 98 - 9f + 6, 6, 6, 6, 6, 6, 6, 6, # a0 - a7 + 6, 6, 6, 6, 6, 6, 6, 6, # a8 - af + 6, 6, 6, 6, 6, 6, 6, 6, # b0 - b7 + 6, 6, 6, 6, 6, 6, 6, 6, # b8 - bf + 6, 6, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 6, 6, 6, 6, 6, 6, 6, 6, # e0 - e7 + 6, 6, 6, 6, 6, 6, 6, 6, # e8 - ef + 6, 6, 6, 6, 6, 6, 6, 6, # f0 - f7 + 6, 6, 6, 6, 6, 6, 6, 0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL: CodingStateMachineDict = { + "class_table": GB2312_CLS, + "class_factor": 7, + "state_table": GB2312_ST, + "char_len_table": GB2312_CHAR_LEN_TABLE, + "name": "GB2312", +} + +# Shift_JIS +# fmt: off +SJIS_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 3, 3, 3, 3, 3, 2, 2, 3, # 80 - 87 + 3, 3, 3, 3, 3, 3, 3, 3, # 88 - 8f + 3, 3, 3, 3, 3, 3, 3, 3, # 90 - 97 + 3, 3, 3, 3, 3, 3, 3, 3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 4, 4, 4, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 0, 0, 0, # f8 - ff +) + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) +# fmt: on + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL: CodingStateMachineDict = { + "class_table": SJIS_CLS, + "class_factor": 6, + "state_table": SJIS_ST, + "char_len_table": SJIS_CHAR_LEN_TABLE, + "name": "Shift_JIS", +} + +# UCS2-BE +# fmt: off +UCS2BE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2BE_CLS, + "class_factor": 6, + "state_table": UCS2BE_ST, + "char_len_table": UCS2BE_CHAR_LEN_TABLE, + "name": "UTF-16BE", +} + +# UCS2-LE +# fmt: off +UCS2LE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2LE_CLS, + "class_factor": 6, + "state_table": UCS2LE_ST, + "char_len_table": UCS2LE_CHAR_LEN_TABLE, + "name": "UTF-16LE", +} + +# UTF-8 +# fmt: off +UTF8_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as a legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 2, 2, 2, 2, 3, 3, 3, 3, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 5, 5, 5, 5, 5, 5, 5, 5, # a0 - a7 + 5, 5, 5, 5, 5, 5, 5, 5, # a8 - af + 5, 5, 5, 5, 5, 5, 5, 5, # b0 - b7 + 5, 5, 5, 5, 5, 5, 5, 5, # b8 - bf + 0, 0, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 7, 8, 8, 8, 8, 8, 8, 8, # e0 - e7 + 8, 8, 8, 8, 8, 9, 8, 8, # e8 - ef + 10, 11, 11, 11, 11, 11, 11, 11, # f0 - f7 + 12, 13, 13, 13, 14, 15, 0, 0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) +# fmt: on + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL: CodingStateMachineDict = { + "class_table": UTF8_CLS, + "class_factor": 16, + "state_table": UTF8_ST, + "char_len_table": UTF8_CHAR_LEN_TABLE, + "name": "UTF-8", +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31988647dc28c4a370df4b6f5a73cb433ed11bf8 GIT binary patch literal 233 zcmX@j%ge<81VYpdSxZmXcqjpPZ3cl#*Ja ypPO2en37nMs2?AnnU`4-AFo$X`HRCQ7i^bZ5i8JPj6hrrVtiy~WMnL22C@JTkU}5; literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e89c844543b1fa665223c2c24aa86babb138c807 GIT binary patch literal 9788 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 a#$+|)v#7bb None: + super().__init__() + self.name = name + self.iso_code = iso_code + self.use_ascii = use_ascii + self.charsets = charsets + if self.use_ascii: + if alphabet: + alphabet += ascii_letters + else: + alphabet = ascii_letters + elif not alphabet: + raise ValueError("Must supply alphabet if use_ascii is False") + self.alphabet = "".join(sorted(set(alphabet))) if alphabet else None + self.wiki_start_pages = wiki_start_pages + + def __repr__(self) -> str: + param_str = ", ".join( + f"{k}={v!r}" for k, v in self.__dict__.items() if not k.startswith("_") + ) + return f"{self.__class__.__name__}({param_str})" + + +LANGUAGES = { + "Arabic": Language( + name="Arabic", + iso_code="ar", + use_ascii=False, + # We only support encodings that use isolated + # forms, because the current recommendation is + # that the rendering system handles presentation + # forms. This means we purposefully skip IBM864. + charsets=["ISO-8859-6", "WINDOWS-1256", "CP720", "CP864"], + alphabet="ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ", + wiki_start_pages=["الصفحة_الرئيسية"], + ), + "Belarusian": Language( + name="Belarusian", + iso_code="be", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM866", "MacCyrillic"], + alphabet="АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯабвгдеёжзійклмнопрстуўфхцчшыьэюяʼ", + wiki_start_pages=["Галоўная_старонка"], + ), + "Bulgarian": Language( + name="Bulgarian", + iso_code="bg", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM855"], + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", + wiki_start_pages=["Начална_страница"], + ), + "Czech": Language( + name="Czech", + iso_code="cz", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ", + wiki_start_pages=["Hlavní_strana"], + ), + "Danish": Language( + name="Danish", + iso_code="da", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="æøåÆØÅ", + wiki_start_pages=["Forside"], + ), + "German": Language( + name="German", + iso_code="de", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="äöüßẞÄÖÜ", + wiki_start_pages=["Wikipedia:Hauptseite"], + ), + "Greek": Language( + name="Greek", + iso_code="el", + use_ascii=False, + charsets=["ISO-8859-7", "WINDOWS-1253"], + alphabet="αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ", + wiki_start_pages=["Πύλη:Κύρια"], + ), + "English": Language( + name="English", + iso_code="en", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Main_Page"], + ), + "Esperanto": Language( + name="Esperanto", + iso_code="eo", + # Q, W, X, and Y not used at all + use_ascii=False, + charsets=["ISO-8859-3"], + alphabet="abcĉdefgĝhĥijĵklmnoprsŝtuŭvzABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ", + wiki_start_pages=["Vikipedio:Ĉefpaĝo"], + ), + "Spanish": Language( + name="Spanish", + iso_code="es", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ñáéíóúüÑÁÉÍÓÚÜ", + wiki_start_pages=["Wikipedia:Portada"], + ), + "Estonian": Language( + name="Estonian", + iso_code="et", + use_ascii=False, + charsets=["ISO-8859-4", "ISO-8859-13", "WINDOWS-1257"], + # C, F, Š, Q, W, X, Y, Z, Ž are only for + # loanwords + alphabet="ABDEGHIJKLMNOPRSTUVÕÄÖÜabdeghijklmnoprstuvõäöü", + wiki_start_pages=["Esileht"], + ), + "Finnish": Language( + name="Finnish", + iso_code="fi", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÅÄÖŠŽåäöšž", + wiki_start_pages=["Wikipedia:Etusivu"], + ), + "French": Language( + name="French", + iso_code="fr", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ", + wiki_start_pages=["Wikipédia:Accueil_principal", "Bœuf (animal)"], + ), + "Hebrew": Language( + name="Hebrew", + iso_code="he", + use_ascii=False, + charsets=["ISO-8859-8", "WINDOWS-1255"], + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", + wiki_start_pages=["עמוד_ראשי"], + ), + "Croatian": Language( + name="Croatian", + iso_code="hr", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčćdđefghijklmnoprsštuvzžABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stranica"], + ), + "Hungarian": Language( + name="Hungarian", + iso_code="hu", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcdefghijklmnoprstuvzáéíóöőúüűABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ", + wiki_start_pages=["Kezdőlap"], + ), + "Italian": Language( + name="Italian", + iso_code="it", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÀÈÉÌÒÓÙàèéìòóù", + wiki_start_pages=["Pagina_principale"], + ), + "Lithuanian": Language( + name="Lithuanian", + iso_code="lt", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, and X not used at all + alphabet="AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽaąbcčdeęėfghiįyjklmnoprsštuųūvzž", + wiki_start_pages=["Pagrindinis_puslapis"], + ), + "Latvian": Language( + name="Latvian", + iso_code="lv", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, X, Y are only for loanwords + alphabet="AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽaābcčdeēfgģhiījkķlļmnņoprsštuūvzž", + wiki_start_pages=["Sākumlapa"], + ), + "Macedonian": Language( + name="Macedonian", + iso_code="mk", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + alphabet="АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШабвгдѓежзѕијклљмнњопрстќуфхцчџш", + wiki_start_pages=["Главна_страница"], + ), + "Dutch": Language( + name="Dutch", + iso_code="nl", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Hoofdpagina"], + ), + "Polish": Language( + name="Polish", + iso_code="pl", + # Q and X are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻaąbcćdeęfghijklłmnńoóprsśtuwyzźż", + wiki_start_pages=["Wikipedia:Strona_główna"], + ), + "Portuguese": Language( + name="Portuguese", + iso_code="pt", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú", + wiki_start_pages=["Wikipédia:Página_principal"], + ), + "Romanian": Language( + name="Romanian", + iso_code="ro", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="ăâîșțĂÂÎȘȚ", + wiki_start_pages=["Pagina_principală"], + ), + "Russian": Language( + name="Russian", + iso_code="ru", + use_ascii=False, + charsets=[ + "ISO-8859-5", + "WINDOWS-1251", + "KOI8-R", + "MacCyrillic", + "IBM866", + "IBM855", + ], + alphabet="абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ", + wiki_start_pages=["Заглавная_страница"], + ), + "Slovak": Language( + name="Slovak", + iso_code="sk", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ", + wiki_start_pages=["Hlavná_stránka"], + ), + "Slovene": Language( + name="Slovene", + iso_code="sl", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčdefghijklmnoprsštuvzžABCČDEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stran"], + ), + # Serbian can be written in both Latin and Cyrillic, but there's no + # simple way to get the Latin alphabet pages from Wikipedia through + # the API, so for now we just support Cyrillic. + "Serbian": Language( + name="Serbian", + iso_code="sr", + alphabet="АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШабвгдђежзијклљмнњопрстћуфхцчџш", + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + wiki_start_pages=["Главна_страна"], + ), + "Thai": Language( + name="Thai", + iso_code="th", + use_ascii=False, + charsets=["ISO-8859-11", "TIS-620", "CP874"], + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", + wiki_start_pages=["หน้าหลัก"], + ), + "Turkish": Language( + name="Turkish", + iso_code="tr", + # Q, W, and X are not used by Turkish + use_ascii=False, + charsets=["ISO-8859-3", "ISO-8859-9", "WINDOWS-1254"], + alphabet="abcçdefgğhıijklmnoöprsştuüvyzâîûABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ", + wiki_start_pages=["Ana_Sayfa"], + ), + "Vietnamese": Language( + name="Vietnamese", + iso_code="vi", + use_ascii=False, + # Windows-1258 is the only common 8-bit + # Vietnamese encoding supported by Python. + # From Wikipedia: + # For systems that lack support for Unicode, + # dozens of 8-bit Vietnamese code pages are + # available.[1] The most common are VISCII + # (TCVN 5712:1993), VPS, and Windows-1258.[3] + # Where ASCII is required, such as when + # ensuring readability in plain text e-mail, + # Vietnamese letters are often encoded + # according to Vietnamese Quoted-Readable + # (VIQR) or VSCII Mnemonic (VSCII-MNEM),[4] + # though usage of either variable-width + # scheme has declined dramatically following + # the adoption of Unicode on the World Wide + # Web. + charsets=["WINDOWS-1258"], + alphabet="aăâbcdđeêghiklmnoôơpqrstuưvxyAĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY", + wiki_start_pages=["Chữ_Quốc_ngữ"], + ), +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py new file mode 100644 index 000000000..7d36e64c4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py @@ -0,0 +1,16 @@ +from typing import TYPE_CHECKING, Optional + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class ResultDict(TypedDict): + encoding: Optional[str] + confidence: float + language: Optional[str] + +else: + ResultDict = dict diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py new file mode 100644 index 000000000..0ffbcdd2c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Dict, List, NamedTuple, Optional, Union + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +class SingleByteCharSetModel(NamedTuple): + charset_name: str + language: str + char_to_order_map: Dict[int, int] + language_model: Dict[int, Dict[int, int]] + typical_positive_ratio: float + keep_ascii_letters: bool + alphabet: str + + +class SingleByteCharSetProber(CharSetProber): + SAMPLE_SIZE = 64 + SB_ENOUGH_REL_THRESHOLD = 1024 # 0.25 * SAMPLE_SIZE^2 + POSITIVE_SHORTCUT_THRESHOLD = 0.95 + NEGATIVE_SHORTCUT_THRESHOLD = 0.05 + + def __init__( + self, + model: SingleByteCharSetModel, + is_reversed: bool = False, + name_prober: Optional[CharSetProber] = None, + ) -> None: + super().__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = is_reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = 255 + self._seq_counters: List[int] = [] + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + self._freq_char = 0 + self.reset() + + def reset(self) -> None: + super().reset() + # char order of last character + self._last_order = 255 + self._seq_counters = [0] * SequenceLikelihood.get_num_categories() + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.charset_name + return self._model.charset_name + + @property + def language(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.language + return self._model.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # TODO: Make filter_international_words keep things in self.alphabet + if not self._model.keep_ascii_letters: + byte_str = self.filter_international_words(byte_str) + else: + byte_str = self.remove_xml_tags(byte_str) + if not byte_str: + return self.state + char_to_order_map = self._model.char_to_order_map + language_model = self._model.language_model + for char in byte_str: + order = char_to_order_map.get(char, CharacterCategory.UNDEFINED) + # XXX: This was SYMBOL_CAT_ORDER before, with a value of 250, but + # CharacterCategory.SYMBOL is actually 253, so we use CONTROL + # to make it closer to the original intent. The only difference + # is whether or not we count digits and control characters for + # _total_char purposes. + if order < CharacterCategory.CONTROL: + self._total_char += 1 + if order < self.SAMPLE_SIZE: + self._freq_char += 1 + if self._last_order < self.SAMPLE_SIZE: + self._total_seqs += 1 + if not self._reversed: + lm_cat = language_model[self._last_order][order] + else: + lm_cat = language_model[order][self._last_order] + self._seq_counters[lm_cat] += 1 + self._last_order = order + + charset_name = self._model.charset_name + if self.state == ProbingState.DETECTING: + if self._total_seqs > self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, we have a winner", charset_name, confidence + ) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, below negative shortcut threshold %s", + charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD, + ) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self) -> float: + r = 0.01 + if self._total_seqs > 0: + r = ( + ( + self._seq_counters[SequenceLikelihood.POSITIVE] + + 0.25 * self._seq_counters[SequenceLikelihood.LIKELY] + ) + / self._total_seqs + / self._model.typical_positive_ratio + ) + # The more control characters (proportionnaly to the size + # of the text), the less confident we become in the current + # charset. + r = r * (self._total_char - self._control_char) / self._total_char + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 000000000..890ae8465 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .hebrewprober import HebrewProber +from .langbulgarianmodel import ISO_8859_5_BULGARIAN_MODEL, WINDOWS_1251_BULGARIAN_MODEL +from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL +from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL + +# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, +# WINDOWS_1250_HUNGARIAN_MODEL) +from .langrussianmodel import ( + IBM855_RUSSIAN_MODEL, + IBM866_RUSSIAN_MODEL, + ISO_8859_5_RUSSIAN_MODEL, + KOI8_R_RUSSIAN_MODEL, + MACCYRILLIC_RUSSIAN_MODEL, + WINDOWS_1251_RUSSIAN_MODEL, +) +from .langthaimodel import TIS_620_THAI_MODEL +from .langturkishmodel import ISO_8859_9_TURKISH_MODEL +from .sbcharsetprober import SingleByteCharSetProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self) -> None: + super().__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=False, name_prober=hebrew_prober + ) + # TODO: See if using ISO-8859-8 Hebrew model works better here, since + # it's actually the visual one + visual_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=True, name_prober=hebrew_prober + ) + hebrew_prober.set_model_probers(logical_hebrew_prober, visual_hebrew_prober) + # TODO: ORDER MATTERS HERE. I changed the order vs what was in master + # and several tests failed that did not before. Some thought + # should be put into the ordering, and we should consider making + # order not matter here, because that is very counter-intuitive. + self.probers = [ + SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), + SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), + SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), + SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), + SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), + SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), + # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), + SingleByteCharSetProber(TIS_620_THAI_MODEL), + SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), + hebrew_prober, + logical_hebrew_prober, + visual_hebrew_prober, + ] + self.reset() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 000000000..91df07796 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,105 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import SJISDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import SJISContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import SJIS_SM_MODEL + + +class SJISProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return self.context_analyzer.charset_name + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed( + self._last_char[2 - char_len :], char_len + ) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed( + byte_str[i + 1 - char_len : i + 3 - char_len], char_len + ) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 000000000..30c441dc2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,362 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re +from typing import List, Optional, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .macromanprober import MacRomanProber +from .mbcsgroupprober import MBCSGroupProber +from .resultdict import ResultDict +from .sbcsgroupprober import SBCSGroupProber +from .utf1632prober import UTF1632Prober + + +class UniversalDetector: + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b"[\x80-\xFF]") + ESC_DETECTOR = re.compile(b"(\033|~{)") + WIN_BYTE_DETECTOR = re.compile(b"[\x80-\x9F]") + ISO_WIN_MAP = { + "iso-8859-1": "Windows-1252", + "iso-8859-2": "Windows-1250", + "iso-8859-5": "Windows-1251", + "iso-8859-6": "Windows-1256", + "iso-8859-7": "Windows-1253", + "iso-8859-8": "Windows-1255", + "iso-8859-9": "Windows-1254", + "iso-8859-13": "Windows-1257", + } + # Based on https://encoding.spec.whatwg.org/#names-and-labels + # but altered to match Python names for encodings and remove mappings + # that break tests. + LEGACY_MAP = { + "ascii": "Windows-1252", + "iso-8859-1": "Windows-1252", + "tis-620": "ISO-8859-11", + "iso-8859-9": "Windows-1254", + "gb2312": "GB18030", + "euc-kr": "CP949", + "utf-16le": "UTF-16", + } + + def __init__( + self, + lang_filter: LanguageFilter = LanguageFilter.ALL, + should_rename_legacy: bool = False, + ) -> None: + self._esc_charset_prober: Optional[EscCharSetProber] = None + self._utf1632_prober: Optional[UTF1632Prober] = None + self._charset_probers: List[CharSetProber] = [] + self.result: ResultDict = { + "encoding": None, + "confidence": 0.0, + "language": None, + } + self.done = False + self._got_data = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = False + self.should_rename_legacy = should_rename_legacy + self.reset() + + @property + def input_state(self) -> int: + return self._input_state + + @property + def has_win_bytes(self) -> bool: + return self._has_win_bytes + + @property + def charset_probers(self) -> List[CharSetProber]: + return self._charset_probers + + def reset(self) -> None: + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {"encoding": None, "confidence": 0.0, "language": None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + if self._esc_charset_prober: + self._esc_charset_prober.reset() + if self._utf1632_prober: + self._utf1632_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str: Union[bytes, bytearray]) -> None: + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not byte_str: + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = { + "encoding": "UTF-8-SIG", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {"encoding": "UTF-32", "confidence": 1.0, "language": ""} + elif byte_str.startswith(b"\xFE\xFF\x00\x00"): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-3412", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith(b"\x00\x00\xFF\xFE"): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-2143", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {"encoding": "UTF-16", "confidence": 1.0, "language": ""} + + self._got_data = True + if self.result["encoding"] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif ( + self._input_state == InputState.PURE_ASCII + and self.ESC_DETECTOR.search(self._last_char + byte_str) + ): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # next we will look to see if it is appears to be either a UTF-16 or + # UTF-32 encoding + if not self._utf1632_prober: + self._utf1632_prober = UTF1632Prober() + + if self._utf1632_prober.state == ProbingState.DETECTING: + if self._utf1632_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._utf1632_prober.charset_name, + "confidence": self._utf1632_prober.get_confidence(), + "language": "", + } + self.done = True + return + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._esc_charset_prober.charset_name, + "confidence": self._esc_charset_prober.get_confidence(), + "language": self._esc_charset_prober.language, + } + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + self._charset_probers.append(MacRomanProber()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": prober.charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self) -> ResultDict: + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug("no data received!") + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {"encoding": "ascii", "confidence": 1.0, "language": ""} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + assert charset_name is not None + lower_charset_name = charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859"): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if self.should_rename_legacy: + charset_name = self.LEGACY_MAP.get( + (charset_name or "").lower(), charset_name + ) + self.result = { + "encoding": charset_name, + "confidence": confidence, + "language": max_prober.language, + } + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() <= logging.DEBUG: + if self.result["encoding"] is None: + self.logger.debug("no probers hit minimum threshold") + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug( + "%s %s confidence = %s", + prober.charset_name, + prober.language, + prober.get_confidence(), + ) + else: + self.logger.debug( + "%s %s confidence = %s", + group_prober.charset_name, + group_prober.language, + group_prober.get_confidence(), + ) + return self.result diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py new file mode 100644 index 000000000..6bdec63d6 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py @@ -0,0 +1,225 @@ +######################## BEGIN LICENSE BLOCK ######################## +# +# Contributor(s): +# Jason Zavaglia +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + + +class UTF1632Prober(CharSetProber): + """ + This class simply looks for occurrences of zero bytes, and infers + whether the file is UTF16 or UTF32 (low-endian or big-endian) + For instance, files looking like ( \0 \0 \0 [nonzero] )+ + have a good probability to be UTF32BE. Files looking like ( \0 [nonzero] )+ + may be guessed to be UTF16BE, and inversely for little-endian varieties. + """ + + # how many logical characters to scan before feeling confident of prediction + MIN_CHARS_FOR_DETECTION = 20 + # a fixed constant ratio of expected zeros or non-zeros in modulo-position. + EXPECTED_RATIO = 0.94 + + def __init__(self) -> None: + super().__init__() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.quad = [0, 0, 0, 0] + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.reset() + + def reset(self) -> None: + super().reset() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.quad = [0, 0, 0, 0] + + @property + def charset_name(self) -> str: + if self.is_likely_utf32be(): + return "utf-32be" + if self.is_likely_utf32le(): + return "utf-32le" + if self.is_likely_utf16be(): + return "utf-16be" + if self.is_likely_utf16le(): + return "utf-16le" + # default to something valid + return "utf-16" + + @property + def language(self) -> str: + return "" + + def approx_32bit_chars(self) -> float: + return max(1.0, self.position / 4.0) + + def approx_16bit_chars(self) -> float: + return max(1.0, self.position / 2.0) + + def is_likely_utf32be(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.zeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.nonzeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32be + ) + + def is_likely_utf32le(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.nonzeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32le + ) + + def is_likely_utf16be(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[1] + self.nonzeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[0] + self.zeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16be + ) + + def is_likely_utf16le(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[0] + self.nonzeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[1] + self.zeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16le + ) + + def validate_utf32_characters(self, quad: List[int]) -> None: + """ + Validate if the quad of bytes is valid UTF-32. + + UTF-32 is valid in the range 0x00000000 - 0x0010FFFF + excluding 0x0000D800 - 0x0000DFFF + + https://en.wikipedia.org/wiki/UTF-32 + """ + if ( + quad[0] != 0 + or quad[1] > 0x10 + or (quad[0] == 0 and quad[1] == 0 and 0xD8 <= quad[2] <= 0xDF) + ): + self.invalid_utf32be = True + if ( + quad[3] != 0 + or quad[2] > 0x10 + or (quad[3] == 0 and quad[2] == 0 and 0xD8 <= quad[1] <= 0xDF) + ): + self.invalid_utf32le = True + + def validate_utf16_characters(self, pair: List[int]) -> None: + """ + Validate if the pair of bytes is valid UTF-16. + + UTF-16 is valid in the range 0x0000 - 0xFFFF excluding 0xD800 - 0xFFFF + with an exception for surrogate pairs, which must be in the range + 0xD800-0xDBFF followed by 0xDC00-0xDFFF + + https://en.wikipedia.org/wiki/UTF-16 + """ + if not self.first_half_surrogate_pair_detected_16be: + if 0xD8 <= pair[0] <= 0xDB: + self.first_half_surrogate_pair_detected_16be = True + elif 0xDC <= pair[0] <= 0xDF: + self.invalid_utf16be = True + else: + if 0xDC <= pair[0] <= 0xDF: + self.first_half_surrogate_pair_detected_16be = False + else: + self.invalid_utf16be = True + + if not self.first_half_surrogate_pair_detected_16le: + if 0xD8 <= pair[1] <= 0xDB: + self.first_half_surrogate_pair_detected_16le = True + elif 0xDC <= pair[1] <= 0xDF: + self.invalid_utf16le = True + else: + if 0xDC <= pair[1] <= 0xDF: + self.first_half_surrogate_pair_detected_16le = False + else: + self.invalid_utf16le = True + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + mod4 = self.position % 4 + self.quad[mod4] = c + if mod4 == 3: + self.validate_utf32_characters(self.quad) + self.validate_utf16_characters(self.quad[0:2]) + self.validate_utf16_characters(self.quad[2:4]) + if c == 0: + self.zeros_at_mod[mod4] += 1 + else: + self.nonzeros_at_mod[mod4] += 1 + self.position += 1 + return self.state + + @property + def state(self) -> ProbingState: + if self._state in {ProbingState.NOT_ME, ProbingState.FOUND_IT}: + # terminal, decided states + return self._state + if self.get_confidence() > 0.80: + self._state = ProbingState.FOUND_IT + elif self.position > 4 * 1024: + # if we get to 4kb into the file, and we can't conclude it's UTF, + # let's give up + self._state = ProbingState.NOT_ME + return self._state + + def get_confidence(self) -> float: + return ( + 0.85 + if ( + self.is_likely_utf16le() + or self.is_likely_utf16be() + or self.is_likely_utf32le() + or self.is_likely_utf32be() + ) + else 0.00 + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 000000000..d96354d97 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .mbcssm import UTF8_SM_MODEL + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = 0 + self.reset() + + def reset(self) -> None: + super().reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self) -> str: + return "utf-8" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB**self._num_mb_chars + return 1.0 - unlike + return unlike diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 000000000..c5e9d85cd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setuptools and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "5.1.0" +VERSION = __version__.split(".") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 000000000..383101cdb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,7 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.6' + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c286a6da3b1487970d4026ccf3206715ca28195c GIT binary patch literal 525 zcmXv~yKWRQ6t#CA`9ZJNgnq^5I(q+$^F1g&pawNq zB84edJ=#+VO;k!#mC+1Gt|xQVr+qb`12v>WHKOn#%oACtF&#sl(n*(<`5(|hWfoGQ zg%5edud=<$lckZy)~aTnpZaj?&DwePTAZ>Ip&N7J*wSccBrnsD?i$NO`lMdI4cWf$ zBoFywZJn_t4#i{b#DRG!^n7-f-L39d4_=g8VHCwgErsJYfjw**A&Zbl=mUhbhPQSQ z`(cD=ku4%qM8+G~Wj?dx%L!u}Zk;fiv5)8+M(E-lSsBHNKjTX14;FRFN2(3i8zRLKX*<6%dS2a|5m4pR7A~!ixg)J; z3CMyWmR$Qq7>lj{pDw literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b24611fe5902d36935f45cd9221b10222a44fb3 GIT binary patch literal 3983 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2d7dc25105a811d0d224dd09f0f45aee19b9c98 GIT binary patch literal 9121 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py new file mode 100644 index 000000000..11ec695ff --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py @@ -0,0 +1,102 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +''' +This module generates ANSI character codes to printing colors to terminals. +See: http://en.wikipedia.org/wiki/ANSI_escape_code +''' + +CSI = '\033[' +OSC = '\033]' +BEL = '\a' + + +def code_to_chars(code): + return CSI + str(code) + 'm' + +def set_title(title): + return OSC + '2;' + title + BEL + +def clear_screen(mode=2): + return CSI + str(mode) + 'J' + +def clear_line(mode=2): + return CSI + str(mode) + 'K' + + +class AnsiCodes(object): + def __init__(self): + # the subclasses declare class attributes which are numbers. + # Upon instantiation we define instance attributes, which are the same + # as the class attributes but wrapped with the ANSI escape sequence + for name in dir(self): + if not name.startswith('_'): + value = getattr(self, name) + setattr(self, name, code_to_chars(value)) + + +class AnsiCursor(object): + def UP(self, n=1): + return CSI + str(n) + 'A' + def DOWN(self, n=1): + return CSI + str(n) + 'B' + def FORWARD(self, n=1): + return CSI + str(n) + 'C' + def BACK(self, n=1): + return CSI + str(n) + 'D' + def POS(self, x=1, y=1): + return CSI + str(y) + ';' + str(x) + 'H' + + +class AnsiFore(AnsiCodes): + BLACK = 30 + RED = 31 + GREEN = 32 + YELLOW = 33 + BLUE = 34 + MAGENTA = 35 + CYAN = 36 + WHITE = 37 + RESET = 39 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 90 + LIGHTRED_EX = 91 + LIGHTGREEN_EX = 92 + LIGHTYELLOW_EX = 93 + LIGHTBLUE_EX = 94 + LIGHTMAGENTA_EX = 95 + LIGHTCYAN_EX = 96 + LIGHTWHITE_EX = 97 + + +class AnsiBack(AnsiCodes): + BLACK = 40 + RED = 41 + GREEN = 42 + YELLOW = 43 + BLUE = 44 + MAGENTA = 45 + CYAN = 46 + WHITE = 47 + RESET = 49 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 100 + LIGHTRED_EX = 101 + LIGHTGREEN_EX = 102 + LIGHTYELLOW_EX = 103 + LIGHTBLUE_EX = 104 + LIGHTMAGENTA_EX = 105 + LIGHTCYAN_EX = 106 + LIGHTWHITE_EX = 107 + + +class AnsiStyle(AnsiCodes): + BRIGHT = 1 + DIM = 2 + NORMAL = 22 + RESET_ALL = 0 + +Fore = AnsiFore() +Back = AnsiBack() +Style = AnsiStyle() +Cursor = AnsiCursor() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py new file mode 100644 index 000000000..abf209e60 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py @@ -0,0 +1,277 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import re +import sys +import os + +from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style, BEL +from .winterm import enable_vt_processing, WinTerm, WinColor, WinStyle +from .win32 import windll, winapi_test + + +winterm = None +if windll is not None: + winterm = WinTerm() + + +class StreamWrapper(object): + ''' + Wraps a stream (such as stdout), acting as a transparent proxy for all + attribute access apart from method 'write()', which is delegated to our + Converter instance. + ''' + def __init__(self, wrapped, converter): + # double-underscore everything to prevent clashes with names of + # attributes on the wrapped stream object. + self.__wrapped = wrapped + self.__convertor = converter + + def __getattr__(self, name): + return getattr(self.__wrapped, name) + + def __enter__(self, *args, **kwargs): + # special method lookup bypasses __getattr__/__getattribute__, see + # https://stackoverflow.com/questions/12632894/why-doesnt-getattr-work-with-exit + # thus, contextlib magic methods are not proxied via __getattr__ + return self.__wrapped.__enter__(*args, **kwargs) + + def __exit__(self, *args, **kwargs): + return self.__wrapped.__exit__(*args, **kwargs) + + def __setstate__(self, state): + self.__dict__ = state + + def __getstate__(self): + return self.__dict__ + + def write(self, text): + self.__convertor.write(text) + + def isatty(self): + stream = self.__wrapped + if 'PYCHARM_HOSTED' in os.environ: + if stream is not None and (stream is sys.__stdout__ or stream is sys.__stderr__): + return True + try: + stream_isatty = stream.isatty + except AttributeError: + return False + else: + return stream_isatty() + + @property + def closed(self): + stream = self.__wrapped + try: + return stream.closed + # AttributeError in the case that the stream doesn't support being closed + # ValueError for the case that the stream has already been detached when atexit runs + except (AttributeError, ValueError): + return True + + +class AnsiToWin32(object): + ''' + Implements a 'write()' method which, on Windows, will strip ANSI character + sequences from the text, and if outputting to a tty, will convert them into + win32 function calls. + ''' + ANSI_CSI_RE = re.compile('\001?\033\\[((?:\\d|;)*)([a-zA-Z])\002?') # Control Sequence Introducer + ANSI_OSC_RE = re.compile('\001?\033\\]([^\a]*)(\a)\002?') # Operating System Command + + def __init__(self, wrapped, convert=None, strip=None, autoreset=False): + # The wrapped stream (normally sys.stdout or sys.stderr) + self.wrapped = wrapped + + # should we reset colors to defaults after every .write() + self.autoreset = autoreset + + # create the proxy wrapping our output stream + self.stream = StreamWrapper(wrapped, self) + + on_windows = os.name == 'nt' + # We test if the WinAPI works, because even if we are on Windows + # we may be using a terminal that doesn't support the WinAPI + # (e.g. Cygwin Terminal). In this case it's up to the terminal + # to support the ANSI codes. + conversion_supported = on_windows and winapi_test() + try: + fd = wrapped.fileno() + except Exception: + fd = -1 + system_has_native_ansi = not on_windows or enable_vt_processing(fd) + have_tty = not self.stream.closed and self.stream.isatty() + need_conversion = conversion_supported and not system_has_native_ansi + + # should we strip ANSI sequences from our output? + if strip is None: + strip = need_conversion or not have_tty + self.strip = strip + + # should we should convert ANSI sequences into win32 calls? + if convert is None: + convert = need_conversion and have_tty + self.convert = convert + + # dict of ansi codes to win32 functions and parameters + self.win32_calls = self.get_win32_calls() + + # are we wrapping stderr? + self.on_stderr = self.wrapped is sys.stderr + + def should_wrap(self): + ''' + True if this class is actually needed. If false, then the output + stream will not be affected, nor will win32 calls be issued, so + wrapping stdout is not actually required. This will generally be + False on non-Windows platforms, unless optional functionality like + autoreset has been requested using kwargs to init() + ''' + return self.convert or self.strip or self.autoreset + + def get_win32_calls(self): + if self.convert and winterm: + return { + AnsiStyle.RESET_ALL: (winterm.reset_all, ), + AnsiStyle.BRIGHT: (winterm.style, WinStyle.BRIGHT), + AnsiStyle.DIM: (winterm.style, WinStyle.NORMAL), + AnsiStyle.NORMAL: (winterm.style, WinStyle.NORMAL), + AnsiFore.BLACK: (winterm.fore, WinColor.BLACK), + AnsiFore.RED: (winterm.fore, WinColor.RED), + AnsiFore.GREEN: (winterm.fore, WinColor.GREEN), + AnsiFore.YELLOW: (winterm.fore, WinColor.YELLOW), + AnsiFore.BLUE: (winterm.fore, WinColor.BLUE), + AnsiFore.MAGENTA: (winterm.fore, WinColor.MAGENTA), + AnsiFore.CYAN: (winterm.fore, WinColor.CYAN), + AnsiFore.WHITE: (winterm.fore, WinColor.GREY), + AnsiFore.RESET: (winterm.fore, ), + AnsiFore.LIGHTBLACK_EX: (winterm.fore, WinColor.BLACK, True), + AnsiFore.LIGHTRED_EX: (winterm.fore, WinColor.RED, True), + AnsiFore.LIGHTGREEN_EX: (winterm.fore, WinColor.GREEN, True), + AnsiFore.LIGHTYELLOW_EX: (winterm.fore, WinColor.YELLOW, True), + AnsiFore.LIGHTBLUE_EX: (winterm.fore, WinColor.BLUE, True), + AnsiFore.LIGHTMAGENTA_EX: (winterm.fore, WinColor.MAGENTA, True), + AnsiFore.LIGHTCYAN_EX: (winterm.fore, WinColor.CYAN, True), + AnsiFore.LIGHTWHITE_EX: (winterm.fore, WinColor.GREY, True), + AnsiBack.BLACK: (winterm.back, WinColor.BLACK), + AnsiBack.RED: (winterm.back, WinColor.RED), + AnsiBack.GREEN: (winterm.back, WinColor.GREEN), + AnsiBack.YELLOW: (winterm.back, WinColor.YELLOW), + AnsiBack.BLUE: (winterm.back, WinColor.BLUE), + AnsiBack.MAGENTA: (winterm.back, WinColor.MAGENTA), + AnsiBack.CYAN: (winterm.back, WinColor.CYAN), + AnsiBack.WHITE: (winterm.back, WinColor.GREY), + AnsiBack.RESET: (winterm.back, ), + AnsiBack.LIGHTBLACK_EX: (winterm.back, WinColor.BLACK, True), + AnsiBack.LIGHTRED_EX: (winterm.back, WinColor.RED, True), + AnsiBack.LIGHTGREEN_EX: (winterm.back, WinColor.GREEN, True), + AnsiBack.LIGHTYELLOW_EX: (winterm.back, WinColor.YELLOW, True), + AnsiBack.LIGHTBLUE_EX: (winterm.back, WinColor.BLUE, True), + AnsiBack.LIGHTMAGENTA_EX: (winterm.back, WinColor.MAGENTA, True), + AnsiBack.LIGHTCYAN_EX: (winterm.back, WinColor.CYAN, True), + AnsiBack.LIGHTWHITE_EX: (winterm.back, WinColor.GREY, True), + } + return dict() + + def write(self, text): + if self.strip or self.convert: + self.write_and_convert(text) + else: + self.wrapped.write(text) + self.wrapped.flush() + if self.autoreset: + self.reset_all() + + + def reset_all(self): + if self.convert: + self.call_win32('m', (0,)) + elif not self.strip and not self.stream.closed: + self.wrapped.write(Style.RESET_ALL) + + + def write_and_convert(self, text): + ''' + Write the given text to our wrapped stream, stripping any ANSI + sequences from the text, and optionally converting them into win32 + calls. + ''' + cursor = 0 + text = self.convert_osc(text) + for match in self.ANSI_CSI_RE.finditer(text): + start, end = match.span() + self.write_plain_text(text, cursor, start) + self.convert_ansi(*match.groups()) + cursor = end + self.write_plain_text(text, cursor, len(text)) + + + def write_plain_text(self, text, start, end): + if start < end: + self.wrapped.write(text[start:end]) + self.wrapped.flush() + + + def convert_ansi(self, paramstring, command): + if self.convert: + params = self.extract_params(command, paramstring) + self.call_win32(command, params) + + + def extract_params(self, command, paramstring): + if command in 'Hf': + params = tuple(int(p) if len(p) != 0 else 1 for p in paramstring.split(';')) + while len(params) < 2: + # defaults: + params = params + (1,) + else: + params = tuple(int(p) for p in paramstring.split(';') if len(p) != 0) + if len(params) == 0: + # defaults: + if command in 'JKm': + params = (0,) + elif command in 'ABCD': + params = (1,) + + return params + + + def call_win32(self, command, params): + if command == 'm': + for param in params: + if param in self.win32_calls: + func_args = self.win32_calls[param] + func = func_args[0] + args = func_args[1:] + kwargs = dict(on_stderr=self.on_stderr) + func(*args, **kwargs) + elif command in 'J': + winterm.erase_screen(params[0], on_stderr=self.on_stderr) + elif command in 'K': + winterm.erase_line(params[0], on_stderr=self.on_stderr) + elif command in 'Hf': # cursor position - absolute + winterm.set_cursor_position(params, on_stderr=self.on_stderr) + elif command in 'ABCD': # cursor position - relative + n = params[0] + # A - up, B - down, C - forward, D - back + x, y = {'A': (0, -n), 'B': (0, n), 'C': (n, 0), 'D': (-n, 0)}[command] + winterm.cursor_adjust(x, y, on_stderr=self.on_stderr) + + + def convert_osc(self, text): + for match in self.ANSI_OSC_RE.finditer(text): + start, end = match.span() + text = text[:start] + text[end:] + paramstring, command = match.groups() + if command == BEL: + if paramstring.count(";") == 1: + params = paramstring.split(";") + # 0 - change title and icon (we will only change title) + # 1 - change icon (we don't support this) + # 2 - change title + if params[0] in '02': + winterm.set_title(params[1]) + return text + + + def flush(self): + self.wrapped.flush() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py new file mode 100644 index 000000000..d5fd4b71f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py @@ -0,0 +1,121 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import atexit +import contextlib +import sys + +from .ansitowin32 import AnsiToWin32 + + +def _wipe_internal_state_for_tests(): + global orig_stdout, orig_stderr + orig_stdout = None + orig_stderr = None + + global wrapped_stdout, wrapped_stderr + wrapped_stdout = None + wrapped_stderr = None + + global atexit_done + atexit_done = False + + global fixed_windows_console + fixed_windows_console = False + + try: + # no-op if it wasn't registered + atexit.unregister(reset_all) + except AttributeError: + # python 2: no atexit.unregister. Oh well, we did our best. + pass + + +def reset_all(): + if AnsiToWin32 is not None: # Issue #74: objects might become None at exit + AnsiToWin32(orig_stdout).reset_all() + + +def init(autoreset=False, convert=None, strip=None, wrap=True): + + if not wrap and any([autoreset, convert, strip]): + raise ValueError('wrap=False conflicts with any other arg=True') + + global wrapped_stdout, wrapped_stderr + global orig_stdout, orig_stderr + + orig_stdout = sys.stdout + orig_stderr = sys.stderr + + if sys.stdout is None: + wrapped_stdout = None + else: + sys.stdout = wrapped_stdout = \ + wrap_stream(orig_stdout, convert, strip, autoreset, wrap) + if sys.stderr is None: + wrapped_stderr = None + else: + sys.stderr = wrapped_stderr = \ + wrap_stream(orig_stderr, convert, strip, autoreset, wrap) + + global atexit_done + if not atexit_done: + atexit.register(reset_all) + atexit_done = True + + +def deinit(): + if orig_stdout is not None: + sys.stdout = orig_stdout + if orig_stderr is not None: + sys.stderr = orig_stderr + + +def just_fix_windows_console(): + global fixed_windows_console + + if sys.platform != "win32": + return + if fixed_windows_console: + return + if wrapped_stdout is not None or wrapped_stderr is not None: + # Someone already ran init() and it did stuff, so we won't second-guess them + return + + # On newer versions of Windows, AnsiToWin32.__init__ will implicitly enable the + # native ANSI support in the console as a side-effect. We only need to actually + # replace sys.stdout/stderr if we're in the old-style conversion mode. + new_stdout = AnsiToWin32(sys.stdout, convert=None, strip=None, autoreset=False) + if new_stdout.convert: + sys.stdout = new_stdout + new_stderr = AnsiToWin32(sys.stderr, convert=None, strip=None, autoreset=False) + if new_stderr.convert: + sys.stderr = new_stderr + + fixed_windows_console = True + +@contextlib.contextmanager +def colorama_text(*args, **kwargs): + init(*args, **kwargs) + try: + yield + finally: + deinit() + + +def reinit(): + if wrapped_stdout is not None: + sys.stdout = wrapped_stdout + if wrapped_stderr is not None: + sys.stderr = wrapped_stderr + + +def wrap_stream(stream, convert, strip, autoreset, wrap): + if wrap: + wrapper = AnsiToWin32(stream, + convert=convert, strip=strip, autoreset=autoreset) + if wrapper.should_wrap(): + stream = wrapper.stream + return stream + + +# Use this for initial setup as well, to reduce code duplication +_wipe_internal_state_for_tests() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py new file mode 100644 index 000000000..8c5661e93 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py @@ -0,0 +1 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b92c1276d9879b3294a41c9fd740f66eef0dd9d2 GIT binary patch literal 231 zcmX@j%ge<81VYHE5r8Fm1HzYqlr&vETw;(4qH#M(BH#xt&II&V+ zuPimMOg|?xNxz`7BqKl1SkKT%zc{lbRkt89IXf{uwOGF(vp_!{s4OMFNIyA0C%-5$ yH&MSNwYa2MKR!M)FS8^*Uaz3?7l%zQ*e1IoR-m&Ofw&mN_{hx2$XLV-WB~xhmO;({ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..633fe1eff862908f497b5de057fe8eaefbdb30ca GIT binary patch literal 5500 zcmeHL&rcgi6rT0&+6x8}AT$`$mNZFQC%^`9LrkKy1RO#Gjzoykn1ki8+hF4Ly0c4C z)2iZ-s;ShfM}!n9RH{@Wdan8h^wgf*f|9OUwNegMZU}P9sqfABH%=-aTd{}t=DnHk z&CJg1esAXI#>RRAPs{f|B@TKCd5lK>k#mKedr(*=8qtI#iK2ET1;Z6}8Ddlvh$d=M zQZnSIY`CLt!xQx|pPW>Tx@et1bTWS+AF`;UUhuaU?R+WP=pti8bKfDFM|Z7@+#hYy z_i4(_HwmGNi|FEduDL)mLPiMGJwZDXa5>7fZrLMoOLrtAo=81$fj=NR(z*ETO-DL! zQr(d++nJ;u5FGDt%1TU|R}-m${@GkWri7faa|{a0FoCF`k*G@(?vSXcxj;&q2vXK0 zkZw%|>B+bQ9!FszVFhDQ{1w2YDY{v{J}yz=}2}atvjNXu^hK$YvzJY z>mVL8bV?rxj%4Y{_bnWB*R#*mIn&Tpdr>zMsT*^qI+n06EL>MduANsekB+F5rnZpO zd!|h@X{iY#ozx9IW%taQx2tU&JSnL=Ud(#<5wsiYSda)_LT)oV0fqoU zsQ9yr|K8{~t>1Qh-SKN@_jflpl%YpTLzRk6WoQSGq-^1FVc5dI1BGQ`gXE8$TQWjo zg_2!Z?2_8TR>%ydnKW^O?gt-j2Ep9$#<{x%-K`+_i>GbaLb3HY9W`&K z7Mlz6&b#mnwJ_Kc`Ms^{3-OD3roODF2f+0Cp5-p)B{6xPfT383Tec|m9XQP z93BftriUGAN`37s?W;o@N^hyJT08%We|3IC=__sLTk);FyP>G1zRs1- z)x`~^ztmT)U9~>)z8qciQ9tw@&-#w9!MIPA#C+%rWPO1(82QOEZ}qm_Szq@Wj6PJ> z_E^?;Yz@XgSmy1?`g+!220Sy!kD+>7-rJ^fYL8d?l=0q28_MZ2 zHe|fFt1a(sQwhC*_kM)6`0t-5A)l2Zi;{nae`x)n!00mqGXECvIO>R_7Zs@U?Qy+^N>~aRm4Y3&B{qP!!$200jf!`ACLxFcF4+smxt{x~{EfOa1 zFl=G#J7imutF+Zrkvr^ zJxkvPAKqSBV<5IfK@c93`aj9xzsZp-Ir0ZN`d3r)SM#6GFL@v33s2o=g#No9J|&>G ZJ`sr2aCh++(f6CAe0qLMBvJ?K=pS{fkh%Z> literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04d813204168bd1150386a710d04159e701de479 GIT binary patch literal 18136 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

...' % 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 000000000..7189aeef2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1068 @@ +# -*- 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 + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 000000000..fef52aa10 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 000000000..cfa45d2af --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,452 @@ +# -*- 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()) +''' + + +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 + 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"' '''" + 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 + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + 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) + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + distlib_package = __name__.rsplit('.', 1)[0] + resource = finder(distlib_package).find(name) + if not resource: + msg = ('Unable to find resource %s in package %s' % + (name, distlib_package)) + raise ValueError(msg) + return resource.bytes + + # 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 000000000..ba58858d0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,2025 @@ +# +# 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'): + compile_kwargs[ + 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + 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): + """ + 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 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): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 000000000..14171ac93 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,751 @@ +# -*- 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 000000000..4a5a30e1d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1099 @@ +# -*- 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 2.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(pathname) + 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. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, -1, -1): + versions.append(''.join([major, str(minor)])) + + 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 abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), 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, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append( + (''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + 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 in enumerate(versions): + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 000000000..7686fe85a --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 000000000..0c01d5b08 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..40b7a2cb08936efbbd66cb4d6cbff9d79ff77ab5 GIT binary patch literal 993 zcmcJNJ#P~+7{`5=Ymz3p=Cw`Q0kLLiEnd_KAwk1SrL>irE_ksnJ-0Qz=X~VbKMHbR_n`G`Mp5M58TX_ePc|| zGvg!iiEjl2EM|etY$&h-ILv_swg5#|gc2)3nU!IYEkcD=pvtOHV>NJ@3rlPX>Z}e8 z)_^8!LW{Ma&Dzjm9av_|u)Vfa;KpT)ANCh6D`MSB2{RroSz9DXC~*SHcn;W z^Du?6(58H-d=YveOxwp0#kB~87YptsiT*>B;gK@7^o^5SP9RT(X$4r3=kc?WjUXQ1 zPIXJkqh0V`D?Mw?xFEy1t&?|ESMlvM^Fp4blA_~vyEk^Omu^Nj?riqR(@EU#>g?@_ zb`T4QBBG2~MBpFMRYVQpB9;(!L<7-8v=D7X2eFJ;L39y4#42Jf!)|}g6tD01uhmQF z_~TY1X?i_7 zST$LX|Ug5F6o3(@gKHki5QLrrQ(q6UfOY#p)@!;2HuWG+9T|6Z9wGUN& HCky=zYy%Ke literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d60c1bf02aa370a81575ee2b937712c4f01441c GIT binary patch literal 325 zcmXv~y-EW?5Z=8#8*Q{%F4-lwE|t5Qe8tQ+GavK!)@rRIkIk1?aqRtf2v&%eWWMXkBVvf*3Q2r}G2#)6 zhC2w^BtjfNFNGL2q#5h|*XoYE&W4=omV zP-@A+O}G?lP--|8?rhY9&UF_qPdad}*{I^#mDW`aLYj(8u3XmFw{_7#KIUo+mFR(K zT&dMTzPAsxa6B_be^?B74MrHCUdFVA|4m@EU2d91awz{M9NF-da7EqrW=1f^pJ?lg VY&=Zf$@WK_+;?XL#ciAT@-K-GS``2Q literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16a02761e9e1fe0f80ccb3f797083a9905b9d88d GIT binary patch literal 53787 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 p6NOl=zjPkjCH&OuJnR&Hx+~|f&Gxre3*DXG!`_ 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.8.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", + "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", +) + + +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 + ============== ========================================= + + 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 dict( + id=self.id(), + version=self.version(pretty, best), + version_parts=dict( + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 000000000..a40eeafcc --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a3fd7d2f770ca9ef5ba23eb9901090a1b29919d GIT binary patch literal 914 zcmbu7IgivZ6vv%8GDqf~*;xuihr|@K7Kf-163lXJ!Ab}k+*qE(Ow9U-9M8ZY8a@R* z9bbSC0pGw96%`#~g;v@MJ6R|ei3S(Hy!R6S-;wvZ+ie4PMjt=1$5jBndgu44oEgW) z8Sg*>l7Isdpdj#eg;zusRYeWeL><*dh(ggo4benR(LycJMr{$HNOVv~bWvCIP*3zx zUkuPd4AD@G&`6BYSWM8Q(5vztF-6k=tUywGAE4cBeHMNTTM$p z_KFgnSW(D}bH1{p@_lg=b1GLRwc|3D8_neEEa(O^bS-KkS2Qo=2$Qq1uDPM(TS*drUnB9z&0j$Jk@yvEy(!yI?yRiI2#N;)EEY-QoaSiluZXjn%m~Bm}>Jou74@!;EFnZJ|t*hAfc; zV(ixfhaK6m(D4T9hcxO`F>2bB}>H-26L!R$wE5>?(d^hI~$ E7pg=2?*IS* literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..998bdb6d8abe4360864aaf7d03a80bbfca3008b9 GIT binary patch literal 4666 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..641944167e792a6b182001ae75849e664f8659a3 GIT binary patch literal 99530 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4ebf5658fda27cf9234af58a5809fce9942f0c0 GIT binary patch literal 2671 zcmZuyOKcNI7@mDO!H)B?NW!CJLi)%;ut^LERiTv{6e=K8kbp|sYT0^ys6Dh7Zf?^P7y8evoe;!GyYtWdkNM}H zZ@&388Vw_8oj?9!UTs3?FE(hjP+i!(4Z>YypebYshG+>>0`!t4W~3=8BTvZ!GGrnV zWe?aH3XzFogwi4#rDdb(D|sqpG{f93_!Od~Lq-_pnv4h^gEh=GtXn|SY(zoR`eGdL z+Xa4Ypbh6mwO!vOAQV1h-Xu2Gv1Pg*cGB3iJu*Y6JBTy7L2xe1CI@DnEJ^1qE3bm7 zo6#)`+quj%p-gKz_6(*u+YQ4Y<=8Gsux)Ξ+af$8ep6S@k-J2yi z?a)kkV8Hcs>J1HIVjDy1AP&aEd_1h;cs#Dg@#HMa*LLS&aprm>M_eB2;JohQTeu!R zY}#DyP;&e6z2xOLb&}V=%hf`u-S`>NQ;tClwguO; zXRK|k*FlR%MsRW%7g#Jv(RMs$>oHKdaUSjIb7)T)P$;Xd8uCM~Lp@^n3a^7NS;Y23 zdNvCo{HO*+f+e*;r|?K>h%zwwk-$-76$Y&GH2tup19a!9=@DNr{b(vjDO|fCfXjG^ zl^Nq_#l$S^GT|+d3~XiANt`jg_jA*U(W_&LiPNKramUD611zz#AH=Sa$# zclCTC4)k#|VVTp3Y#s`0C*woI2^SVUlGRglI-F-BYi1J~m>CXDn1-z<;8cPnSXvPXcwf%aOHjvzeV(4JBsZo?f&k_;<;+HZE>vH5nDX_B-(i=x$@~otbZf= z`oAcobT0|jNXyd2<>Z~%%10X=eUBr3)waE*q2Cwt@RvVidLIjzl|pFT*;M_;uzAE}&J~>?+(iX=1QuXi z5EkGr!fg>RJjI}S021v1fwG(DGB1qjZZ^@{_+b#-4)`siDy)8K`CKWv9yzckAE4bZ z>kD)TOR-h?%B-aImEo>K2I2yMFD=6A(gnH?v=*~_{`vFIB}Dgws0#Eo=v;=;APaz@ zLAGH?dqLCBOjvN1Pjsbo`OM0V()fD!p|!~2HTiImlnjTgQI_?NvM}`WC~r{)LX-=T)h%&u zFL)^hg%hlpmw@7=7ie*dthv5>XY^OZ4Y9ZZ73ZbAtSSqqP7{w%xMaWhEE2J=kM)EfBB8IZIGR)01PW!tvmTrcHQkJwFoknnltcKNQ*mc4`yF z(DAbSAsR}l4!RLMfzeV(S zbZ_Zcxnm>Rzc}_J-2Qub|9W_T=}P&^MtE>>v=&0mk)?}Y&OhnuFOOA{aQBYiAK&O2 zUXCouOQafUTRHYyq__0O<4A8c)?JfO3+6tzC*VGP^th?#NoQ|4RCe!2HaZ8Fo4`ru zPG66Jc{S3`VWmd=CQUP(l%~;xkQHn)p9K!13{#Xr#h2Jd7&?Os!~pBd(?Df>KOE*f z6yNr<=8+61yLV_D3>i+`CHU1OK@k2C6+zx?MMCSJ=s-=5342OjdGubshCr-bUQIrd zR!=_AHrcRtNDz8Uu^NJ|oa9|4xyeSgkRS}MOt7iJ(&cipB9%|x11A{Pn%jhq(r67q XSJ_>0S4S(i9`y3zqsjl+EYI|R-pQ`F literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e51e811b92fedc45e2ca48ad8b6277b2dd8cecd GIT binary patch literal 249 zcmX@j%ge<81VYpbxY*FD1W7KQkpSQ6DN3pORRTs8>+=i^C=tY=>PD8_+=@KNN$!_<@;` Pk?{tfa3gmS3y=!{uV_b- literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51b30658fb89113978e9103e9c49de859b532fd5 GIT binary patch literal 158903 zcmbT92Xs}%*2j|@#D*x?J9a?n9YjzO1r$*c5s@0orF-buLJA4Jx6nfGy+a6Anh4l6 zHd>ncd_EPQ_4)1p%$d1+Z@G z?vZOLnst*e0Y1yDE3rgsiFW4~E5>;gCM zC{~QJ6ywTb#kibeTveqV#Tsg zZ?R(3rx*>36{7*gxUX0-?xh%wiWQ?F#b{it823?(`->H$5yg0*STPz?j0cMq<9>?K zq*yT?pcoGoE5?HqqiL~XG@%#|7c0g?6yuR%#b`<~niVU?!xW==v0^+zF zXt826rx=eFD@F^7(Xv=E9;FzM7c0hN6r)wKVzi_fPZTT0;}qk`V#R1hF`g<`j3+2Y z>te-tl43kvtQb#Gj5fuJ(VAjBQ>++IQ;fEexNgtVzw=jzhX&-nz_~{dBmafUf06QE zto)^v{}Sadt^AiN|7FTwM)}Js|K-Ymh4Npi{8uUe)yjX3@?Wd`*D3$?%726M->CdI zDgVvNUrzaNQT|(%|2E~nUHR`&{yUZbF6A$;{1ueHqVnIZ{P!q-CFQTI{8f~{s`6J; z{_4tKL-}hee=X&&t^9SAzpnDvQ~vtO-$42ARsM#`f1mOPNRrSdJ#3FUuM`JYn$*2@31^0!g`XOzD! z_pgq(hOu3{;cY5BQv^?igxnI3Mh6bcJ+JlP0e!mVp7(UWX#ajAN>-~?xoYLAxg~>c zg9Zovy4ra5Z-o9Yf&Tr3Q`?zwJ?KbwQT$VJ6(TJwBvyz7kaOc}REQKIwEzdWoIqIxWk^>fVuBw?uN{LA9FWi?#AAoP;@`JbK@V&jqh9`q38h!Eez>G-Unme zuHinJwu*TNkoSq0_XYAk8S@6@eJbW1NZ!^l?;!F%9rF$*Z=0BR z2zj50d54m>ZOl82ywAqG!^zt&<{d$O>p6JCc5Tnx&og%i=I+ScotV2b++lz1!rWb* zdu3dZLGGXEU)=96SLxZmZ?`IgMs({N?boAc|0)kh2R$;lOO*$oZCd52CJ$D5tbgL* zKHVy{?%%)9z$($cWOn;@>o=%U*ZxBXb{<}(@{n%*hE(Yj?NVjH@IgKM_p4F4TJz}yp=dlGX`X6`A>J(anqG52)lp26HRnR^y<&t~pS=AOgcbD4V{ zbI)h)1>T)dlm$0h?)Ug|RP77l4M+DP=3dO)OPG5pb1!4=<=&l8v;uA2D!QBFXV1!9T7jT(a!`y4hog3ebLag&Np=dqaxcnJ=`Bc(3cs)|I(Yq6hHo=Xg za^tI$iQMeGw(lksZ2@4{8cBh+x;Dq<+lNawY1&46N+}g%}TnQqVEK=Nme88 zF6Rw;l8dgj8^ByEp(xvlgU=&ZwUZ-LYf_Xw|Decwj-WM6*htY{(C})nxezAfZ)Q=X z*Ckp==naV$5qeXi#f09HXbGXWC0a^opG3IWrSN$8M7s|dX#(P~16C0ax1U5VBbIwH|J zLPsT9Pw1FL8wkB8(MCe=OSFm52NG>2^r1vs2z?~cRze?3w2iviCqQAx_*BX}D8^?J z?Ie^d(Jn%tOSGHN7ZPO?`ck4jguap}htSuAa^suiMg|U~>>Wn{lf6jM3Fbb@+^3lP zG;`-McRq6$Fn1wy7cuuY%>6BMf5+VaV(#ym``^s{19Sg}xqoEtpP2h+=03yRzcBZI znfq7f{*AeRXYN0k`%mWni@E>D+<$v_LQx!zJTrC%W01WyvO**p4`h2x6a$mVDJ0X= zMqVx<lP{3+Xp%2v@-Umh*p;JdXlR!xvG~jK}8Rvk5^-Qb*JY> zqO|*r)^vVb2U{t4Ef&1Cl(&;yhspJ%yo==eOl}}$TCqg$WpYC)=a76KlN)&%Md|a# zcFOMkp20l4olH?4U{M~FGOfU(O_=%KD z*xRrPEm)LCoos6NZPf6H|vKlHgax7-@5-G!IEM@XCCz~7|N}}|ZJ7m*a zK`~aa7%QD@W1zpTV)7a%+t@G^Yni;x$u@QdrMKQ88)E~-*uY|Jbh3>xhGJ}zXe^=4 z4%v%rp^I!`7uhOh+O9>nF?qX_Z5mVPf;$|t7u-oPcCr}RQr<)I9wxu#Wz49FZ_{=x zy5F(fNFOXv4#oWa;D6WoO^W*`&?S!mg+t@0lqZpVjLGjw83XHmCVwF1X(WHhKa+AM$+=AaT*`Av{({M0Nf~qI*GxVxWpw`&Og<@PbpKOKJ}qT* z|2!t=OBr)!0h0@*j5)K2$=^sBbLO{9{!Ypm3jbpA_fp23`EMrw$H}>o#1Ygzes+G_ zJunNNVZnb9^1kU5y(It5WO^Wm zt;-IKBsm_)ZGfc=yOO}<5>m!Icpj5WN*SAj^O<~sl+6a1$rni(i`|QvTuRF0&oV33 z3SO+jLFTVjN#pa$&X5TJjstSxuujb z3?FCm1}6vYsK}JpjSiR+9i$`r=q87P4mQkY5BgcK#Q|GDIvtK~m57dlquT^JME6dj z+Z_sq*(>ev;3WWBwg7|`^(ox!_Q@!^!e@%56U$W$tFF%#!}|9N#ZriUsTivJE3hyR z$Kl59ngBaiig3b%F183KJuq9Sgy<;`M%WOi9Wd2(2-YhPC`_U;_0HH4z+v>W`z6Bc z^8ip7<3TB7W7fo@5|rrSjKiqzha5DGdju0`Q-2xi7;xiQpLi?J6QToLG?U+V%?6ms zft1Y#n8|~Ldc!}!&a#Y(nO;y8?#%kLhBjAqpD^o8o zx;#*|z2fxW;~S9oRd~?_Om!SZd6R&`tEIZo0d7K2_%sL3;I19r-!yG8%3Z~_1>Hf4 zrVC^a)-nV-LN}G7qa~u7O3^VA!S;>?3Uf40$Vagq9?#?nQXWqioG1}i^OJzW{x(_2 zN9gucbc#fDdn!6rBDy^lohA|8o{CPF2z$mE5^W&XS1kQblJw6yOwuK&At> zlIb2*bdE$YOmiIyaC?ZrJO^wvxM`DZ>OU zktmhWQi;+CEt3egaJfVfo_7dP8LCLfow*#)MWqh z07p~=e)J&hNI$XYKYKCkBzT0w&b~O$qr`q;q5tbd+Xg#G{*}qUIoWpEgy`=M*zjh* z$in|6l`u#I)Ve%>` z(0fUQZjlIU$Xg{!CUl!bn8R+D2y@sS5@8OzQzFb^cS(dfth_{+!zwsr`xoZ0iVoQh zfH~}LiEz?-k3`s=RgwtHpUM(VAXLR6ntnA}~;Fz`K?+*8Uh@KGlBk}?c@ZzlJVG7NlQCijyv419kk50J9i8ZbGKve_Ci zd61ONy)h;ak+RtuFnO4iv9TD=P9ko zjFho@8q4HyQpTQrJd-C#8GUUclP5XZbf))lbT*mEQ=Du%)B96Np33BDQpVLXxl+a=YMztNGXK>H-lqA_Y@^R%uSaWlnJgA(3tX}^ zw6mm)vAdATi=>RPyO_yKq>QnQnQn|^qN zDdS%D0VW@m@)(j2G5H-SW7mF|$?rI6++-9f618JC|s9Cq?~e=S*C7qm}Z$4*w3BAEE9<)uw+ZfWYZ{D=P|jYl+#H*pUD?U zc{IrvGWjAYV{vgYlS@e%i;GK`Tw2OlTwKcJ%cKmuQHIH7r3|}qIg_uDGVI2cOukCW zup3u1`5Gz1Zd}Xc>!b|3aXpi7kTUGXjZD5t%CH+ZGr63UVK;7J@~u*a-MEd(w@Vpz z;|?a@DP`D=yO>;F%CH+1m|RiHup4(X`5r05Zd77&WhujMRPi!xV&D!Z!)hYvM+<3f zR9zx^`y*OIB6|BHT2mr=`y*OQBHXa6EfH=l)scwahl$pe2={5~Nrb1F>PxhWPy>nR zEsf~C65))!p+q=PzfU3@s5g=bk3Kb)2&W16ON7&e2PDF2!h;gwG@*$^I8As+BAg~P zl?bN^4@-p8ghwR8X+krJaGKCuBAh0)kO-# zO?W~goF+Ue5l$1Hk_e{>ttG-~!qXDrG@*?|SdBdcWO_F}CkuBtEu{OPG?m1CwDe;v z{4#t1+O4sO;~AgC_+-WpFn)~jZyEnL#zY*h&8E?;c2gW-x-ih(v zj1ORZBIC0dKgswh&l93;FQmMg`lrf?JHBN4@g*2_&ni5_;&uwpwD>uN=UUue;e{4I zuka#^J1D%`;*JWh2aZHL0f%*(3U}DXX^f9&d?MqM8K27dO2$_)zLD`wjBjRq8{@ke z&u08>#`iORknwjIKg#$gjDPAmJwgC?to@cPJiZL=_oc#%fayU37V~QrWW5b?95}4l z(>{14n$P&(jK^OT3ts~6up!Q4{9?v0WxNdImor|0@rsOBW4yZOv?72zRtYOM9bbXc z)?~qJvEa2;@EtaI9TvQ<4^D5cFn%xN4H>_W@dp`ynDJ(ew_v;_<4-XDq~|mq;btYA zfh;FP+bKNL;^!2eYYW&OIBeSI;YL&azqb8+^I3vwRRcU1dp&kL=ddG5h;~r7-{jPGN7KjViO ze~0lSj2~nCJ;skSewy)o#(!k|H^%Wr2{#<$;SSrr1mov1ehK53GG2!9%Nei0ctysm zFR73@fM7?Wc+Ey+j^c5Z4Y+~>i1Z9#2sI=@c0@Gq~{f0 z1RRNW@GF2II3CpTqcE#^*6UpYbfl z7c;(;@fD1(W_%svyBN=5{7uI9F@BKoLyR9`{21f!G5!hTpE91$_#ceNm5R03C2+5% z2B$VH&3GBc%Q9Yp@rsV0%~Dni@QOgnIa*4ZV_1Usx&$e+4>8`9@n(!SXS^ljPc!}u z<82v#j`8Oi@4$E`#uFLu&iDYvhcZ5%@d=DiW_$|cD;ZzK_!h>uGQNxPY{uVad>`Wn z89&7M5yn4a{1e8%Wc+K!k28Ln@qEUAVEjLf|IB#YC9K23?K&*uWf(8Z_(P00WxN^V z%^7dScx%QJ8Sl<`65}HoPh~uf@tKTgGQNrN&5UO=zK8J~#$RK6KjViOe~0m-jDN)V z$Bci%_@|5?XFQ+r9~l3U@iUCamv-$)D^s{z_~~Zn_~Se9&RR_$Bob`^ci7a87;n$` zNXAnbPh~uf@llMAWqcgtOBi3u_%gH%Jn`u3d7 zV-CyHYc4@b{B6efF}|Pi1B@SK{21f8p3{yB?pQf@tvRBv zahK9n%xZz2DT3Qvk&a2?j%VY*{1T===ykIu*^_)c2X{D{_#pJYIox39pSyCw)Ubrmbq+al(5xT4k75Ol9Y6ws^S5Hp1pG z0=?S|C2Yx&K9p@KbInLJnFX0DgXB!H6*bKVi9~0?9oE8Z&*`aO6?LwSI-dnuq=GE8 zK^C(h%TtAThmG~83yX&~<4&Z^rLcc_ofhM`kJVdQxKVFsn-yvVcn#JZw~s^6(e$S){qz6P z1E+ClyZ`rlT9N2gEWvABg4D>*G5$Q`FEgIRcqZdnjQ`>}z4{5a@0ceh;`YmLisAmt z?~36D%pZ#34$Pm5!Iu4{7_8_2z`{WmcLlk_&X{ynjE{snImYi{yei}O zGTxZ+`x$S-ct6GmFg}>^B*xb;zJc*Wj2~nCbH=}7{D$jd<+=&(u-|rMyc6RuGyW>$ zV;G;rcqZdnjIU#S1LH>-kGnpWpU2=1>%SG_uQHy*_|J_0$#~rxV%KQ^cUa!$j6ddi zLNp2P7G(1R^VNt9xXd3I$6yTo$qf%@YX_YAdu?8b_+&%kYho*2X9)C;eeThznP7-?`SYnxAc({r<)1?L<(M3n5-DyR+ysL z6k<~q!+QnO6q`nDx?*^GWGaT&3+5<>_Y3Aa7JOnW zXr2RM1>p69`HJEFf(44<1%oWbvWP8I3=dH(QVdT~ELIGUQ7lmm&rvK@3=dK)Qw&d1 zELRMVQmjx6&r+;Z3=dPRQVdU1tX2$;-8&r_^b3=dSSQw&d3tXB+=RBTWTlln%* zFsW}+43qk1#W1OFQ4Ev%R>kmO#Wuz8WW{#H@My&j#qey!PQ~zW#V*D0Nv7Rk;UL?i zbUZ|nqZpo|*sB+7d#G+UA;*&OXH4j=_P~C%0b~M%Spsfv2(}Q*v)bgOc1+_g0-!8A?K_?rct_NK# zsOLeV1@%4X4nT)G0H)UHAs{dIw4ob%Fx2MyJ`Z}?5RE+OXF+2R0t@cCl6)v=2!HL)+9LYmc_ziI|5S3rs7~Gd~`LEz`_{uw|NifKRm1HClLp z@3awk)B&5Fxr82bC@`%TiM9j?tMPF!cCrO*vXFLd7x~&IcOF!#CcxlWS?HmiDw&>4! zFvQkYdk4Z;u;b4==3a{J;K3MsnT{UdlV%j9lLz4|ubn-ZV?%WDARJ&_JqSB-a7x6VL8nDBeILC>$XJV-_ z*P)=5t5$D7Ce&3PnWL0#c-n2XXV|76 zLf+RnWYfgdxz-_jG0d>*9142btgd&!hQUm_K_X0~8yyOI+i05{u+cC%Zg$9I;1F!r z7KZ|Sago4Q2TZhmSXXRwC>UnLZ1OXFFih zJ_HlIM~;2fU|vI}Nf{vQ%5gW58)8b6ONa^Nrai*72x_Mrl>7|u!9vEl(WlA?sj5EEg(#<2|Ous_u z=9zJ(U!`>O&^XhtQM!3*oaxso-8?qV^c$3Jo*QTSO-eTpjx)WS(#@0OOutp>=FxGd zpKS`P9pGziW6yaCyj>-19!hr!Q#Zd;>E@|)rk7W`c`Tjj6_swDOK18$N;eOtGrh9X z&6DX&uc~ys(o&7-)s>EST52%8rqXeoSBvSjm5zHpb(mgP>3FTB9@Fb99q+X?VEVmE z$BQiunSP(rvD$CM^u|)(3Bz(f(;rYe49kN|Z=!SSD{rNgi^V|sI? z!?3hq`lCvRVR?+{EtL+#@;K95DIJF838p`(bQqSWnBH3HFf30qy^YdgSe{{eTcyLW zJj?WUN{3;2j_K`{4#V<1(>o{~hNUCZJ30M~ne=zUuykg67pL2aXD19xSEeT_9pk?n z)4MAj$N2Bd^nOam`0vm30ZPaCe}U8~gq6t?Bd>^CDbtrJ9cExT(^n`RW?&`LS1BE4U^Ua%C>>^C zEz{R29cExX(>Ev`W?&=JHz^%vU^COVC>>^CE7P|r9cExV(|0HxW?(1NcPSlaU^mmV zl@2qohv_*=hZ)$*^w*@m8)o2jroW+dn1MH${+7~V2Hs}+KBdD9>}UD`rDL=nWcnec zW3;}*^utQWXnmLIN0g4ydX(wMl#bE*9@F1fI!5aUO#e{n7_A>M{bQwL8Sn|yKUF%G z0iQ8FSLs*=e9rVQl#XS$;(@Mwq&trPN(lP!E zm|m!KjQ=90f1`Aa|8JT8ozgM>|Hbt0m5%ZMZ>ImC^o?hmn(7AlF7Dc7j5IK{bEF&yJurx?x=uU8DWEN@T@w=8c|3`XN7u<-6nIk>|Ep7JVe7R9fi z7>*GuDu%m&cPoawfcGedyMUDx!x>~{#c&s}ieebdRl&l%)>S&r1M4YTrOfgK9Ey2PzZv}Ulx3-?syJ0FGCa88ye@^L`pxQJ2d8MPTbzpi&rDKBX1Qxbw zPo<;(MHNH;>!ld_UvI_G|N1C~{?}JA^uKzpm%W&7W4;0qcF80s z;#Kar6WK}h*gP$xI=K+2wf})J~;EV+mJiu>7P>6{h z{MUj>4ulPoWh!H`q6-b3qUa(+rz*PG&}oV;F?713OAVc&=rTiRD!SazS&jz3+XBq? z06$wnMa=X7zg)E$<$$fXJ+|H! zDr)O(k)pQV7AtD&ZHc0`-j*tA>us5$w%(R2YU^!(2TdI44W@-RJ8C|eaAc!_ zTO2f>OgOTJAZ8eL3n67%pUyHs}4L54$EOT-7ssVl@=WfdMx$Ix*N0WRm>=>~2;#W`Y z7{IOi-y93fs)(MPcOV=CcrE)6#{#neqQ~Yvz|Z?oh`#_($H8g(L*Rc7SUYeSzt#0O zSXiZT%X>~6DY#9!!faOc0qLzmxJ?G=44g8siT+1Lujw(~VX_zs z-FAc$=DxNMWg~ArnS>ou9gl5fU?`DjT^9LXxRI?9ky~ydts&FybJ`hOZ0uheG5uku zkBBsCL@7SP{I`(5S4MtbnA4Uz1@2@6s@K*lIast5QvECOjBTxr255Acgv6e8V&t1Zaz06&UFAx3+E zpTr_C2Eeo^eiw_tSRdkg3&!~n_-QN(G2Vk4Etuc|ejSVY)v5OqDPpZ;^qz7SpU+Tfr@uv8fd0;FF zefZx4(*YvUD*(dwxzdYa+h65CZlqs-s=2FK;A@@c9wNQYgFd$IulK+_gGq;pEP6R7 z=0*ngrNZ6f{RxA*^&xPp2a!R2Dec=>|YyOT`3(~I-sjd&Lm%X=}5S%HZa zz1Yc?;BF88vfv&MT3S%a1JmIm(aHc}eOB>eIHs$4&<4>X(dq!E*V6>+#c(Lr^dPhV zwH!D@T{G?ztbl7fWERk$U;$i5BAD&E4%vv<+|+Z(%`x=>!i+a?Vs1kB&ci75y$%G^ z<4wnE=t1~wY$FfC5RDx$J@{k>P6+P@3)6VW>A{n>Dj)VBtgS~p2s>{x4?5WDYYq@z zuay(c#-!TGk*S#Rp7;mFO!uUxCFw#4TMhH>Qyya>30#9{YeB1r^l3p67SnGVK@k@8 z89{4=w5^~uL;9?sxGv`Lc7oOl>2rc2EN1ogf+980=LN+TKsyLpC!`%cEfLlO1?}XZ z?Jx<^&JN_#BQg}Ai}%w}EI?NeBGDn_PjvoZ2%0Y;+RcI7$Ph&6?)?cv%oTcgP=Wx0 z^zEvPBXfWUVb6TQ zg9DcQgS{Jtx1i`XALu zC6CRn#9%07+@XZ_riu>*8*(yZ9sQ3YSM}IN28Ke9ar($~D+6wHWQGQ{2PZ7(;(^I7 zjcO0V1$d$d;R3vy2jK#|y9eO{yoU$j0=%aO;Q~DBKyJjC=3dNSjq=%>`Kyz^5A(xl z_ho);lln0~Omctbhk+fy{FpahV15|NfcY_l42=1!W9k?LKWb=1LiuVH2n=SRI=~PH zY5)vnpeDdD25JEeXP`E~2nOl^yvRUZfR`Ak2k^27CCXDx5_yFalh;={F_}%`#N>7) zCnmeeoS6KkaAGo?%8AKw8Yd>pqc|~nPG^K_m-=-Ei0R98{O{D?6Uui+f#xyL1z%y_kO+{)KsSJe40H!r#6S;##SHWWSi(RQU?~H=0G2V(8(=vDeE?Q4&=+7O1N{J2 zG0-1iH3I_x)-dn_z*+_ZfOQNE1X$0&Ab<@F3%)l^!Ees3?*vh~N zfNcQA+Ju|l?H+{7=^Y+~Q^ZaW!YN{x2jMDlw+C&k#me>oFZ7*lLaPxx7oo3zkfA=e zJ>DLlQn>%h@gQ6m?DfE`Sm};|2c2wgU-zJk1#fteXu+EvguAl0Jm_gdyzN1_Mc?N^ zxE0&)f!T^BL=Si{z+U5^2Z05LJQ!rbJ01+N;IIe7EO^(0aP@J-gO_ZGqaK*;7yU%0 z2Vs|Z&x5c_yzfESB|h*V>=GY(5O#@=JP5nQ#~z?dP*42CgRtd3^&o7y&pZfQF4u!j z_8Omi5VqVG9wgcjUwRO>+*cliE%&ttVapx&AZ)o49)vA-(u1(&PI(Zv+-VQOmdo=X zY`J_7!j>!WAZ)op55kr!@*r%vZ#*!EdG!1nKy6#{QWe9IKDZPCyRr(`SM(V&h+)7% zaNBvaetjG%4)!3@5dIgF36vGXWOBCBfth8cyy!%qc_7b~HvW-c^$|yFH zSXsqz=k#*L@XXQ`is6~1D;2}@byq2d=j*Ok3_q)Qjbd0xU#r+?V%I5#Usk+cv9ZK% zPz=AVc%x$DiQS|aeqHfq#U>Ifrx?z7Zcz+}Jhv)_Q=Z!t!!gh8icKSShho!--Kp3N zVs|MvlURAhW}R(*tr=eVE?Y>A_d=W>W0uL4gJRJ^0ds0Un$LpjVRs z!deNO80HsuAO|viu+q1YK7{EnIXwtx+?PEVLcND7>=g$FQ@4sc0DJSQKnG!Nk~}gd zeA7ruXCzpd&t#?J-GLOQrz#z{6w{bKO6hoPH=XGjO2@u@G}Ff@9q$f|W%@X!64U>gV)JSpQ7}sq)%n~G^OLw%;`*@p>#Z&Ig{zLl#X`?W-~og>3DZw z4%6o<9q$gzWBPohV{|THdX~~LIu|m1k<#(*z+$E^Q99loSjzNeO2^}#%bC7H>3DZw zCDT_a9S2LRnZ8Epcz0ke)7L2-?+&bI`Ua(MBz+^(Hz^(CbTiYpC>^)sw=#X3((wrM zcBb!8Iv(}f$@E=HH}4KHJzMFpi+h-!qjWstznAH+NqsZM|LaVDL+Stj&*Rw-o>i|E zbS7J4e(Pgg@ux6)DTyWgmP#0gE@**rhlPy z7?v-Y{*}^USiWZZaiznsoM8G%rJI+MnEtKOF(H4)^nWQGhsNJC{YRx^;Qr+GNc3m8 z!@bULjNe%)#_xjLOoWkWdB!U-UYYT#jQ8}M&QIZPK_kLW_FGXG16bG>d{}zFm+_g5 zXEDB<@fD1(XM6+W+Zo@%_+G|eV|+j32N*xf_%X&mVf<6Zzh?Y6;~gr;>NpARu#Phs zpW`{5NW$&wFMmD8ViwbX5_(Y%`r^-ErhRFjS|yBs28*22JFxJHcg(cO=^gm;T|_bL zD-#sMI;wF6EewI|}>7OBBPNrLDdx(`Bv*9-4z^Sri+tCrLD2BmPRWZb^rWg)y zs!O&L2Us-}!=SCH7zS-E$#&yVtF~jd9J`T59mi}r=r;)HQ53~+NKsF+J*fNoiY+A8 zKryu2y^`(4p;1G@@-xsU?^6tYw~=Ee&-tT~zs8Q4Jm*itCp+&~4CQ^mF&lRV4woKu z%*LI8KHfwzyjb>-VlW_0C7TH&^{`_$jhSfQM;x`WSA#Q8OY+g2? z?w=N{U?glr8^=uk3NrBRxn~qZo3~YLH?e0GLmzJ^*=V%ybBbY-Y_Ax~_Pk_c@X6Q? zl1;!tW=F+v@YqSRsj$zT6~jx1T_l?}i&$63OkEXBgFQ`j%+|{^^n-4Sp$~PJYzEr0 zhhjKn>?zr7)M->P9B%cJEE9IEw_>R0K9bErxW1AtK%Mqe4E?mfV(60tBwGR-_JU-~ zV0Qz>V6O&Bwi119kYlz^SEF7AJ7(*2HO9vf$u=S{LnYgcbcacnjrtod*`CQ~TPV~C zUZRCU!o}yhP#7T-%fZC?qGPs@IcUI_1S?F!;^Ae-Ou-A2u=;yNF?5nw6+>ktNj4IV zKT@(}41i?G(y@3*Q4E7SRWYQIrWo#KjFKz^c}`ah9V|mJ44%=FjYj7jqZlU6v5KLg z$4NFDcLByL2E#Q$vV~Y=Omxh&N8v)`d6HtNm&uOV_E?HeJjF2^cNseDRL5+%=oOyq6p<`h<>;e`ER+NmpEsG^fLqA<2 zSvu-vsbeOMqI9&|GR1Jc<&K$ji>9NVS4cJk?Xgm_S(pq~NtOu%vRW}1q&1Swf#F{( z**xTBonrHetyc`jc7tNrBy5yy0s7h|#qcTD&5EHdw@8)+`?6KCMac6u$rht6w=0IR zxQ3y{^-PJ~X$VZT7DlOrj9I&w2K*=Tb5`$s3PlXnnM)jG8aZe>@oJt-;L9$qozg3XU zr&2N~NL;m8{?3CtJbSC^Ical>Pt2Xvtk3qHWIs6F<6#{ioxRErx=#EjTD0wX)IYPEYSUm zVYYifF|!3$EQ7)|Q4Cx8hZMt%+Eg)&=7$x-4D*O$m}Q$Oh7sOeF<6@xis7i{QN<<^ zdrUD{xt5B-vOF$X8p_s6G0dJ%D2CPBlZs&_^ps+-)~yx8_U~!MaIDovG0bAmD27?P ztzzio&nkwMRXfGd$DdOSeZ0M5SS3HN7-ql@ilIMuR1E#OlVa%4ofSiW?xGm_b63T1 z^D+_4*e}}pI^Ed66RFcEPItwyn(ZN3I{J1`#n88-ilHy|QVjjBw_=#(`Y49uqP~j3 zboP@h6*E{X0S%0li&_lS5sWrpexlAMV{(GHw&gYV5a!fJ20h87c6fM zHV-odJG}$b%uL15(a;^xhTja=YZ&>acTng}3VBBmrRaQ9 z;;R+iumWMPQFP}P&}$|ASBfd|b&8HNZE?M#(@j0xAnA9DO^I*x6kV|Vce9p!mu0ei z(?5iN%^@KYy%|C{Ntg41Oy9-bZOZE{iqgGjqPHqa!=C7El49T!yO$$NmNLsMe)MQ;r^TwEZs3+;^-HUOB`jX~NHvO@IqHC8S?7fl}%rRGJ zDCy~J({A@kTDaL*xJHuZjW<22v7`k{O^>=?($m?dg&vT!Fx}MpgPLweew%={z!n(~ zedJBY=H(&DcH#)Bsbj%FnlR3?>ZnmQc$Y#nC`F;pY1Q$tOUdM@U>zPAdju?;wOcto zH(|h_Zj`krJcv}UM*b(6zdHG!V*VQBZ_WHQ$^SI-*CKx#=C4iuXPCbZ`P(voUGhK6 z{PoD+F6OUMmHf{!Kl0a}`H{cpnIHM|;Pui(SMsp|aR3xLBlXfbS(Y#4J70GDUq@9Xjm@{doA{ot?v{R9c=1bbC zNJg_I?NlVAxsrA&f?=klor+{MPts0BGMXi6r{Wpj75{F-j&C++5q??X#o6D@L+DpL z#xVab6W@?~6)YT7Nltf5;gKGMOW|Y>_S=R@@!)_3sScQy!c0ha&m22r%nQwfw1sfY zhND@Kwh)d5J?zCY9I%0C`lJ1WW9CScz!(qk^ge;H9t^i&oCm`!81KOl3nqAwVZlTX z`dTo_gFzNdcEIEom|%IMu)A3-SpHg^3M_FfIA}Ax)PqA7Ec4(U3zj=z z>MU;v<)|kI0X1i_7 zkJ)ZJ^JBK#!Tgx*b~1lW^6z4P%yzq(AG2{b^CN$Im>>DeVSeOqZ_Hl{`FqXz&7Fj5 zSS-^`GXbkx_=bQrEPPYInijq#U@Z&Z7O=L3`vk0G;eG+@T6jRfdKMn^5WARaRV_Uv zX;`LrBn=C7*wNfb&mL6rcfCKMTL5sxgGjd_XNqCO=PI_9*yoDDN`9djtn-(O z!CHK!*dAhED~6k=$0bXFWjLW278WNJ8%6AtV(7c46~oz6o?%2x~vivq-MwfS%sHByS3uJ+20={LH40rinNj!lzOupGwKbtxr17`=_}2RLb;I z$*9!GKSjD@nrW>-f*0|fB6C@~CdyyJD>lI;r&7kAO4)oW8HG8|i#8gGbWIG4l1f>2 zDtRS|q@3@SOHEQMP9^U=mAu{*0!yz8ylxX*0VSErfi1v=UbG3WGFid6zUZF{l>j~L zVx_D;l}!0WdzbQxO^OnsOs3e%yyTzaT8d`#QQC_(A8Ssfkci@4`cH+b1S8@yuVC4K zDtX;0vok5lGU_RLqspBG)OMu1Q^h`V{p7)XMcb<K@y4V3D1vfyt}kb(=}j7n^*dY&E@TBhNs6C2v2K zyxd;Ame*}2r<*GyH?_TDW6nbMllPh{qxf~aZVN$k0aiYBJ+>FjGzJN4gnCMuML9T? zf@-d>6pBL~6T_szKNT84J4m@#DYKEWWUR9qdd1eqJkt?qfT2F_^P7Hb}AU5-&t&9bB%4_biy(aLfa8#h+ zExc}{Ewq!=qaNF&fW3iz>>nbkF|_L~y=be1j4p|&{m1`b1(|526k0scItQhC!Yei( zly}Szw$YySqRl&rD=E%X9@`vHmz_qLAf>fe?A1u2ywLzdCZ6`9y&9DlR=ADFwgL&G zW1dRhWOMk8*KKNKFv1zEtyl0MT-5?IJf0P>nuYBItZw0R0@kpwy?`|>d|tp>7IqM@ zwuK!9tYcv(0qa`WS-^T0cJa{eX)Wz4X;`L2Ny9>QlQb+NtOP1RM##aQ+pEV(W6SnrR zdW<1X2flgP6HjMn+7sO*C+0>>rH_pH`=Qd4o!{)=j%0(SIF=jf3x8_N-y8lk=I=uO zQ89mC_|s$l9`I*)e?r&JeF%*9phRy=#&{AL(49hzjrse*KhF8XY=Vtf4Cg}=9HXqm zKQZR-4gaK=zvl?@Pxk(V-UdvGfxZSzje#BpOpAd*226J#%o|EL!!gPS{4-b7_ciH z4r-<5YP2@EP%td-1#X9G8!TJ)5 zMBe}lpKp27>A8_EFHrcmV*akM+;1~KnrNT%8*|x}8i+BXcn3 z?=hVGhhqMoFk0_0{{ZqIj`^eg$p3E4-@7;Yk2rtO(w6(E1G$mjgDAkUn79D34Qv*_I%($q|Y$&f9U){eVf8Z4&)~EjlwE?%s_vDPdtbW=t&jwDg0rDeCD-; z0RxbsTn{1xFnxX=^ACjo3+6|6`ZDGp+U0DMW6j_t%JApsJUM>l5;7)W2(>P<`?a8* zLwej(tSGDD$sIb77O=X7Ck3ow;VA)YT6kK(S{CLBSlhyU0qa;;AYfe!3k9raVUdU7 z4H1+3ZzK)N^sS^}p}vzeEY-gx4U6@?q+z-KEooS=A0!P+_8&>ZqWvgoShk-8tzOlZ z_-9GOvYnAMEZZ-VhGqM&q+!{9l{75dZ<2;(`(4toY=1}^mhDeT!?OJ)XpOLJ|C2N< z+ux4nCiI}i4ZWOGlg4EDtm^nBZhX?Sy>N$oKjX(3zh{{XPcNmwZH~cdu*H2ddn8@^ zez5SNhzFF8ulha6^d?HjOHL0ly{Xdi@vVoM{)p0H)0;89xzmF$?57c1F!50*nn~gt zdKWkneT?ZXm5#@#9%p(hr=PKf$CtOBVEU6z53i3eZ#~8I)=I~hx1MHt8>QpRThB1P ztv^VkP&&SL)RF0(l#U0*J2SnD((&c3u1rrGXCo3JDJB8_~N=N5T zWBMqiqjRS-J;Uj?e`TU`k7oK9r`!IOX+BxW^l?f@{~qu3v(25gf|1mtA1qDdcpO%r zqv=mq`se?n$0Op<=YOIPBgM^(>k*e2zbO7GdI-K{1+0uFsDv?aCc1=4pQLp2Elj3Q zQ91_BRHjc;ItI>krq58i`4%SAXDQu$3zO-YN;luaWcpmE2RZf&tn)m0&6=6{K6E7d zE8J%NLw0w0%r@Q%cg%Lq#qhX|>9;E#!{ZL7-|2MQJ?3I~+{N_rPPg4-E`~=1rdL!t zhR5AZzenj99+jA0S?TLZufp`|O2>!sYB0T~((zJQEvDC2I=*OGhv{{djxSo)V|sn1 zZ=-ZG{V~0*(#`b8 z^ma-&(;w5@E8R?gOz)s{GyO5WlhV!f$Mh~rH`5=}6P0eJKc;tAx|#l%-c#vj`eS-8 zrJL!G>3x)Lraz|lbGo%J^Dw^qGkt*5gH)OeNPK~b!<}f2&%9lvk6`+XO3yyqd{jF~ zqZC%3<9rl}zQhuKStNX7EAEZGBG@7$fx z76MEktMqY{zi~_-@ATlboqi@Tagq~lOUyTuEz_qc-AuMjpP_U!nKFHr(#>Sb^h~9j z$&~4Hm5yOJkLmN3j$ycf=~+t0FkHy=MM}poT+H+(O2;r<%JgMQ$1q&Z^c70SFkH#> zRZb5^*u}zX55BfwjR&VJSnGiO1pON7qU#(A@@x~Y2MBjr8=Ppqz_AroSfj1sJNYGyM&vW2nB#^tYrw9}g41?O0G~D{h|yrs7U)!{ZeD1^Z?JK7nxn zEUdVLO2=0;4tbqE2@Q96N_I?z#gKiEg?-^ z#}NL^>ycEWSeq!Jku&`==b$al$t>51~ zXlFb7?>;mwL07oU(9b`>ZLSiD)@QsiO-iq;d zjJId}O~yZG{J)IHQ#!6(=ffSQdm-bOGG2!9s~IoH_+5;bXS@pIRXwMd#^7#2T{1|) zdWGH^bHMh?HQR}Ga4hI(-+t)mKxicKk)TdsVdsr{9h>4qSVZ^oGX1m%-1HCW4e&uJ z{kRhovWUH)*g|3m9~-VGCM+U0P%*q9F-Wl`#0D#dljtFeEh9EmvE{^uDYk;xaK-Q- z#|Xvn2E6k^j9OC>g4F}$xdL$OiBW-5jS$}Gk3EZJ*6oX;isu&FGHpO6Aw<`w2x>|g4@HN+q9k7AS$Hq%ZwiG$L z#IZA&_w&;+f0TC2#4VVO=D$?39N5mw1S^~cJ6=Yz`ItY-O12nt&*g#@CBueY;h4?K z3fT559W!~!--01}m0$%aup3uPHW9<|8o>%DVLrN6u%a|{gL&pA!3r{v=bHs9oP{A!POzdK$n!0Nzg4jOy%=V<30620bH(kF zErn^gL$Lg@n4|6#tS}w6_%6w^V7kgXX4)gqd?&YpVEJ=l+bcR|+h{B5^lrfl#$tVN zk6=aSN&iZMozB7hTUoHYQCPoJk!&pLs;Xf5Q&IQTBwLNSth!(Y=E1=llFflBtm#Cs^S`Gg2>i7=JV3RW~5X0e@Mh30oq zo)av8Eb5@WW5IZ8e*(`tV7h+cY9!jhG1D_o@4!B#qhlsq-g=DRPL7#y`Si_P`U<3D zCS1V;tmV5%HXVDlu7c%_gI!B>%v`TvG4?&(1UsFBVc1=;yd2DzJp?;3X0T&6t~q2FB3Qw6gc~Z@>0MYG4ihXd z4V64xvUC(|gkbrLPysIrR6rThN3sK^0`hiaahxJp{!FZ_QYG7q3QZHNUg^mTYtzBK@K-lw8 zDT^iBi*CF`u>A3`c}pc*hr%ustY8Cr=yJ)-`gnz4^olx#TPaxHoSkP`8Pu#A%%c*t zxQupV=k&bKDwkL=-PXiv2W(AjgOyt&Sbh?wzqNuDOuzzeon(_&5?e1>4!Y_F!3sxW z*lZN6C+qESe9hh&+Ub#@At zpMpb)U4ot7g>vi`EH4G+&6aFE(%mE32F#Q>j-8>lh|8aWo!ef=+!Ek52TTJMq)(tg zuS+%?ef$l<3a4fhdsDEYkzj8*7L2z>?QI840{NM!;eCP?%|Z$G3zjzqW9EQh`SUP7 z4obEF=eLI(vnAb%Y3LotY`VM9%MJ@xFbQeAE7^3^(hDOiKu>2H#4!cy;d$;KuT z`$IDG!xVoCR=5@w@RwkxcO&lq1S=c|>;AW3c^RmvxZlI0#xt;rc^TNF#5-p4oVRNk zv4~*#W6?ts1S{B#U3&?^^44KRd7fbTTd-FsDOo0FhVun0G{2d0fn!0Et_%=&NoKyGeu-o=lg_pps1_`uI@)}WtAR+gG!hH%j$Y;xw$;86 zKQB^->1BnUKYI)5moxoJr`rOiqe`!G%v`fz9IW2elFh*y@EXTV+=3;Tr>>Q3DXw>& zVlY(KJ7&{Z2IFvpU`6xL4Q_PIrm+c2w3{3YUO_9-N0b4=3MuDA6QOVxZYSTu^jn>7 z5-wc5gY?^&euvPDk}!qb>6p1@Q3{@!xr@cADD}lyaNn&MD(4=_mSCV)l589LZ)M5M zM|G-5mbsn6Rdvji<#Z0Fz-of!rC^&_U9vRn<7-G}&QxnEhIMW&$;RWLzP4mDU}Wn^ zW{w%_I%euEZ#K$XPcrknZ}lZJvrz-dHX<+gIu;DD!?U3SrULSlr%|B$95adLryH# z!}Qt8F_Ynfr5LJDI2N3=2|Ve5O<)>w;ti1 zaV(f?S5$2suo3CI=ybRz*-l)non(8^{LeXN5-3bU6SjBET(2-4rxVXhWo$ zGA8>@j@h_NP;;Ffv*FC|wRMqf4f5AjF|4Q(9kbWljM=E0WA=Jm&|=*kv*B_uXZLU{ zSZyn+rvoNpk@+HMRI&wFW%ZIQ3!8=Bj+q4VM`F|6$FmZ&0Qh0aSajIF9%5Bcm@$hi zXFo7=1C&ndgnoJlRtPURW-^vH3KtI?GYRIIK|N5g(>dr4g9OVdiCHig}A;9g*vA#{&1I)E#dU(l==wAY%a}C^F_yOIAe}p zax7S4+xBG#Y@kJ(>0+-)wiJ7mR~3W(OpleIA+S0pNbAY+Oc4(t$;BO*g$Dn6lknt!8RLcoC7wH zIm{R@*+kUR1j#00%R5oB$te9K$)>|7PIfFBgJ=-yx+-__@G93$c+lX@A$7dU3ajlt?D%dudYz1TtrY{bd9C$q>g8*v&opNkcPHCiIs zEG$QsDu(^oGRK1DHqqq{*aXbamSp2SX%*LGutFqcL8+S48jjVCZ zhFgV#t#$1G+PlvvD~j%Y*k=woiR2s3l5~vCJgppbY|;xpeF_fFNJ1*{QKq52BMRFCA0|` z^uOvXc|~^m8ezV`>ked(_Wypr;VgMo3ccyTR`oz0uG_bqC9g@Lw;f2KMTqn}&fG_D z-gRJqUHagR={PmpVnoCDUWhY?qf>g{q1{LR5?pN`II~BvI|ps|ht6!d-8smnkDSS_ zXAi{a?BfVmVwm(vh;!|o_jaN=+|+^1y-mR#p=}vvMi@I`I>Jc(VW#mBsGaGqT}}Bc zZ$A4-9eTs$E3=p0N8O>Py&c_Wc3gn-1-f?4Hc-$9lqf_GVU%;r?3w#$ z)kjFT@-gDhxP~9}1wNVZF`gdO1nSLpt+2p~k8y)j zn`ru})F&7}9Oo!GQTndq2`35EabUk;^9cqbCxnFduWm@_h))a&*?3Y&7_6Ke(gH)L zfQp(LCRL>hr?LzNu%FET1Z~}EG4?WeI2L@_7Gz$xiw`(;Iae~FOL!4-_ zMTnCuwhVEyLGvYHpzieCu)tJX;5@HDtFS{=Ij zYh4@`m}A#!6XINpmxMUa;-w+Zw|H5I3oNz`am>ePJueS&#K-7UuLyCH#daaivUp{P zxu4+jX-~w(x&xz=t3$$Aq(ev;WpoT^Cx$<_2DAhBPq&AJ3U>_&2X;?DJMpOJfsk-t zn1qB5>XDGpA3PBf#wO2%gnPYSA>qkHpO7$i>lc!}`v?g)AA>?d-!~*AJboD#67GUV zhJ+#5*pP7FHZdebXsRRo^~Iey(Rq$+`?(WAn-$Qfh|rvn(7-JSXeUCuB%n_*h*%a9 zzQVc!q@P885z~6Xeh?JhiNV<9^A`ZOe*+Rq&&+vJODUpTOb`RU*zb>NMX z1EvH2`lvhbUE#j)DB-J+FnZY?62>n39og{gK&k&avfcOgIoolw^i71HVtDmkggbB^ z4n}BC;SVw5B>og5R{teN)be+SKcidPKF8McPls}TaS^2cG_h@KifFm*iwtJPh%l!k z+<{Y8z+v)@j8O|ZaQnsZvrvfh>`n^Dh@BLP5s#UQMrik3EJg&Pc#PP4i4Ygqy_bv; zdoL9u_I^x+cJHNQ#NLmM5qmG=P;z6T-FsPwa+Vg_ZI+7>+bka=wpk&>McYyNiV@mv zRtj;k-FxK-ZOJMjF0m!6I+V&Uu{)~fP%6K~u3kOFm3H+SF`}L|W5h|W6`|c`?GRVn zy&o5$EqQ#1YwX_Z#E8A05F_?pH$uD36GL2U_kL1@w&cknuCsVbi0f^YPL0r(JT1fx zw&dv%+LC7kxTB{nd1j0_%(G&|Vb+V#ZnJ)j$hrnGBI_E4*vp=fMiJU=HjWY7Y!V~3 z*)+u7w&iRVBif|qG2$@KjuD61BElUQOSFs;t=Bm*qMql*h2XR@9*n3-t_IlsZ z&+h&57_s*&V#MCtMQHbaWsErX_Az4bSB2Q$?)~Zr?KZD*C`Z)a9?`WiVw=}Flp`8s zx7i`a#YY-`G)~Sj9qTpb|9~9b8v@tId&8-^AwqjtH^zul)iFjK)=duW3D~}D$1;OA zhq&D0Ee_=b477MF5Vy?sCp&BJ7_tK++fI=Vwc0t-VODR8bhy>qBh9sXN2DWc9lAg< z9FaqqvmFECJ7dH{yRHtC|H;VXE(f~m4h)#?cId_@*@T0#+C2_rwRv`r_r{1l-sdp+ zNmjkzfv#%z_<+L%PsYq@4-$S6=;lCHTVVJ2P>k4P;xIWRt9EywtJ*z2>@fL5O7$T8 zDe#B`S#6=+P_{*qN6cc81sYx}5y4wD8_ zYLEjd)z6;e!7<_-4{?|@kyVE}&{gd@9_BDpmkQP`#C?K$qP*7kIp^(60LSca=gdze<2}K2#5sC>cClnW0 z;Xnen+6Hc=!=!|iT16-+u$oXxU=86IfwhFv0_zCJ3alrT71%&1XW&TPa+9QuDY5aW zyXB4CQ+e6-CPD>)&4h{qTL_f|o+DHi*h;7(@I0Zazzc*L0xuG33cN%(Uf^Xy9f4N} zCkVVs(B|?rf;N}06Hbv;-XNSR@Fw9jfwu_Se!lI%=E;se_Ck2aVRDwN_Aa5Gz&1jC zf%gd7puSINC?!51G!pob&{*Ijg0`$5JNVfYNbTrnEBA@Rq`9oNop83m4hM2f{q4|X zr^BR$l=_s=Qs6Vfc>KYmjrFrz9L*CCGrW{KJ6x4 zEG703v}fPzz#ioGg|;sH946W>>~~;mynUrDbs)r5cAWa(7}17*?J&_C{Dz=8_$@&b z>N|o4@qdI%l`Z*qj41g}h>LB>)L%N}mcv}U z10}OUTx3h8V?@aUAuh2c3&x0&g+g3yOBRk1C5wc(#+ED^BT5zvah1K3D;^{6O-sax zfk;V*$>owbr5wn~SY?M$$Aq}jV(Ac9TRb+zH5SV_Oxnp#$`Y;=C`V{7P@Zs=Kn23p z0u>3@2vj0mD^Qtmoj?^r2Z5@D>jkP2ZV;$WxKW@6p`$=e!c7K_)HOFvvQ3FP=?<6*!*INuUm)v%m?2+XU(oZWlO_aEHK2gf0Rn6EulVA>1h? zP9<~|IE`?Z!0Cj$1knu9EGJ}BJ^Q@0W5|omgEzEeHyzG+ z%yVL(V_U%; zz4R!bb!;mLw)M_&ET#Ksbb30L(qPo2*Wrws^p1Ivy-51TEEVh@u~u+k$mSBU8yR#M z+j44sHl@u!bOGyI-y`E9i)@;X3c0^IG+alc4`aLg zF(LQUb3gWQ#z`I*vn1Yx!x^O~Mr^{3^E2siM(N2R57OkA8u0dcCd06iX(6M%1?L^k z*!J|8Wg{~VXOx~9vDSOm;f&I=LpEo`)?`k^Xcmq%9BGz3Xu6icM?D;w8|}|j1GSqM z@=A01!1F^k&8MyOf{@Wp;;b$V8BH8`QNTOQn^2Y)N317gNyvkABTHkJjVy~;H?llr z(|*`pt_T?o3o5uWWF$9umE+`o8C0w$JRq>ffo*!Wqb0?PYXjcVTX~&hX}`=HQnoKz z?^xO|(}~!PY;Y{4an{fmZ44RP25)klBvQ4_gogySIFP!UecRnU7qV%{EN=}MZG+|K zL++_Z_Cmns;*)K^=s4*vb$E$zpTNt6dj(!`Ahkpu;*7o;Fy6~EY<_7QY@4}s_PdzY zPyTG9n@_0(t8QPtqmTXU(DwnGK1TQlGTu=#1Gql=Xz0gyL2q-Ic$ep=U;#P^^M_AO z{TwX7j*%c{!7t&0<>u+c0Q+X|ui=9AX4mql<+otLjsa$kK6X>TbAgUy`q<0%5ZJyY zb{vkv?0Uz*+U{U#n`+n%*Y-B_2iL&=RW_%$Pi?%|b?`vsPwvQ`m*t-h!6Flazpy}0 zd+Kj9z0<63RyY>ZD0?XDbTeB9v-a~k=D~C-KL&FK4MkD z!J(|<%<_tv+4Ib7CCp;$_LJWEIrxrC<;d{s=T%^uFSRkP6|YA(pKNvO*-wanm4grc zHgIOQ|5XmY;?@v`1KgR_$;>u(vq=s4;BFH_O@XEk4rM)QR%n))ecH@6$EYOJ+0 zt=TYR7e@8;YQa78Fm8x7pctVR z*o{7I;7Hwn^Q5;a@#9f<|F?2a&&aMjxw;(6s$))h=gjPhX7)BWyEE%lGkd$6b)QbZ z1AvMj$~wa=@8Xsp%4%t5@661eYi7H;*`zwcY5uDlKx1>aTX-nzW>YphGkb!Wy(cqU z*Ua9VnQdjZb021PJKfwOn}xN_4Y>L4CJeQ-cje}>Dlmx(;=ikOhiPg)94*IBy!U|V zjvk4YBi$c``8xtW78M+B?D4oD@QJ7(F6}4dg21Pug1FwFjtc^xi3*N1_H0}bm_sy? zNo}8QsAov{!bIK6yGkqb4d7B&GRAQD=jaFgzsv+9uhvr{&qX6)`El~ z0)+@e1qu`T2^4W~DC;D%$)ax74JnEdv}Y+!=r3C+LC~)cl_Y2fSqgwADj6WF977l` zoos2h%Au^YOf8P(@^Z4g4B>0D8B?Mx;Y)#X1e`EaqCBCzY@-69f4e(_&LDIVIFry-;4H%30`&;@2-GLsC(wZKfIve+H-SckM4&O@VSy%u zM+BM@9usIrctW5#;VFT$3C{?$0N70IDWPmh7%XrOp_jn94i07AYOa{`+-#yF-ByHB zlI`aM{Oq`ZpxM!ypxJRDL9^o`f@a6X1kH{%1kH|12$~(25;Qw5BWQNCC3Ke4b2&k? z;|hXiM>~RM$CU)lj`jr2j;jco9aj@HJFX#Uc3ex)?6{7g+0lWZ*>OEVv*QMWX2*>L z&5n))&5oM@Hapz?fP+I>Pnp=?;${=QJ-F4up{!@j@=lmV2PSGc-5OHPz-`Ys1js27HhcSnXEIXg0R$oE8s zf#AK7Vc2(HXuYw$`y<2l9*7LvdoVH#Wx7SS$=E~Al0$NhC4@f&x)c5sc$n~)Ko7#- z0*?^>5qOkx}l;{@gs#tY0NOc0n)m?*G-FiBt`VY0v?!W4nU zgsB2c2-5_X67mF=5vB_)C(IC7L6|A9k}ykP6=Al(YQh|WHH5hWYYFoN))D3ltS2lG z*g#k)u#vDxU=v}nz-Gb{fh~lk0Q1j10h$RfaN#m3{UTwxz)OS`0xuI*3cNyCCGaX? zHNd==0MI?Y!G&w2^qYjW0&fx43A{~MFYpdwgTT9ljevCaHh}K&eJ-VV?`?&QK3r1YnR7X>~eyd2v=lOKcw|V}z=Q-(2eWqYq>yzjCd!Fy|{7=tQ1v1+?0n@sjGdyqWd3(>F^gPG& zsh&^s{3Xv{^ZaAF`9^#}Q-`*=D==xCI+&Y_=cidQVkn)C5zkNy#E7S;1!KeoTqs67 zNi7^Bo~0Iv5l>T##)#*s#bU%0)#5SYnQDm`F}^4nBc7|4iV;s%kBJe_R!hf-r>n=t zi07+iV#E{HvN7TrYq=P4=TtsM+;volakIgSG2$mMD#eIjE~y;hh#Z4eV#G7vsxhLC ztQI3~j;hCqC%rXd#C>PY7;)oSD@Hu;tsNtt_#PJ{K6G+?jCk*|PKlVZf%lP3e4pleEJPsOxrA3R?`H$OsxY45rlg`Zkk9^(XqD`K2zaAk~> z46cfCvcc6cPB~I{)-c&*+JR9=-JPw8_cqm3VQq}l46ch2z1R8}@l0Stj2Ja+j1l98 zO)=t)rOh#7T(BiZj31th5l;cO#)t;;`54haz7QiC$QNTo1Nl;nXdqvX5e?)kF`|Kd zHAXa$uf>Q4^7RW*$+=oED;I?C0FT_7RPZi4e$(Yvi^*rz5`Ga)x)Cbev#X5GJsmVhz;tEb; z#1-5Pp5f|FyG2%jdBF5?FG(HKmr^UQk92da# z^>mE5zMhE@*VnT#;`+*o5!YAG7;$~|iV@dW?-+4?^@$PJSKkY(&-8qS=PNzm;Q2<+H+!BcoY{WUBCfXS>{gi8 z{dVxYv*&kvo<|NY~r``>}wnXNA_#X%wAk{#?Qxm7+V zH-ykhV5kFo-~8nooSb1aZ2NUIcf&(M8p2MWGshENJ4rE2#SS)aq+$VKf=s==@mV8l2=mr*(Ac?Zw0_k5b?b3I??`7Y0Y^!z8!fARbe&#M>99B(a5>v=fa^Yc7!<#~?h>pb7& z`8Lnr_q<^7%zg`DTK8MT^OByI_q>AVl|8TGc@xi@dEUbF^E|)Q^Y)(K=y_+)^E}_` z{78LE<7BJJ$vY|@-J?qL+|=9Q*KUUZJio#7?w&v9`AE+v zcs|AR`JONHJXJDNpGz^VZAA{I+nR1nAA7CD72Y#OT;siB#8uuqMm+xL6C?VWzA>WF z?-wIl`2I2WH#i_hw9Nx!#N&@aF{0ra93vio42cnsKZeGL#~;IDME5j2Ml`g!F=Bu< zB1ViNM#hMz+oNK{>vT zbkg%;M4vxDMhpTM#E2o+!Wc2=S`;Jh-WJD*ySF7VVwklwM%=wEixGEk%VWgTkrgqn zFiqS_pf+V&F|B>YkDed${Nz%Z^7Sz7`ZUiwACvKCF|FIr@qB^j3q4=r`7+N}c>b5? zCzsA_zaFNwJ{>*p=J_DcmwEn{=es=r)$`P`neDg3v>w;hobJZ{hhxp11M*QqS9Z-p=#(o?qqp z^`770`7NGz@w}_&_j}&W^B$h3%4g2=&6w8ne2eF|d!FO@Yo2fOe5dC*6*AjjgK6FV zI?uoGJXJAM{vu3k`SzZ7^t`j@_j{h>`3BFodj5vzsY;psR>QRJw}$7ZdtT4;HlC*{ zXSUN4({?+i565&{jxk5f#29mWj2L6ih!JDVnK5FFIV(ntF=xk!G3J~Y`yHtrZJNAf z+R=uUj_%&T3=ZPGVemRHMhsr($B4n}f*3J)T^J(D;B|3~7`!ft5rfyIF=Ft# zEJh4om&b^~>xvjLcwHGI2Cu7P#Nc&xj2OJGi4lX>wJ~Dwx-LcxUf0Kn!Rv+?F?ih= zBL=UVV#MHebBq|gZix|t*XLrKW;)NUKsQ3dv|d>McwVGR#*1NE%NO^&r03;5ui$wl z&ntW0#Pg<}H}|}S=WRT1?|Dbh^E{vD`2x?kd%n~2J)WnkW{&p~OzZh+@A*v6mwEoX z=c#I$?G(qfZYNbexr^(=yE zt!Gisi+f(e^QNAk?Rg8&TY7%3=jVBTiRbM-@924F&%1hlm*?4@-{bjk&vQK=>G>$n zCwQLc`2x>()y$l?-!bjtUQ7K*Eq$}(71PpBI?9&b{6lW+M0Z%$?a*BGEj&Nh^NyY` z^L)AITRs25^M5>_SSPdJlz9g38jJ@qt@Y{Vc@NKXJioARrhM*MneF_DX?G&)WxQUa zjJLwHHdGxvPhFVtHWz2gr|!;p^LsMh3e&osPM&x6{2tFA@ccQ?w|f4D=i5C0&hvww z|KfS--b{Ti#WNzBWd@S$$oMc(b}gjCfD# z`WW%9)D1DNGk9Z+>kW2{5pP)C6eHfXzB$HC25*TGACkK@M!c8RDaPkao7Neq*Xblo zyY}J1jJL(K`jws!@O-%Ed7kg`e2?b`J^#V;RJY82f9s#wZ)!lsKOW-w(2N(uwAS*sb!gp*IAy~P6JG9KpJ}9 z-t%ibzs~axo_F#5ZqK`U{^yF!ep8z=`@I*_dR*N+f7-j{_CwrcU>7Axg zH0NrTS0?ptrVeLfTI*2H^ERHh_xvT#Q`<7z`32Luoz#07KMB+7r_jx%gXy+tu<=p+ zgH!sBGk<7HJH-pe>w?Z)P*T>g3(P_^Vz>QY3(=U}{(mh*qjtytwGfS4m;Y-a9_8MN zg_=U$F|CLBB;DL8aRYLg{nqQzY>F3b&;^^hKn_#Z(8JskFSKjv!sp_Jc3);8&cW7r zp<8pQIg;nGP>!mBIs9((**r$aRGvUwYVTbzgk>~&_Om@n4n)RE<(_+78fPxSBr}g^sB|i z37uu5B?z|*lq7T!C`Hh(79T^nTS}BB=vRx6CFo}_$`JIc#bpWl)#7pl{c3S}f_}BQ z0^t$aZAF59wYU;Nzgk?GpkFPnLeQ@kS0!lVsu47D)d?E88U&48O@cL98b`cs6)_{IDybv&TCzQro@Q^O^K5Tni3}yG$l?U zXiA()(3Cihpeb=WK~v%kf~Lfo1Wk#v2$~Z02$~Z037QfO2$~WN37Qg(2$~X&37Qg3 z2$~X237Qhk2$~Yj37QgT6Oa<7$!I~)$h9PBON-v>OQ;w2lM~+D!xv z+RX$F+ARbP+N}f)S|@@AtusM`b{j#1b~{0Xb_YR&)`g%!yOW?n>q^j|-9^x#-A&M- zWfL@L_YgE__YyQ{_YpK`_Y*W|4-oWndyt@)TQ`D6?jeFkE+J^-x)U^V4-+(UJqQ}P zM+h3ZM+q9a#|Rp^#|av_CkPt3CkYz4rwAIkrwJOlX9ya(X9*g)9D+u!CqX0Ei=dI~ zP0+~oAs})`>i6m=Zxu|XKB#^%g-x^)^96^$tNp^)5j}wT+;mdXJ!?dY_=7`hZ|VRUrFAf;MR%5p28)WPePs z*Npj>?F0?lc7g_N2SJ0jlb}KSl%PTTjG#gLoS@g&7X-b&{zK5n?ILL8z9eYmz9MMk z@(CKb-2{!?9)d=0FF_->kD!s;PteF6AZXcDN%r+DN&H1 zDN%@EFXnW1VSu(;MYvFdR+OMYD@M?u6(`uBrL#)_bbF<^P{VT!LBms;py4@|py4S) z(D0NcXn4vIG(6=AHazL<3IMHBMK09HR3d0(Dibs^RR|iHssxQpHG)Q_I>AOJom~T< zRjA2@8kAZD8x-?}dV*d~#}PC##}hO%bqE@n69{@a)g|cVbRt17r;`X8uagNHuTuyb zuTu#cuhR$`uhR({uQLc5uQLgHIh{q&%c&kggI1rQL2E$Jpfx0D&>9gmXpIRPv?c_- zoSG8!a%x7<$TcVE<#aYcdO4j3(CxM2LXFq?1dZ1P1dUf~ zg2wAYf{mB?$##J5;9@Scp-N}B@fKdjg&Kpl1dYMv1dYKJ1dTyEg2v!Vg2tddK`)%E z09wDRxe%xSNc~yEWLv>hYUWY*XV-8~dPQDK&@1vff(Ew(L4$ieL4$h(L9fUg33^3# zBxr3kVvyg#?YniA^?ni3lbni3lcni87`ni87{ni5+Gni9_u zG$pnYG$o!VXiB_5(3E(QpegYZK~v&of~LeP1Wk!o37QhG5i})UCumB%LC}y-(1{eL&F2eMr#AeMHd6eN52EeL~R4Z6|2t zb`UgjI|&-OPYD{i&j=d1&j}j2F9;gB{}42Cy9gS&F9{mCuLv5se1b-9H$fw}hoF($ zOVG&eBWUFI6Et!M2pYNn5;SsO6Et$)5Hxb%5;St(5j1lDBWUCf5;St(6Et!^5HxZ> z5;Sr@5j1i?6Et$a5HxbX5;StZ5j1kY6Et#%2pYLR2pYLR2^zV-2pYM+2^zV72pYN6 z$L3z5Em}{FToyqimnLZB3J^4M1qm9tLIjOmVS+}k2tgxPl%SC-M$pI=CurnK5HxZn z2^zUl1dZG=1dUv2f=2FGf<~?kK_gd|pph#_(8!f1XyhsoG;$RQ8o5dYja+4dMy?7$ zBUhDx$Q`NkYn*&oFqP_F^=Lc4YTT2iM0J9uL=A$bL`{OGL@k1*L~Vkm#Bl^oiQ@^H z5_Jfg5+@KeCF&A1B~B!0N}NQ{lsK87DRBxxQ{q&Dro?FkO^MS9ni6LaG$qa?XiA(# z(3Gf0(3Gf8(3EIE(3EIM(3EII(2Kb-K_l0Mppk1z(8x6-Xylp`G;(JXG;%En8o8DP zjodi|joi5ejof(zja(~&M(%uqM(zTFMy@qMBX=P|BXwyOW@i>q^kb-9^yI-A&NQWfL@V_YgF4_YyR6_YpL5_Y*X74-hnR4-zzT-3S`F zhX@+EgrJe@PSD6bOwh>nAZX+sA!y_tC1~UxBWUCvCuroJAZX;CBxvNGB535ECTQfI zAs})`>in7{9~VreKCODRo!_(Elcq!tK~th9K~tg^K~thPK~tg+K~thHK~th1K~thX zK~rJ?K~rKNK~rK7K~rKdK~rJ~K~rKVK~rKFK~rKlK~o}^peZqepeZqupeZqmpeZq$ zpeZqipeZqypeZqqpeZq)pcnH5f<|s4K_fSbpplzQ(8x_8Xym36G;-4j8o4}zMs7Mm zBR7Mfk()`-$jx$Ke~|7ad^uotK(DPeAEciH()R)8xy6b3P7OYhI-f95U;$x}{^}iJ zu)rdM`7RE&v6x`KgacSY7$&fkFkE06;Yoqzgj|6Ygb@NO346`8Z1%E>Fj7jaCX5nT zLl`ZvmM}(O9bv4%dV?@NN7fv*U9Ip-5JBX$#z5l89)n zsvRU~s(nw;6a52Wtc2o6g4XmWg67`O1kJr)2%3Ap5;Wky5j6LHCur^+B53aYLD+7h zXA<6MG9?mU7j-*YI}kL_t|w@o-9XShyOE%I){&q!y@{ZCb~8cq>=uF^%dG^>vrYs( zxXuL4v)c%oXSWkH&+Z^-o^>H;p4~~%^U;-{XY4M5*7R<|I7z&0f+pTQ1Z^SiC1_mk zBWQlyPtg2$fS~#DAVFJ*ZUl|oLj;XnLeR){CurmzCTQe(5Hxa+5Hxa+67+mLM$pJT zPSD6bLD0xONzlkWMbOASP0+|aL(s@QOVG&W5HxZ<3F9PCy$KqqJ_HR^UxEgzA3+1v zpP+#nK+r%9BUtKGKZk~F_)nEF^{16F`u9p@&bZJZXrP5TJAzmVA z^j;?DDSU;XXY5si*5fsT9^C5$J^VKa({Qxu?6&~=Xz(2_ESI)-lJ63}mIrRz2ww`k zM<^=rKB2s9;{!qkfe#541wJBF68M-O{w6@l#pt?3Se)^sO9Yx*fcYx)^MYx+4s zYx)I2Yx*C8)^ry^Yx*TYYx)&IYno5cn(iiOP4^JArh5rm(|rW3>3)LN^Z-F?`d@<9 z^lO6F^c#ZK^jm_~^gDvq^nV1c=|O_l^m~HV^aq00^hbi$^e2MW^k;(B^cRBG^jCt` z^f!Xm^ml^R^bkR7`UgR4`X@na`WHcK`Zqyq`VYa@)co6%?dIxgf-57PJ!Gf5($d+J zFs+{F`E<{hd7k=DrhF|-FO+T8_53u?Q@b+di(p#I7xlb~=hZwv-t#)1*Y*5F&rhQl z$gYR!wx({$oGjad)F;dpXh4`};0S$E(|XA+(y21TG`w$bXn>OL#*{TuzuNa0OwOKs&;l z0#_1V6KL1qFLoyf~L%M1WlO^1WlRi37RrD5Hw|O zBxuTXBxuUqM9`GEnV=bR3qdpFR)Qu(CxXVmGeP5j8$siLJ3-@r2SMZCg`n}jldwh3 zSXY83#9f4!q{Q6>jczt!hLpI6Fk9eW!m9%J5uTMCx}WemN~E(N0B9pO9Mjsk=6as` zGUI1pTFck-{9Mmld48Ga?L2SqdG1%4?Jvc&Zhx!ihdlqs^HhGO{I=bh?Ht0iZfDoN zjPJv=`hL&9@%&rQ|L6HZ&;Ri}wLi1{mocr|f7SC(=;r6p4wy1+&E+QlVrc3t{A6iX zjQGjYbd31P(gHE!XZ8xlh@UJi6eE7Jv~Z00$SH-p+S;_cq!V(e|2rQ?Cx6kU#Ky`ufl1WFKQ3zQ_x5hz8ND{u^9qCjavp1`q$83JVplLg8WW(t%e zj29?Rm?ThvFhZarVWdDM!WeA5~c}MBTN^l?%-#Pa(19;sNpEtFI{6z z2e!;k{I+zhfOg=gHEV-3xW~E0iRQ-f1e+V_>^ffQ6S#05DwWQz>n%Kq3vCvd{~GTt zJcSE20Zt`o0-Q$B1UQ|b32+8M6W~mOCcs$)O@Mj?O@R6YO@Iajn*izTh5$V~jkr)_ z-MnOk_IPOm|-&qTOwjiY@i*p_>>(M)Gw?)GYO@(M20K(-@jAg?6YK&G?X zd#hi?g&M=F2^zy|ywcZlp^c&WEkAGJ^<1dYy1`p`BNuA4I(iFl;zEtq&ECRWxX@mh z>Fis*g`K!?uUtf(y@j`Nps|!y zmwOXzzij>sC&32X{3sqlJLi4`?VS4)Gz|t2Gz|t4w1pT1&_f!`h1x6+A!r&5C1@H9 zBWM~7Cukbv5;P4)5Ht-&60~0)MbLhEG(mG=3_){YEJ1T&96|f#@dWLcClE9tCK5Cu zCK2?ypA68GHJuAJqB95@(U}AtY0dIhpUs6D%sB)N=3IgXa~?s1IiH}xTmaDeE#yKC z<|2Xyb1^}KxrCs>TuRVjE+c3#mlHIYD+n6Ql>`muDguIeq>ia!a=?^WdDI=#YVJw1 zWDP;HWGz9nWF0}XWIaK%WCKC7WFtYdWD~$fA)S2?(|Tj@gXgJ(89yDTm2^PX?>{5{Wqp_}`L?@b->$oz?Pz0*y%ozBeH$9#dzd;`oE%*;2$e4)&I zBg_}h%s0k-k<5G(%ookfH^qFh%zQJ<7thQ$Kiv#IOJLrfM{}F&mL=!QyF_IO7YLLk zv=%5wxKN-x;Ua+wgo_0#650q{oC;`* zCrL%jOMcGi?)f?R&vBvgHJ4_Dn`M>e1pS)J*@Vtgq6Oi0 zftG|W0_PCA3Y<&0Ti`r`e$Ay7LBHm5K0#0K1qA(?OKXCD&E-OZe$C|~!XvWViwXKQ zmo^0bn#(1Gr(~5&3Hmjc%N*=X-~EU=$8Ftw(pkcOxr3eQ?p;iQE8Kk2P#z(-bFi~O zw{F^n<&w3Y#;V-*aPrPyCO`tdM)H%%ok4g*;7r19fwLUQ*&2eRsOK!{BZcZakU|6TZ$}#hwr>ue$2JUYJ{}u43T#g< z{xfUi!1iv)G1kOcvP*W_lz_JqO^Id>Y%TVU#+B0C+0Qoj2jYSH+0JaaJ!A1eyhUIK z`VKW0RZEy&RIRwY7_QHp(R(K^lCJOkc**W{17*nthb`GKM3%IUm+V=h>s%Nw+1G2m ztaDMkWbeRHvgG1;$-YVBWJ#NN$)3SeWXUD*lD%W>I_d07u|$u$JxkfMw*@W7RiO>X zL&~eUj`>ezn6}MxI=idqsUI`G{TH{7boOVM*7Dzae$ey3JWu_aDgP*@wKaXx^PQgW z^86dm4|@K+=c(T^+b@Y}-TtwjU*dUt&pUeF+4BLO=X$=x^JSi|@I3W34#DNa+wjk0zB$GyJ>em}%#8Gk*5kjJLwHrc2Fr z8Ly3L^%?JEd>N+Izx>*{8L0ebrg64x+ECQD>%r5(uD`l4q)HZqKV%0z~DVaw8F52NvKu*(r~ zlJZAl_)tEuJ$>`Dt&PE`vJw$n+tUxtdgaLM@GP+18!@7)8rYtG zi;Pusmb@;O#<699HYplks(ISXtKe@xCdxX#0K{a$3L4rJ2HIip+#u9I8QA@vlrhvq2;2T zIXAQs1CG=MHc9?4)%*G=yTAh3=S4fiCs|sBHWF>x`Js)%2=ju_M&}x99oiU-n=gzE zC-S1u#`ZDR##!=?LY+o7~a^$km#-ZJ88`|Wt#x8f3tdt#G;XrmU8O=t! z&?by9c4cJvXi9r$$#mJ+RSslhGw~Mr)uBxrX6%~Cu(4}H%fnsWb)ii~JJ%t!JPiJ? zj|};DLufN_G2BSA2|axj8pMu7o6s|{!J8sOBXe_TvyjlYI7@ypTQqR1133fsLs^|d zn~h}ZOp}^SMAqFF;Us)i>UN^7-dr5V9ih#eWUNbM=sE5TZSHtuT|=8c$JkwgfLFj%qFn-cPg#uoOMQ1CgO(4?0W6NH%qIAm?%^ z^86v1>|qhsOo*}vG=|+nTh`AU(!(%4q#ka0@}P8Fk2tV<%b$v|&7*lGQ2vUgzldH9@LpTPF4Md#Buv~|ecevzSE|IpUsIm&>*@~30J18MevXY|8a z7(~PY=TFCh3=VA126SdaB14u8jSNloFlWgyvq1yH9msfQ!LX4Aa~&oRNpwdzkWw>- zpluoD@MqL*{{ZC5XlIfJn{Z%b1IwR@=PcuB_F!iYLWeg##5w&j7MMV^A>WKGPK*p8 zpA=aBOmr@j1KYC&+nW;Fb4bdmk)ipY78%B+d4cWig(IFGSpF=GnrB3YaqdiK$tpSX zvmEF-orIzEY$A?!uYFKCC$zpt90xQ_{x)aynp#Ku^mne?nGNdRzC%o<<~d8=m8#Dt zqzc(ATHwHjeQ#f!goVzM)w0$i2U4gXx|qe0p*2_%87{!3q4mcN%Q9!l8ri{e!VrNK z4rGr5Ffdse8G4OXp$(j3Y;|aZknw9m8;ppp4Q(j)v5qE}@**idsKMv^&nl6|^<9;TY3DAKEZ9R4)XUKMxJ= zi-GMOfpRZJhJNtn&_?2{z7pC93@Kg>EPp=w_Sc*xYbBJgJCIP0L7_Kj(um|>2>&M0 z9_=`^18;>k360I$p-sTe$vc7NFT(xwyUvnzQj={CY)$g*FyOt=79tk!2ezjl8rBaY z!!6o}f$g1)p7W#7CZYlPII#V_790B{u-(H^;qA_n;Zorpglz&l9mu(yjGpk*(5B!5 z`z$hy;XkLzIUkNx{DO#cp1&C9@;`y?orWf1S7=j_bzg=y9jEClXUTf0alQj-D`$?t z!S5zwuX|@;OuZ+xJlw$T4Q&>#+I`NFFJuq<9mqME-OCg@5ZWB1(tksni^1vFp)J4_ z`wdOb(?qQNEz#C^A=;kr0?S{9q1^uh+q(z>I!KcZ&cM+2d!pUoVjS8Jf#om9Y56g* zy^GQG{uJ60oT{IlB@^Ye{Ng}P%Mv`G_?0F#S%5C|w-BeV!d=SmAy{phhWjRYW$N{Gbc>)C- z$Qf9T)~;Y=Xio}-wg$Ofm?np{3RhJTqCKottBe&5Z5_J2Vxg@^(_1{S{8cND^hlst zl4W}5jYmBcDB*UNyeFrkqysq>8!?b8MUz9^IKtpDM0<#9F?K2)+GZTiu{2qEGtN($ z2)7`C%M$GtpTliuxxn`2U@zsJCGSg}D>$%q-j{<*u3}*MYmgk30^4WbQ>+{rdh9BZ zp#!TLnr)e@(d?n+jh<}^Rwv>p_Vq=M)S%gdvj(D}s7bU1`%O0YZM9%}-&Q+ZJ^(Gw zan6ztBa=Eb+1vO522UW`y$wPSR5vp8R43A8<;klJo)lpo+Mtt(c8f!C z-JcTLFfwYY;YO$F$>zu7 zk;XL+lg+Z`wGQ<3PMl~;T^HdbBy9(W$vj#0dIxgsb8%mMLtwl6pli9&S+Ye|?C3yN zoR9RsDYD_lZl=i*%tq4O65)cmrnTw>)Yhsq3z)s7b`QYV>Nc8eX$k6jI}ru+)I-k zZ$Yi^BibFW#>)2xwtEPk9y}1(zO`t?9t>?APFJ_k)+7861-5(0sv`{snkNO!V4zOz zqkS%raA)=?=h!Z%dxQf~{fCJ*+Cy>8_n^tzgMp6_?K#?vPU2CT6dZzf^D&|=xCMRD zhY=0k|n0|rnS%ChyKTT>q6&J^V z7*TRyh%<-b{%%l==t2iOO#U((H88}1Z7=o@Kz}kcv@K}DhXuBK1TOO7f$blJ0b_1t zIN%YHp)DR6*q%Y?Iz|Py-#(}r9U01vi43E;v7rq{gFKEVCvXwkxbY5?Ns?L<9LO0M zg4#_CZ733JQfR|)<2pICAt*N`v|*^-)X;__lGB_e&r3z}97simB8byNvu|zAhzyUU zW=4is&!WlU+tJMI2v;MJb0S=c6rW49X+IhT=LNQZ6dp>=j|>r75ZY*T$qQ+=I&Sk@^+e>)=e0S?g%k24_(Pl zqCKRwgN=O}+8VUVpM|y-o$=>1yO+F~$c8V7c7q#nkNO{H$)|F)}8o68TaH(HS0q4hymw})oyH*YeMYcJ7mun$h*zR(8XMs9y-gOU9QA{%e) zzo8Ap$@)69;kXXJ2`v{b__s8v;8I*B-w|yE$08#C3vBlstb8!A17i{Q?`g6@n+!h? zvBBMQaW(xI*nvqH3jGw=o;4UU{T$eV$>=|Sq1m0xx6f97jc@?Qf4>p!p6BEI{~j6c z;130MU>dI3KWMU-T-+%ANwgbWfGYk)lY%4Bm;LQ9`OK6wkUHc)kvx!xwmyp{Yue9n zr-|6bfthI73k0@%5qi*qfgPBI4HgP*4mzH~q0PlDMv=(SmK6#b|7b9BhF`)&^DnS zRU^ZFcD2Z`gX+$bA+m!S4y3(WFh0lh&^3X!hc>_bmny&yy0$H6rq$bHT0a20tWL&L zS;wT3ohHG|b`D}1<&V^J)K7|-p5w>b=KnPwV~Xaaen?-LRkHBG)RkF<3MT^%wL9ge zorNEMyj%7IcO{5Nf&e6DrPR(6ojN^oXVN|U!3R2Z+G*~DAKqD@`@=~x7zNVi3sXr4 zymY}!54=2umpr_@jF-3Y@(y0!!^;PF`3NuD@v;*y=6APJiTMSaRAPRvCWUYGrxNq= z^HfsWoWP_uUK-%#CcNB&m)r1i4_=?Ay*^8Hx%wZ%A@bVO1dg7%oUIyT0 z5MD;&WeQ$q;N>m6e1(?-csa+Mf}{;zvhngDUV7tY30_v>WdmL|;bjY6w&LXlyu5^$ zSMc&0Uf#gVTX=Z~FWd0)K3+b=%g1=xiI>mt@&#UY;pHp5?86Jb!)(7UWndDks#xURsuYnGk!-Wlg_tA74_6)$+NOzSYx|E}=wS^76MGA-Y~*TcWp z!@t+Vzt_XRz39I~hkwUQdOPrMr}%HD_;06pbe&>*+<^aox`0sf`!4BJsj@o?7Vmw@ zj>08--~D}otU{%~v{QxBg-U;4I8~&S(IN%RbWxcuR?tirm+2CP%ydbaE>+k}A0yMH zi7D(3h2n*d{l211S1MtqE6a41l4iQ9Ojj#qrmM?z zjbqGoO_{D$+DzA$>En(y)5ptnoib+n1evZ|)=Zx$(+4yxeImfqO9Z1+{HTACaaE_yF}+M%{sx% zU8Zwwv+A0;%XRLGtP{;#JDs~S>m)PRUgxgLI@!!!t#j98onq#$)w%1kPBnApIh_sB z^;xHxxf^uu#;nuLTt}U|DeDX~ceBpjl69t;yH)2pWu0Z_I_unRS@q1^?K*cyR(&&P z9s=4u+?mzD%yredyRsUZxw~~PJFAhIyGQ5l&1!7s?$f#ZvznN>2XyYitfpqJo6bFy z)y&K#I@dj`xtV)d=XzwFZRQ@)xks~Fn7PMv?(wXaX6^}{dot@BGiM%A+Il{nb*`Cv zM(3W*I?v3tN^AVmt+LFl`87COv~~J?%$lEmv$GeaFTkw%oi{t%Cfypd=11M^?4{`o zF>8Lo&Ca$>UxZonb8U9^iuA>pHNVYfXRl1R!L0cqHamM&`V!2VUtP1a*Q77StoeyG zJ9}OFGR&IaQ?s+zr`uxo2A#bzeK}@3>g-MFD=>Sr&fb!4huK?owv%}VY-T&_>}~1x an7v(R??_)|W`8VjO;)LN&tmo&@&5ymg 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[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return "", 0 + + 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(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_str = '.'.join(result) + trailing_dot # type: ignore + size += len(trailing_dot) + return result_str, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + 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 getregentry() -> codecs.CodecInfo: + # Compatibility as a search_function for codecs.register() + return codecs.CodecInfo( + name='idna', + encode=Codec().encode, # type: ignore + decode=Codec().decode, # type: ignore + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 000000000..786e6bda6 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 000000000..aea17acf3 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,400 @@ +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 + + if not label: + raise IDNAError('No Input') + + label = str(label) + check_label(label) + label_bytes = _punycode(label) + label_bytes = _alabel_prefix + label_bytes + + 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] # type: ignore + 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 isinstance(s, (bytes, bytearray)): + try: + s = s.decode('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 isinstance(s, (bytes, bytearray)): + s = s.decode('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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 000000000..5b5e02a72 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,4246 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.0.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, + 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, + 0xa7f20000a7f5, + 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, + 0x1078000010786, + 0x10787000107b1, + 0x107b2000107bb, + 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, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 000000000..6a43b0475 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 000000000..8501893bd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.4' + diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 000000000..186796c17 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8600 @@ +# 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.0.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', 'ss'), + (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'), + (0x2260, '3'), + (0x2261, 'V'), + (0x226E, '3'), + (0x2270, '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'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + (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', 'ⱘ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + (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', 'ⳃ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + (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', '匚'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + (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', '网'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + (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', '十'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + (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', 'ᅗ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + (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', '文'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + (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'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + (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', 'キログラム'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + (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'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + (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'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + (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'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + (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', 'ꝼ'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + (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'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + (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', 'Ꮪ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + (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', '聾'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + (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', '囹'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + (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', '嗀'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + (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', '喝'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + (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'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + (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', 'ۋ'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + (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', 'يح'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + (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', 'عج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + (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', 'جي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + (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', 'جحى'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + (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', '〔'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + (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', ':'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + (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', 'セ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + (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', '←'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + (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', '𐓝'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + (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', 'ꭦ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + (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'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + (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'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + (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', '𑣆'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + (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'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + (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'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + (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'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + (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'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + (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'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + (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'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + (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'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + (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'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + (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'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + (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', 'γ'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + (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', 'υ'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + (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', 'ζ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + (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', 'в'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + (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', '𞤫'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + (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'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + (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', 'ش'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + (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'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + (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'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + (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'), + (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', '呈'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + (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', '慈'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + (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', '㴳'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + (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', '䌴'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + (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', '賁'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + (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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 000000000..1300b8660 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,57 @@ +# coding: utf-8 +from .exceptions import * +from .ext import ExtType, Timestamp + +import os +import sys + + +version = (1, 0, 5) +__version__ = "1.0.5" + + +if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30edea508df808326ade60bab21b50643f064335 GIT binary patch literal 1864 zcmb7EOKclO7@paO?RagsaUM-o3frbUOcXCA&_)SFD(MT+M`%((_F}KSlVsg}STmcZ zj#A-BNEM=jAP(t~0|!vW6>+2-;ZnDtRs&Lz$|bib<$!wPpWWJNp&a<7{r-Pu|C#+C z-@iX)vuOm9|Mo}6RS>!_7HxrbBo9&;p><><8@uQm2@6Ydu_u|5Cz~>?Wm|C-Q;D={ zsyo3pXvY`oz?c$#+Uq=g%FRnw>d$_RNOxEXX`DWmPW_%9D$J9jppZosSGc ztHPr#;x-MQ2PVKe3LjMtsv|jQMfwtdf-lP}xF)v`Z0i-dCQkoDR#3b8ZH-X_7v$yl z(>jQVN)IYEQVsQTP}VKq)|aRg65R>)Fwn~^q{Q;d>BxJU5PhubT8xdA<9y2cTtM}p z9y)=~ijmWquOVM5sK?dlDz1o(3kt^pPsI1}#Dyh`&NH46uLxy=k0PFj9~cXPM~rZp zc#c265Ev(%@Z@5}n4CRsOdp*zP6zg)ONM8Hz-5Nx)m`EdKOC+GOU!B*#f!whXt++r zs5ioez#l0deAQr(&an87HBXpPcj`t7-0XlF9-9~YMycfZPFN}x>kTSc9YH@B?0JAD z`ZI%ay{+utwK;(1@w-a;%Bj^;YyIncKHGEc-Or!>MbRICBdT`V1&dBA55eMzR$^!+ z7Oi}08#@h~Mg?j4z5i?zCE+6V^{9ZhUTK7c{f{ou97I)+qCQ3Gg53>UR7@}vl+<g%FS>7QgEy5yDk}H%QjEcyb+m$Nj~5E| zgj|mmx-5kqcCSctonk>b@bcBD9P#J?S=-c|qk-4qYB4UuIm=;$>1CK=Y8|ygtE?|A z5WnN5R|7w^9G~e#c*GTqDf~Fk+hh6^ro%r%f$6ZRm{{O^9#m96uGsKBCei>-$7M{! zgHN9kzVNW;0Genshcfw3$3GhX_|4|g-?aSNYb|a6wL<_mmHkmA3j;h&E>%f9V_X)| zigBTWU|b3qmsx}HT)?&0sO$OKA_UZu*k5L-Xcr*kLq9nND2A0iLfebQU^y*v{$RchvDL9F6RQ(9^Dq1? zzxdV2ouTp8(D-*pT0;}x@4GcLc~2R+rHpJUvO0P%HQGvzZl#lW-&St|AK1#L@ZjbE zO68i$-PDez`g>9nR(4hWYx68dnO$25i(`jxrw&6T>gYoz`gfxzeZ)XFj2&-b`3Hmn F{{|j;!+!t( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8685a81f950bf8c56ca35aa22b6d9d219ebe0f3d GIT binary patch literal 2058 zcmb7FPjBNy6dyZw>bObUly-p@mFWSrMl@dF1VS8kw_Wx?inIlZT&$@*X)GK&jGc5H z^-x3)djP4o?tw2*apyy@m*rOZ$`>e`oc6?fBp9hLZ+`F1dvC_S_xhqzF$t{I z-~aGG)d=|uH{(?tDT7}@xgaWeL_BgvJcX0r3c0PJNK^&1z?BKAN>l?>pFs-}Edsj0 zHNYVsu7)mg1Mt!fyvVi2g0z`nTjUFq_y#8p@NJlUu~AOTR>jRjEx5Iv^m!ZZ){5*$e)47a(0=gUp8e$E1N$o(X6GP^g4p)k zoq)G_nC!UGam-S?*5hH%4*WyAlP0Yw{G|5L$9C)|d?95m!WM(_62>zEqFo!QiDd1}OOPyG&9rk@wv*n@%7(7XajJ=H8dEA2i_1jBdl z|1?plKhwHAgcjt2BM7d304%2-92m9nK?@8MKHfNrT_1%(3WD#%ttg>)LlAKyIKyVK zWaH&?A#Xyr040x?3JUHA6vPENQBH^hTE0$H*o_AkNr|P@fxSi^jC+~R@nSHvw3r7? z@iv?i8z5qg2-8O(fwAHJ&`%tvzdE^nZH&E#?nt9ka`hH{ru|>Hko4{bI^@cPGig z1D7lniE}})lj{AgyqLR(78Ts(eh)^WtSWy#$uCP0n{Xt?V56E~z`zSZN!8hsBxIp0 zG7l@(_F@agTqnJW7z#AT*gt3FZ&lNcS7lY-92kmzFXt8d)U66q zWHj&dK_iMfEa-B{Vc8gxqS;D5oM&tpDXV-v`>!Kg!tK;2tL*o=-43|~W zd;^-h$7|#Bd_aF8-iPpV@&%w=7ZgPqszt>(_lE?2hO3HFI)8Ua;Ad!{zC6*l&p&t` z;cgo(>*pKK9o(&7n`CY4C0Q93%gVi%D|ATU_nMOG#%blMx_P>EwYL2ysmgcy2ZN&B A{{R30 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8311e5409ce7cc003b2695b599b4f037fc72da5 GIT binary patch literal 8701 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8c3bad215081faa01e3fa1018d7e017cb8dbc86 GIT binary patch literal 43609 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py new file mode 100644 index 000000000..d6d2615cf --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py new file mode 100644 index 000000000..23e0d6b41 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py @@ -0,0 +1,193 @@ +# coding: utf-8 +from collections import namedtuple +import datetime +import sys +import struct + + +PY2 = sys.version_info[0] == 2 + +if PY2: + int_types = (int, long) + _utc = None +else: + int_types = int + try: + _utc = datetime.timezone.utc + except AttributeError: + _utc = datetime.timezone(datetime.timedelta(0)) + + +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(ExtType, cls).__new__(cls, code, data) + + +class Timestamp(object): + """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 negative seconds + positive ns. + """ + if not isinstance(seconds, int_types): + raise TypeError("seconds must be an integer") + if not isinstance(nanoseconds, int_types): + 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 "Timestamp(seconds={0}, nanoseconds={1})".format( + self.seconds, 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. + + Python 2 is not supported. + + :rtype: datetime. + """ + return datetime.datetime.fromtimestamp(0, _utc) + datetime.timedelta( + seconds=self.to_unix() + ) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + Python 2 is not supported. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 000000000..e8cebc1be --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,1010 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +PY2 = sys.version_info[0] == 2 +if PY2: + int_types = (int, long) + + def dict_iteritems(d): + return d.iteritems() + +else: + int_types = int + unicode = str + xrange = range + + def dict_iteritems(d): + return d.items() + + +if sys.version_info < (3, 5): + # Ugly hack... + RecursionError = RuntimeError + + def _is_recursionerror(e): + return ( + len(e.args) == 1 + and isinstance(e.args[0], str) + and e.args[0].startswith("maximum recursion depth exceeded") + ) + +else: + + def _is_recursionerror(e): + return True + + +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(object): + 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 as e: + if _is_recursionerror(e): + raise StackError + raise + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +if sys.version_info < (2, 7, 6): + + def _unpack_from(f, b, o=0): + """Explicit type cast for legacy struct.unpack_from""" + return struct.unpack_from(f, bytes(b), o) + +else: + _unpack_from = struct.unpack_from + +_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(object): + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and :meth:`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). Python 2 is not supported. + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param callable object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param callable 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("%s exceeds max_str_len(%s)" % (n, 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( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, 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 = _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("%s exceeds max_bin_len(%s)" % (n, self._max_bin_len)) + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError("%s exceeds max_ext_len(%s)" % (L, 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 = _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( + "%s exceeds max_ext_len(%s)" % (size, self._max_ext_len) + ) + self._reserve(size + 1) + n, obj = _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,) = _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("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, 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 xrange(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in xrange(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 xrange(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 xrange(n) + ) + else: + ret = {} + for _ in xrange(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (unicode, bytes): + raise ValueError( + "%s is not allowed for map key" % str(type(key)) + ) + if not PY2 and type(key) is 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(object): + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param callable default: + 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. + (Python 2 is not supported). + + :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() + if PY2 and datetime: + raise ValueError("datetime is not supported in Python 2") + 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_types): + 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, unicode): + 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 xrange(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs( + len(obj), dict_iteritems(obj), 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("Cannot serialize %r where tzinfo=None" % (obj,)) + + raise TypeError("Cannot serialize %r" % (obj,)) + + 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 or PY2: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py new file mode 100644 index 000000000..3551bc2d2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py @@ -0,0 +1,26 @@ +# 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. + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "21.3" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014-2019 %s" % __author__ diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 000000000..3c50c5dcf --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,25 @@ +# 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 .__about__ import ( + __author__, + __copyright__, + __email__, + __license__, + __summary__, + __title__, + __uri__, + __version__, +) + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4341843d9a64333211ac05e947f9e43f706d324d GIT binary patch literal 663 zcmYL_y^hmB5XaZ~ILFC3La%E@lx6}H#fT?g5f z;T;eyqT>a42&m|yt0M6NC$77SaiY_W7yMD`?Sn(58FA9yJ4#c38XILn!DJ*04M5oLGctu46{X zNskbfCrKy^NK8U<$#-8@Oe!u?NVISzLVVe# z<&V7MaySub7*l7e^Tk3tVM-mIQoiCe4`XL8QZ4x`*FvgtK)2GTYAf})C=Z@bC$8^~ z<1kmufia#z`-r)|cU12CN27Z#;DK{ny%}1y6=4i(%Gz()tkJ5`t^r;mY1Zh}umC^M z84#U+#*s)E)+I||`$*uIT))a^c>Mkao=(R2wV-*-+;>963iBk3S;A87&c#O+7T8;{ zbcJI+gY|2Rj=hnO71zwY@Cs)` literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7fb760222a26b40803c46f77dd8735b2250e7263 GIT binary patch literal 499 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 NvD+itm?T$+{{?wwbV>jK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf7053138edc0732f1c591ddcf877569a7e8d7f0 GIT binary patch literal 6943 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 x9?>F{%R%nWLzokqQ6+ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66480a3196e4b71d225817519f69cd235a40cb3a GIT binary patch literal 14091 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 Nrn-K@(VY#>{{e<@9QObK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aade16fd202f2e286430cc8b9b72a50d720e0615 GIT binary patch literal 18989 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 N=--&XPf@0<{~ug>G~WOK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e19d9c605f16357062737662852b65a81b3c142 GIT binary patch literal 5901 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3dfd90a6991ec42abe821873c34667d6b013f8b GIT binary patch literal 19972 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 F{|BROk6!=) literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 000000000..4c379aa6f --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,301 @@ +import collections +import functools +import os +import re +import struct +import sys +import warnings +from typing import IO, Dict, Iterator, NamedTuple, Optional, Tuple + + +# Python does not provide platform information at sufficient granularity to +# identify the architecture of the running executable in some cases, so we +# determine it dynamically by reading the information from the running +# process. This only applies on Linux, which uses the ELF format. +class _ELFFileHeader: + # https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header + class _InvalidELFFileHeader(ValueError): + """ + An invalid ELF file header was found. + """ + + ELF_MAGIC_NUMBER = 0x7F454C46 + ELFCLASS32 = 1 + ELFCLASS64 = 2 + ELFDATA2LSB = 1 + ELFDATA2MSB = 2 + EM_386 = 3 + EM_S390 = 22 + EM_ARM = 40 + EM_X86_64 = 62 + EF_ARM_ABIMASK = 0xFF000000 + EF_ARM_ABI_VER5 = 0x05000000 + EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + def __init__(self, file: IO[bytes]) -> None: + def unpack(fmt: str) -> int: + try: + data = file.read(struct.calcsize(fmt)) + result: Tuple[int, ...] = struct.unpack(fmt, data) + except struct.error: + raise _ELFFileHeader._InvalidELFFileHeader() + return result[0] + + self.e_ident_magic = unpack(">I") + if self.e_ident_magic != self.ELF_MAGIC_NUMBER: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_class = unpack("B") + if self.e_ident_class not in {self.ELFCLASS32, self.ELFCLASS64}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_data = unpack("B") + if self.e_ident_data not in {self.ELFDATA2LSB, self.ELFDATA2MSB}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_version = unpack("B") + self.e_ident_osabi = unpack("B") + self.e_ident_abiversion = unpack("B") + self.e_ident_pad = file.read(7) + format_h = "H" + format_i = "I" + format_q = "Q" + format_p = format_i if self.e_ident_class == self.ELFCLASS32 else format_q + self.e_type = unpack(format_h) + self.e_machine = unpack(format_h) + self.e_version = unpack(format_i) + self.e_entry = unpack(format_p) + self.e_phoff = unpack(format_p) + self.e_shoff = unpack(format_p) + self.e_flags = unpack(format_i) + self.e_ehsize = unpack(format_h) + self.e_phentsize = unpack(format_h) + self.e_phnum = unpack(format_h) + self.e_shentsize = unpack(format_h) + self.e_shnum = unpack(format_h) + self.e_shstrndx = unpack(format_h) + + +def _get_elf_header() -> Optional[_ELFFileHeader]: + try: + with open(sys.executable, "rb") as f: + elf_header = _ELFFileHeader(f) + except (OSError, TypeError, _ELFFileHeader._InvalidELFFileHeader): + return None + return elf_header + + +def _is_linux_armhf() -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_ARM + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABIMASK + ) == elf_header.EF_ARM_ABI_VER5 + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABI_FLOAT_HARD + ) == elf_header.EF_ARM_ABI_FLOAT_HARD + return result + + +def _is_linux_i686() -> bool: + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_386 + return result + + +def _have_compatible_abi(arch: str) -> bool: + if arch == "armv7l": + return _is_linux_armhf() + if arch == "i686": + return _is_linux_i686() + return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"} + + +# 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() -> 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/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17". + version_string = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.split() + 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() -> 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 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() -> Optional[str]: + """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( + "Expected glibc version with 2 components major.minor," + " got: %s" % 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(name: str, 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 # noqa + 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(linux: str, arch: str) -> Iterator[str]: + if not _have_compatible_abi(arch): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if arch in {"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 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(tag, arch, glibc_version): + yield linux.replace("linux", tag) + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(legacy_tag, arch, glibc_version): + yield linux.replace("linux", legacy_tag) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 000000000..8ac3059ba --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,136 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +import contextlib +import functools +import operator +import os +import re +import struct +import subprocess +import sys +from typing import IO, Iterator, NamedTuple, Optional, Tuple + + +def _read_unpacked(f: IO[bytes], fmt: str) -> Tuple[int, ...]: + return struct.unpack(fmt, f.read(struct.calcsize(fmt))) + + +def _parse_ld_musl_from_elf(f: IO[bytes]) -> Optional[str]: + """Detect musl libc location by parsing the Python executable. + + Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca + ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html + """ + f.seek(0) + try: + ident = _read_unpacked(f, "16B") + except struct.error: + return None + if ident[:4] != tuple(b"\x7fELF"): # Invalid magic, not ELF. + return None + f.seek(struct.calcsize("HHI"), 1) # Skip file type, machine, and version. + + 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, p_fmt, p_idx = { + 1: ("IIIIHHH", "IIIIIIII", (0, 1, 4)), # 32-bit. + 2: ("QQQIHHH", "IIQQQQQQ", (0, 2, 5)), # 64-bit. + }[ident[4]] + except KeyError: + return None + else: + p_get = operator.itemgetter(*p_idx) + + # Find the interpreter section and return its content. + try: + _, e_phoff, _, _, _, e_phentsize, e_phnum = _read_unpacked(f, e_fmt) + except struct.error: + return None + for i in range(e_phnum + 1): + f.seek(e_phoff + e_phentsize * i) + try: + p_type, p_offset, p_filesz = p_get(_read_unpacked(f, p_fmt)) + except struct.error: + return None + if p_type != 3: # Not PT_INTERP. + continue + f.seek(p_offset) + interpreter = os.fsdecode(f.read(p_filesz)).strip("\0") + if "musl" not in interpreter: + return None + return interpreter + return None + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> Optional[_MuslVersion]: + 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) -> Optional[_MuslVersion]: + """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 + """ + with contextlib.ExitStack() as stack: + try: + f = stack.enter_context(open(executable, "rb")) + except OSError: + return None + ld = _parse_ld_musl_from_elf(f) + if not ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(arch: str) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param arch: Should 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 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 000000000..90a6465f9 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 000000000..540e7a4dc --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,304 @@ +# 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. + +import operator +import os +import platform +import sys +from typing import Any, Callable, Dict, List, Optional, Tuple, Union + +from pip._vendor.pyparsing import ( # noqa: N817 + Forward, + Group, + Literal as L, + ParseException, + ParseResults, + QuotedString, + ZeroOrMore, + stringEnd, + stringStart, +) + +from .specifiers import InvalidSpecifier, Specifier + +__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 Node: + def __init__(self, value: Any) -> None: + self.value = value + + def __str__(self) -> str: + return str(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) + + +VARIABLE = ( + L("implementation_version") + | L("platform_python_implementation") + | L("implementation_name") + | L("python_full_version") + | L("platform_release") + | L("platform_version") + | L("platform_machine") + | L("platform_system") + | L("python_version") + | L("sys_platform") + | L("os_name") + | L("os.name") # PEP-345 + | L("sys.platform") # PEP-345 + | L("platform.version") # PEP-345 + | L("platform.machine") # PEP-345 + | L("platform.python_implementation") # PEP-345 + | L("python_implementation") # undocumented setuptools legacy + | L("extra") # PEP-508 +) +ALIASES = { + "os.name": "os_name", + "sys.platform": "sys_platform", + "platform.version": "platform_version", + "platform.machine": "platform_machine", + "platform.python_implementation": "platform_python_implementation", + "python_implementation": "platform_python_implementation", +} +VARIABLE.setParseAction(lambda s, l, t: Variable(ALIASES.get(t[0], t[0]))) + +VERSION_CMP = ( + L("===") | L("==") | L(">=") | L("<=") | L("!=") | L("~=") | L(">") | L("<") +) + +MARKER_OP = VERSION_CMP | L("not in") | L("in") +MARKER_OP.setParseAction(lambda s, l, t: Op(t[0])) + +MARKER_VALUE = QuotedString("'") | QuotedString('"') +MARKER_VALUE.setParseAction(lambda s, l, t: Value(t[0])) + +BOOLOP = L("and") | L("or") + +MARKER_VAR = VARIABLE | MARKER_VALUE + +MARKER_ITEM = Group(MARKER_VAR + MARKER_OP + MARKER_VAR) +MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0])) + +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() + +MARKER_EXPR = Forward() +MARKER_ATOM = MARKER_ITEM | Group(LPAREN + MARKER_EXPR + RPAREN) +MARKER_EXPR << MARKER_ATOM + ZeroOrMore(BOOLOP + MARKER_EXPR) + +MARKER = stringStart + MARKER_EXPR + stringEnd + + +def _coerce_parse_result(results: Union[ParseResults, List[Any]]) -> List[Any]: + if isinstance(results, ParseResults): + return [_coerce_parse_result(i) for i in results] + else: + return results + + +def _format_marker( + marker: Union[List[str], Tuple[Node, ...], str], first: Optional[bool] = 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) + + oper: Optional[Operator] = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +class Undefined: + pass + + +_undefined = Undefined() + + +def _get_env(environment: Dict[str, str], name: str) -> str: + value: Union[str, Undefined] = environment.get(name, _undefined) + + if isinstance(value, Undefined): + raise UndefinedEnvironmentName( + f"{name!r} does not exist in evaluation environment." + ) + + return value + + +def _evaluate_markers(markers: List[Any], 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): + lhs_value = _get_env(environment, lhs.value) + rhs_value = rhs.value + else: + lhs_value = lhs.value + rhs_value = _get_env(environment, rhs.value) + + 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() -> Dict[str, str]: + 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: + try: + self._markers = _coerce_parse_result(MARKER.parseString(marker)) + except ParseException as e: + raise InvalidMarker( + f"Invalid marker: {marker!r}, parse error at " + f"{marker[e.loc : e.loc + 8]!r}" + ) + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def evaluate(self, environment: Optional[Dict[str, str]] = 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 = default_environment() + if environment is not None: + current_environment.update(environment) + + return _evaluate_markers(self._markers, current_environment) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 000000000..1eab7dd66 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,146 @@ +# 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. + +import re +import string +import urllib.parse +from typing import List, Optional as TOptional, Set + +from pip._vendor.pyparsing import ( # noqa + Combine, + Literal as L, + Optional, + ParseException, + Regex, + Word, + ZeroOrMore, + originalTextFor, + stringEnd, + stringStart, +) + +from .markers import MARKER_EXPR, Marker +from .specifiers import LegacySpecifier, Specifier, SpecifierSet + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +ALPHANUM = Word(string.ascii_letters + string.digits) + +LBRACKET = L("[").suppress() +RBRACKET = L("]").suppress() +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() +COMMA = L(",").suppress() +SEMICOLON = L(";").suppress() +AT = L("@").suppress() + +PUNCTUATION = Word("-_.") +IDENTIFIER_END = ALPHANUM | (ZeroOrMore(PUNCTUATION) + ALPHANUM) +IDENTIFIER = Combine(ALPHANUM + ZeroOrMore(IDENTIFIER_END)) + +NAME = IDENTIFIER("name") +EXTRA = IDENTIFIER + +URI = Regex(r"[^ ]+")("url") +URL = AT + URI + +EXTRAS_LIST = EXTRA + ZeroOrMore(COMMA + EXTRA) +EXTRAS = (LBRACKET + Optional(EXTRAS_LIST) + RBRACKET)("extras") + +VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) +VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE) + +VERSION_ONE = VERSION_PEP440 ^ VERSION_LEGACY +VERSION_MANY = Combine( + VERSION_ONE + ZeroOrMore(COMMA + VERSION_ONE), joinString=",", adjacent=False +)("_raw_spec") +_VERSION_SPEC = Optional((LPAREN + VERSION_MANY + RPAREN) | VERSION_MANY) +_VERSION_SPEC.setParseAction(lambda s, l, t: t._raw_spec or "") + +VERSION_SPEC = originalTextFor(_VERSION_SPEC)("specifier") +VERSION_SPEC.setParseAction(lambda s, l, t: t[1]) + +MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker") +MARKER_EXPR.setParseAction( + lambda s, l, t: Marker(s[t._original_start : t._original_end]) +) +MARKER_SEPARATOR = SEMICOLON +MARKER = MARKER_SEPARATOR + MARKER_EXPR + +VERSION_AND_MARKER = VERSION_SPEC + Optional(MARKER) +URL_AND_MARKER = URL + Optional(MARKER) + +NAMED_REQUIREMENT = NAME + Optional(EXTRAS) + (URL_AND_MARKER | VERSION_AND_MARKER) + +REQUIREMENT = stringStart + NAMED_REQUIREMENT + stringEnd +# pyparsing isn't thread safe during initialization, so we do it eagerly, see +# issue #104 +REQUIREMENT.parseString("x[]") + + +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: + req = REQUIREMENT.parseString(requirement_string) + except ParseException as e: + raise InvalidRequirement( + f'Parse error at "{ requirement_string[e.loc : e.loc + 8]!r}": {e.msg}' + ) + + self.name: str = req.name + if req.url: + parsed_url = urllib.parse.urlparse(req.url) + if parsed_url.scheme == "file": + if urllib.parse.urlunparse(parsed_url) != req.url: + raise InvalidRequirement("Invalid URL given") + elif not (parsed_url.scheme and parsed_url.netloc) or ( + not parsed_url.scheme and not parsed_url.netloc + ): + raise InvalidRequirement(f"Invalid URL: {req.url}") + self.url: TOptional[str] = req.url + else: + self.url = None + self.extras: Set[str] = set(req.extras.asList() if req.extras else []) + self.specifier: SpecifierSet = SpecifierSet(req.specifier) + self.marker: TOptional[Marker] = req.marker if req.marker else None + + def __str__(self) -> str: + parts: List[str] = [self.name] + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + parts.append(f"[{formatted_extras}]") + + if self.specifier: + parts.append(str(self.specifier)) + + if self.url: + parts.append(f"@ {self.url}") + if self.marker: + parts.append(" ") + + if self.marker: + parts.append(f"; {self.marker}") + + return "".join(parts) + + def __repr__(self) -> str: + return f"" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 000000000..0e218a6f9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,802 @@ +# 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. + +import abc +import functools +import itertools +import re +import warnings +from typing import ( + Callable, + Dict, + Iterable, + Iterator, + List, + Optional, + Pattern, + Set, + Tuple, + TypeVar, + Union, +) + +from .utils import canonicalize_version +from .version import LegacyVersion, Version, parse + +ParsedVersion = Union[Version, LegacyVersion] +UnparsedVersion = Union[Version, LegacyVersion, str] +VersionTypeVar = TypeVar("VersionTypeVar", bound=UnparsedVersion) +CallableOperator = Callable[[ParsedVersion, str], bool] + + +class InvalidSpecifier(ValueError): + """ + An invalid specifier was found, users should refer to PEP 440. + """ + + +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. + """ + + @abc.abstractproperty + def prereleases(self) -> Optional[bool]: + """ + Returns whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """ + Sets whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class _IndividualSpecifier(BaseSpecifier): + + _operators: Dict[str, str] = {} + _regex: Pattern[str] + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + 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 + + def __repr__(self) -> str: + 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: + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> Tuple[str, str]: + return self._spec[0], canonicalize_version(self._spec[1]) + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + 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 _coerce_version(self, version: UnparsedVersion) -> ParsedVersion: + if not isinstance(version, (LegacyVersion, Version)): + version = parse(version) + return version + + @property + def operator(self) -> str: + return self._spec[0] + + @property + def version(self) -> str: + return self._spec[1] + + @property + def prereleases(self) -> Optional[bool]: + return self._prereleases + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __contains__(self, item: str) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version or LegacyVersion, this allows us to have + # a shortcut for ``"2.0" in Specifier(">=2") + normalized_item = self._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[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + 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 = self._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 + + +class LegacySpecifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(==|!=|<=|>=|<|>)) + \s* + (?P + [^,;\s)]* # Since this is a "legacy" specifier, and the version + # string can be just about anything, we match everything + # except for whitespace, a semi-colon for marker support, + # a closing paren since versions can be enclosed in + # them, and a comma since it's a version separator. + ) + """ + + _regex = re.compile(r"^\s*" + _regex_str + r"\s*$", re.VERBOSE | re.IGNORECASE) + + _operators = { + "==": "equal", + "!=": "not_equal", + "<=": "less_than_equal", + ">=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + } + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + super().__init__(spec, prereleases) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def _coerce_version(self, version: UnparsedVersion) -> LegacyVersion: + if not isinstance(version, LegacyVersion): + version = LegacyVersion(str(version)) + return version + + def _compare_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective == self._coerce_version(spec) + + def _compare_not_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective != self._coerce_version(spec) + + def _compare_less_than_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective <= self._coerce_version(spec) + + def _compare_greater_than_equal( + self, prospective: LegacyVersion, spec: str + ) -> bool: + return prospective >= self._coerce_version(spec) + + def _compare_less_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective < self._coerce_version(spec) + + def _compare_greater_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective > self._coerce_version(spec) + + +def _require_version_compare( + fn: Callable[["Specifier", ParsedVersion, str], bool] +) -> Callable[["Specifier", ParsedVersion, str], bool]: + @functools.wraps(fn) + def wrapped(self: "Specifier", prospective: ParsedVersion, spec: str) -> bool: + if not isinstance(prospective, Version): + return False + return fn(self, prospective, spec) + + return wrapped + + +class Specifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + (?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]* # We just match everything, except for whitespace + # since we are only testing for strict identity. + ) + | + (?: + # 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 + (?: # pre release + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + + # You cannot use a wild card and a dev or local version + # together so group them with a | and make them optional. + (?: + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + | + \.\* # Wild card syntax of .* + )? + ) + | + (?: + # 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 + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [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", + } + + @_require_version_compare + def _compare_compatible(self, prospective: ParsedVersion, 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 = ".".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 + ) + + @_require_version_compare + def _compare_equal(self, prospective: ParsedVersion, 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. + prospective = Version(prospective.public) + # Split the spec out by dots, and pretend that there is an implicit + # dot in between a release segment and a pre-release segment. + split_spec = _version_split(spec[:-2]) # Remove the trailing .* + + # Split the prospective version out by dots, and pretend that there + # is an implicit dot in between a release segment and a pre-release + # segment. + split_prospective = _version_split(str(prospective)) + + # 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 = split_prospective[: len(split_spec)] + + # Pad out our two sides with zeros so that they both equal the same + # length. + padded_spec, padded_prospective = _pad_version( + split_spec, shortened_prospective + ) + + return padded_prospective == padded_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 + + @_require_version_compare + def _compare_not_equal(self, prospective: ParsedVersion, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + @_require_version_compare + def _compare_less_than_equal(self, prospective: ParsedVersion, 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) + + @_require_version_compare + def _compare_greater_than_equal( + self, prospective: ParsedVersion, 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) + + @_require_version_compare + def _compare_less_than(self, prospective: ParsedVersion, 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 + + @_require_version_compare + def _compare_greater_than(self, prospective: ParsedVersion, 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() + + @property + 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 parse(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> List[str]: + result: List[str] = [] + for item in version.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +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(*left_split)), list(itertools.chain(*right_split))) + + +class SpecifierSet(BaseSpecifier): + def __init__( + self, specifiers: str = "", prereleases: Optional[bool] = None + ) -> None: + + # 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()] + + # Parsed each individual specifier, attempting first to make it a + # Specifier and falling back to a LegacySpecifier. + parsed: Set[_IndividualSpecifier] = set() + for specifier in split_specifiers: + try: + parsed.add(Specifier(specifier)) + except InvalidSpecifier: + parsed.add(LegacySpecifier(specifier)) + + # Turn our parsed specifiers into a frozen set and save them for later. + self._specs = frozenset(parsed) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + def __repr__(self) -> str: + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": + 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: + if isinstance(other, (str, _IndividualSpecifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + return len(self._specs) + + def __iter__(self) -> Iterator[_IndividualSpecifier]: + return iter(self._specs) + + @property + def prereleases(self) -> Optional[bool]: + + # 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 __contains__(self, item: UnparsedVersion) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Ensure that our item is a Version or LegacyVersion instance. + if not isinstance(item, (LegacyVersion, Version)): + item = parse(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 + + # 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[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + # 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 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, and which will filter out LegacyVersion in general. + else: + filtered: List[VersionTypeVar] = [] + found_prereleases: List[VersionTypeVar] = [] + + item: UnparsedVersion + parsed_version: Union[Version, LegacyVersion] + + for item in iterable: + # Ensure that we some kind of Version class for this item. + if not isinstance(item, (LegacyVersion, Version)): + parsed_version = parse(item) + else: + parsed_version = item + + # Filter out any item which is parsed as a LegacyVersion + if isinstance(parsed_version, LegacyVersion): + continue + + # 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 found_prereleases + + return filtered diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 000000000..9a3d25a71 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,487 @@ +# 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. + +import logging +import platform +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Optional, + Sequence, + Tuple, + Union, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: Dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = sys.maxsize <= 2 ** 32 + + +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) -> Union[int, str, None]: + value = 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("-", "_") + + +def _abi3_applies(python_version: PythonVersion) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) + + +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]) + 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, 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}") + abis.insert( + 0, + "cp{version}{debug}{pymalloc}{ucs4}".format( + version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 + ), + ) + return abis + + +def cpython_tags( + python_version: Optional[PythonVersion] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = 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_) + if _abi3_applies(python_version): + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if _abi3_applies(python_version): + 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() -> Iterator[str]: + abi = sysconfig.get_config_var("SOABI") + if abi: + yield _normalize_string(abi) + + +def generic_tags( + interpreter: Optional[str] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = 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() + platforms = list(platforms or platform_tags()) + abis = list(abis) + 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: Optional[PythonVersion] = None, + interpreter: Optional[str] = None, + platforms: Optional[Iterable[str]] = 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: MacVersion, 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: Optional[MacVersion] = None, arch: Optional[str] = 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("MacVersion", 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 _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv7l" + _, arch = linux.split("_", 1) + yield from _manylinux.platform_tags(linux, arch) + yield from _musllinux.platform_tags(arch) + yield linux + + +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() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + """ + 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": + yield from compatible_tags(interpreter="pp3") + else: + yield from compatible_tags() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 000000000..bab11b80c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,136 @@ +# 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. + +import re +from typing import FrozenSet, 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 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. + """ + + +_canonicalize_regex = re.compile(r"[-_.]+") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str) -> NormalizedName: + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def canonicalize_version(version: Union[Version, str]) -> 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 + # NB: This strips trailing '.0's to normalize + parts.append(re.sub(r"(\.0)+$", "", ".".join(str(x) for x in parsed.release))) + + # 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) + version = Version(parts[1]) + 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) + version = Version(version_part) + return (name, version) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 000000000..de9a09a4e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,504 @@ +# 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. + +import collections +import itertools +import re +import warnings +from typing import Callable, Iterator, List, Optional, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["parse", "Version", "LegacyVersion", "InvalidVersion", "VERSION_PATTERN"] + +InfiniteTypes = Union[InfinityType, NegativeInfinityType] +PrePostDevType = Union[InfiniteTypes, Tuple[str, int]] +SubLocalType = Union[InfiniteTypes, int, str] +LocalType = Union[ + NegativeInfinityType, + Tuple[ + Union[ + SubLocalType, + Tuple[SubLocalType, str], + Tuple[NegativeInfinityType, SubLocalType], + ], + ..., + ], +] +CmpKey = Tuple[ + int, Tuple[int, ...], PrePostDevType, PrePostDevType, PrePostDevType, LocalType +] +LegacyCmpKey = Tuple[int, Tuple[str, ...]] +VersionComparisonMethod = Callable[ + [Union[CmpKey, LegacyCmpKey], Union[CmpKey, LegacyCmpKey]], bool +] + +_Version = collections.namedtuple( + "_Version", ["epoch", "release", "dev", "pre", "post", "local"] +) + + +def parse(version: str) -> Union["LegacyVersion", "Version"]: + """ + Parse the given version string and return either a :class:`Version` object + or a :class:`LegacyVersion` object depending on if the given version is + a valid PEP 440 version or a legacy version. + """ + try: + return Version(version) + except InvalidVersion: + return LegacyVersion(version) + + +class InvalidVersion(ValueError): + """ + An invalid version was found, users should refer to PEP 440. + """ + + +class _BaseVersion: + _key: Union[CmpKey, LegacyCmpKey] + + 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 + + +class LegacyVersion(_BaseVersion): + def __init__(self, version: str) -> None: + self._version = str(version) + self._key = _legacy_cmpkey(self._version) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def __str__(self) -> str: + return self._version + + def __repr__(self) -> str: + return f"" + + @property + def public(self) -> str: + return self._version + + @property + def base_version(self) -> str: + return self._version + + @property + def epoch(self) -> int: + return -1 + + @property + def release(self) -> None: + return None + + @property + def pre(self) -> None: + return None + + @property + def post(self) -> None: + return None + + @property + def dev(self) -> None: + return None + + @property + def local(self) -> None: + return None + + @property + def is_prerelease(self) -> bool: + return False + + @property + def is_postrelease(self) -> bool: + return False + + @property + def is_devrelease(self) -> bool: + return False + + +_legacy_version_component_re = re.compile(r"(\d+ | [a-z]+ | \.| -)", re.VERBOSE) + +_legacy_version_replacement_map = { + "pre": "c", + "preview": "c", + "-": "final-", + "rc": "c", + "dev": "@", +} + + +def _parse_version_parts(s: str) -> Iterator[str]: + for part in _legacy_version_component_re.split(s): + part = _legacy_version_replacement_map.get(part, part) + + if not part or part == ".": + continue + + if part[:1] in "0123456789": + # pad for numeric comparison + yield part.zfill(8) + else: + yield "*" + part + + # ensure that alpha/beta/candidate are before final + yield "*final" + + +def _legacy_cmpkey(version: str) -> LegacyCmpKey: + + # We hardcode an epoch of -1 here. A PEP 440 version can only have a epoch + # greater than or equal to 0. This will effectively put the LegacyVersion, + # which uses the defacto standard originally implemented by setuptools, + # as before all PEP 440 versions. + epoch = -1 + + # This scheme is taken from pkg_resources.parse_version setuptools prior to + # it's adoption of the packaging library. + parts: List[str] = [] + for part in _parse_version_parts(version.lower()): + if part.startswith("*"): + # remove "-" before a prerelease tag + if part < "*final": + while parts and parts[-1] == "*final-": + parts.pop() + + # remove trailing zeros from each series of numeric parts + while parts and parts[-1] == "00000000": + parts.pop() + + parts.append(part) + + return epoch, tuple(parts) + + +# 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
+            [-_\.]?
+            (?P(a|b|c|rc|alpha|beta|pre|preview))
+            [-_\.]?
+            (?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
+"""
+
+
+class Version(_BaseVersion):
+
+    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
+
+    def __init__(self, version: str) -> None:
+
+        # 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:
+        return f""
+
+    def __str__(self) -> str:
+        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:
+        _epoch: int = self._version.epoch
+        return _epoch
+
+    @property
+    def release(self) -> Tuple[int, ...]:
+        _release: Tuple[int, ...] = self._version.release
+        return _release
+
+    @property
+    def pre(self) -> Optional[Tuple[str, int]]:
+        _pre: Optional[Tuple[str, int]] = self._version.pre
+        return _pre
+
+    @property
+    def post(self) -> Optional[int]:
+        return self._version.post[1] if self._version.post else None
+
+    @property
+    def dev(self) -> Optional[int]:
+        return self._version.dev[1] if self._version.dev else None
+
+    @property
+    def local(self) -> Optional[str]:
+        if self._version.local:
+            return ".".join(str(x) for x in self._version.local)
+        else:
+            return None
+
+    @property
+    def public(self) -> str:
+        return str(self).split("+", 1)[0]
+
+    @property
+    def base_version(self) -> str:
+        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:
+        return self.dev is not None or self.pre is not None
+
+    @property
+    def is_postrelease(self) -> bool:
+        return self.post is not None
+
+    @property
+    def is_devrelease(self) -> bool:
+        return self.dev is not None
+
+    @property
+    def major(self) -> int:
+        return self.release[0] if len(self.release) >= 1 else 0
+
+    @property
+    def minor(self) -> int:
+        return self.release[1] if len(self.release) >= 2 else 0
+
+    @property
+    def micro(self) -> int:
+        return self.release[2] if len(self.release) >= 3 else 0
+
+
+def _parse_letter_version(
+    letter: str, number: Union[str, bytes, SupportsInt]
+) -> Optional[Tuple[str, int]]:
+
+    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) -> Optional[LocalType]:
+    """
+    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: Optional[Tuple[str, int]],
+    post: Optional[Tuple[str, int]],
+    dev: Optional[Tuple[str, int]],
+    local: Optional[Tuple[SubLocalType]],
+) -> 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: PrePostDevType = 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: PrePostDevType = NegativeInfinity
+
+    else:
+        _post = post
+
+    # Versions without a development segment should sort after those with one.
+    if dev is None:
+        _dev: PrePostDevType = Infinity
+
+    else:
+        _dev = dev
+
+    if local is None:
+        # Versions without a local segment should sort before those with one.
+        _local: LocalType = 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
new file mode 100644
index 000000000..ad2794077
--- /dev/null
+++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
@@ -0,0 +1,3361 @@
+"""
+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.
+"""
+
+import sys
+import os
+import io
+import time
+import re
+import types
+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
+from pkgutil import get_importer
+
+try:
+    import _imp
+except ImportError:
+    # Python 3.2 compatibility
+    import imp as _imp
+
+try:
+    FileExistsError
+except NameError:
+    FileExistsError = OSError
+
+# capture these to bypass sandboxing
+from os import utime
+
+try:
+    from os import mkdir, rename, unlink
+
+    WRITE_SUPPORT = True
+except ImportError:
+    # no write support, probably under GAE
+    WRITE_SUPPORT = False
+
+from os import open as os_open
+from os.path import isdir, split
+
+try:
+    import importlib.machinery as importlib_machinery
+
+    # access attribute to force import under delayed import mechanisms.
+    importlib_machinery.__name__
+except ImportError:
+    importlib_machinery = None
+
+from pip._internal.utils._jaraco_text import (
+    yield_lines,
+    drop_comment,
+    join_continuation,
+)
+
+from pip._vendor import platformdirs
+from pip._vendor import packaging
+
+__import__('pip._vendor.packaging.version')
+__import__('pip._vendor.packaging.specifiers')
+__import__('pip._vendor.packaging.requirements')
+__import__('pip._vendor.packaging.markers')
+__import__('pip._vendor.packaging.utils')
+
+if sys.version_info < (3, 5):
+    raise RuntimeError("Python 3.5 or later is required")
+
+# declare some globals that will be defined later to
+# satisfy the linters.
+require = None
+working_set = None
+add_activation_listener = None
+resources_stream = None
+cleanup_resources = None
+resource_dir = None
+resource_stream = None
+set_extraction_path = None
+resource_isdir = None
+resource_string = None
+iter_entry_points = None
+resource_listdir = None
+resource_filename = None
+resource_exists = None
+_distribution_finders = None
+_namespace_handlers = None
+_namespace_packages = None
+
+
+warnings.warn(
+    "pkg_resources is deprecated as an API. "
+    "See https://setuptools.pypa.io/en/latest/pkg_resources.html",
+    DeprecationWarning,
+    stacklevel=2
+)
+
+
+_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 = {}
+
+
+def _declare_state(vartype, **kw):
+    globals().update(kw)
+    _state_vars.update(dict.fromkeys(kw, vartype))
+
+
+def __getstate__():
+    state = {}
+    g = globals()
+    for k, v in _state_vars.items():
+        state[k] = g['_sget_' + v](g[k])
+    return state
+
+
+def __setstate__(state):
+    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):
+        return self.args[0]
+
+    @property
+    def req(self):
+        return self.args[1]
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def with_context(self, required_by):
+        """
+        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):
+        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):
+        return self.args[0]
+
+    @property
+    def requirers(self):
+        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 = {}
+
+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, provider_factory):
+    """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
+
+
+def get_provider(moduleOrReq):
+    """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)
+
+
+def _macos_vers(_cache=[]):
+    if not _cache:
+        version = platform.mac_ver()[0]
+        # fallback for MacPorts
+        if version == '':
+            plist = '/System/Library/CoreServices/SystemVersion.plist'
+            if os.path.exists(plist):
+                if hasattr(plistlib, 'readPlist'):
+                    plist_content = plistlib.readPlist(plist)
+                    if 'ProductVersion' in plist_content:
+                        version = plist_content['ProductVersion']
+
+        _cache.append(version.split('.'))
+    return _cache[0]
+
+
+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, required):
+    """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
+
+
+def run_script(dist_spec, script_name):
+    """Locate distribution `dist_spec` and run its `script_name` script"""
+    ns = sys._getframe(1).f_globals
+    name = ns['__name__']
+    ns.clear()
+    ns['__name__'] = name
+    require(dist_spec)[0].run_script(script_name, ns)
+
+
+# backward compatibility
+run_main = run_script
+
+
+def get_distribution(dist):
+    """Return a current distribution object for a Requirement or string"""
+    if isinstance(dist, str):
+        dist = Requirement.parse(dist)
+    if isinstance(dist, Requirement):
+        dist = get_provider(dist)
+    if not isinstance(dist, Distribution):
+        raise TypeError("Expected string, Requirement, or Distribution", dist)
+    return dist
+
+
+def load_entry_point(dist, group, name):
+    """Return `name` entry point of `group` for `dist` or raise ImportError"""
+    return get_distribution(dist).load_entry_point(group, name)
+
+
+def get_entry_map(dist, group=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, group, name):
+    """Return the EntryPoint object for `group`+`name`, or ``None``"""
+    return get_distribution(dist).get_entry_info(group, name)
+
+
+class IMetadataProvider:
+    def has_metadata(name):
+        """Does the package's distribution contain the named metadata?"""
+
+    def get_metadata(name):
+        """The named metadata resource as a string"""
+
+    def get_metadata_lines(name):
+        """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(name):
+        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
+
+    def metadata_listdir(name):
+        """List of metadata names in the directory (like ``os.listdir()``)"""
+
+    def run_script(script_name, namespace):
+        """Execute the named script in the supplied namespace dictionary"""
+
+
+class IResourceProvider(IMetadataProvider):
+    """An object that provides access to package resources"""
+
+    def get_resource_filename(manager, resource_name):
+        """Return a true filesystem path for `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def get_resource_stream(manager, resource_name):
+        """Return a readable file-like object for `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def get_resource_string(manager, resource_name):
+        """Return a string containing the contents of `resource_name`
+
+        `manager` must be an ``IResourceManager``"""
+
+    def has_resource(resource_name):
+        """Does the package contain the named resource?"""
+
+    def resource_isdir(resource_name):
+        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
+
+    def resource_listdir(resource_name):
+        """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=None):
+        """Create working set from list of path entries (default=sys.path)"""
+        self.entries = []
+        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):
+        """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):
+        """True if `dist` is the active distribution for its project"""
+        return self.by_key.get(dist.key) == dist
+
+    def find(self, req):
+        """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, name=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, script_name):
+        """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):
+        """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 = {}
+        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[key] = 1
+                    yield self.by_key[key]
+
+    def add(self, dist, entry=None, insert=True, replace=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)
+
+    def resolve(
+        self,
+        requirements,
+        env=None,
+        installer=None,
+        replace_conflicting=False,
+        extras=None,
+    ):
+        """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 = {}
+        # 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[req] = True
+
+        # return list of distros to activate
+        return to_activate
+
+    def _resolve_dist(
+        self, req, best, replace_conflicting, env, installer, required_by, to_activate
+    ):
+        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
+
+    def find_plugins(self, plugin_env, full_env=None, installer=None, fallback=True):
+        """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 = {}
+        distributions = {}
+
+        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
+
+        distributions = list(distributions)
+        distributions.sort()
+
+        return distributions, error_info
+
+    def require(self, *requirements):
+        """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, existing=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):
+    """
+    Map each requirement to the extras that demanded it.
+    """
+
+    def markers_pass(self, req, extras=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=None, platform=get_supported_platform(), python=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):
+        """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):
+        """Remove `dist` from the environment"""
+        self._distmap[dist.key].remove(dist)
+
+    def scan(self, search_path=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):
+        """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):
+        """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)
+
+    def best_match(self, req, working_set, installer=None, replace_conflicting=False):
+        """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)
+
+    def obtain(self, requirement, installer=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."""
+        if installer is not None:
+            return installer(requirement)
+
+    def __iter__(self):
+        """Yield the unique project names of the available distributions"""
+        for key in self._distmap.keys():
+            if self[key]:
+                yield key
+
+    def __iadd__(self, other):
+        """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):
+        """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
+    """
+
+
+class ResourceManager:
+    """Manage resource extraction and packages"""
+
+    extraction_path = None
+
+    def __init__(self):
+        self.cached_files = {}
+
+    def resource_exists(self, package_or_requirement, resource_name):
+        """Does the named resource exist?"""
+        return get_provider(package_or_requirement).has_resource(resource_name)
+
+    def resource_isdir(self, package_or_requirement, resource_name):
+        """Is the named resource an existing directory?"""
+        return get_provider(package_or_requirement).resource_isdir(resource_name)
+
+    def resource_filename(self, package_or_requirement, resource_name):
+        """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, resource_name):
+        """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, resource_name):
+        """Return specified resource as a string"""
+        return get_provider(package_or_requirement).get_resource_string(
+            self, resource_name
+        )
+
+    def resource_listdir(self, package_or_requirement, resource_name):
+        """List the contents of the named resource directory"""
+        return get_provider(package_or_requirement).resource_listdir(resource_name)
+
+    def extraction_error(self):
+        """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, names=()):
+        """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] = 1
+        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, filename):
+        """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):
+        """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=False):
+        """
+        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
+
+
+def get_default_cache():
+    """
+    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 platformdirs.user_cache_dir(
+        appname='Python-Eggs'
+    )
+
+
+def safe_name(name):
+    """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):
+    """
+    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):
+    """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):
+    """Convert a project or version name to its filename-escaped form
+
+    Any '-' characters are currently replaced with '_'.
+    """
+    return name.replace('-', '_')
+
+
+def invalid_marker(text):
+    """
+    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, extra=None):
+    """
+    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 = None
+    egg_info = None
+    loader = None
+
+    def __init__(self, module):
+        self.loader = getattr(module, '__loader__', None)
+        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
+
+    def get_resource_filename(self, manager, resource_name):
+        return self._fn(self.module_path, resource_name)
+
+    def get_resource_stream(self, manager, resource_name):
+        return io.BytesIO(self.get_resource_string(manager, resource_name))
+
+    def get_resource_string(self, manager, resource_name):
+        return self._get(self._fn(self.module_path, resource_name))
+
+    def has_resource(self, resource_name):
+        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):
+        if not self.egg_info:
+            return self.egg_info
+
+        path = self._get_metadata_path(name)
+        return self._has(path)
+
+    def get_metadata(self, name):
+        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):
+        return yield_lines(self.get_metadata(name))
+
+    def resource_isdir(self, resource_name):
+        return self._isdir(self._fn(self.module_path, resource_name))
+
+    def metadata_isdir(self, name):
+        return self.egg_info and self._isdir(self._fn(self.egg_info, name))
+
+    def resource_listdir(self, resource_name):
+        return self._listdir(self._fn(self.module_path, resource_name))
+
+    def metadata_listdir(self, name):
+        if self.egg_info:
+            return self._listdir(self._fn(self.egg_info, name))
+        return []
+
+    def run_script(self, script_name, namespace):
+        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):
+            with open(script_filename) as fid:
+                source = fid.read()
+            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):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _isdir(self, path):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _listdir(self, path):
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _fn(self, base, resource_name):
+        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)
+        )
+        if not invalid:
+            return
+
+        msg = "Use of .. or absolute path in a resource path is not allowed."
+
+        # Aggressively disallow Windows absolute paths
+        if 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):
+        if hasattr(self.loader, 'get_data'):
+            return self.loader.get_data(path)
+        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):
+        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):
+        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):
+        return os.path.exists(path)
+
+    def _isdir(self, path):
+        return os.path.isdir(path)
+
+    def _listdir(self, path):
+        return os.listdir(path)
+
+    def get_resource_stream(self, manager, resource_name):
+        return open(self._fn(self.module_path, resource_name), 'rb')
+
+    def _get(self, path):
+        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"""
+
+    module_path = None
+
+    _isdir = _has = lambda self, path: False
+
+    def _get(self, path):
+        return ''
+
+    def _listdir(self, path):
+        return []
+
+    def __init__(self):
+        pass
+
+
+empty_provider = EmptyProvider()
+
+
+class ZipManifests(dict):
+    """
+    zip manifest builder
+    """
+
+    @classmethod
+    def build(cls, path):
+        """
+        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.
+    """
+
+    manifest_mod = collections.namedtuple('manifest_mod', 'manifest mtime')
+
+    def load(self, path):
+        """
+        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 = None
+    _zip_manifests = MemoizedZipManifests()
+
+    def __init__(self, module):
+        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, resource_name):
+        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, zip_path):  # 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 IOError(
+                '"os.rename" and "os.unlink" are not supported ' 'on this platform'
+            )
+        try:
+            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 os.error:
+                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 os.error:
+            # 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):
+        zip_path = self._zipinfo_name(fspath)
+        return zip_path in self.zipinfo or zip_path in self._index()
+
+    def _isdir(self, fspath):
+        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):
+        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
+
+    def _resource_to_zip(self, resource_name):
+        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):
+        self.path = path
+
+    def _get_metadata_path(self, name):
+        return self.path
+
+    def has_metadata(self, name):
+        return name == 'PKG-INFO' and os.path.isfile(self.path)
+
+    def get_metadata(self, name):
+        if name != 'PKG-INFO':
+            raise KeyError("No metadata except PKG-INFO is available")
+
+        with io.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):
+        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, egg_info):
+        self.module_path = path
+        self.egg_info = egg_info
+
+
+class EggMetadata(ZipProvider):
+    """Metadata provider for .egg files"""
+
+    def __init__(self, importer):
+        """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()
+
+
+_declare_state('dict', _distribution_finders={})
+
+
+def register_finder(importer_type, distribution_finder):
+    """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, only=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, path_item, only=False):
+    """
+    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)
+            for dist in dists:
+                yield dist
+        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, path_item, only=False):
+    return ()
+
+
+register_finder(object, find_nothing)
+
+
+def find_on_path(importer, 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)
+        for dist in factory(fullpath):
+            yield dist
+
+
+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):
+    """
+    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):
+    root = os.path.dirname(path)
+    if os.path.isdir(path):
+        if len(os.listdir(path)) == 0:
+            # empty metadata dir; skip
+            return
+        metadata = 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
+    """
+    with open(path) as f:
+        for line in f:
+            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)
+
+_declare_state('dict', _namespace_handlers={})
+_declare_state('dict', _namespace_packages={})
+
+
+def register_namespace_handler(importer_type, namespace_handler):
+    """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):
+    """
+    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):
+    """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 = 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, parent=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, path_item, packageName, module):
+    """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, path_item, packageName, module):
+    return None
+
+
+register_namespace_handler(object, null_ns_handler)
+
+
+def normalize_path(filename):
+    """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):  # 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
+
+
+def _normalize_cached(filename, _cache={}):
+    try:
+        return _cache[filename]
+    except KeyError:
+        _cache[filename] = result = normalize_path(filename)
+        return result
+
+
+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, module_name, attrs=(), extras=(), dist=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)
+
+    def load(self, require=True, *args, **kwargs):
+        """
+        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:
+            self.require(*args, **kwargs)
+        return self.resolve()
+
+    def resolve(self):
+        """
+        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=None, installer=None):
+        if self.extras and not self.dist:
+            raise UnknownExtra("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, dist=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, lines, dist=None):
+        """Parse an entry point group"""
+        if not MODULE(group):
+            raise ValueError("Invalid group name", group)
+        this = {}
+        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, dist=None):
+        """Parse a map of entry point groups"""
+        if isinstance(data, dict):
+            data = data.items()
+        else:
+            data = split_sections(data)
+        maps = {}
+        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=None,
+        metadata=None,
+        project_name=None,
+        version=None,
+        py_version=PY_MAJOR,
+        platform=None,
+        precedence=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, basename, metadata=None, **kw):
+        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):
+        return self.hashcmp < other.hashcmp
+
+    def __le__(self, other):
+        return self.hashcmp <= other.hashcmp
+
+    def __gt__(self, other):
+        return self.hashcmp > other.hashcmp
+
+    def __ge__(self, other):
+        return self.hashcmp >= other.hashcmp
+
+    def __eq__(self, other):
+        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):
+        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):
+        """
+        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 = 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=()):
+        """List of Requirements needed for this distro if `extras` are used"""
+        dm = self._dep_map
+        deps = []
+        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):
+            for line in self.get_metadata_lines(name):
+                yield line
+
+    def _get_version(self):
+        lines = self._get_metadata(self.PKG_INFO)
+        version = _version_from_file(lines)
+
+        return version
+
+    def activate(self, path=None, replace=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:
+            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(Distribution, self).__dir__())
+            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
+        )
+
+    @classmethod
+    def from_filename(cls, filename, metadata=None, **kw):
+        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, name):
+        """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()
+
+    def get_entry_map(self, group=None):
+        """Return the entry point map for `group`, or the full entry map"""
+        try:
+            ep_map = self._ep_map
+        except AttributeError:
+            ep_map = self._ep_map = EntryPoint.parse_map(
+                self._get_metadata('entry_points.txt'), self
+            )
+        if group is not None:
+            return ep_map.get(group, {})
+        return ep_map
+
+    def get_entry_info(self, group, name):
+        """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(self, path, loc=None, replace=False):  # noqa: C901
+        """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):
+        """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)
+        return self.__class__(**kw)
+
+    @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):
+        """Recompute this distribution's dependencies."""
+        dm = self.__dep_map = {None: []}
+
+        reqs = []
+        # 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)))
+        dm[None].extend(common)
+
+        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
+            s_extra = safe_extra(extra.strip())
+            dm[s_extra] = [r for r in reqs_for_extra(extra) if r not in common]
+
+        return dm
+
+
+_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):
+    """
+    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):
+        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
+        super(Requirement, self).__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]
+        self.extras = 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):
+        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
+
+    def __ne__(self, other):
+        return not self == other
+
+    def __contains__(self, item):
+        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):
+        (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, ob):
+    """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]
+
+
+def ensure_directory(path):
+    """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 IOError('"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):
+    """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)
+
+
+# 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('_')
+    )
+
+
+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.
+    """
+
+
+@_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 = WorkingSet._build_master()
+    _declare_state('object', working_set=working_set)
+
+    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())
diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8d2cec94c2b9d9be0fa85c73aa6d21742ae5016e
GIT binary patch
literal 146507
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 z�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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', + '\\

_`}qElG_BU=HjU4s@NtH&&>A}edCO)o9M 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 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 + + if sys.version_info >= (3, 8): # pragma: no cover (py38+) + from typing import Literal + else: # pragma: no cover (py38+) + from pip._vendor.typing_extensions import Literal + + +def _set_platform_dir_class() -> type[PlatformDirsABC]: + if sys.platform == "win32": + from pip._vendor.platformdirs.windows import Windows as Result + elif sys.platform == "darwin": + from pip._vendor.platformdirs.macos import MacOS as Result + else: + from pip._vendor.platformdirs.unix import Unix as Result + + 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 + + if _android_folder() is not None: + from pip._vendor.platformdirs.android import Android + + return Android # return to avoid redefinition of 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_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 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 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_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 + + +__all__ = [ + "__version__", + "__version_info__", + "PlatformDirs", + "AppDirs", + "PlatformDirsABC", + "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", + "user_data_path", + "user_config_path", + "user_cache_path", + "user_state_path", + "user_log_path", + "user_documents_path", + "user_downloads_path", + "user_pictures_path", + "user_videos_path", + "user_music_path", + "user_runtime_path", + "site_data_path", + "site_config_path", + "site_cache_path", +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py new file mode 100644 index 000000000..6a0d6dd12 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py @@ -0,0 +1,53 @@ +"""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", +) + + +def main() -> None: + """Run 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9e600b2015bb2e298e49b014fea903ed3262544 GIT binary patch literal 18062 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 NhW7jIODvuD{TGbr!3F>T literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..903ac2e943f0d53cbe2ff931803084ba0cd448a8 GIT binary patch literal 1979 zcmcIl&1>976dy^WUG0}Y(j>NnDN1Ou)pS?3OVhN3K(XtFz`7>srCZ7%uVk-?q!A;@ zM#~!ZkU|bU_|`yD@G-?X^whtgr}kp%Ei}S`LJOrgx9%yYzL9p*rAcWCc)+vsetPfy z-n=*O`MXM`h+v)i`dj-O8KIxKFj!)C5RR|I;d5l71~LUxbOcvyhyp)Lj^yG7cIAc) zGH&Ed#guR3M&44)+^t!Jm?9!8zt{IDpg14rwL*KmZrGk`c_E8cpW0qn`;Dt;LQ*n3 zkA_BQQ!miOq`c}F;W}mRlFfpoM98Ma0{BLVHj-4Lz+%KSLW7t#OGZ<%NxgM@BLzk> zz-YFtAvpl=nOsi4J2cZim3gDh$c4ay)M9{bc@8zq3>#1Ne7hM&%*vpQdDAv6ngJQJ z8wGYV^)r^*u*eH-H{-4ZHjmp6dRy&l0&Fzw7%+p&l<%*EhVlJyxx%e!tD2j{>zVsnu%xRe%lOS5s(q%MM#A z^?6?!jyltC!x^nD&DZ9jZ}WYmExx0+wc<0jGzy<65dHQkTlX5JgM`30T#d(}6Zw~P%d(0$w2Vb*yjW%_V!bV7JZ z390#Ug87l1hoC0mFHoV!yXdFUv)yYyj!$>5|AGtq<>~t$->pA*X}?(Q;TlJZ^F6$9 zSem%2?7sGu)hk`;E**}Y`2z{^+#P(VRCZ49&k{xL>@~!*BIn9F(dr;NWr(znwZbD4l-+^EZ3=QfmI-y(V`U*H%Lg%V|u z#TED$lVcW4axcLv)U&igk|)HZO+u0)A?pzz@`Nxx43kNyO08d&+Hh6U7nQxObD)@( zgp=^cM97zjUErt++Y{xAo4$>!>>`MKDhD;#AiIL_2u(aj7k))okML+g?8?WlObK&G Ymk}=CX@4(GJ;KVT%SRHz=Td)v0a9EKz5oCK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..894839404ef518481d4b56afb868124371d361de GIT binary patch literal 9477 zcmds7O>7&-72f4PMM~7aEJcjhmJ^Hq(aKIN%Z{K#mh9MVBrBF2$4VP=&0R?=lU#Oo zXfLtXcfLr~;U6is_*(E^1Cwve)o0T*cwxyhCfflqyJb~z+P z(pHQFC_J#<&c6BCdGmd5=FQN5udS`&AT|E(Z|eR|j{6*6^2u#w_{{@6$E|QOH^s@k z>`3rQ$CQJ|yffjPa?+=3%0-{5<+VlSp$g@7 zMdkGs%0orv4He4ki^>~i{|rCXH1CWwE%=5~GSO7I=Sv)Ygf|0HDy12cp=v384Bq_- zl8MHp_^bjiuDGNdU!v9U5*klP#WM5hNz|(wR);4#;Jj7ijirYua7jEUVF}^Juo*l0;E$~BB5Q?1!GnbW-_WQrQ(VZ znNIi7VQy6rOS#g zWOPN)rm<7{k(iWDr=%qGmbQVD0k|G1t@dm|5_GiYVC;a^@`^%qAjCFW+BI2AC8cMG z5>>9Lx}k5QeM$YnSP%Vv-1aldEH6l47r%K9GArC7H&)a1qCXe4HpohNO-QvSdgC%#so}G%_z3sv--9Mqz@lunP~dn{(Usp^)??2N*6D=8TtQLG&Wl%w`U z5?tI&r*054gnIPV=(LuQ6>ynlRgKe`OXBdw zQ{u$PusEv8nS^q1QqvN;s3y}1C8?y0gK^-UG%xmCQBqgLgnCI#&l|H^>V=*|hecgA zl!LYzx|mkeA`B}fYeXz&5F=%J-mFFIqc|H;n6`x$o9R6z>J}L9<}MKLa2p=3zIiRw zn+^4T)cjHW_b=yOdM$To^siTQp$n_N3!6}hD?uM^rRaA+hN6#Ewj@B2UwEY&iu$ZX z0LM%7=paNtAn526k}kwbMj5-slP2hx)Pu0*m^4Dxti@@mU}K3Ihqs9>nT@-$pR`nt-^`}P?%SC|$I4Ia;MXY4 z7${jRv1O#Mv#`$BTVQ6C>JODsV0SjO zd)2r5n=uQ53ggjGR#_=YTScQNHnh_U*f4z`wrxjIh7E4rbg{nznQDvu5)UDOy^%vT zmWWW;`sX}M%`$U-mSvemz7PsPzdQ{G{>;`dMu3F&=%urCo+y8D3SxpfEkJZFXlXSC z@f1wAEGP*G(_%5`G6v--K{c$P%UXAz)Ne%E9~-&pg!fx+%0AO;f8KOxy6H+w#;oa@ z)6~>02Wfz*Ap1e+IHQ7K?RY_oB=kUWY%cLJTl*4J-xNW>erK)5NX=!}dLZ=vz)uH0 zYie0JdgJKIz>R^MuA54(>A>>HdZ=kRP!2kNn1bF4nHA1J2c;<=wb9*ul3^ih@eD>X z`Xd%07N_YD$3aXcD#;AQz=|yPiX-{p__odsE}Upw3?bJ|8aD}`zp@N|^SO-b1) zFk-V7#5>#rh>vOr#^Q*q+ z%WeJt*u?(AwgNV(B$F~!IQdj}qOC`xZEa*mGX0HiWVAmvdeaH-q#Ku!g9t$JHdRjn zvdyAf)s7PXEGmg&2e@5PyvA-hOpkTuCv~8VG?~7rbrg@9HPL929-X66GZ>BjAR{H{ zAw6n(qfuDlLG4QuEv*n^-a0Vuz8<;xR~hA!EX2-chBK=`!?!0Pu+co!~G_|>4fYC&2IQ??QW*rZR_0bXuc+9 zS^GV#<{s9%a-UtSW*4hj{vDsY*{%nGs;X z{CDp;AV+bf^9Gx`Hz{4y)deLEQ^*ottk5{)6wK)g=eO>Rxg@{D;l1x7Cp&N3u?L2N zbM`GWYY&-xL^8*2mI|e;tU{QXFI#dfIwrU-&Y*YO*me&`F7lj#Skp9zblj3;7aNz; zzyl#ob9gtgC5>?3-_LPNu0`h@?zvmiBI`%zf7Y_-n!_l5OOoCBZ^=By=u2>)ev!jb zyWpOD$zkQMa@U*}xvPA{yKs^%FP9{UYpt6qctA7`$3)v5g|ia^XvVaZf)TN52yuGr zEL_4C8Mx&_w}$&IzmzewctXerDk+82Hl&18O1n-*K#8&F>B#v9PWiuRAq+Xb?B0=B{GIG zjsdd&(m#GW_Yk0)e+jb?%NYd|m%(d}g)tNUpJO*}ERzvli~n zhI@12!)xJJvf)>9;S+1&bJ_5@TzGQX13njQd}s8l2TfeC?eXCHj zacJ55S##UU=^Ll-b8deJ#^J5+FI`{y`Q*PsyVu*pzwG!$$Ia8Z_JhBcvhBSecs{Lf zfm=H4aHAILZ`5$D9oJ8-2O2=p1bsi$ajARv_#pR(A;$^9`6s>wWxEsQP99{5+p+EN zH_+;FZb#ja(G=XJq8lzcDxL50#I1DBV-DzCbe1`w2Yv!_F9D&kj8WUOaDY*p#r4(s zO&Lr^!A5cx#KYD+eKo!3Wa^4av=km%7Q*7AjwBHe!9ddDQWJ3UPwK$jN=;3=B0oKWX4WK84(| z&qUki4tX0UrW#S~&WedbFt{;Gh;d=;wX;JbRfs_(tPg}JI;?FW#1W`LP<((H#DvHo zo)U2OGsn)K;Jzj{ot2z;+&*QNL(^FB+3_>OljqN!d?Yf#{HQ8;YCl4O;wJp*1yAj( z?x~$!Yn?~4oku?oto6Tr|J6=&9h7Z3R#5TW>pZJ$N_J23qvg zzK2f}_7R4?eX_0^v20naj@Q>Zq-=+j>xeJcAndKHu9gDqN7q~WuGicRw15_2 zKl)U`-pydA=lQSc@9mXPAH{oya=b$YyhqPZoEd%;;C^oh(P z;F}9I@C&rCNJDlq42noIISmgy9ZzTQGA#D(u3 zV;=6lXY8M~;r|{GJUdyZTpIq;*n{pjbZw(dN6YcFEhQ50neSkO78H2odFUIkj^~2} zeZoBj_F8&00*KjrG~aJxU}{Qt&(HFvn3ceu7MIN^ckEuL>))*f*9ytnA!9DxrG z{gZFG?`Yr~;biG(-N4+v?m|J3Z?_8|ckkJ473^Rwc9gbgWd*IJ1ud+gWkcZHbsJ7c K!0{t5wfBE`Daq#m literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..716421cf4f8ec9e257e501c0c2e1dd8c2b313499 GIT binary patch literal 9705 zcmcH@y zqvyUsh!O=V7G`zkIvG-q&{5JD1;{ZX#x4;tE`@IejhVSrHOO@=#|{aqlzHyNi!%=p z&M|t2P%g`wpcUk@I>!a{;B$u#>q%i=)f6GGl_YIJ7J)2uLeLiA-g)ZuiRbylFFb$v zr5ERpae)WO{{d_8ihi-6Ns3U+BX8>p869R_51@f0l4HO~0g=fCW5oRvhux$0zBnQV zFNJdys1J_~VVjj4JiHm#S zI!#=M2QF#i5+1meiR<*hb(y%N2d>-1r95ywCa%i^*K6XsJ#c9g*W-cPX5xB1aNDJ* zI3}hYOl}8-Y;!^SC}g_}vXeq~xFG!$(&vKgqL7^~$N+`(yC8!UvdaY-qL2X>WH*Hj zx*!<}8FE4PP{?i~TT%Rs-C)o;pz!v@^0&I#N(n2&3ic=gct5%wyQ) zi-M|VfFM&b2{U3rk@A|X6eM+KE{|bkT@Wk;VvAWXL+3iFF*U+lI8qD1h_Qw-QVYTu zXV44AAsCyHPaw!@VHlf%NXHQvo0*G{S`amUc|2oYhZRZCq>PX$OBdQj zug=76%Grvb2&Ifrsg#A1G@CgoNtsv7(JM0^WWo~U7sVko#_go%B}Ih{WfGdBb}~g4 zN`>-Slgu2ola-c=TA>07%_OwP?WA(0P<9?{j@rqjvbv;5y!2{8)l`#f6U;Sbj*IG1 z(7E)Kp84nu6;wTQEIpK3eZ=V#~35NR^6blq9%MNnz84O*b|@*z{tPhDOEJ zWx4d@?_?L`l9bh!B{bNAoIO_1URavX9zK0Ed-BNP>~UFKDoWF*WVxtj3#Cd?DoJH+ zIxk;Pg=%)@yi`7)Ef(gpl`1%}{F#}@pUA3^{HH5I{+w`DQnQspCCdYuC@WcOxx;E# zvqGgXQ>p4K&x2((o?q^337Z)Uvkj&G8Z;M4V}kVUz8rcpQQtWXw`3y_j3pYZ32YsO z02e3yBkh#+!HLVEJ8VClu@07NWf2!t%T)_H/Z5-vFR0F9!cHE=l=Aq41h)FZIAVFAz;sRv|L z4`Iydp+&h+)(3dGf<=c=ELQnE%`m)`4Xa#8LFels%$s_IW))Q#0+5PX3|FzT9SH__ z;~9A4G3W3?S%hUrv&HgM+sg8xK8D;&&|D<KDLsYzIo<$YWi}h&L-}%+$ziceD57L3-d2`C|Kd;-75(dq>2Bl(1FBH7UAA{ zDTA7w-fN8I5wDd8>z4Ut;FkFWhE(APK05`aUKH#KL9Oa6&0D;DjtkOMq2TJ$!=-cJ z5H3JnVHh8|n5I`U(D$&gk5|70Gt@C?E)p>5-HyTA9fS80UDwjz|H9qGz-nUP=BeKt zSxF51Epea`B#9xzHg*icM7*eN&`8$_ZdJ?Uvx=lGDX=$)f+pBIYBi%3Br&7O8Erwz zEUA(*_bz#tp~|Sp(_BHFh~jZ7F2Ci$)+N(~{tC=nMf4P8_J&u$a8XnDDOrf}BJa^BLVsBMhd)Ofo+jpq=oFk-=hm~gMu=e%mZN;QvMVw5HIOJ_a z3t!lrcusWWTf}orhyrY6zNBFt>*>pF(lz6;Slxt&9pkC+3i{B-qmzA%XXDk)iRVOb zQGST{NKnthR4Uqlr(aF%tD6(di40NBFJWb-ZhqnQQ1NUARLEgZA)9Dkdw5YVl#8+; zehN`d2EL-YXuh{OQK#%st`zdHrAQAUX*V^hHJ=K)$J3^6lGisUr<1wQ7eq;Z2q}%s zZOo=Jwk1WXhC}e?<|K6Dy0oMg@|$0qMpC4cseEl|hstN;-`bpbleVLkrLtBiJw)Q^ zq5_!HsfZa*H@hf)w6Ty_%h9?9x9_I+4&V0%sJ@xy5nCBr|6qyTw)H>}hb5gdiA`&f zVc42hKsdQQ#Zy&n{EvahI#%Zw$wv{=mA-c5ZhCYzJ-U_}TVcoAYmZN(+pvdjE&G`uNEq`2C~N#L0A6YWnIi>!pYB8jIB= z)x!HV)L&UVa)YD6EsingCCDmS{r&f> zmr};NhQ+{epZB{)6U|?NSL;HZSWQo?r6yO{$*uLCvrC&*wXf?Ad1-0v(q`36{pP(( zyC`lWpGUcY83nknE=Rm{F*Y!x!ltTtZ(t6=UF5R$DSp)6imh7RSC^w+x)?8IRw+)k z@qQ_DliUMNt!s~4O>=9hi4}H&u01X~H#c|m=&7Sz7yaV>aU4EkM&(4HPKzIEy$d<1+Y--8o_ z@DPQ57di(+fZ~U81^WgRKOn<)?ogP0d?n!a;Ykera?a~oCGuYANjO8=JyL)CbM>L&df#BZe|NoapguIx=zc7mc)xpBBMkROgru{L zDE3&=Gth`(FHU;4H#)GFAnCqFC-#yEOJT2z^bJrRjUEzDuJ;0LU1ZpBdOaNo&jOoB zvL5dJFu;VLTn~~+8k=Mz1Veb3joaUh+waC5XvQ6I;|@0C4!UtqHRGOg(`+AXJ_?tXI4HuIdNJU83{7dBQ{4D%jI-6z8zkk~)T$bHgxpJe_O?D~5s o`F=EhH@agry5q+F+tEG$V2A(B9{4D7JjhI5%m0_)oo0&v0k74~9RL6T literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b71bb9b9aaa34f3e5c7fd46e8bb6dd90a0dee5a GIT binary patch literal 5670 zcmd5=&2QYs6({$T))!^PiIdhrXxC}6jdrPR5d?8vwe|{j0z|eFx&GKgxYTmAONC#Z z;mTQ|FcQFr_SB=Vy$U`RD4PGFy{xeZBMamd^pKlU`IJ-N8-A{qlD8i*%ENH@92n?KVA@oukj(eia|#_T!YRd!4R5)AsRVLv~$gzi2b~kZx)P# zQM8J7saX<*oN!$*N)H92OiGXQ!T4s`D0jrB)X!I>y^^iBZ*JDU!B-V=G^;y~>+8Ph zI_$&EWB6DOu zg)DMpA%&dgh@3)}`iqsNQE?r~)xQL0W)!$09u>o+r0u)ZBuoKf6~9XqZV1Ko2nG6` zj>7uPCw5J_=316}pK+N^&op$WO_Xiw+Dhw+=UGHC+;-0HOMZp zaLSsFqP4bbtCqP%b=p^T+U}aWL>(KhUNbGSt~+{%;FM~^g|B&jPq+A+O}?fL>UOAZ z+px;(uppvxHSdCVL`qE}wXSblt1Yd@7r3r}0-E<2QQU2=SPRzY=r&O2fj12eqv`MvPB6;3Y*g@czdM>CpL*~Hm$NU93XE9W43$#8`&{k1Hc|aOf*#d% z)$6AJUT;fn+`Fc3t~Jzk*XUWKddqb!rkXbRF}h~84MCyz)!Hs`cG0O-ukUwV=jXNh z&s1jmr0VJIPr#3v>Y1JjD{>5%s%iI9A>>?E^ZKKCT$Y9`YT$Q!FL8&ije$$BR`w<| zp9u#gVe!mUdF6?`@|UGA&i?uA(|Y4cy)js859`KICIg8aqUpw51NTYp8W*8+oNFY8 z<_2yZXJFRVDVTVxk1<49Y~O#|yys3Du`g0gMilap5ZHG=V4I6ZJbdI2foULz)@?K<0L=S06}xTok$X^q*k1)80P z$tN_ExmYkS_k@>Io{+%jVC*4M5o>q;iF|$_o&Rt2x^}!?iMcURgeH$w8za6|5$VgB zs&TPIhrLj>Bk*|~`x-VACVH`(+wFu7y$xDJT=MKP)$Z27AuMx4TTC{zK#HEqqH7`W z1e}LE!kM%qMCgxUup?r5B-JN9gKiLy*9m`ANC839en|>VPC$J(P5u#@@ zNeP@KQhzTbWgLAANy!NPt3$alkQ$RLOdtAJW8E24J16@@93I?|(bnFgxHC<}ePC@q z>4ddobOlHLKZM3dF%6b`^7c28_CIht*FT zHLU+;DBm7PwSk*tL^HG>jp z_JJBd?&s+&e3H&#Gmp*D=a63lRjF7=u442p`SKi>bt{iiY} zlRs65^2$J3d9fVbcPv*orsgOVk2ne+DLTNhyo5p-yrkaz3TOBUHWOLsf9)by;$ZU3 zHdNDaE}1ITY=qLF{LBM2ddk-QH1~;Uey;l2luM*vtbx)j+as2TvO18|@1K%i#+2;B z>CT;!kac$#j}Qh^)L6mHoQiafmB8;GPsC4$a&;h8zkecr5ffqenAx7r zG1gHOXea{>*v)1k$T)mjPC~lAh|wFzb5I$|%L8e7l7kmprFCM4XwUIYD7L2xp6C=B zRwTEG4F^#8De*r1@yO0kZzTCCb5M4|TI7KjE{*g2N-FMB_$D&_oWw-Jt&y3#> zjv~Bhe-)NNe~8WN*t~%augHIdJuEkA1sklfXcZe3n>sZ6!CuKvXcYe;@CIvJ_7+rF z4~1`YrJ{7OD3lidnadTo#lt*w4|w-L3egV}^g}U5FT|o3PQ>mdqwgi7*AjFsL9^z( zlStl4B+#pKu$5SDC6=qjSS`k?F;He9Fv`PkDvEK(2cd;^%L37N5yAwW-?Bs?cge^Hu=~;Wg)c{zH-j( zo}SidBqp)FmD*P6cF(!zzR&yIf2yqwG4M40#XqX*E{6FT{wO>?>w|rIA3p9fGBe7^ ztjs0YBsa>j`0Yt}Mm_ZH9reQ7oA4$5qkdZFO9Ya^(I9;L2yc)#%R=Gs2qHQYxhxlA&rTeF%Qn^k}IGb@H4Whs z`Z;SM^XC$hF`lgz#6eTZ%08TC1!GE~2=Qc>H# z97Q*xQ${jzJRXY*BU6fiSb~H@>vUZ0ib9Ag104%6vNCRHL{)TQRyC#spi`A-DI{Lu zibPatETQODH_BBB=~@?niDm_fD7X+oRwksG1R^J96#W2@(g>mGMx zA@H>q{;90|34GjT3@EK<8fdoknYI;<8xD$qduZccW9QlFfVU5qBQaVa6{Q$Wk&9-CmqJ@)y>cat$18 zvvw7($zeQ>gjcNiHmVHYU37F|zmj9!gwg$Zr*K`J_ugi_Vdjr!SP7lzwDk zY!0Or(S`l$gb;TGK?RKK;2w_)swJY4qCr@q^pyoTY#={}qIw6<18u4>uwu|UNuWIl zR7RncC5oN~`$|D1DWPk^DhypoO9a#eoid`I9d=e}^BVn7+LCSRve{uzj^DF5lIPpA!FG!s z+_DwrAeF!ZHNrrGy5%!e;$t{1rcq*-JP!*Jk^>3pFR6r|x^EtgI+@$TT;t}sUgnl( zoSS6Exo^M1FxNcLrfO{)*ND^sS&dOv4m*;%FrPcz2Zy{c<~5J2w=(me=2!QQzvj6@ zFT*fX7XGh!W|@d*h~QQbTxBE(@-dxI4T}hN0?4d#IEQRSJd}WB3)Xn2H8mCSl9vi# zvkEC9mH=I9vS}UXg)Bw|B|$NmX{O?_l!lH$m7atGEbVaX-P3nY{~`G}^HC-rZeOTE z>3IG9>&vY>7k4gp->X{~T)r6p*RYg5KYV*+srhKG`RJdKznuM(*`?0GT<755@630; z^)Jn5vSDeV3W~>k0~NUM+n>i-Hy!%lDcyx%1)XrRrBKVrl~oGWD~TYw zUU=YNwMumcL~Z#0N~J2sxOi2bEJwZ0q)j&|78PYsv>Qi!<&+|oXl3Y=s=6X2W-R(F zfxd7v(yBXM`+&Pu72xXArk?xU-8Kj78F^J1I$1yi#6S|I4HgSL|9{m74`c?jP zcKgO`@_%utufQ;rPvBkpPzM)H=aPpAhPMDJ=R1`14dz+kI=e57`9R!-%S<|)m(Yq) z#BwrE#|WUL3vnuCoSgy(c0zzmfM7?xs6VPCz-Nuep-XgdQ-W%k9{2$|4%LwvuyHMo zM~(e`0AH);YUo(dk{(n;QJ&c#j1lM}6b^^(%JI8EhE?;oy58@yV;y(9?sP4B7nOX| z0V=^3syE&|PXN?$WA?d2DN?8lHhP z+nwEg^t0MLe<~Y1^;K=hY$~Bia>d(Wqr-O8TibDQ=&iHey~W+I5y%Oc`nqekk=Cx= zRq^hcwRb$amgoDj!M-oE_HKt1(&{(_Eg^7?G}fQ}N8*@ZT-7?D;(3n+^7UnPtE3Ec*(i2eb+o{WisgB~#nx?ZMu@v(|#a ztg-6KFW2(LtdZzqUA|Zm`kggPJ^W}i&%cokzVT(2`VD8P$r)W8uk3iwASx`B#*WWi z7#{4QBptXe(wg$iw2U`83SFhkcyoZaaghyBfI*Keym;c#V4gpo4IbZMjlCc*zV;A9 z+;9>D(-j7uiYWqeMD`j^FsYDs_#X3p?iy?0a_LiaL8mdqSn?EF>04#rdVQs8W&e70 zV5Xv_SMn6c1koRmGO(3vEh1v&nk%6V5pW?6st|F{epMC@&O|D;i_Tvd8W}v(hlEtF zNi^ilOE{$w;S}T@Ct_fAwQ*mu?3uSF9Kv@d@E_9{efC891>V-&vo?Y`GIV3V68Cz zsy1-i*+47yV`q6V@989gkgg!n|K+!lV61?kb-iY%>fMnhx>puWmxBLz-Q60@b%5$R zoeiG;`gThx?iTv_rJMB?Z&XLQjpAJq1-eh}KphP}AoNey-KK$D$3UJR%mxRoZE|y% zLsaMmt>-|JU67hW%#vqg_p!jWGK2e$K`7sP_)&MR z_2|OjW4`J3;CJ512Dj5K8v=RYx5NoZbAv!Gi8`EPI7JBy{DOJXZ#ri$i5K85Xsa2F zSvmWd8H&Y{^qyEOX4b@Fzda)*Xf{7)24XSrx&RzZ6VOJ)m?PVa6w<^QxANt;MYo+!a}~6Z5V#F`h4vxb(JA+&?)D8-R=~=R)XvH=ktYa zJovK5<$V3D)3~3tTXVisMd+y_w66&5D?+=A(C#AigwyQ_yVnM1L*Q#=FP$gn8!WaS zEVh2L2z|2%Jza#JW}gMUz8%(i;3+d|hub{PtSU9ti%gF_VBBcPvb_Rkb1_T-EUw4kW}FO{(x?7e zbFEF!QyY=Uq`mM!91>S zTb#_-M{f)+2kNtd*2m#ZnB2WPbZ2O>^ZvHsYDZkJx!!`g%~i&x7a$9E8|2HKMt%}}4c*louDn{co5+o2)T1MlbTu8eOF z-Y|R4UXRpLbx38ir2*cCl@gQ*rWd^yvzjQ99K(xasY%m|KkQpEL;?3>Tye!pF+>^h znV!qaoY_p>2+DePIuH#C(+@X;V4|iUI#i^jb)^iI8}L$ro2GFFSo{P0>wg8s4d&ms z37>?2xM^u;XKrU_e%ou=Z@ih?_GZ?*c{#9cDX=>i*!_8+?Qz3PA8udpKdIfdRJ$)% zyDwiGSz)-UWB1>FQq#CpvprX{eX-^KrXO#8u=U|f_xbFO*FLZLjbHiz1Eg*Ze|zHI zg*(Yy_3q`SmM47kZRO^*d&4!ye9Xz)w_Fqp1K zd6ICxq{0_i1Q>$1>Jgd&H;)MO!jP6yA`N5$K&bI2W-!DTixK2~>o|t7s>a%QYsal4 zrB|8Ymbm2~df-|sL9tCnu&Bj?YU(%e3r_&e29Sf$_Y{Kg@*S0U&x2i-opGGp02qoU z{Q?v#9+qW)%2a>B?D`o~^>0k*3#RQ0ru9D<;fcrpdtL8#-R}Hn&z5Ii&L{j=i1BTC n=AY!)9SbL(G5CHu;tR0NPs0st{YpFIt6uSN)!e%QI_&=dMJ|Pq literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97729399a3e85ed70da04bb14225a4eb1cf880d7 GIT binary patch literal 344 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py new file mode 100644 index 000000000..76527dda4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py @@ -0,0 +1,210 @@ +"""Android.""" +from __future__ import annotations + +import os +import re +import sys +from functools import lru_cache +from typing import 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. 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_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 + + +@lru_cache(maxsize=1) +def _android_folder() -> str | None: + """:return: base folder for the Android OS or None if it cannot be found""" + try: + # First try to get path to android app via pyjnius + from jnius import autoclass + + context = autoclass("android.content.Context") + result: str | None = context.getFilesDir().getParentFile().getAbsolutePath() + except Exception: # noqa: BLE001 + # if fails find an android folder looking path on the sys.path + 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 + 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 + + 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 + + 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 + + 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 + + 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 + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py new file mode 100644 index 000000000..d64ebb9d4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py @@ -0,0 +1,223 @@ +"""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: + import sys + + if sys.version_info >= (3, 8): # pragma: no cover (py38+) + from typing import Literal + else: # pragma: no cover (py38+) + from pip._vendor.typing_extensions import Literal + + +class PlatformDirsABC(ABC): + """Abstract base class for platform directories.""" + + def __init__( # noqa: PLR0913 + 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 only applicable to Unix/Linux 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_runtime_dir(self) -> str: + """:return: runtime directory tied to the user""" + + @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 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_runtime_path(self) -> Path: + """:return: runtime path tied to the user""" + return Path(self.user_runtime_dir) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py new file mode 100644 index 000000000..a753e2a3a --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -0,0 +1,91 @@ +"""macOS.""" +from __future__ import annotations + +import os.path + +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``""" + return self._append_app_name_and_version("/Library/Application Support") + + @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``""" + return self._append_app_name_and_version("/Library/Caches") + + @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_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 + + +__all__ = [ + "MacOS", +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py new file mode 100644 index 000000000..468b0ab49 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py @@ -0,0 +1,223 @@ +"""Unix.""" +from __future__ import annotations + +import os +import sys +from configparser import ConfigParser +from pathlib import Path + +from .api import PlatformDirsABC + +if sys.platform == "win32": + + def getuid() -> int: + msg = "should only be used on Unix" + raise RuntimeError(msg) + +else: + from os import getuid + + +class Unix(PlatformDirsABC): + """ + On Unix/Linux, we follow the + `XDG Basedir Spec `_. The spec allows + overriding directories with environment variables. The examples show 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_dir(self) -> str: + """ + :return: data directories shared by users (if `multipath ` is + enabled and ``XDG_DATA_DIR`` 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 + path = os.environ.get("XDG_DATA_DIRS", "") + if not path.strip(): + path = f"/usr/local/share{os.pathsep}/usr/share" + return self._with_multi_path(path) + + def _with_multi_path(self, path: str) -> str: + path_list = path.split(os.pathsep) + if not self.multipath: + path_list = path_list[0:1] + path_list = [self._append_app_name_and_version(os.path.expanduser(p)) for p in path_list] # noqa: PTH111 + return os.pathsep.join(path_list) + + @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_dir(self) -> str: + """ + :return: config directories shared by users (if `multipath ` + is enabled and ``XDG_DATA_DIR`` 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 + path = os.environ.get("XDG_CONFIG_DIRS", "") + if not path.strip(): + path = "/etc/xdg" + return self._with_multi_path(path) + + @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/tmp/$appname/$version``""" + return self._append_app_name_and_version("/var/tmp") # noqa: S108 + + @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 + 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_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_data_path(self) -> Path: + """:return: data path shared by users. Only return 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. Only return 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 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 _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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py new file mode 100644 index 000000000..dc8c44cf7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py @@ -0,0 +1,4 @@ +# file generated by setuptools_scm +# don't change, don't track in version control +__version__ = version = '3.8.1' +__version_tuple__ = version_tuple = (3, 8, 1) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py new file mode 100644 index 000000000..b52c9c6ea --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py @@ -0,0 +1,255 @@ +"""Windows.""" +from __future__ import annotations + +import ctypes +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_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) + + +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 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 + + 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 + + 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, + }.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 highbit 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]: + if hasattr(ctypes, "windll"): + return get_win_folder_via_ctypes + try: + import winreg # noqa: 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py new file mode 100644 index 000000000..39c84aae5 --- /dev/null +++ b/implement-cowsay/.venv/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-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +from io import StringIO, BytesIO + +__version__ = '2.15.1' +__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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py new file mode 100644 index 000000000..2f7f8cbad --- /dev/null +++ b/implement-cowsay/.venv/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-2023 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71f243a0d2f3dbbf979016604e68fc4df910981c GIT binary patch literal 3522 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85ebb645aaad8bece99ad5236066d0d8b205825a GIT binary patch literal 26639 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 PVdxHbRL2*v9q|7Lnf*SP literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1242b367914a474a00cbaaf951b27f5ff0e4e733 GIT binary patch literal 2660 zcmbVN%}*Og6rcUF*It{i5D3t;n*_Hp1e*Z)B2g*=A*s^PrX+`$w8r)hW?{YS?5+X3 zq%l&Zf?6rI6e;d4sd{LXd;fu6s`i3aD!Hp3kb2@q;g(DLW_Ll9Hciu!c4mI>bKaXb zZ+{F1{Rl?Ww?D{FJP7?pz|P>@&2}e+&?6+F7?P+MC8HQE(HOo9Ab=@}DUg+xSQm3H z_PE&VV&26*7yDf-xH#bApo{BVT<_urg40N9{ECV(ur|TUN(W*bjj#tZn0-b&Cmul` z9z*C3pqMwt!wH))SAggoJJ{>mZI%uK9aQ%4oHKG#OCbo_+!rAhO?W5x2@c}(v^jCM z5`F2=rzqx=+F7s}gflZ6)J(;oCq^3x)?E~^uLRJa6KV$KRnNTG-Ho$?5<;$rO))iUB zfKP#F685vOKMkVVoWlz9gq}zN9b&h*w2rZAdGc6Mw0Ur(cLekEMqwRA5vEkAkO96-O+Vk(IfYqS0-?8noY!BT0v~1#y*GXM4Avv=_ZhHe> z0Mg%pDFxr|Aoa$;x7`fWBV_I}B#P9^IC@Ht=|tcuWpOD@!p2jyO@yA`k4|eD95o9# zBdh6YEqX;ZujZ1`;oGCp@sZ)^bxq1CxaX#(DMnPzWED&bswbt*8;N{0GKbZ4chcpA~GKaP5#I0QQEwh)Bqb6nRkl6G3R>NbiJ255W|sEuZZ< zK8y1fYvKjdAWlS455r>dHd8KOop?C`pV0x6bF#Lo&{2`9!qKm9eRJl?M^&MJmF@rg zL0M3+54vi1uQa+xFGBy4=yn7vBT?-T*aAHZ5$c@8+N-G26jBc_(lg|~_YHG54H8E} zedfwg#2zg%?dTray~u;-l{|R=hX?+ZJosMd;U&>K7riI?f0SROUM8_8pZ>p|MG|Iq z{ylr{V3FRjIF7=B!uNjCY2EfYIZ0}0a#Ea^&1o^=v{MlpQWP4S0WVEVn5Hf#b0#(h z2c51;)a^PW8yG6-#EL_*Z4+XbEzw1`B58d4*v|Wj+w9$rw_m8+w$bg_AZ-v{{2n`F z`ca5-;}00mscs$qJIJECbdmv!it7Tbb`Q}>{e>CJlgMV_UF&ZW0d_`{RUon?KD~#K zJn*t}ifNGI2cOQ1@+VY7hAt2P8vQIVdf_wHVJf1{CREo@9IbhUx#LtMF1R@eAYt^Po1sFYkTEVKVXXSAGI<2zqX=UTPp_!=MH ztHk<0yS{Y&VW`5EyVuy)YYr}TuCcA|9(dkzWQ{#i6M_%Uteh#G{`~D#w%u+FW8r}1 zjmIS|6^~mCHd0RV1Sz46k)1pJEy$Z~*Us&8 z{zAs?)))05V34k0Ffea26h-|`^Ax+;jJ$P4W}WvJxmuvE$Q6@IzFK2*>EmkSQ9$XX zy7h(wC0rH&Of3ZoD_8DtIJM^1N~nAdz)Tf2)(#%3oGMQMnysRye-Yebsrs&>087K! zVqnvQIB${qB~V`yDtCSgbZsGq5|&1aL&dwb`liyY%8l~vmHWlZ%SV>3I)voolV46% z4~DAsA(zZ@%Z*E;OGBGp(B1SS&QrX*d}O_`r8HMQ>>PH>Ls9KpJVgy`^DR_|ouoej D_j#MG literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73bc8503646745b75908b8f9b77ea636581e84c1 GIT binary patch literal 3266 zcmaJ@-)|d99iLh6+OE$@nxsu3m$uXEort-{&L#BFMNPP)O|KQ450M@cmSD5-u9Gcm zubEjl*tn;tM9@kFS|o4}okS%1a8-rGy&V4oC#3d*)MENj2_ATC>O-9R#P>V1>)N5* zNFLA5e82PKJD<{J4gExBIcaM|~6e@V&C zw|u+iIV@PS0_K*ho+I7h+hMj-vT9zy)D&4|KUegtb?&aN1#|3V)MPW$)2~j=OwY`+ zmAdr(R=7S39IJec3CCe?ymRi%+uvTw%4O#~x9C)aGsnKZbV`kX^X$pR{L&&T`5cxG zEY}m+RK6IVPM#5Ch2NbSsD7rk$YrfWZMvDf7;Dl~eZQ5VJ?KrT7i)GrSRke#-*FZM8M%ZS$4L> zJm*IaXE4XAd%;1sFA3cGy2Wir&IlotUMhUYm=7I%-IYr_;na*fMF;!^Th99xXITZO z7~Zoyvkvtvp7}IXzoy?H6j0J6=cyd+tFCBG8l8F(ko04S)o-+x_EWxHss+1hMKXBC-3Ig{IZh^8cx}*tgiXFH{IY&Z6$Z| zyQgzYr%vV+hNjN>z9({B5KR^Rbz#+WSqRUCoae6Os&$BVWj6cDOina)*2iB@1 za#gpQGr`REIT$JA=0ez2>+QHHZ>Mok{+Vh(WKVd0(elJXRt=B9ZpHIZefBT%*#@~k zI^J5izOePu2V>i#)Ay3opCqTBh%}7>48$UvCk&MBCk|YX(;7R!6$X6bR zN+9MKTV{;!fmVBEAdA$ z=z93v@WxvmuqDOb3&b@gu+KxIMS|`aTy!rO&=E?2ppd0R1KhnVO=5SiAN+96T?H(( z_q&1tgori%E-`w_Df-+BfO%2~ihkvS!vn!AR;pEsf$IanE69=%w{vq!4M1tw>q1_+ zx)nJa_JVjY&tG?V(Gt$2aJT-OO5k^VtYuR6!r1Ezx>d=zF8ww$j?hOF{0t|c+e&RS(0EiKi-g}L|CR?Xm3r(S5DguD^DF-~OG1J{|86J)L+&bR)qB!LtazZi(Q~nSibq zaR}rF$P6|u#2{0Uf-WV^H;S>UL;xiAGx) z&HKUGDET?|BIiE872}7%P{{#uER;ia=^SODF%WL6Bw>O{N#MaZ$b-Qn+k;2%B#+8% z{po(&lWBfB9J0S2EHg?L>94crfAjl1&3-&g^LTE!rQ2Vld-wBC;m%$Xq?6lSDr z#Hk1!41@!p5+$#mW#^!=YmzRwq_-Br$GYS>j8(04oJ!6h0XI%PR8 z-+s}T`frjFb%7Z-=`Sc|=1eTlku8lwFG(`mY~6)iSqs>TU#r+%70$%li8V{07Pa@B z1JRODZSOHnNoCViIFqoEpgIVX_Hs%>t#P1V-@3H=8d_ro2p$@{7ThTOb!hUz$n$q5 zPTZehzstXuzc(>^cVc!YMh||aL+I%7M}!U>|7UXWmqS;EZs>QDlUs@HFY<@t}&>c&GoL-N-pf zyjP(iFmWKe4I}v|P4@2FIP+N7jZ7!484HT!(jL(Wd_^sguMe4Ulu*d=eg%1wJfSk+ y0{=32AUp*&;4wn!j+Uf)XDmfW9*+;u#D7?dzPLl6`gDAlE?oQ0zX|-wrT+`o#Ro(H literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8b69db31b7f9e3ed8cd80cf6883f13bb0fc62de GIT binary patch literal 4603 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..096905fa72a14e72a1b7ff281ba3b2364e8610f5 GIT binary patch literal 38363 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 WbHAxnED1L*wC(!`0e6hg`hNjMJXX2@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..398be6800fee9377d008511bd0b5c98c328be6b9 GIT binary patch literal 1602 zcmZWp-EZ4e6u;Nbhnpt-gl;WETmc>RpmCQ8B%-ZV*A@mE9V`WjY+dBUH>oqn_I%xT ziCh%K5G|e5jF;}QkDL0=9|12Nm7rLCK;o%yq21G7;Mj@VsT|4Yo_o*lo^$T`@UMwP z3<351{EO=H2>tDC0t&T-qdOpMA_ZlUf)!4~S*-9SoaHz~aXAvePgW%a=fcT8khZy& zlnpE42Phj+qDtfe&PJ=8DAazB5g@Z#s!-i#$%>&+P1UJ?`ps#I`NxxlsTEVBBmfgr zwiva@NM2@CA%+h20-cy_T}l@WvudfO1v^cq0+FP~#y%KLjioM;e3jS>lziR}gxFNB zyhj+NWb(_oYd3CYlD_Y>rWUBqXqsHjOtZ_7yThZrw@WX7le7F;>7q5nzQv``^(V2%E@0R+T-?DRR(u z`|b*Mu+{6}a`+Skwh9hV8B|3gH+$e+5_z{X$bZhFZiG?UDlE9+l4UHKBIjbw#TDkY z1tBl$(t=T;l3k+}RWB_V(#NWOZ80xRef^P?nVyn9Gn7S*j?Ni|#w5S+UaO22jAbTQ zrQ{OTmn2QiOJ>zxF!W2wiz$hzHXSwP!dJ0)dL|4#zPKyAUZ4CkD(rRlY%H%WH}0+1c7(wukA#jRz@kFC z7)Re>{)wp$BY;T%qZjCUf1tHF>e_ghfxNFkbPV$2gC5xJ~$`r zc@Ge6Pj8)gs`6r}c0J||ai$>a{t&fV+#iS_&5X#pLM&=8TKY-%szn%9N>m2eMO|r) z*ulR*miK^JG33UWsj0SC4(8Xx4O_BaqAssdU5vOq_;Ncc^8K6-alTc5G^kkK05~j`wmzgH3gLD*_d6M-Ho5C&+H}o8mUILQQqo(q-~{k`iGw- z&L1K^d}bBzcfGy!#ctO-tI*_Kd;J4He%g$J;<o_l-Px^~t@bXLtKjt5a@w-`<&_pJL4pz%}D2-eV;o4iO)C?-m6&n#(Ch zA(wMGm><~4ng*L_!Kj${jLm}8lgdeisW{;wLcW=G( OFwWzl=kadbiu6B|ev#t< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c669914c21328de951feb5450ad6baa35a596b04 GIT binary patch literal 3430 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 JDj^l8`Y-lMLs9?$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05cd78cdf83b34ad697e33da9e7d4a868125017f GIT binary patch literal 11080 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 AZ2$lO literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7769a247ba528c442e1135cc69d23d63a31867d1 GIT binary patch literal 8176 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 QqVdT;bJ%bzQTE#VKb@l>g#Z8m literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..854e9af6b303a2f66f1445707806edb126ec659d GIT binary patch literal 33022 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 ZDsKHNx{^#KtuNxX)S}}>(zfn!{0DFwRB8YK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1374af5a99336c21b54335d8e602e79e5c63371a GIT binary patch literal 14015 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 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%s)' % 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py new file mode 100644 index 000000000..deb4937f7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py @@ -0,0 +1,70 @@ +""" + pygments.console + ~~~~~~~~~~~~~~~~ + + Format colored console output. + + :copyright: Copyright 2006-2023 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 d, l in zip(dark_colors, light_colors): + codes[d] = esc + "%im" % x + codes[l] = esc + "%im" % (60 + x) + x += 1 + +del d, l, 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py new file mode 100644 index 000000000..dafa08d15 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py @@ -0,0 +1,71 @@ +""" + pygments.filter + ~~~~~~~~~~~~~~~ + + Module that implements the default filter. + + :copyright: Copyright 2006-2023 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('%r used without bound function' % + self.__class__.__name__) + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + # pylint: disable=not-callable + yield from self.function(lexer, stream, self.options) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py new file mode 100644 index 000000000..5aa9ecbb8 --- /dev/null +++ b/implement-cowsay/.venv/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-2023 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('filter %r not found' % filtername) + + +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(%s)\b' % '|'.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', + '\\

' : '\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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..195e530a2b0133591b622cd89e5186f5fc10df83 GIT binary patch literal 37970 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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) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 000000000..39db84262 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,158 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2023 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("no formatter found for name %r" % _alias) + 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('no valid %s class found in %s' % + (formattername, filename)) + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound('cannot read %s: %s' % (filename, err)) + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound('error when loading custom formatter: %s' % 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 cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound("no formatter found for file name %r" % fn) + + +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ef03ea307897bf9d92d01a71d86ec0cf60270b5 GIT binary patch literal 6960 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 M^*xM#kf2)fKNg$7g8%>k literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8fed3670aa1c44d81ab636ab912a7e0dd85c049a GIT binary patch literal 4249 zcmd5<&2JmW6(_l*EbGgbEnBi|$KyCo!@wr%wDl02U3e@-#^{uGlxmt@H+dF4Nqy^7~xta>$!Gu{=9v))yV zbKX401#c1Kl6MW`b#EEt4eut#74H_t+ukb1HSZ3_b?+|5d)|GFZ+Qt%a)B()D=g_eH3aMt8KDG&&s@Y}t%uuUE2}Vx`jQ z{JoU^)hb{*IuT*Q&ZO?KjSUh>8m!e5iC~2?8T!nuGp+<1B*J5zA?x#S$U1`{5L$+; z6LIAwPgoMMVKiVa4_Qz8y#W83Rupyy$`z!?o;5O=bp*~4ERGT=@|o03_kFUMmNN&<*Kpn{`#x zFN`x@lJhblHxn|19S(Ib3K=sg2f%(4<>C|n`ToF zOj&iOwZ8`}t3=f+>CF2Lnh~h@rr%t)h$oEr*)LhU{b3UG@S}E{Y3?KZH-^j;T|Nl( z6B7e2>_K`l#DxgmAfgmN&~uWEl_&(CAa)ZGblI8WaXi7|$l6>p?*4Y>#G!BV50i=nhX+r)@H@ZIZE#Bt$-Yb#Z-F<8MF)^QSQPJ(*GscH~3xTZ)^cQPtKq0{woRSQS@QaPVm50vg^ z&QWWNnh@s2`MR6_^R@HAg}zU?Q>j8V#M$-{!uUV~W-VPF1Ve^v!=+*$cg;x3i`;>E zq1fhcOT7%OJb6K7-^2`cUWmboLATprheCCQtBseNQ9Lw^hde~K01dUHL^lc@vx)pk|ElP^aeZ_hY1=iqGY8dR3F-c4}SH0 z0;-Ft`2-Y4yxIJOVBN{)C->%HR}uvRIx`1@O{}jk<7qm~#|Ou|@Pc~(xWzm%_idxd zc3P--YMDl-FbEWf-~#sK3AxDHBb&ya5L}m(n`dmHMI&LkW}!HvYq1Yl-NQ<3pL+yc zVa8dcP6%$L5RbtS+5Os4c#7YfR)j_-XR{*_B>n7o^-AG}#po|T8Y5Fb$B=CPf4p8F zxzJJrVa^yMU9YL<)cnW5j9Dh5h%$Q~W6k z><;P;qQK5A1V6tF0oD9CR#B`ZlHDW)r(i{^v{H=&=$PC3^l1O%R_n#lvC;B9E}?Ys z$7V0;i>6Km64viU&26c72A$^SZ?~GqpKLbwBX1Chr>!UolBVp(w(=ZFWZ;A!)wCPokJQc09b8{jhJ2 z`$)ZnZDsr?k1^&>xm?a?Z!T5-TfLQ+N^7Z;JD|R)u7Xze4nE zsYcwZekH$3^jxX70{ZsvtNA?93#Ho4|E%bIk%*;&x#i^7h`wGZ``pQwiM~q>r; z=#@g*aV5V+^zBmZE|lLtujH#luNCsWN`8mvbsUEMTdit-m*{&1t*iNcqTedycWU_q oqFEvTNi}~+^xLJ{L&!h+td>6_`ki9`W#zlap#LzZb^zD^05`b3TmS$7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14391f96b56d9137cf80b551edde50122282ae17 GIT binary patch literal 4228 zcmcgv&2tmU6`zr2q_Hfp@dsephK6NV2yBViYuHsF2{xb0;-q4yY9p^AjWlg(%xFfL zX_=K)-tu7&n4*GxLgZp^RVsLk3#U~6hRwwWwpKN@sd8#hxdF~zIOTQENH)e!Dwj-^ zdV2bO_V2xZ{q(ne`vM$19e?>oeHG-mALvKp5#7n=d6+!l6fVIjyyDULf+ykO>D;S% z3qnGGxsc-%qKCW6DdLy#g*}hGj&#CT_C@@aZvqIOVmVj9IWU_{W z8TpGnp8%tej#5_C6plK}@vKoSn`$mk;%KZfMMG!KoE;oGGc=4cWkm8A{mM0t2$l;2 z$if(1{LSRGU;cU`%CyHdHH&o%$IIFtn6WBzD{A=oom~WXL*LIHSk?*c^h%0}gWu9-#Foe8Q`E5`y9dFg*z| z$0d9e%!FU@!6+$y7+cCxq{XCxk$(Vynct2TM2uVDJ-V%uJaT}tqG&RYttMcqob)Bm5mb0$~wvex*A28u9!e6nOV$&!R$5S ziZU3Wa)MbjEKrt1Dxv6`*bUZXUbVI&i1M<9bOTwXV$m=O13DvTZ{4s|;umDr4iKggQlT`5lGrNTh2mz3kZ3`p1Yhpk`z_y)uP)De=lW3Fp zGlD?3yiG4?Dao2vMu3i$H*V{Wpp0N&hESSwCvWG~Y#!{X7V`w)b`BB?lVUXN zVU$i&Q7V*9BS=cs&?5{<3O7{<2sp|hq)eBNAtOK`_@=-qm0b~l*u({67Ar267ZpXN zG+A@?LWHteTqIbDJ0~)2k+O!A}0$eCw1I*hD1_&%-QoO*bj3%fQ1R;~v zWDDF=@U&dgNW7^hoesNe;dDCUx|62C0dTj>U7v>24S*Ynm?bb)EU_F!Mv2g=sskmR zc7h7vuzcCg*tD!!7!0|aYU0`SXQv@qQD7UOkJ_eTWQnnLPIiW~sisOP719{q1yZF(&?3RPo>k}cOP2`uYULhKkGh!N4OVozT;0y&$=(r z?~Q|p;niA~g5OC!>r&6RQtu|{;@(OWitnZk!vhG}3}xBzT;h_Sa@?l?-yA;&chYD4 zoOe#BdK6C&aGLE^ui|ZdReZ1`*w!4}SXH3{bjB$%&H!-wT&jN?RccaOTxwt&wY5nN zy3~D5s<$dkd%)}6(we6&%DvwSG`aSV+mJM@gjZVOki!*n;hlG_WJQ{av9F{pWDHHI zc&9SSiZB(+ByFEcWVrreNo7lF(r$qZ2%DO!V^}S*)lw1?O=Kx&wu8ZlXm-HM76~aA zu`PhWG^NWXvAvKJ7CjSC{tz;|U}heGq0;wO3T#W{p8|*V2!?sC-g|U8{xJTEYi}7? zxN+z5;`{Yb-&(K_W@GiX&c&;D=j!dpf@J+s`hF^@C_-c>Umei(ble z-7N z!PjiFSipw_KbB>y5U0Je%sf!_%xsqeA^Ir%W4C~q~e8)q`AmL zHWN3S#W`P91f7txJD*wJ?5&D3)bkzBocJGP_gmbuY6T+)y?*M@v7Gx+1*lA zp!v;Cmw!&$0|W02E$2I)svj&!)857|8*jkLH|MR2bHcq@f%`vO{@)@bZ1Z{7+OubD z#s4O01^397jy*8;ZD}min&BU>_?&*A(mq9drVI44VQo^m*4h^gc?y z<^vI*xgTh@c-w?a!EA#$s|&WT2#u*uY+=Swb!gaGm1uQ3bk;hyZ{CvIRRQ+)Oa`0hrQGDU$IuAR`PdiR+v~|@aR!|PrM%LTWlK&r_ zq583RAN79KyZXucv9n7bEncn-*SmTj++4c3a{N*FtMKZ`lki`M*G~QX+3{aI@48qI z9bNR-d(o2gq8m)VJj?|<>plI;y$^d=K3VUHE_?*O3^(?0d^!9uyfU&Helomv{M@t9 z2hW2aZoIk8$n)TdH@8{awp8m{4*fCIPeTu1$8 z3##r~QKMz#kK6#+YZcPucSJwRGMA;b-PKAkf-v uK{@1JczK?G>5+Kh$AcU{@^@}%qqT1>&_D10moLHdXi@zU{`K;XyZ;6v?nXKQ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89ad7494dff5bfa4f82b73bfdc20be9ee60c8eb5 GIT binary patch literal 7298 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 MEHZsuXh8V?0npQAK>z>% literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9c4e68907255e79664fa0841cef2c5a1cc8d35b GIT binary patch literal 27077 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 W;ZF1S_Zld@kEe8}kaT?tK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1caa3147416f1d852bbeae218c76be5ada9fd12 GIT binary patch literal 6099 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 JK*#;_{{YF3+AIJ7 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e39d7d11b9e8b17a4c293f1165e1d9e088d07e4 GIT binary patch literal 19988 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 AHUIzs literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bc4e24a2db674808fb9f67779fc4354c18c71d4 GIT binary patch literal 6918 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c356ca58998f745b6b56028f2c256d4bd3ed9273 GIT binary patch literal 2964 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68d03dda99a68a071bac92ba12d3340178a03bf1 GIT binary patch literal 9100 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 J!e0XT{{Si;{UrbZ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2136f14b24b28aa846ce68b7f6b53fea5f368f5b GIT binary patch literal 5863 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 MGw>ycvvr&Q1xrSqRsaA1 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffb42c2db718e1d8a10ed3568a773cc675babac6 GIT binary patch literal 15191 zcmeHOdvH|OdB1mG+Fh-*s~378#6=Iog7pL}5a93-!q^~Ei#V7jl~#MN#ER9fxc3T> zys}B^wt|wdvYoO@Ji|JViKwR&GV!#@OlFd%p0;V)sTRR#ee29H)AkSj)4{@-rk+mQ z-*@ibeX+vWeg4tIaCFXh&-;Amd;HGXUzC(MIfU{*{;R-BE64pkWsG1=B_60qT<1jY zG$-<+DaenTPMdg2n}gF6t zJD*}@UVe0NvO;}EeE}^AsM_ie2az%w6T*|~#H1=*2&iX-1N{R>1w}eHDTVx!(x$iY z{E>sLYPj{($-~bd7xc>haOgZn6bOd|8TA7pNfCUaZ$gzsVMGp(3m2(*y|d7HHV!o$ z4hmb&sOmⅆ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 C&8uwy literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py new file mode 100644 index 000000000..72ca84040 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py @@ -0,0 +1,23 @@ +# Automatically generated by scripts/gen_mapfiles.py. +# DO NOT EDIT BY HAND; run `tox -e mapfiles` instead. + +FORMATTERS = { + 'BBCodeFormatter': ('pygments.formatters.bbcode', 'BBCode', ('bbcode', 'bb'), (), '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.'), + 'BmpImageFormatter': ('pygments.formatters.img', 'img_bmp', ('bmp', 'bitmap'), ('*.bmp',), 'Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'GifImageFormatter': ('pygments.formatters.img', 'img_gif', ('gif',), ('*.gif',), 'Create a GIF image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'GroffFormatter': ('pygments.formatters.groff', 'groff', ('groff', 'troff', 'roff'), (), 'Format tokens with groff escapes to change their color and font style.'), + 'HtmlFormatter': ('pygments.formatters.html', 'HTML', ('html',), ('*.html', '*.htm'), "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."), + '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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 000000000..c4db8f4ef --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py @@ -0,0 +1,108 @@ +""" + pygments.formatters.bbcode + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + BBcode formatter. + + :copyright: Copyright 2006-2023 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=#%s]' % 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 000000000..30a528e66 --- /dev/null +++ b/implement-cowsay/.venv/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-2023 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[%s]' % 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[%s]' % 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 000000000..931d7c3fe --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py @@ -0,0 +1,989 @@ +""" + pygments.formatters.html + ~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for HTML output. + + :copyright: Copyright 2006-2023 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-2023 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 `` + {% else %} + {{ head | safe }} + {% endif %} +{% if not embed %} + + +{% endif %} +{{ body | safe }} +{% for diagram in diagrams %} +
+

{{ diagram.title }}

+
{{ diagram.text }}
+
+ {{ diagram.svg }} +
+
+{% endfor %} +{% if not embed %} + + +{% endif %} +""" + +template = Template(jinja2_template_source) + +# Note: ideally this would be a dataclass, but we're supporting Python 3.5+ so we can't do this yet +NamedDiagram = NamedTuple( + "NamedDiagram", + [("name", str), ("diagram", typing.Optional[railroad.DiagramItem]), ("index", int)], +) +""" +A simple structure for associating a name with a railroad diagram +""" + +T = TypeVar("T") + + +class EachItem(railroad.Group): + """ + Custom railroad item to compose a: + - Group containing a + - OneOrMore containing a + - Choice of the elements in the Each + with the group label indicating that all must be matched + """ + + all_label = "[ALL]" + + def __init__(self, *items): + choice_item = railroad.Choice(len(items) - 1, *items) + one_or_more_item = railroad.OneOrMore(item=choice_item) + super().__init__(one_or_more_item, label=self.all_label) + + +class AnnotatedItem(railroad.Group): + """ + Simple subclass of Group that creates an annotation label + """ + + def __init__(self, label: str, item): + super().__init__(item=item, label="[{}]".format(label) if label else label) + + +class EditablePartial(Generic[T]): + """ + Acts like a functools.partial, but can be edited. In other words, it represents a type that hasn't yet been + constructed. + """ + + # We need this here because the railroad constructors actually transform the data, so can't be called until the + # entire tree is assembled + + def __init__(self, func: Callable[..., T], args: list, kwargs: dict): + self.func = func + self.args = args + self.kwargs = kwargs + + @classmethod + def from_call(cls, func: Callable[..., T], *args, **kwargs) -> "EditablePartial[T]": + """ + If you call this function in the same way that you would call the constructor, it will store the arguments + as you expect. For example EditablePartial.from_call(Fraction, 1, 3)() == Fraction(1, 3) + """ + return EditablePartial(func=func, args=list(args), kwargs=kwargs) + + @property + def name(self): + return self.kwargs["name"] + + def __call__(self) -> T: + """ + Evaluate the partial and return the result + """ + args = self.args.copy() + kwargs = self.kwargs.copy() + + # This is a helpful hack to allow you to specify varargs parameters (e.g. *args) as keyword args (e.g. + # args=['list', 'of', 'things']) + arg_spec = inspect.getfullargspec(self.func) + if arg_spec.varargs in self.kwargs: + args += kwargs.pop(arg_spec.varargs) + + return self.func(*args, **kwargs) + + +def railroad_to_html(diagrams: List[NamedDiagram], embed=False, **kwargs) -> str: + """ + Given a list of NamedDiagram, produce a single HTML string that visualises those diagrams + :params kwargs: kwargs to be passed in to the template + """ + data = [] + for diagram in diagrams: + if diagram.diagram is None: + continue + io = StringIO() + try: + css = kwargs.get('css') + diagram.diagram.writeStandalone(io.write, css=css) + except AttributeError: + diagram.diagram.writeSvg(io.write) + title = diagram.name + if diagram.index == 0: + title += " (root)" + data.append({"title": title, "text": "", "svg": io.getvalue()}) + + return template.render(diagrams=data, embed=embed, **kwargs) + + +def resolve_partial(partial: "EditablePartial[T]") -> T: + """ + Recursively resolves a collection of Partials into whatever type they are + """ + if isinstance(partial, EditablePartial): + partial.args = resolve_partial(partial.args) + partial.kwargs = resolve_partial(partial.kwargs) + return partial() + elif isinstance(partial, list): + return [resolve_partial(x) for x in partial] + elif isinstance(partial, dict): + return {key: resolve_partial(x) for key, x in partial.items()} + else: + return partial + + +def to_railroad( + element: pyparsing.ParserElement, + diagram_kwargs: typing.Optional[dict] = None, + vertical: int = 3, + show_results_names: bool = False, + show_groups: bool = False, +) -> List[NamedDiagram]: + """ + Convert a pyparsing element tree into a list of diagrams. This is the recommended entrypoint to diagram + creation if you want to access the Railroad tree before it is converted to HTML + :param element: base element of the parser being diagrammed + :param diagram_kwargs: kwargs to pass to the Diagram() constructor + :param vertical: (optional) - int - limit at which number of alternatives should be + shown vertically instead of horizontally + :param show_results_names - bool to indicate whether results name annotations should be + included in the diagram + :param show_groups - bool to indicate whether groups should be highlighted with an unlabeled + surrounding box + """ + # Convert the whole tree underneath the root + lookup = ConverterState(diagram_kwargs=diagram_kwargs or {}) + _to_diagram_element( + element, + lookup=lookup, + parent=None, + vertical=vertical, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + root_id = id(element) + # Convert the root if it hasn't been already + if root_id in lookup: + if not element.customName: + lookup[root_id].name = "" + lookup[root_id].mark_for_extraction(root_id, lookup, force=True) + + # Now that we're finished, we can convert from intermediate structures into Railroad elements + diags = list(lookup.diagrams.values()) + if len(diags) > 1: + # collapse out duplicate diags with the same name + seen = set() + deduped_diags = [] + for d in diags: + # don't extract SkipTo elements, they are uninformative as subdiagrams + if d.name == "...": + continue + if d.name is not None and d.name not in seen: + seen.add(d.name) + deduped_diags.append(d) + resolved = [resolve_partial(partial) for partial in deduped_diags] + else: + # special case - if just one diagram, always display it, even if + # it has no name + resolved = [resolve_partial(partial) for partial in diags] + return sorted(resolved, key=lambda diag: diag.index) + + +def _should_vertical( + specification: int, exprs: Iterable[pyparsing.ParserElement] +) -> bool: + """ + Returns true if we should return a vertical list of elements + """ + if specification is None: + return False + else: + return len(_visible_exprs(exprs)) >= specification + + +class ElementState: + """ + State recorded for an individual pyparsing Element + """ + + # Note: this should be a dataclass, but we have to support Python 3.5 + def __init__( + self, + element: pyparsing.ParserElement, + converted: EditablePartial, + parent: EditablePartial, + number: int, + name: str = None, + parent_index: typing.Optional[int] = None, + ): + #: The pyparsing element that this represents + self.element: pyparsing.ParserElement = element + #: The name of the element + self.name: typing.Optional[str] = name + #: The output Railroad element in an unconverted state + self.converted: EditablePartial = converted + #: The parent Railroad element, which we store so that we can extract this if it's duplicated + self.parent: EditablePartial = parent + #: The order in which we found this element, used for sorting diagrams if this is extracted into a diagram + self.number: int = number + #: The index of this inside its parent + self.parent_index: typing.Optional[int] = parent_index + #: If true, we should extract this out into a subdiagram + self.extract: bool = False + #: If true, all of this element's children have been filled out + self.complete: bool = False + + def mark_for_extraction( + self, el_id: int, state: "ConverterState", name: str = None, force: bool = False + ): + """ + Called when this instance has been seen twice, and thus should eventually be extracted into a sub-diagram + :param el_id: id of the element + :param state: element/diagram state tracker + :param name: name to use for this element's text + :param force: If true, force extraction now, regardless of the state of this. Only useful for extracting the + root element when we know we're finished + """ + self.extract = True + + # Set the name + if not self.name: + if name: + # Allow forcing a custom name + self.name = name + elif self.element.customName: + self.name = self.element.customName + else: + self.name = "" + + # Just because this is marked for extraction doesn't mean we can do it yet. We may have to wait for children + # to be added + # Also, if this is just a string literal etc, don't bother extracting it + if force or (self.complete and _worth_extracting(self.element)): + state.extract_into_diagram(el_id) + + +class ConverterState: + """ + Stores some state that persists between recursions into the element tree + """ + + def __init__(self, diagram_kwargs: typing.Optional[dict] = None): + #: A dictionary mapping ParserElements to state relating to them + self._element_diagram_states: Dict[int, ElementState] = {} + #: A dictionary mapping ParserElement IDs to subdiagrams generated from them + self.diagrams: Dict[int, EditablePartial[NamedDiagram]] = {} + #: The index of the next unnamed element + self.unnamed_index: int = 1 + #: The index of the next element. This is used for sorting + self.index: int = 0 + #: Shared kwargs that are used to customize the construction of diagrams + self.diagram_kwargs: dict = diagram_kwargs or {} + self.extracted_diagram_names: Set[str] = set() + + def __setitem__(self, key: int, value: ElementState): + self._element_diagram_states[key] = value + + def __getitem__(self, key: int) -> ElementState: + return self._element_diagram_states[key] + + def __delitem__(self, key: int): + del self._element_diagram_states[key] + + def __contains__(self, key: int): + return key in self._element_diagram_states + + def generate_unnamed(self) -> int: + """ + Generate a number used in the name of an otherwise unnamed diagram + """ + self.unnamed_index += 1 + return self.unnamed_index + + def generate_index(self) -> int: + """ + Generate a number used to index a diagram + """ + self.index += 1 + return self.index + + def extract_into_diagram(self, el_id: int): + """ + Used when we encounter the same token twice in the same tree. When this + happens, we replace all instances of that token with a terminal, and + create a new subdiagram for the token + """ + position = self[el_id] + + # Replace the original definition of this element with a regular block + if position.parent: + ret = EditablePartial.from_call(railroad.NonTerminal, text=position.name) + if "item" in position.parent.kwargs: + position.parent.kwargs["item"] = ret + elif "items" in position.parent.kwargs: + position.parent.kwargs["items"][position.parent_index] = ret + + # If the element we're extracting is a group, skip to its content but keep the title + if position.converted.func == railroad.Group: + content = position.converted.kwargs["item"] + else: + content = position.converted + + self.diagrams[el_id] = EditablePartial.from_call( + NamedDiagram, + name=position.name, + diagram=EditablePartial.from_call( + railroad.Diagram, content, **self.diagram_kwargs + ), + index=position.number, + ) + + del self[el_id] + + +def _worth_extracting(element: pyparsing.ParserElement) -> bool: + """ + Returns true if this element is worth having its own sub-diagram. Simply, if any of its children + themselves have children, then its complex enough to extract + """ + children = element.recurse() + return any(child.recurse() for child in children) + + +def _apply_diagram_item_enhancements(fn): + """ + decorator to ensure enhancements to a diagram item (such as results name annotations) + get applied on return from _to_diagram_element (we do this since there are several + returns in _to_diagram_element) + """ + + def _inner( + element: pyparsing.ParserElement, + parent: typing.Optional[EditablePartial], + lookup: ConverterState = None, + vertical: int = None, + index: int = 0, + name_hint: str = None, + show_results_names: bool = False, + show_groups: bool = False, + ) -> typing.Optional[EditablePartial]: + ret = fn( + element, + parent, + lookup, + vertical, + index, + name_hint, + show_results_names, + show_groups, + ) + + # apply annotation for results name, if present + if show_results_names and ret is not None: + element_results_name = element.resultsName + if element_results_name: + # add "*" to indicate if this is a "list all results" name + element_results_name += "" if element.modalResults else "*" + ret = EditablePartial.from_call( + railroad.Group, item=ret, label=element_results_name + ) + + return ret + + return _inner + + +def _visible_exprs(exprs: Iterable[pyparsing.ParserElement]): + non_diagramming_exprs = ( + pyparsing.ParseElementEnhance, + pyparsing.PositionToken, + pyparsing.And._ErrorStop, + ) + return [ + e + for e in exprs + if not (e.customName or e.resultsName or isinstance(e, non_diagramming_exprs)) + ] + + +@_apply_diagram_item_enhancements +def _to_diagram_element( + element: pyparsing.ParserElement, + parent: typing.Optional[EditablePartial], + lookup: ConverterState = None, + vertical: int = None, + index: int = 0, + name_hint: str = None, + show_results_names: bool = False, + show_groups: bool = False, +) -> typing.Optional[EditablePartial]: + """ + Recursively converts a PyParsing Element to a railroad Element + :param lookup: The shared converter state that keeps track of useful things + :param index: The index of this element within the parent + :param parent: The parent of this element in the output tree + :param vertical: Controls at what point we make a list of elements vertical. If this is an integer (the default), + it sets the threshold of the number of items before we go vertical. If True, always go vertical, if False, never + do so + :param name_hint: If provided, this will override the generated name + :param show_results_names: bool flag indicating whether to add annotations for results names + :returns: The converted version of the input element, but as a Partial that hasn't yet been constructed + :param show_groups: bool flag indicating whether to show groups using bounding box + """ + exprs = element.recurse() + name = name_hint or element.customName or element.__class__.__name__ + + # Python's id() is used to provide a unique identifier for elements + el_id = id(element) + + element_results_name = element.resultsName + + # Here we basically bypass processing certain wrapper elements if they contribute nothing to the diagram + if not element.customName: + if isinstance( + element, + ( + # pyparsing.TokenConverter, + # pyparsing.Forward, + pyparsing.Located, + ), + ): + # However, if this element has a useful custom name, and its child does not, we can pass it on to the child + if exprs: + if not exprs[0].customName: + propagated_name = name + else: + propagated_name = None + + return _to_diagram_element( + element.expr, + parent=parent, + lookup=lookup, + vertical=vertical, + index=index, + name_hint=propagated_name, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + # If the element isn't worth extracting, we always treat it as the first time we say it + if _worth_extracting(element): + if el_id in lookup: + # If we've seen this element exactly once before, we are only just now finding out that it's a duplicate, + # so we have to extract it into a new diagram. + looked_up = lookup[el_id] + looked_up.mark_for_extraction(el_id, lookup, name=name_hint) + ret = EditablePartial.from_call(railroad.NonTerminal, text=looked_up.name) + return ret + + elif el_id in lookup.diagrams: + # If we have seen the element at least twice before, and have already extracted it into a subdiagram, we + # just put in a marker element that refers to the sub-diagram + ret = EditablePartial.from_call( + railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] + ) + return ret + + # Recursively convert child elements + # Here we find the most relevant Railroad element for matching pyparsing Element + # We use ``items=[]`` here to hold the place for where the child elements will go once created + if isinstance(element, pyparsing.And): + # detect And's created with ``expr*N`` notation - for these use a OneOrMore with a repeat + # (all will have the same name, and resultsName) + if not exprs: + return None + if len(set((e.name, e.resultsName) for e in exprs)) == 1: + ret = EditablePartial.from_call( + railroad.OneOrMore, item="", repeat=str(len(exprs)) + ) + elif _should_vertical(vertical, exprs): + ret = EditablePartial.from_call(railroad.Stack, items=[]) + else: + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + elif isinstance(element, (pyparsing.Or, pyparsing.MatchFirst)): + if not exprs: + return None + if _should_vertical(vertical, exprs): + ret = EditablePartial.from_call(railroad.Choice, 0, items=[]) + else: + ret = EditablePartial.from_call(railroad.HorizontalChoice, items=[]) + elif isinstance(element, pyparsing.Each): + if not exprs: + return None + ret = EditablePartial.from_call(EachItem, items=[]) + elif isinstance(element, pyparsing.NotAny): + ret = EditablePartial.from_call(AnnotatedItem, label="NOT", item="") + elif isinstance(element, pyparsing.FollowedBy): + ret = EditablePartial.from_call(AnnotatedItem, label="LOOKAHEAD", item="") + elif isinstance(element, pyparsing.PrecededBy): + ret = EditablePartial.from_call(AnnotatedItem, label="LOOKBEHIND", item="") + elif isinstance(element, pyparsing.Group): + if show_groups: + ret = EditablePartial.from_call(AnnotatedItem, label="", item="") + else: + ret = EditablePartial.from_call(railroad.Group, label="", item="") + elif isinstance(element, pyparsing.TokenConverter): + label = type(element).__name__.lower() + if label == "tokenconverter": + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + else: + ret = EditablePartial.from_call(AnnotatedItem, label=label, item="") + elif isinstance(element, pyparsing.Opt): + ret = EditablePartial.from_call(railroad.Optional, item="") + elif isinstance(element, pyparsing.OneOrMore): + ret = EditablePartial.from_call(railroad.OneOrMore, item="") + elif isinstance(element, pyparsing.ZeroOrMore): + ret = EditablePartial.from_call(railroad.ZeroOrMore, item="") + elif isinstance(element, pyparsing.Group): + ret = EditablePartial.from_call( + railroad.Group, item=None, label=element_results_name + ) + elif isinstance(element, pyparsing.Empty) and not element.customName: + # Skip unnamed "Empty" elements + ret = None + elif isinstance(element, pyparsing.ParseElementEnhance): + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + elif len(exprs) > 0 and not element_results_name: + ret = EditablePartial.from_call(railroad.Group, item="", label=name) + elif len(exprs) > 0: + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + else: + terminal = EditablePartial.from_call(railroad.Terminal, element.defaultName) + ret = terminal + + if ret is None: + return + + # Indicate this element's position in the tree so we can extract it if necessary + lookup[el_id] = ElementState( + element=element, + converted=ret, + parent=parent, + parent_index=index, + number=lookup.generate_index(), + ) + if element.customName: + lookup[el_id].mark_for_extraction(el_id, lookup, element.customName) + + i = 0 + for expr in exprs: + # Add a placeholder index in case we have to extract the child before we even add it to the parent + if "items" in ret.kwargs: + ret.kwargs["items"].insert(i, None) + + item = _to_diagram_element( + expr, + parent=ret, + lookup=lookup, + vertical=vertical, + index=i, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + # Some elements don't need to be shown in the diagram + if item is not None: + if "item" in ret.kwargs: + ret.kwargs["item"] = item + elif "items" in ret.kwargs: + # If we've already extracted the child, don't touch this index, since it's occupied by a nonterminal + ret.kwargs["items"][i] = item + i += 1 + elif "items" in ret.kwargs: + # If we're supposed to skip this element, remove it from the parent + del ret.kwargs["items"][i] + + # If all this items children are none, skip this item + if ret and ( + ("items" in ret.kwargs and len(ret.kwargs["items"]) == 0) + or ("item" in ret.kwargs and ret.kwargs["item"] is None) + ): + ret = EditablePartial.from_call(railroad.Terminal, name) + + # Mark this element as "complete", ie it has all of its children + if el_id in lookup: + lookup[el_id].complete = True + + if el_id in lookup and lookup[el_id].extract and lookup[el_id].complete: + lookup.extract_into_diagram(el_id) + if ret is not None: + ret = EditablePartial.from_call( + railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] + ) + + return ret diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2147d0aeb430e0827ff3bacaebcde9725ed9ebdf GIT binary patch literal 26847 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%0DV7(OTC+~aY5p&HkSmQw$gytl|>T)aF4I>&pKug@ z(qQAe_?eSrTl9pZ@RQPJe$!0L zd@W+}yc=4gN4AM;-Igh@$ka7us%sy)p62&tJe6rrQ_9nnHRElueC_qK*UruzOO*$+ zRzv`&amUk6A%R;{n{`mg$(2@SsW1$)ZO*AJDQne|hh7uBgMS8VJZq+BUGptRy5(RB zzq&&#YSHRgvLfl{)z9#4k2rWgPx8<5eDx!a{Orpn8^3FIEM2!NRktgPA@91kV~HM* zOI!HT?2EjUx6QW9?MXN8P2sopnI#S}*|nUh0o_~QfKNDQN=h@h&Z-Wu<&jFRzjQB%Vs69pLp{$E%U{%QaK literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py new file mode 100644 index 000000000..12219f124 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py @@ -0,0 +1,299 @@ +# exceptions.py + +import re +import sys +import typing + +from .util import ( + col, + line, + lineno, + _collapse_string_to_ranges, + replaced_by_pep8, +) +from .unicode import pyparsing_unicode as ppu + + +class ExceptionWordUnicode(ppu.Latin1, ppu.LatinA, ppu.LatinB, ppu.Greek, ppu.Cyrillic): + pass + + +_extract_alphanums = _collapse_string_to_ranges(ExceptionWordUnicode.alphanums) +_exception_word_extractor = re.compile("([" + _extract_alphanums + "]{1,16})|.") + + +class ParseBaseException(Exception): + """base exception class for all parsing runtime exceptions""" + + loc: int + msg: str + pstr: str + parser_element: typing.Any # "ParserElement" + args: typing.Tuple[str, int, typing.Optional[str]] + + __slots__ = ( + "loc", + "msg", + "pstr", + "parser_element", + "args", + ) + + # Performance tuning: we construct a *lot* of these, so keep this + # constructor as small and fast as possible + def __init__( + self, + pstr: str, + loc: int = 0, + msg: typing.Optional[str] = None, + elem=None, + ): + self.loc = loc + if msg is None: + self.msg = pstr + self.pstr = "" + else: + self.msg = msg + self.pstr = pstr + self.parser_element = elem + self.args = (pstr, loc, msg) + + @staticmethod + def explain_exception(exc, depth=16): + """ + Method to take an exception and translate the Python internal traceback into a list + of the pyparsing expressions that caused the exception to be raised. + + Parameters: + + - exc - exception raised during parsing (need not be a ParseException, in support + of Python exceptions that might be raised in a parse action) + - depth (default=16) - number of levels back in the stack trace to list expression + and function names; if None, the full stack trace names will be listed; if 0, only + the failing input line, marker, and exception string will be shown + + Returns a multi-line string listing the ParserElements and/or function names in the + exception's stack trace. + """ + import inspect + from .core import ParserElement + + if depth is None: + depth = sys.getrecursionlimit() + ret = [] + if isinstance(exc, ParseBaseException): + ret.append(exc.line) + ret.append(" " * (exc.column - 1) + "^") + ret.append(f"{type(exc).__name__}: {exc}") + + if depth > 0: + callers = inspect.getinnerframes(exc.__traceback__, context=depth) + seen = set() + for i, ff in enumerate(callers[-depth:]): + frm = ff[0] + + f_self = frm.f_locals.get("self", None) + if isinstance(f_self, ParserElement): + if not frm.f_code.co_name.startswith( + ("parseImpl", "_parseNoCache") + ): + continue + if id(f_self) in seen: + continue + seen.add(id(f_self)) + + self_type = type(f_self) + ret.append( + f"{self_type.__module__}.{self_type.__name__} - {f_self}" + ) + + elif f_self is not None: + self_type = type(f_self) + ret.append(f"{self_type.__module__}.{self_type.__name__}") + + else: + code = frm.f_code + if code.co_name in ("wrapper", ""): + continue + + ret.append(code.co_name) + + depth -= 1 + if not depth: + break + + return "\n".join(ret) + + @classmethod + def _from_exception(cls, pe): + """ + internal factory method to simplify creating one type of ParseException + from another - avoids having __init__ signature conflicts among subclasses + """ + return cls(pe.pstr, pe.loc, pe.msg, pe.parser_element) + + @property + def line(self) -> str: + """ + Return the line of text where the exception occurred. + """ + return line(self.loc, self.pstr) + + @property + def lineno(self) -> int: + """ + Return the 1-based line number of text where the exception occurred. + """ + return lineno(self.loc, self.pstr) + + @property + def col(self) -> int: + """ + Return the 1-based column on the line of text where the exception occurred. + """ + return col(self.loc, self.pstr) + + @property + def column(self) -> int: + """ + Return the 1-based column on the line of text where the exception occurred. + """ + return col(self.loc, self.pstr) + + # pre-PEP8 compatibility + @property + def parserElement(self): + return self.parser_element + + @parserElement.setter + def parserElement(self, elem): + self.parser_element = elem + + def __str__(self) -> str: + if self.pstr: + if self.loc >= len(self.pstr): + foundstr = ", found end of text" + else: + # pull out next word at error location + found_match = _exception_word_extractor.match(self.pstr, self.loc) + if found_match is not None: + found = found_match.group(0) + else: + found = self.pstr[self.loc : self.loc + 1] + foundstr = (", found %r" % found).replace(r"\\", "\\") + else: + foundstr = "" + return f"{self.msg}{foundstr} (at char {self.loc}), (line:{self.lineno}, col:{self.column})" + + def __repr__(self): + return str(self) + + def mark_input_line( + self, marker_string: typing.Optional[str] = None, *, markerString: str = ">!<" + ) -> str: + """ + Extracts the exception line from the input string, and marks + the location of the exception with a special symbol. + """ + markerString = marker_string if marker_string is not None else markerString + line_str = self.line + line_column = self.column - 1 + if markerString: + line_str = "".join( + (line_str[:line_column], markerString, line_str[line_column:]) + ) + return line_str.strip() + + def explain(self, depth=16) -> str: + """ + Method to translate the Python internal traceback into a list + of the pyparsing expressions that caused the exception to be raised. + + Parameters: + + - depth (default=16) - number of levels back in the stack trace to list expression + and function names; if None, the full stack trace names will be listed; if 0, only + the failing input line, marker, and exception string will be shown + + Returns a multi-line string listing the ParserElements and/or function names in the + exception's stack trace. + + Example:: + + expr = pp.Word(pp.nums) * 3 + try: + expr.parse_string("123 456 A789") + except pp.ParseException as pe: + print(pe.explain(depth=0)) + + prints:: + + 123 456 A789 + ^ + ParseException: Expected W:(0-9), found 'A' (at char 8), (line:1, col:9) + + Note: the diagnostic output will include string representations of the expressions + that failed to parse. These representations will be more helpful if you use `set_name` to + give identifiable names to your expressions. Otherwise they will use the default string + forms, which may be cryptic to read. + + Note: pyparsing's default truncation of exception tracebacks may also truncate the + stack of expressions that are displayed in the ``explain`` output. To get the full listing + of parser expressions, you may have to set ``ParserElement.verbose_stacktrace = True`` + """ + return self.explain_exception(self, depth) + + # fmt: off + @replaced_by_pep8(mark_input_line) + def markInputline(self): ... + # fmt: on + + +class ParseException(ParseBaseException): + """ + Exception thrown when a parse expression doesn't match the input string + + Example:: + + try: + Word(nums).set_name("integer").parse_string("ABC") + except ParseException as pe: + print(pe) + print("column: {}".format(pe.column)) + + prints:: + + Expected integer (at char 0), (line:1, col:1) + column: 1 + + """ + + +class ParseFatalException(ParseBaseException): + """ + User-throwable exception thrown when inconsistent parse content + is found; stops all parsing immediately + """ + + +class ParseSyntaxException(ParseFatalException): + """ + Just like :class:`ParseFatalException`, but thrown internally + when an :class:`ErrorStop` ('-' operator) indicates + that parsing is to stop immediately because an unbacktrackable + syntax error has been found. + """ + + +class RecursiveGrammarException(Exception): + """ + Exception thrown by :class:`ParserElement.validate` if the + grammar could be left-recursive; parser may need to enable + left recursion using :class:`ParserElement.enable_left_recursion` + """ + + def __init__(self, parseElementList): + self.parseElementTrace = parseElementList + + def __str__(self) -> str: + return f"RecursiveGrammarException: {self.parseElementTrace}" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py new file mode 100644 index 000000000..018f0d6ac --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py @@ -0,0 +1,1100 @@ +# helpers.py +import html.entities +import re +import sys +import typing + +from . import __diag__ +from .core import * +from .util import ( + _bslash, + _flatten, + _escape_regex_range_chars, + replaced_by_pep8, +) + + +# +# global helpers +# +def counted_array( + expr: ParserElement, + int_expr: typing.Optional[ParserElement] = None, + *, + intExpr: typing.Optional[ParserElement] = None, +) -> ParserElement: + """Helper to define a counted list of expressions. + + This helper defines a pattern of the form:: + + integer expr expr expr... + + where the leading integer tells how many expr expressions follow. + The matched tokens returns the array of expr tokens as a list - the + leading count token is suppressed. + + If ``int_expr`` is specified, it should be a pyparsing expression + that produces an integer value. + + Example:: + + counted_array(Word(alphas)).parse_string('2 ab cd ef') # -> ['ab', 'cd'] + + # in this parser, the leading integer value is given in binary, + # '10' indicating that 2 values are in the array + binary_constant = Word('01').set_parse_action(lambda t: int(t[0], 2)) + counted_array(Word(alphas), int_expr=binary_constant).parse_string('10 ab cd ef') # -> ['ab', 'cd'] + + # if other fields must be parsed after the count but before the + # list items, give the fields results names and they will + # be preserved in the returned ParseResults: + count_with_metadata = integer + Word(alphas)("type") + typed_array = counted_array(Word(alphanums), int_expr=count_with_metadata)("items") + result = typed_array.parse_string("3 bool True True False") + print(result.dump()) + + # prints + # ['True', 'True', 'False'] + # - items: ['True', 'True', 'False'] + # - type: 'bool' + """ + intExpr = intExpr or int_expr + array_expr = Forward() + + def count_field_parse_action(s, l, t): + nonlocal array_expr + n = t[0] + array_expr <<= (expr * n) if n else Empty() + # clear list contents, but keep any named results + del t[:] + + if intExpr is None: + intExpr = Word(nums).set_parse_action(lambda t: int(t[0])) + else: + intExpr = intExpr.copy() + intExpr.set_name("arrayLen") + intExpr.add_parse_action(count_field_parse_action, call_during_try=True) + return (intExpr + array_expr).set_name("(len) " + str(expr) + "...") + + +def match_previous_literal(expr: ParserElement) -> ParserElement: + """Helper to define an expression that is indirectly defined from + the tokens matched in a previous expression, that is, it looks for + a 'repeat' of a previous expression. For example:: + + first = Word(nums) + second = match_previous_literal(first) + match_expr = first + ":" + second + + will match ``"1:1"``, but not ``"1:2"``. Because this + matches a previous literal, will also match the leading + ``"1:1"`` in ``"1:10"``. If this is not desired, use + :class:`match_previous_expr`. Do *not* use with packrat parsing + enabled. + """ + rep = Forward() + + def copy_token_to_repeater(s, l, t): + if t: + if len(t) == 1: + rep << t[0] + else: + # flatten t tokens + tflat = _flatten(t.as_list()) + rep << And(Literal(tt) for tt in tflat) + else: + rep << Empty() + + expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) + rep.set_name("(prev) " + str(expr)) + return rep + + +def match_previous_expr(expr: ParserElement) -> ParserElement: + """Helper to define an expression that is indirectly defined from + the tokens matched in a previous expression, that is, it looks for + a 'repeat' of a previous expression. For example:: + + first = Word(nums) + second = match_previous_expr(first) + match_expr = first + ":" + second + + will match ``"1:1"``, but not ``"1:2"``. Because this + matches by expressions, will *not* match the leading ``"1:1"`` + in ``"1:10"``; the expressions are evaluated first, and then + compared, so ``"1"`` is compared with ``"10"``. Do *not* use + with packrat parsing enabled. + """ + rep = Forward() + e2 = expr.copy() + rep <<= e2 + + def copy_token_to_repeater(s, l, t): + matchTokens = _flatten(t.as_list()) + + def must_match_these_tokens(s, l, t): + theseTokens = _flatten(t.as_list()) + if theseTokens != matchTokens: + raise ParseException( + s, l, f"Expected {matchTokens}, found{theseTokens}" + ) + + rep.set_parse_action(must_match_these_tokens, callDuringTry=True) + + expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) + rep.set_name("(prev) " + str(expr)) + return rep + + +def one_of( + strs: Union[typing.Iterable[str], str], + caseless: bool = False, + use_regex: bool = True, + as_keyword: bool = False, + *, + useRegex: bool = True, + asKeyword: bool = False, +) -> ParserElement: + """Helper to quickly define a set of alternative :class:`Literal` s, + and makes sure to do longest-first testing when there is a conflict, + regardless of the input order, but returns + a :class:`MatchFirst` for best performance. + + Parameters: + + - ``strs`` - a string of space-delimited literals, or a collection of + string literals + - ``caseless`` - treat all literals as caseless - (default= ``False``) + - ``use_regex`` - as an optimization, will + generate a :class:`Regex` object; otherwise, will generate + a :class:`MatchFirst` object (if ``caseless=True`` or ``as_keyword=True``, or if + creating a :class:`Regex` raises an exception) - (default= ``True``) + - ``as_keyword`` - enforce :class:`Keyword`-style matching on the + generated expressions - (default= ``False``) + - ``asKeyword`` and ``useRegex`` are retained for pre-PEP8 compatibility, + but will be removed in a future release + + Example:: + + comp_oper = one_of("< = > <= >= !=") + var = Word(alphas) + number = Word(nums) + term = var | number + comparison_expr = term + comp_oper + term + print(comparison_expr.search_string("B = 12 AA=23 B<=AA AA>12")) + + prints:: + + [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']] + """ + asKeyword = asKeyword or as_keyword + useRegex = useRegex and use_regex + + if ( + isinstance(caseless, str_type) + and __diag__.warn_on_multiple_string_args_to_oneof + ): + warnings.warn( + "More than one string argument passed to one_of, pass" + " choices as a list or space-delimited string", + stacklevel=2, + ) + + if caseless: + isequal = lambda a, b: a.upper() == b.upper() + masks = lambda a, b: b.upper().startswith(a.upper()) + parseElementClass = CaselessKeyword if asKeyword else CaselessLiteral + else: + isequal = lambda a, b: a == b + masks = lambda a, b: b.startswith(a) + parseElementClass = Keyword if asKeyword else Literal + + symbols: List[str] = [] + if isinstance(strs, str_type): + strs = typing.cast(str, strs) + symbols = strs.split() + elif isinstance(strs, Iterable): + symbols = list(strs) + else: + raise TypeError("Invalid argument to one_of, expected string or iterable") + if not symbols: + return NoMatch() + + # reorder given symbols to take care to avoid masking longer choices with shorter ones + # (but only if the given symbols are not just single characters) + if any(len(sym) > 1 for sym in symbols): + i = 0 + while i < len(symbols) - 1: + cur = symbols[i] + for j, other in enumerate(symbols[i + 1 :]): + if isequal(other, cur): + del symbols[i + j + 1] + break + elif masks(cur, other): + del symbols[i + j + 1] + symbols.insert(i, other) + break + else: + i += 1 + + if useRegex: + re_flags: int = re.IGNORECASE if caseless else 0 + + try: + if all(len(sym) == 1 for sym in symbols): + # symbols are just single characters, create range regex pattern + patt = f"[{''.join(_escape_regex_range_chars(sym) for sym in symbols)}]" + else: + patt = "|".join(re.escape(sym) for sym in symbols) + + # wrap with \b word break markers if defining as keywords + if asKeyword: + patt = rf"\b(?:{patt})\b" + + ret = Regex(patt, flags=re_flags).set_name(" | ".join(symbols)) + + if caseless: + # add parse action to return symbols as specified, not in random + # casing as found in input string + symbol_map = {sym.lower(): sym for sym in symbols} + ret.add_parse_action(lambda s, l, t: symbol_map[t[0].lower()]) + + return ret + + except re.error: + warnings.warn( + "Exception creating Regex for one_of, building MatchFirst", stacklevel=2 + ) + + # last resort, just use MatchFirst + return MatchFirst(parseElementClass(sym) for sym in symbols).set_name( + " | ".join(symbols) + ) + + +def dict_of(key: ParserElement, value: ParserElement) -> ParserElement: + """Helper to easily and clearly define a dictionary by specifying + the respective patterns for the key and value. Takes care of + defining the :class:`Dict`, :class:`ZeroOrMore`, and + :class:`Group` tokens in the proper order. The key pattern + can include delimiting markers or punctuation, as long as they are + suppressed, thereby leaving the significant key text. The value + pattern can include named results, so that the :class:`Dict` results + can include named token fields. + + Example:: + + text = "shape: SQUARE posn: upper left color: light blue texture: burlap" + attr_expr = (label + Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join)) + print(attr_expr[1, ...].parse_string(text).dump()) + + attr_label = label + attr_value = Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join) + + # similar to Dict, but simpler call format + result = dict_of(attr_label, attr_value).parse_string(text) + print(result.dump()) + print(result['shape']) + print(result.shape) # object attribute access works too + print(result.as_dict()) + + prints:: + + [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] + - color: 'light blue' + - posn: 'upper left' + - shape: 'SQUARE' + - texture: 'burlap' + SQUARE + SQUARE + {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'} + """ + return Dict(OneOrMore(Group(key + value))) + + +def original_text_for( + expr: ParserElement, as_string: bool = True, *, asString: bool = True +) -> ParserElement: + """Helper to return the original, untokenized text for a given + expression. Useful to restore the parsed fields of an HTML start + tag into the raw tag text itself, or to revert separate tokens with + intervening whitespace back to the original matching input text. By + default, returns a string containing the original parsed text. + + If the optional ``as_string`` argument is passed as + ``False``, then the return value is + a :class:`ParseResults` containing any results names that + were originally matched, and a single token containing the original + matched text from the input string. So if the expression passed to + :class:`original_text_for` contains expressions with defined + results names, you must set ``as_string`` to ``False`` if you + want to preserve those results name values. + + The ``asString`` pre-PEP8 argument is retained for compatibility, + but will be removed in a future release. + + Example:: + + src = "this is test bold text normal text " + for tag in ("b", "i"): + opener, closer = make_html_tags(tag) + patt = original_text_for(opener + ... + closer) + print(patt.search_string(src)[0]) + + prints:: + + [' bold text '] + ['text'] + """ + asString = asString and as_string + + locMarker = Empty().set_parse_action(lambda s, loc, t: loc) + endlocMarker = locMarker.copy() + endlocMarker.callPreparse = False + matchExpr = locMarker("_original_start") + expr + endlocMarker("_original_end") + if asString: + extractText = lambda s, l, t: s[t._original_start : t._original_end] + else: + + def extractText(s, l, t): + t[:] = [s[t.pop("_original_start") : t.pop("_original_end")]] + + matchExpr.set_parse_action(extractText) + matchExpr.ignoreExprs = expr.ignoreExprs + matchExpr.suppress_warning(Diagnostics.warn_ungrouped_named_tokens_in_collection) + return matchExpr + + +def ungroup(expr: ParserElement) -> ParserElement: + """Helper to undo pyparsing's default grouping of And expressions, + even if all but one are non-empty. + """ + return TokenConverter(expr).add_parse_action(lambda t: t[0]) + + +def locatedExpr(expr: ParserElement) -> ParserElement: + """ + (DEPRECATED - future code should use the :class:`Located` class) + Helper to decorate a returned token with its starting and ending + locations in the input string. + + This helper adds the following results names: + + - ``locn_start`` - location where matched expression begins + - ``locn_end`` - location where matched expression ends + - ``value`` - the actual parsed results + + Be careful if the input text contains ```` characters, you + may want to call :class:`ParserElement.parse_with_tabs` + + Example:: + + wd = Word(alphas) + for match in locatedExpr(wd).search_string("ljsdf123lksdjjf123lkkjj1222"): + print(match) + + prints:: + + [[0, 'ljsdf', 5]] + [[8, 'lksdjjf', 15]] + [[18, 'lkkjj', 23]] + """ + locator = Empty().set_parse_action(lambda ss, ll, tt: ll) + return Group( + locator("locn_start") + + expr("value") + + locator.copy().leaveWhitespace()("locn_end") + ) + + +def nested_expr( + opener: Union[str, ParserElement] = "(", + closer: Union[str, ParserElement] = ")", + content: typing.Optional[ParserElement] = None, + ignore_expr: ParserElement = quoted_string(), + *, + ignoreExpr: ParserElement = quoted_string(), +) -> ParserElement: + """Helper method for defining nested lists enclosed in opening and + closing delimiters (``"("`` and ``")"`` are the default). + + Parameters: + + - ``opener`` - opening character for a nested list + (default= ``"("``); can also be a pyparsing expression + - ``closer`` - closing character for a nested list + (default= ``")"``); can also be a pyparsing expression + - ``content`` - expression for items within the nested lists + (default= ``None``) + - ``ignore_expr`` - expression for ignoring opening and closing delimiters + (default= :class:`quoted_string`) + - ``ignoreExpr`` - this pre-PEP8 argument is retained for compatibility + but will be removed in a future release + + If an expression is not provided for the content argument, the + nested expression will capture all whitespace-delimited content + between delimiters as a list of separate values. + + Use the ``ignore_expr`` argument to define expressions that may + contain opening or closing characters that should not be treated as + opening or closing characters for nesting, such as quoted_string or + a comment expression. Specify multiple expressions using an + :class:`Or` or :class:`MatchFirst`. The default is + :class:`quoted_string`, but if no expressions are to be ignored, then + pass ``None`` for this argument. + + Example:: + + data_type = one_of("void int short long char float double") + decl_data_type = Combine(data_type + Opt(Word('*'))) + ident = Word(alphas+'_', alphanums+'_') + number = pyparsing_common.number + arg = Group(decl_data_type + ident) + LPAR, RPAR = map(Suppress, "()") + + code_body = nested_expr('{', '}', ignore_expr=(quoted_string | c_style_comment)) + + c_function = (decl_data_type("type") + + ident("name") + + LPAR + Opt(DelimitedList(arg), [])("args") + RPAR + + code_body("body")) + c_function.ignore(c_style_comment) + + source_code = ''' + int is_odd(int x) { + return (x%2); + } + + int dec_to_hex(char hchar) { + if (hchar >= '0' && hchar <= '9') { + return (ord(hchar)-ord('0')); + } else { + return (10+ord(hchar)-ord('A')); + } + } + ''' + for func in c_function.search_string(source_code): + print("%(name)s (%(type)s) args: %(args)s" % func) + + + prints:: + + is_odd (int) args: [['int', 'x']] + dec_to_hex (int) args: [['char', 'hchar']] + """ + if ignoreExpr != ignore_expr: + ignoreExpr = ignore_expr if ignoreExpr == quoted_string() else ignoreExpr + if opener == closer: + raise ValueError("opening and closing strings cannot be the same") + if content is None: + if isinstance(opener, str_type) and isinstance(closer, str_type): + opener = typing.cast(str, opener) + closer = typing.cast(str, closer) + if len(opener) == 1 and len(closer) == 1: + if ignoreExpr is not None: + content = Combine( + OneOrMore( + ~ignoreExpr + + CharsNotIn( + opener + closer + ParserElement.DEFAULT_WHITE_CHARS, + exact=1, + ) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + content = empty.copy() + CharsNotIn( + opener + closer + ParserElement.DEFAULT_WHITE_CHARS + ).set_parse_action(lambda t: t[0].strip()) + else: + if ignoreExpr is not None: + content = Combine( + OneOrMore( + ~ignoreExpr + + ~Literal(opener) + + ~Literal(closer) + + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + content = Combine( + OneOrMore( + ~Literal(opener) + + ~Literal(closer) + + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + raise ValueError( + "opening and closing arguments must be strings if no content expression is given" + ) + ret = Forward() + if ignoreExpr is not None: + ret <<= Group( + Suppress(opener) + ZeroOrMore(ignoreExpr | ret | content) + Suppress(closer) + ) + else: + ret <<= Group(Suppress(opener) + ZeroOrMore(ret | content) + Suppress(closer)) + ret.set_name("nested %s%s expression" % (opener, closer)) + return ret + + +def _makeTags(tagStr, xml, suppress_LT=Suppress("<"), suppress_GT=Suppress(">")): + """Internal helper to construct opening and closing tag expressions, given a tag name""" + if isinstance(tagStr, str_type): + resname = tagStr + tagStr = Keyword(tagStr, caseless=not xml) + else: + resname = tagStr.name + + tagAttrName = Word(alphas, alphanums + "_-:") + if xml: + tagAttrValue = dbl_quoted_string.copy().set_parse_action(remove_quotes) + openTag = ( + suppress_LT + + tagStr("tag") + + Dict(ZeroOrMore(Group(tagAttrName + Suppress("=") + tagAttrValue))) + + Opt("/", default=[False])("empty").set_parse_action( + lambda s, l, t: t[0] == "/" + ) + + suppress_GT + ) + else: + tagAttrValue = quoted_string.copy().set_parse_action(remove_quotes) | Word( + printables, exclude_chars=">" + ) + openTag = ( + suppress_LT + + tagStr("tag") + + Dict( + ZeroOrMore( + Group( + tagAttrName.set_parse_action(lambda t: t[0].lower()) + + Opt(Suppress("=") + tagAttrValue) + ) + ) + ) + + Opt("/", default=[False])("empty").set_parse_action( + lambda s, l, t: t[0] == "/" + ) + + suppress_GT + ) + closeTag = Combine(Literal("", adjacent=False) + + openTag.set_name("<%s>" % resname) + # add start results name in parse action now that ungrouped names are not reported at two levels + openTag.add_parse_action( + lambda t: t.__setitem__( + "start" + "".join(resname.replace(":", " ").title().split()), t.copy() + ) + ) + closeTag = closeTag( + "end" + "".join(resname.replace(":", " ").title().split()) + ).set_name("" % resname) + openTag.tag = resname + closeTag.tag = resname + openTag.tag_body = SkipTo(closeTag()) + return openTag, closeTag + + +def make_html_tags( + tag_str: Union[str, ParserElement] +) -> Tuple[ParserElement, ParserElement]: + """Helper to construct opening and closing tag expressions for HTML, + given a tag name. Matches tags in either upper or lower case, + attributes with namespaces and with quoted or unquoted values. + + Example:: + + text = 'More info at the
pyparsing wiki page' + # make_html_tags returns pyparsing expressions for the opening and + # closing tags as a 2-tuple + a, a_end = make_html_tags("A") + link_expr = a + SkipTo(a_end)("link_text") + a_end + + for link in link_expr.search_string(text): + # attributes in the tag (like "href" shown here) are + # also accessible as named results + print(link.link_text, '->', link.href) + + prints:: + + pyparsing -> https://github.com/pyparsing/pyparsing/wiki + """ + return _makeTags(tag_str, False) + + +def make_xml_tags( + tag_str: Union[str, ParserElement] +) -> Tuple[ParserElement, ParserElement]: + """Helper to construct opening and closing tag expressions for XML, + given a tag name. Matches tags only in the given upper/lower case. + + Example: similar to :class:`make_html_tags` + """ + return _makeTags(tag_str, True) + + +any_open_tag: ParserElement +any_close_tag: ParserElement +any_open_tag, any_close_tag = make_html_tags( + Word(alphas, alphanums + "_:").set_name("any tag") +) + +_htmlEntityMap = {k.rstrip(";"): v for k, v in html.entities.html5.items()} +common_html_entity = Regex("&(?P" + "|".join(_htmlEntityMap) + ");").set_name( + "common HTML entity" +) + + +def replace_html_entity(s, l, t): + """Helper parser action to replace common HTML entities with their special characters""" + return _htmlEntityMap.get(t.entity) + + +class OpAssoc(Enum): + """Enumeration of operator associativity + - used in constructing InfixNotationOperatorSpec for :class:`infix_notation`""" + + LEFT = 1 + RIGHT = 2 + + +InfixNotationOperatorArgType = Union[ + ParserElement, str, Tuple[Union[ParserElement, str], Union[ParserElement, str]] +] +InfixNotationOperatorSpec = Union[ + Tuple[ + InfixNotationOperatorArgType, + int, + OpAssoc, + typing.Optional[ParseAction], + ], + Tuple[ + InfixNotationOperatorArgType, + int, + OpAssoc, + ], +] + + +def infix_notation( + base_expr: ParserElement, + op_list: List[InfixNotationOperatorSpec], + lpar: Union[str, ParserElement] = Suppress("("), + rpar: Union[str, ParserElement] = Suppress(")"), +) -> ParserElement: + """Helper method for constructing grammars of expressions made up of + operators working in a precedence hierarchy. Operators may be unary + or binary, left- or right-associative. Parse actions can also be + attached to operator expressions. The generated parser will also + recognize the use of parentheses to override operator precedences + (see example below). + + Note: if you define a deep operator list, you may see performance + issues when using infix_notation. See + :class:`ParserElement.enable_packrat` for a mechanism to potentially + improve your parser performance. + + Parameters: + + - ``base_expr`` - expression representing the most basic operand to + be used in the expression + - ``op_list`` - list of tuples, one for each operator precedence level + in the expression grammar; each tuple is of the form ``(op_expr, + num_operands, right_left_assoc, (optional)parse_action)``, where: + + - ``op_expr`` is the pyparsing expression for the operator; may also + be a string, which will be converted to a Literal; if ``num_operands`` + is 3, ``op_expr`` is a tuple of two expressions, for the two + operators separating the 3 terms + - ``num_operands`` is the number of terms for this operator (must be 1, + 2, or 3) + - ``right_left_assoc`` is the indicator whether the operator is right + or left associative, using the pyparsing-defined constants + ``OpAssoc.RIGHT`` and ``OpAssoc.LEFT``. + - ``parse_action`` is the parse action to be associated with + expressions matching this operator expression (the parse action + tuple member may be omitted); if the parse action is passed + a tuple or list of functions, this is equivalent to calling + ``set_parse_action(*fn)`` + (:class:`ParserElement.set_parse_action`) + - ``lpar`` - expression for matching left-parentheses; if passed as a + str, then will be parsed as ``Suppress(lpar)``. If lpar is passed as + an expression (such as ``Literal('(')``), then it will be kept in + the parsed results, and grouped with them. (default= ``Suppress('(')``) + - ``rpar`` - expression for matching right-parentheses; if passed as a + str, then will be parsed as ``Suppress(rpar)``. If rpar is passed as + an expression (such as ``Literal(')')``), then it will be kept in + the parsed results, and grouped with them. (default= ``Suppress(')')``) + + Example:: + + # simple example of four-function arithmetic with ints and + # variable names + integer = pyparsing_common.signed_integer + varname = pyparsing_common.identifier + + arith_expr = infix_notation(integer | varname, + [ + ('-', 1, OpAssoc.RIGHT), + (one_of('* /'), 2, OpAssoc.LEFT), + (one_of('+ -'), 2, OpAssoc.LEFT), + ]) + + arith_expr.run_tests(''' + 5+3*6 + (5+3)*6 + -2--11 + ''', full_dump=False) + + prints:: + + 5+3*6 + [[5, '+', [3, '*', 6]]] + + (5+3)*6 + [[[5, '+', 3], '*', 6]] + + (5+x)*y + [[[5, '+', 'x'], '*', 'y']] + + -2--11 + [[['-', 2], '-', ['-', 11]]] + """ + + # captive version of FollowedBy that does not do parse actions or capture results names + class _FB(FollowedBy): + def parseImpl(self, instring, loc, doActions=True): + self.expr.try_parse(instring, loc) + return loc, [] + + _FB.__name__ = "FollowedBy>" + + ret = Forward() + if isinstance(lpar, str): + lpar = Suppress(lpar) + if isinstance(rpar, str): + rpar = Suppress(rpar) + + # if lpar and rpar are not suppressed, wrap in group + if not (isinstance(rpar, Suppress) and isinstance(rpar, Suppress)): + lastExpr = base_expr | Group(lpar + ret + rpar) + else: + lastExpr = base_expr | (lpar + ret + rpar) + + arity: int + rightLeftAssoc: opAssoc + pa: typing.Optional[ParseAction] + opExpr1: ParserElement + opExpr2: ParserElement + for i, operDef in enumerate(op_list): + opExpr, arity, rightLeftAssoc, pa = (operDef + (None,))[:4] # type: ignore[assignment] + if isinstance(opExpr, str_type): + opExpr = ParserElement._literalStringClass(opExpr) + opExpr = typing.cast(ParserElement, opExpr) + if arity == 3: + if not isinstance(opExpr, (tuple, list)) or len(opExpr) != 2: + raise ValueError( + "if numterms=3, opExpr must be a tuple or list of two expressions" + ) + opExpr1, opExpr2 = opExpr + term_name = f"{opExpr1}{opExpr2} term" + else: + term_name = f"{opExpr} term" + + if not 1 <= arity <= 3: + raise ValueError("operator must be unary (1), binary (2), or ternary (3)") + + if rightLeftAssoc not in (OpAssoc.LEFT, OpAssoc.RIGHT): + raise ValueError("operator must indicate right or left associativity") + + thisExpr: ParserElement = Forward().set_name(term_name) + thisExpr = typing.cast(Forward, thisExpr) + if rightLeftAssoc is OpAssoc.LEFT: + if arity == 1: + matchExpr = _FB(lastExpr + opExpr) + Group(lastExpr + opExpr[1, ...]) + elif arity == 2: + if opExpr is not None: + matchExpr = _FB(lastExpr + opExpr + lastExpr) + Group( + lastExpr + (opExpr + lastExpr)[1, ...] + ) + else: + matchExpr = _FB(lastExpr + lastExpr) + Group(lastExpr[2, ...]) + elif arity == 3: + matchExpr = _FB( + lastExpr + opExpr1 + lastExpr + opExpr2 + lastExpr + ) + Group(lastExpr + OneOrMore(opExpr1 + lastExpr + opExpr2 + lastExpr)) + elif rightLeftAssoc is OpAssoc.RIGHT: + if arity == 1: + # try to avoid LR with this extra test + if not isinstance(opExpr, Opt): + opExpr = Opt(opExpr) + matchExpr = _FB(opExpr.expr + thisExpr) + Group(opExpr + thisExpr) + elif arity == 2: + if opExpr is not None: + matchExpr = _FB(lastExpr + opExpr + thisExpr) + Group( + lastExpr + (opExpr + thisExpr)[1, ...] + ) + else: + matchExpr = _FB(lastExpr + thisExpr) + Group( + lastExpr + thisExpr[1, ...] + ) + elif arity == 3: + matchExpr = _FB( + lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr + ) + Group(lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr) + if pa: + if isinstance(pa, (tuple, list)): + matchExpr.set_parse_action(*pa) + else: + matchExpr.set_parse_action(pa) + thisExpr <<= (matchExpr | lastExpr).setName(term_name) + lastExpr = thisExpr + ret <<= lastExpr + return ret + + +def indentedBlock(blockStatementExpr, indentStack, indent=True, backup_stacks=[]): + """ + (DEPRECATED - use :class:`IndentedBlock` class instead) + Helper method for defining space-delimited indentation blocks, + such as those used to define block statements in Python source code. + + Parameters: + + - ``blockStatementExpr`` - expression defining syntax of statement that + is repeated within the indented block + - ``indentStack`` - list created by caller to manage indentation stack + (multiple ``statementWithIndentedBlock`` expressions within a single + grammar should share a common ``indentStack``) + - ``indent`` - boolean indicating whether block must be indented beyond + the current level; set to ``False`` for block of left-most statements + (default= ``True``) + + A valid block must contain at least one ``blockStatement``. + + (Note that indentedBlock uses internal parse actions which make it + incompatible with packrat parsing.) + + Example:: + + data = ''' + def A(z): + A1 + B = 100 + G = A2 + A2 + A3 + B + def BB(a,b,c): + BB1 + def BBA(): + bba1 + bba2 + bba3 + C + D + def spam(x,y): + def eggs(z): + pass + ''' + + + indentStack = [1] + stmt = Forward() + + identifier = Word(alphas, alphanums) + funcDecl = ("def" + identifier + Group("(" + Opt(delimitedList(identifier)) + ")") + ":") + func_body = indentedBlock(stmt, indentStack) + funcDef = Group(funcDecl + func_body) + + rvalue = Forward() + funcCall = Group(identifier + "(" + Opt(delimitedList(rvalue)) + ")") + rvalue << (funcCall | identifier | Word(nums)) + assignment = Group(identifier + "=" + rvalue) + stmt << (funcDef | assignment | identifier) + + module_body = stmt[1, ...] + + parseTree = module_body.parseString(data) + parseTree.pprint() + + prints:: + + [['def', + 'A', + ['(', 'z', ')'], + ':', + [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]], + 'B', + ['def', + 'BB', + ['(', 'a', 'b', 'c', ')'], + ':', + [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]], + 'C', + 'D', + ['def', + 'spam', + ['(', 'x', 'y', ')'], + ':', + [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] + """ + backup_stacks.append(indentStack[:]) + + def reset_stack(): + indentStack[:] = backup_stacks[-1] + + def checkPeerIndent(s, l, t): + if l >= len(s): + return + curCol = col(l, s) + if curCol != indentStack[-1]: + if curCol > indentStack[-1]: + raise ParseException(s, l, "illegal nesting") + raise ParseException(s, l, "not a peer entry") + + def checkSubIndent(s, l, t): + curCol = col(l, s) + if curCol > indentStack[-1]: + indentStack.append(curCol) + else: + raise ParseException(s, l, "not a subentry") + + def checkUnindent(s, l, t): + if l >= len(s): + return + curCol = col(l, s) + if not (indentStack and curCol in indentStack): + raise ParseException(s, l, "not an unindent") + if curCol < indentStack[-1]: + indentStack.pop() + + NL = OneOrMore(LineEnd().set_whitespace_chars("\t ").suppress()) + INDENT = (Empty() + Empty().set_parse_action(checkSubIndent)).set_name("INDENT") + PEER = Empty().set_parse_action(checkPeerIndent).set_name("") + UNDENT = Empty().set_parse_action(checkUnindent).set_name("UNINDENT") + if indent: + smExpr = Group( + Opt(NL) + + INDENT + + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) + + UNDENT + ) + else: + smExpr = Group( + Opt(NL) + + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) + + Opt(UNDENT) + ) + + # add a parse action to remove backup_stack from list of backups + smExpr.add_parse_action( + lambda: backup_stacks.pop(-1) and None if backup_stacks else None + ) + smExpr.set_fail_action(lambda a, b, c, d: reset_stack()) + blockStatementExpr.ignore(_bslash + LineEnd()) + return smExpr.set_name("indented block") + + +# it's easy to get these comment structures wrong - they're very common, so may as well make them available +c_style_comment = Combine(Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/").set_name( + "C style comment" +) +"Comment of the form ``/* ... */``" + +html_comment = Regex(r"").set_name("HTML comment") +"Comment of the form ````" + +rest_of_line = Regex(r".*").leave_whitespace().set_name("rest of line") +dbl_slash_comment = Regex(r"//(?:\\\n|[^\n])*").set_name("// comment") +"Comment of the form ``// ... (to end of line)``" + +cpp_style_comment = Combine( + Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/" | dbl_slash_comment +).set_name("C++ style comment") +"Comment of either form :class:`c_style_comment` or :class:`dbl_slash_comment`" + +java_style_comment = cpp_style_comment +"Same as :class:`cpp_style_comment`" + +python_style_comment = Regex(r"#.*").set_name("Python style comment") +"Comment of the form ``# ... (to end of line)``" + + +# build list of built-in expressions, for future reference if a global default value +# gets updated +_builtin_exprs: List[ParserElement] = [ + v for v in vars().values() if isinstance(v, ParserElement) +] + + +# compatibility function, superseded by DelimitedList class +def delimited_list( + expr: Union[str, ParserElement], + delim: Union[str, ParserElement] = ",", + combine: bool = False, + min: typing.Optional[int] = None, + max: typing.Optional[int] = None, + *, + allow_trailing_delim: bool = False, +) -> ParserElement: + """(DEPRECATED - use :class:`DelimitedList` class)""" + return DelimitedList( + expr, delim, combine, min, max, allow_trailing_delim=allow_trailing_delim + ) + + +# pre-PEP8 compatible names +# fmt: off +opAssoc = OpAssoc +anyOpenTag = any_open_tag +anyCloseTag = any_close_tag +commonHTMLEntity = common_html_entity +cStyleComment = c_style_comment +htmlComment = html_comment +restOfLine = rest_of_line +dblSlashComment = dbl_slash_comment +cppStyleComment = cpp_style_comment +javaStyleComment = java_style_comment +pythonStyleComment = python_style_comment + +@replaced_by_pep8(DelimitedList) +def delimitedList(): ... + +@replaced_by_pep8(DelimitedList) +def delimited_list(): ... + +@replaced_by_pep8(counted_array) +def countedArray(): ... + +@replaced_by_pep8(match_previous_literal) +def matchPreviousLiteral(): ... + +@replaced_by_pep8(match_previous_expr) +def matchPreviousExpr(): ... + +@replaced_by_pep8(one_of) +def oneOf(): ... + +@replaced_by_pep8(dict_of) +def dictOf(): ... + +@replaced_by_pep8(original_text_for) +def originalTextFor(): ... + +@replaced_by_pep8(nested_expr) +def nestedExpr(): ... + +@replaced_by_pep8(make_html_tags) +def makeHTMLTags(): ... + +@replaced_by_pep8(make_xml_tags) +def makeXMLTags(): ... + +@replaced_by_pep8(replace_html_entity) +def replaceHTMLEntity(): ... + +@replaced_by_pep8(infix_notation) +def infixNotation(): ... +# fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py new file mode 100644 index 000000000..031304976 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py @@ -0,0 +1,796 @@ +# results.py +from collections.abc import ( + MutableMapping, + Mapping, + MutableSequence, + Iterator, + Sequence, + Container, +) +import pprint +from typing import Tuple, Any, Dict, Set, List + +str_type: Tuple[type, ...] = (str, bytes) +_generator_type = type((_ for _ in ())) + + +class _ParseResultsWithOffset: + tup: Tuple["ParseResults", int] + __slots__ = ["tup"] + + def __init__(self, p1: "ParseResults", p2: int): + self.tup: Tuple[ParseResults, int] = (p1, p2) + + def __getitem__(self, i): + return self.tup[i] + + def __getstate__(self): + return self.tup + + def __setstate__(self, *args): + self.tup = args[0] + + +class ParseResults: + """Structured parse results, to provide multiple means of access to + the parsed data: + + - as a list (``len(results)``) + - by list index (``results[0], results[1]``, etc.) + - by attribute (``results.`` - see :class:`ParserElement.set_results_name`) + + Example:: + + integer = Word(nums) + date_str = (integer.set_results_name("year") + '/' + + integer.set_results_name("month") + '/' + + integer.set_results_name("day")) + # equivalent form: + # date_str = (integer("year") + '/' + # + integer("month") + '/' + # + integer("day")) + + # parse_string returns a ParseResults object + result = date_str.parse_string("1999/12/31") + + def test(s, fn=repr): + print(f"{s} -> {fn(eval(s))}") + test("list(result)") + test("result[0]") + test("result['month']") + test("result.day") + test("'month' in result") + test("'minutes' in result") + test("result.dump()", str) + + prints:: + + list(result) -> ['1999', '/', '12', '/', '31'] + result[0] -> '1999' + result['month'] -> '12' + result.day -> '31' + 'month' in result -> True + 'minutes' in result -> False + result.dump() -> ['1999', '/', '12', '/', '31'] + - day: '31' + - month: '12' + - year: '1999' + """ + + _null_values: Tuple[Any, ...] = (None, [], ()) + + _name: str + _parent: "ParseResults" + _all_names: Set[str] + _modal: bool + _toklist: List[Any] + _tokdict: Dict[str, Any] + + __slots__ = ( + "_name", + "_parent", + "_all_names", + "_modal", + "_toklist", + "_tokdict", + ) + + class List(list): + """ + Simple wrapper class to distinguish parsed list results that should be preserved + as actual Python lists, instead of being converted to :class:`ParseResults`:: + + LBRACK, RBRACK = map(pp.Suppress, "[]") + element = pp.Forward() + item = ppc.integer + element_list = LBRACK + pp.DelimitedList(element) + RBRACK + + # add parse actions to convert from ParseResults to actual Python collection types + def as_python_list(t): + return pp.ParseResults.List(t.as_list()) + element_list.add_parse_action(as_python_list) + + element <<= item | element_list + + element.run_tests(''' + 100 + [2,3,4] + [[2, 1],3,4] + [(2, 1),3,4] + (2,3,4) + ''', post_parse=lambda s, r: (r[0], type(r[0]))) + + prints:: + + 100 + (100, ) + + [2,3,4] + ([2, 3, 4], ) + + [[2, 1],3,4] + ([[2, 1], 3, 4], ) + + (Used internally by :class:`Group` when `aslist=True`.) + """ + + def __new__(cls, contained=None): + if contained is None: + contained = [] + + if not isinstance(contained, list): + raise TypeError( + f"{cls.__name__} may only be constructed with a list, not {type(contained).__name__}" + ) + + return list.__new__(cls) + + def __new__(cls, toklist=None, name=None, **kwargs): + if isinstance(toklist, ParseResults): + return toklist + self = object.__new__(cls) + self._name = None + self._parent = None + self._all_names = set() + + if toklist is None: + self._toklist = [] + elif isinstance(toklist, (list, _generator_type)): + self._toklist = ( + [toklist[:]] + if isinstance(toklist, ParseResults.List) + else list(toklist) + ) + else: + self._toklist = [toklist] + self._tokdict = dict() + return self + + # Performance tuning: we construct a *lot* of these, so keep this + # constructor as small and fast as possible + def __init__( + self, toklist=None, name=None, asList=True, modal=True, isinstance=isinstance + ): + self._tokdict: Dict[str, _ParseResultsWithOffset] + self._modal = modal + if name is not None and name != "": + if isinstance(name, int): + name = str(name) + if not modal: + self._all_names = {name} + self._name = name + if toklist not in self._null_values: + if isinstance(toklist, (str_type, type)): + toklist = [toklist] + if asList: + if isinstance(toklist, ParseResults): + self[name] = _ParseResultsWithOffset( + ParseResults(toklist._toklist), 0 + ) + else: + self[name] = _ParseResultsWithOffset( + ParseResults(toklist[0]), 0 + ) + self[name]._name = name + else: + try: + self[name] = toklist[0] + except (KeyError, TypeError, IndexError): + if toklist is not self: + self[name] = toklist + else: + self._name = name + + def __getitem__(self, i): + if isinstance(i, (int, slice)): + return self._toklist[i] + else: + if i not in self._all_names: + return self._tokdict[i][-1][0] + else: + return ParseResults([v[0] for v in self._tokdict[i]]) + + def __setitem__(self, k, v, isinstance=isinstance): + if isinstance(v, _ParseResultsWithOffset): + self._tokdict[k] = self._tokdict.get(k, list()) + [v] + sub = v[0] + elif isinstance(k, (int, slice)): + self._toklist[k] = v + sub = v + else: + self._tokdict[k] = self._tokdict.get(k, list()) + [ + _ParseResultsWithOffset(v, 0) + ] + sub = v + if isinstance(sub, ParseResults): + sub._parent = self + + def __delitem__(self, i): + if isinstance(i, (int, slice)): + mylen = len(self._toklist) + del self._toklist[i] + + # convert int to slice + if isinstance(i, int): + if i < 0: + i += mylen + i = slice(i, i + 1) + # get removed indices + removed = list(range(*i.indices(mylen))) + removed.reverse() + # fixup indices in token dictionary + for name, occurrences in self._tokdict.items(): + for j in removed: + for k, (value, position) in enumerate(occurrences): + occurrences[k] = _ParseResultsWithOffset( + value, position - (position > j) + ) + else: + del self._tokdict[i] + + def __contains__(self, k) -> bool: + return k in self._tokdict + + def __len__(self) -> int: + return len(self._toklist) + + def __bool__(self) -> bool: + return not not (self._toklist or self._tokdict) + + def __iter__(self) -> Iterator: + return iter(self._toklist) + + def __reversed__(self) -> Iterator: + return iter(self._toklist[::-1]) + + def keys(self): + return iter(self._tokdict) + + def values(self): + return (self[k] for k in self.keys()) + + def items(self): + return ((k, self[k]) for k in self.keys()) + + def haskeys(self) -> bool: + """ + Since ``keys()`` returns an iterator, this method is helpful in bypassing + code that looks for the existence of any defined results names.""" + return not not self._tokdict + + def pop(self, *args, **kwargs): + """ + Removes and returns item at specified index (default= ``last``). + Supports both ``list`` and ``dict`` semantics for ``pop()``. If + passed no argument or an integer argument, it will use ``list`` + semantics and pop tokens from the list of parsed tokens. If passed + a non-integer argument (most likely a string), it will use ``dict`` + semantics and pop the corresponding value from any defined results + names. A second default return value argument is supported, just as in + ``dict.pop()``. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + def remove_first(tokens): + tokens.pop(0) + numlist.add_parse_action(remove_first) + print(numlist.parse_string("0 123 321")) # -> ['123', '321'] + + label = Word(alphas) + patt = label("LABEL") + Word(nums)[1, ...] + print(patt.parse_string("AAB 123 321").dump()) + + # Use pop() in a parse action to remove named result (note that corresponding value is not + # removed from list form of results) + def remove_LABEL(tokens): + tokens.pop("LABEL") + return tokens + patt.add_parse_action(remove_LABEL) + print(patt.parse_string("AAB 123 321").dump()) + + prints:: + + ['AAB', '123', '321'] + - LABEL: 'AAB' + + ['AAB', '123', '321'] + """ + if not args: + args = [-1] + for k, v in kwargs.items(): + if k == "default": + args = (args[0], v) + else: + raise TypeError(f"pop() got an unexpected keyword argument {k!r}") + if isinstance(args[0], int) or len(args) == 1 or args[0] in self: + index = args[0] + ret = self[index] + del self[index] + return ret + else: + defaultvalue = args[1] + return defaultvalue + + def get(self, key, default_value=None): + """ + Returns named result matching the given key, or if there is no + such name, then returns the given ``default_value`` or ``None`` if no + ``default_value`` is specified. + + Similar to ``dict.get()``. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string("1999/12/31") + print(result.get("year")) # -> '1999' + print(result.get("hour", "not specified")) # -> 'not specified' + print(result.get("hour")) # -> None + """ + if key in self: + return self[key] + else: + return default_value + + def insert(self, index, ins_string): + """ + Inserts new element at location index in the list of parsed tokens. + + Similar to ``list.insert()``. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + # use a parse action to insert the parse location in the front of the parsed results + def insert_locn(locn, tokens): + tokens.insert(0, locn) + numlist.add_parse_action(insert_locn) + print(numlist.parse_string("0 123 321")) # -> [0, '0', '123', '321'] + """ + self._toklist.insert(index, ins_string) + # fixup indices in token dictionary + for name, occurrences in self._tokdict.items(): + for k, (value, position) in enumerate(occurrences): + occurrences[k] = _ParseResultsWithOffset( + value, position + (position > index) + ) + + def append(self, item): + """ + Add single element to end of ``ParseResults`` list of elements. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + # use a parse action to compute the sum of the parsed integers, and add it to the end + def append_sum(tokens): + tokens.append(sum(map(int, tokens))) + numlist.add_parse_action(append_sum) + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321', 444] + """ + self._toklist.append(item) + + def extend(self, itemseq): + """ + Add sequence of elements to end of ``ParseResults`` list of elements. + + Example:: + + patt = Word(alphas)[1, ...] + + # use a parse action to append the reverse of the matched strings, to make a palindrome + def make_palindrome(tokens): + tokens.extend(reversed([t[::-1] for t in tokens])) + return ''.join(tokens) + patt.add_parse_action(make_palindrome) + print(patt.parse_string("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl' + """ + if isinstance(itemseq, ParseResults): + self.__iadd__(itemseq) + else: + self._toklist.extend(itemseq) + + def clear(self): + """ + Clear all elements and results names. + """ + del self._toklist[:] + self._tokdict.clear() + + def __getattr__(self, name): + try: + return self[name] + except KeyError: + if name.startswith("__"): + raise AttributeError(name) + return "" + + def __add__(self, other: "ParseResults") -> "ParseResults": + ret = self.copy() + ret += other + return ret + + def __iadd__(self, other: "ParseResults") -> "ParseResults": + if not other: + return self + + if other._tokdict: + offset = len(self._toklist) + addoffset = lambda a: offset if a < 0 else a + offset + otheritems = other._tokdict.items() + otherdictitems = [ + (k, _ParseResultsWithOffset(v[0], addoffset(v[1]))) + for k, vlist in otheritems + for v in vlist + ] + for k, v in otherdictitems: + self[k] = v + if isinstance(v[0], ParseResults): + v[0]._parent = self + + self._toklist += other._toklist + self._all_names |= other._all_names + return self + + def __radd__(self, other) -> "ParseResults": + if isinstance(other, int) and other == 0: + # useful for merging many ParseResults using sum() builtin + return self.copy() + else: + # this may raise a TypeError - so be it + return other + self + + def __repr__(self) -> str: + return f"{type(self).__name__}({self._toklist!r}, {self.as_dict()})" + + def __str__(self) -> str: + return ( + "[" + + ", ".join( + [ + str(i) if isinstance(i, ParseResults) else repr(i) + for i in self._toklist + ] + ) + + "]" + ) + + def _asStringList(self, sep=""): + out = [] + for item in self._toklist: + if out and sep: + out.append(sep) + if isinstance(item, ParseResults): + out += item._asStringList() + else: + out.append(str(item)) + return out + + def as_list(self) -> list: + """ + Returns the parse results as a nested list of matching tokens, all converted to strings. + + Example:: + + patt = Word(alphas)[1, ...] + result = patt.parse_string("sldkj lsdkj sldkj") + # even though the result prints in string-like form, it is actually a pyparsing ParseResults + print(type(result), result) # -> ['sldkj', 'lsdkj', 'sldkj'] + + # Use as_list() to create an actual list + result_list = result.as_list() + print(type(result_list), result_list) # -> ['sldkj', 'lsdkj', 'sldkj'] + """ + return [ + res.as_list() if isinstance(res, ParseResults) else res + for res in self._toklist + ] + + def as_dict(self) -> dict: + """ + Returns the named parse results as a nested dictionary. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string('12/31/1999') + print(type(result), repr(result)) # -> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]}) + + result_dict = result.as_dict() + print(type(result_dict), repr(result_dict)) # -> {'day': '1999', 'year': '12', 'month': '31'} + + # even though a ParseResults supports dict-like access, sometime you just need to have a dict + import json + print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable + print(json.dumps(result.as_dict())) # -> {"month": "31", "day": "1999", "year": "12"} + """ + + def to_item(obj): + if isinstance(obj, ParseResults): + return obj.as_dict() if obj.haskeys() else [to_item(v) for v in obj] + else: + return obj + + return dict((k, to_item(v)) for k, v in self.items()) + + def copy(self) -> "ParseResults": + """ + Returns a new shallow copy of a :class:`ParseResults` object. `ParseResults` + items contained within the source are shared with the copy. Use + :class:`ParseResults.deepcopy()` to create a copy with its own separate + content values. + """ + ret = ParseResults(self._toklist) + ret._tokdict = self._tokdict.copy() + ret._parent = self._parent + ret._all_names |= self._all_names + ret._name = self._name + return ret + + def deepcopy(self) -> "ParseResults": + """ + Returns a new deep copy of a :class:`ParseResults` object. + """ + ret = self.copy() + # replace values with copies if they are of known mutable types + for i, obj in enumerate(self._toklist): + if isinstance(obj, ParseResults): + self._toklist[i] = obj.deepcopy() + elif isinstance(obj, (str, bytes)): + pass + elif isinstance(obj, MutableMapping): + self._toklist[i] = dest = type(obj)() + for k, v in obj.items(): + dest[k] = v.deepcopy() if isinstance(v, ParseResults) else v + elif isinstance(obj, Container): + self._toklist[i] = type(obj)( + v.deepcopy() if isinstance(v, ParseResults) else v for v in obj + ) + return ret + + def get_name(self): + r""" + Returns the results name for this token expression. Useful when several + different expressions might match at a particular location. + + Example:: + + integer = Word(nums) + ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d") + house_number_expr = Suppress('#') + Word(nums, alphanums) + user_data = (Group(house_number_expr)("house_number") + | Group(ssn_expr)("ssn") + | Group(integer)("age")) + user_info = user_data[1, ...] + + result = user_info.parse_string("22 111-22-3333 #221B") + for item in result: + print(item.get_name(), ':', item[0]) + + prints:: + + age : 22 + ssn : 111-22-3333 + house_number : 221B + """ + if self._name: + return self._name + elif self._parent: + par: "ParseResults" = self._parent + parent_tokdict_items = par._tokdict.items() + return next( + ( + k + for k, vlist in parent_tokdict_items + for v, loc in vlist + if v is self + ), + None, + ) + elif ( + len(self) == 1 + and len(self._tokdict) == 1 + and next(iter(self._tokdict.values()))[0][1] in (0, -1) + ): + return next(iter(self._tokdict.keys())) + else: + return None + + def dump(self, indent="", full=True, include_list=True, _depth=0) -> str: + """ + Diagnostic method for listing out the contents of + a :class:`ParseResults`. Accepts an optional ``indent`` argument so + that this string can be embedded in a nested display of other data. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string('1999/12/31') + print(result.dump()) + + prints:: + + ['1999', '/', '12', '/', '31'] + - day: '31' + - month: '12' + - year: '1999' + """ + out = [] + NL = "\n" + out.append(indent + str(self.as_list()) if include_list else "") + + if full: + if self.haskeys(): + items = sorted((str(k), v) for k, v in self.items()) + for k, v in items: + if out: + out.append(NL) + out.append(f"{indent}{(' ' * _depth)}- {k}: ") + if isinstance(v, ParseResults): + if v: + out.append( + v.dump( + indent=indent, + full=full, + include_list=include_list, + _depth=_depth + 1, + ) + ) + else: + out.append(str(v)) + else: + out.append(repr(v)) + if any(isinstance(vv, ParseResults) for vv in self): + v = self + for i, vv in enumerate(v): + if isinstance(vv, ParseResults): + out.append( + "\n{}{}[{}]:\n{}{}{}".format( + indent, + (" " * (_depth)), + i, + indent, + (" " * (_depth + 1)), + vv.dump( + indent=indent, + full=full, + include_list=include_list, + _depth=_depth + 1, + ), + ) + ) + else: + out.append( + "\n%s%s[%d]:\n%s%s%s" + % ( + indent, + (" " * (_depth)), + i, + indent, + (" " * (_depth + 1)), + str(vv), + ) + ) + + return "".join(out) + + def pprint(self, *args, **kwargs): + """ + Pretty-printer for parsed results as a list, using the + `pprint `_ module. + Accepts additional positional or keyword args as defined for + `pprint.pprint `_ . + + Example:: + + ident = Word(alphas, alphanums) + num = Word(nums) + func = Forward() + term = ident | num | Group('(' + func + ')') + func <<= ident + Group(Optional(DelimitedList(term))) + result = func.parse_string("fna a,b,(fnb c,d,200),100") + result.pprint(width=40) + + prints:: + + ['fna', + ['a', + 'b', + ['(', 'fnb', ['c', 'd', '200'], ')'], + '100']] + """ + pprint.pprint(self.as_list(), *args, **kwargs) + + # add support for pickle protocol + def __getstate__(self): + return ( + self._toklist, + ( + self._tokdict.copy(), + None, + self._all_names, + self._name, + ), + ) + + def __setstate__(self, state): + self._toklist, (self._tokdict, par, inAccumNames, self._name) = state + self._all_names = set(inAccumNames) + self._parent = None + + def __getnewargs__(self): + return self._toklist, self._name + + def __dir__(self): + return dir(type(self)) + list(self.keys()) + + @classmethod + def from_dict(cls, other, name=None) -> "ParseResults": + """ + Helper classmethod to construct a ``ParseResults`` from a ``dict``, preserving the + name-value relations as results names. If an optional ``name`` argument is + given, a nested ``ParseResults`` will be returned. + """ + + def is_iterable(obj): + try: + iter(obj) + except Exception: + return False + # str's are iterable, but in pyparsing, we don't want to iterate over them + else: + return not isinstance(obj, str_type) + + ret = cls([]) + for k, v in other.items(): + if isinstance(v, Mapping): + ret += cls.from_dict(v, name=k) + else: + ret += cls([v], name=k, asList=is_iterable(v)) + if name is not None: + ret = cls([ret], name=name) + return ret + + asList = as_list + """Deprecated - use :class:`as_list`""" + asDict = as_dict + """Deprecated - use :class:`as_dict`""" + getName = get_name + """Deprecated - use :class:`get_name`""" + + +MutableMapping.register(ParseResults) +MutableSequence.register(ParseResults) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py new file mode 100644 index 000000000..6a254c1c5 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py @@ -0,0 +1,331 @@ +# testing.py + +from contextlib import contextmanager +import typing + +from .core import ( + ParserElement, + ParseException, + Keyword, + __diag__, + __compat__, +) + + +class pyparsing_test: + """ + namespace class for classes useful in writing unit tests + """ + + class reset_pyparsing_context: + """ + Context manager to be used when writing unit tests that modify pyparsing config values: + - packrat parsing + - bounded recursion parsing + - default whitespace characters. + - default keyword characters + - literal string auto-conversion class + - __diag__ settings + + Example:: + + with reset_pyparsing_context(): + # test that literals used to construct a grammar are automatically suppressed + ParserElement.inlineLiteralsUsing(Suppress) + + term = Word(alphas) | Word(nums) + group = Group('(' + term[...] + ')') + + # assert that the '()' characters are not included in the parsed tokens + self.assertParseAndCheckList(group, "(abc 123 def)", ['abc', '123', 'def']) + + # after exiting context manager, literals are converted to Literal expressions again + """ + + def __init__(self): + self._save_context = {} + + def save(self): + self._save_context["default_whitespace"] = ParserElement.DEFAULT_WHITE_CHARS + self._save_context["default_keyword_chars"] = Keyword.DEFAULT_KEYWORD_CHARS + + self._save_context[ + "literal_string_class" + ] = ParserElement._literalStringClass + + self._save_context["verbose_stacktrace"] = ParserElement.verbose_stacktrace + + self._save_context["packrat_enabled"] = ParserElement._packratEnabled + if ParserElement._packratEnabled: + self._save_context[ + "packrat_cache_size" + ] = ParserElement.packrat_cache.size + else: + self._save_context["packrat_cache_size"] = None + self._save_context["packrat_parse"] = ParserElement._parse + self._save_context[ + "recursion_enabled" + ] = ParserElement._left_recursion_enabled + + self._save_context["__diag__"] = { + name: getattr(__diag__, name) for name in __diag__._all_names + } + + self._save_context["__compat__"] = { + "collect_all_And_tokens": __compat__.collect_all_And_tokens + } + + return self + + def restore(self): + # reset pyparsing global state + if ( + ParserElement.DEFAULT_WHITE_CHARS + != self._save_context["default_whitespace"] + ): + ParserElement.set_default_whitespace_chars( + self._save_context["default_whitespace"] + ) + + ParserElement.verbose_stacktrace = self._save_context["verbose_stacktrace"] + + Keyword.DEFAULT_KEYWORD_CHARS = self._save_context["default_keyword_chars"] + ParserElement.inlineLiteralsUsing( + self._save_context["literal_string_class"] + ) + + for name, value in self._save_context["__diag__"].items(): + (__diag__.enable if value else __diag__.disable)(name) + + ParserElement._packratEnabled = False + if self._save_context["packrat_enabled"]: + ParserElement.enable_packrat(self._save_context["packrat_cache_size"]) + else: + ParserElement._parse = self._save_context["packrat_parse"] + ParserElement._left_recursion_enabled = self._save_context[ + "recursion_enabled" + ] + + __compat__.collect_all_And_tokens = self._save_context["__compat__"] + + return self + + def copy(self): + ret = type(self)() + ret._save_context.update(self._save_context) + return ret + + def __enter__(self): + return self.save() + + def __exit__(self, *args): + self.restore() + + class TestParseResultsAsserts: + """ + A mixin class to add parse results assertion methods to normal unittest.TestCase classes. + """ + + def assertParseResultsEquals( + self, result, expected_list=None, expected_dict=None, msg=None + ): + """ + Unit test assertion to compare a :class:`ParseResults` object with an optional ``expected_list``, + and compare any defined results names with an optional ``expected_dict``. + """ + if expected_list is not None: + self.assertEqual(expected_list, result.as_list(), msg=msg) + if expected_dict is not None: + self.assertEqual(expected_dict, result.as_dict(), msg=msg) + + def assertParseAndCheckList( + self, expr, test_string, expected_list, msg=None, verbose=True + ): + """ + Convenience wrapper assert to test a parser element and input string, and assert that + the resulting ``ParseResults.asList()`` is equal to the ``expected_list``. + """ + result = expr.parse_string(test_string, parse_all=True) + if verbose: + print(result.dump()) + else: + print(result.as_list()) + self.assertParseResultsEquals(result, expected_list=expected_list, msg=msg) + + def assertParseAndCheckDict( + self, expr, test_string, expected_dict, msg=None, verbose=True + ): + """ + Convenience wrapper assert to test a parser element and input string, and assert that + the resulting ``ParseResults.asDict()`` is equal to the ``expected_dict``. + """ + result = expr.parse_string(test_string, parseAll=True) + if verbose: + print(result.dump()) + else: + print(result.as_list()) + self.assertParseResultsEquals(result, expected_dict=expected_dict, msg=msg) + + def assertRunTestResults( + self, run_tests_report, expected_parse_results=None, msg=None + ): + """ + Unit test assertion to evaluate output of ``ParserElement.runTests()``. If a list of + list-dict tuples is given as the ``expected_parse_results`` argument, then these are zipped + with the report tuples returned by ``runTests`` and evaluated using ``assertParseResultsEquals``. + Finally, asserts that the overall ``runTests()`` success value is ``True``. + + :param run_tests_report: tuple(bool, [tuple(str, ParseResults or Exception)]) returned from runTests + :param expected_parse_results (optional): [tuple(str, list, dict, Exception)] + """ + run_test_success, run_test_results = run_tests_report + + if expected_parse_results is not None: + merged = [ + (*rpt, expected) + for rpt, expected in zip(run_test_results, expected_parse_results) + ] + for test_string, result, expected in merged: + # expected should be a tuple containing a list and/or a dict or an exception, + # and optional failure message string + # an empty tuple will skip any result validation + fail_msg = next( + (exp for exp in expected if isinstance(exp, str)), None + ) + expected_exception = next( + ( + exp + for exp in expected + if isinstance(exp, type) and issubclass(exp, Exception) + ), + None, + ) + if expected_exception is not None: + with self.assertRaises( + expected_exception=expected_exception, msg=fail_msg or msg + ): + if isinstance(result, Exception): + raise result + else: + expected_list = next( + (exp for exp in expected if isinstance(exp, list)), None + ) + expected_dict = next( + (exp for exp in expected if isinstance(exp, dict)), None + ) + if (expected_list, expected_dict) != (None, None): + self.assertParseResultsEquals( + result, + expected_list=expected_list, + expected_dict=expected_dict, + msg=fail_msg or msg, + ) + else: + # warning here maybe? + print(f"no validation for {test_string!r}") + + # do this last, in case some specific test results can be reported instead + self.assertTrue( + run_test_success, msg=msg if msg is not None else "failed runTests" + ) + + @contextmanager + def assertRaisesParseException(self, exc_type=ParseException, msg=None): + with self.assertRaises(exc_type, msg=msg): + yield + + @staticmethod + def with_line_numbers( + s: str, + start_line: typing.Optional[int] = None, + end_line: typing.Optional[int] = None, + expand_tabs: bool = True, + eol_mark: str = "|", + mark_spaces: typing.Optional[str] = None, + mark_control: typing.Optional[str] = None, + ) -> str: + """ + Helpful method for debugging a parser - prints a string with line and column numbers. + (Line and column numbers are 1-based.) + + :param s: tuple(bool, str - string to be printed with line and column numbers + :param start_line: int - (optional) starting line number in s to print (default=1) + :param end_line: int - (optional) ending line number in s to print (default=len(s)) + :param expand_tabs: bool - (optional) expand tabs to spaces, to match the pyparsing default + :param eol_mark: str - (optional) string to mark the end of lines, helps visualize trailing spaces (default="|") + :param mark_spaces: str - (optional) special character to display in place of spaces + :param mark_control: str - (optional) convert non-printing control characters to a placeholding + character; valid values: + - "unicode" - replaces control chars with Unicode symbols, such as "␍" and "␊" + - any single character string - replace control characters with given string + - None (default) - string is displayed as-is + + :return: str - input string with leading line numbers and column number headers + """ + if expand_tabs: + s = s.expandtabs() + if mark_control is not None: + mark_control = typing.cast(str, mark_control) + if mark_control == "unicode": + transtable_map = { + c: u for c, u in zip(range(0, 33), range(0x2400, 0x2433)) + } + transtable_map[127] = 0x2421 + tbl = str.maketrans(transtable_map) + eol_mark = "" + else: + ord_mark_control = ord(mark_control) + tbl = str.maketrans( + {c: ord_mark_control for c in list(range(0, 32)) + [127]} + ) + s = s.translate(tbl) + if mark_spaces is not None and mark_spaces != " ": + if mark_spaces == "unicode": + tbl = str.maketrans({9: 0x2409, 32: 0x2423}) + s = s.translate(tbl) + else: + s = s.replace(" ", mark_spaces) + if start_line is None: + start_line = 1 + if end_line is None: + end_line = len(s) + end_line = min(end_line, len(s)) + start_line = min(max(1, start_line), end_line) + + if mark_control != "unicode": + s_lines = s.splitlines()[start_line - 1 : end_line] + else: + s_lines = [line + "␊" for line in s.split("␊")[start_line - 1 : end_line]] + if not s_lines: + return "" + + lineno_width = len(str(end_line)) + max_line_len = max(len(line) for line in s_lines) + lead = " " * (lineno_width + 1) + if max_line_len >= 99: + header0 = ( + lead + + "".join( + f"{' ' * 99}{(i + 1) % 100}" + for i in range(max(max_line_len // 100, 1)) + ) + + "\n" + ) + else: + header0 = "" + header1 = ( + header0 + + lead + + "".join(f" {(i + 1) % 10}" for i in range(-(-max_line_len // 10))) + + "\n" + ) + header2 = lead + "1234567890" * (-(-max_line_len // 10)) + "\n" + return ( + header1 + + header2 + + "\n".join( + f"{i:{lineno_width}d}:{line}{eol_mark}" + for i, line in enumerate(s_lines, start=start_line) + ) + + "\n" + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py new file mode 100644 index 000000000..ec0b3a4fe --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py @@ -0,0 +1,361 @@ +# unicode.py + +import sys +from itertools import filterfalse +from typing import List, Tuple, Union + + +class _lazyclassproperty: + def __init__(self, fn): + self.fn = fn + self.__doc__ = fn.__doc__ + self.__name__ = fn.__name__ + + def __get__(self, obj, cls): + if cls is None: + cls = type(obj) + if not hasattr(cls, "_intern") or any( + cls._intern is getattr(superclass, "_intern", []) + for superclass in cls.__mro__[1:] + ): + cls._intern = {} + attrname = self.fn.__name__ + if attrname not in cls._intern: + cls._intern[attrname] = self.fn(cls) + return cls._intern[attrname] + + +UnicodeRangeList = List[Union[Tuple[int, int], Tuple[int]]] + + +class unicode_set: + """ + A set of Unicode characters, for language-specific strings for + ``alphas``, ``nums``, ``alphanums``, and ``printables``. + A unicode_set is defined by a list of ranges in the Unicode character + set, in a class attribute ``_ranges``. Ranges can be specified using + 2-tuples or a 1-tuple, such as:: + + _ranges = [ + (0x0020, 0x007e), + (0x00a0, 0x00ff), + (0x0100,), + ] + + Ranges are left- and right-inclusive. A 1-tuple of (x,) is treated as (x, x). + + A unicode set can also be defined using multiple inheritance of other unicode sets:: + + class CJK(Chinese, Japanese, Korean): + pass + """ + + _ranges: UnicodeRangeList = [] + + @_lazyclassproperty + def _chars_for_ranges(cls): + ret = [] + for cc in cls.__mro__: + if cc is unicode_set: + break + for rr in getattr(cc, "_ranges", ()): + ret.extend(range(rr[0], rr[-1] + 1)) + return [chr(c) for c in sorted(set(ret))] + + @_lazyclassproperty + def printables(cls): + """all non-whitespace characters in this range""" + return "".join(filterfalse(str.isspace, cls._chars_for_ranges)) + + @_lazyclassproperty + def alphas(cls): + """all alphabetic characters in this range""" + return "".join(filter(str.isalpha, cls._chars_for_ranges)) + + @_lazyclassproperty + def nums(cls): + """all numeric digit characters in this range""" + return "".join(filter(str.isdigit, cls._chars_for_ranges)) + + @_lazyclassproperty + def alphanums(cls): + """all alphanumeric characters in this range""" + return cls.alphas + cls.nums + + @_lazyclassproperty + def identchars(cls): + """all characters in this range that are valid identifier characters, plus underscore '_'""" + return "".join( + sorted( + set( + "".join(filter(str.isidentifier, cls._chars_for_ranges)) + + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzªµº" + + "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ" + + "_" + ) + ) + ) + + @_lazyclassproperty + def identbodychars(cls): + """ + all characters in this range that are valid identifier body characters, + plus the digits 0-9, and · (Unicode MIDDLE DOT) + """ + return "".join( + sorted( + set( + cls.identchars + + "0123456789·" + + "".join( + [c for c in cls._chars_for_ranges if ("_" + c).isidentifier()] + ) + ) + ) + ) + + @_lazyclassproperty + def identifier(cls): + """ + a pyparsing Word expression for an identifier using this range's definitions for + identchars and identbodychars + """ + from pip._vendor.pyparsing import Word + + return Word(cls.identchars, cls.identbodychars) + + +class pyparsing_unicode(unicode_set): + """ + A namespace class for defining common language unicode_sets. + """ + + # fmt: off + + # define ranges in language character sets + _ranges: UnicodeRangeList = [ + (0x0020, sys.maxunicode), + ] + + class BasicMultilingualPlane(unicode_set): + """Unicode set for the Basic Multilingual Plane""" + _ranges: UnicodeRangeList = [ + (0x0020, 0xFFFF), + ] + + class Latin1(unicode_set): + """Unicode set for Latin-1 Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0020, 0x007E), + (0x00A0, 0x00FF), + ] + + class LatinA(unicode_set): + """Unicode set for Latin-A Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0100, 0x017F), + ] + + class LatinB(unicode_set): + """Unicode set for Latin-B Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0180, 0x024F), + ] + + class Greek(unicode_set): + """Unicode set for Greek Unicode Character Ranges""" + _ranges: UnicodeRangeList = [ + (0x0342, 0x0345), + (0x0370, 0x0377), + (0x037A, 0x037F), + (0x0384, 0x038A), + (0x038C,), + (0x038E, 0x03A1), + (0x03A3, 0x03E1), + (0x03F0, 0x03FF), + (0x1D26, 0x1D2A), + (0x1D5E,), + (0x1D60,), + (0x1D66, 0x1D6A), + (0x1F00, 0x1F15), + (0x1F18, 0x1F1D), + (0x1F20, 0x1F45), + (0x1F48, 0x1F4D), + (0x1F50, 0x1F57), + (0x1F59,), + (0x1F5B,), + (0x1F5D,), + (0x1F5F, 0x1F7D), + (0x1F80, 0x1FB4), + (0x1FB6, 0x1FC4), + (0x1FC6, 0x1FD3), + (0x1FD6, 0x1FDB), + (0x1FDD, 0x1FEF), + (0x1FF2, 0x1FF4), + (0x1FF6, 0x1FFE), + (0x2129,), + (0x2719, 0x271A), + (0xAB65,), + (0x10140, 0x1018D), + (0x101A0,), + (0x1D200, 0x1D245), + (0x1F7A1, 0x1F7A7), + ] + + class Cyrillic(unicode_set): + """Unicode set for Cyrillic Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0400, 0x052F), + (0x1C80, 0x1C88), + (0x1D2B,), + (0x1D78,), + (0x2DE0, 0x2DFF), + (0xA640, 0xA672), + (0xA674, 0xA69F), + (0xFE2E, 0xFE2F), + ] + + class Chinese(unicode_set): + """Unicode set for Chinese Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x2E80, 0x2E99), + (0x2E9B, 0x2EF3), + (0x31C0, 0x31E3), + (0x3400, 0x4DB5), + (0x4E00, 0x9FEF), + (0xA700, 0xA707), + (0xF900, 0xFA6D), + (0xFA70, 0xFAD9), + (0x16FE2, 0x16FE3), + (0x1F210, 0x1F212), + (0x1F214, 0x1F23B), + (0x1F240, 0x1F248), + (0x20000, 0x2A6D6), + (0x2A700, 0x2B734), + (0x2B740, 0x2B81D), + (0x2B820, 0x2CEA1), + (0x2CEB0, 0x2EBE0), + (0x2F800, 0x2FA1D), + ] + + class Japanese(unicode_set): + """Unicode set for Japanese Unicode Character Range, combining Kanji, Hiragana, and Katakana ranges""" + + class Kanji(unicode_set): + "Unicode set for Kanji Unicode Character Range" + _ranges: UnicodeRangeList = [ + (0x4E00, 0x9FBF), + (0x3000, 0x303F), + ] + + class Hiragana(unicode_set): + """Unicode set for Hiragana Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x3041, 0x3096), + (0x3099, 0x30A0), + (0x30FC,), + (0xFF70,), + (0x1B001,), + (0x1B150, 0x1B152), + (0x1F200,), + ] + + class Katakana(unicode_set): + """Unicode set for Katakana Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x3099, 0x309C), + (0x30A0, 0x30FF), + (0x31F0, 0x31FF), + (0x32D0, 0x32FE), + (0xFF65, 0xFF9F), + (0x1B000,), + (0x1B164, 0x1B167), + (0x1F201, 0x1F202), + (0x1F213,), + ] + + 漢字 = Kanji + カタカナ = Katakana + ひらがな = Hiragana + + _ranges = ( + Kanji._ranges + + Hiragana._ranges + + Katakana._ranges + ) + + class Hangul(unicode_set): + """Unicode set for Hangul (Korean) Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x1100, 0x11FF), + (0x302E, 0x302F), + (0x3131, 0x318E), + (0x3200, 0x321C), + (0x3260, 0x327B), + (0x327E,), + (0xA960, 0xA97C), + (0xAC00, 0xD7A3), + (0xD7B0, 0xD7C6), + (0xD7CB, 0xD7FB), + (0xFFA0, 0xFFBE), + (0xFFC2, 0xFFC7), + (0xFFCA, 0xFFCF), + (0xFFD2, 0xFFD7), + (0xFFDA, 0xFFDC), + ] + + Korean = Hangul + + class CJK(Chinese, Japanese, Hangul): + """Unicode set for combined Chinese, Japanese, and Korean (CJK) Unicode Character Range""" + + class Thai(unicode_set): + """Unicode set for Thai Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0E01, 0x0E3A), + (0x0E3F, 0x0E5B) + ] + + class Arabic(unicode_set): + """Unicode set for Arabic Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0600, 0x061B), + (0x061E, 0x06FF), + (0x0700, 0x077F), + ] + + class Hebrew(unicode_set): + """Unicode set for Hebrew Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0591, 0x05C7), + (0x05D0, 0x05EA), + (0x05EF, 0x05F4), + (0xFB1D, 0xFB36), + (0xFB38, 0xFB3C), + (0xFB3E,), + (0xFB40, 0xFB41), + (0xFB43, 0xFB44), + (0xFB46, 0xFB4F), + ] + + class Devanagari(unicode_set): + """Unicode set for Devanagari Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0900, 0x097F), + (0xA8E0, 0xA8FF) + ] + + BMP = BasicMultilingualPlane + + # add language identifiers using language Unicode + العربية = Arabic + 中文 = Chinese + кириллица = Cyrillic + Ελληνικά = Greek + עִברִית = Hebrew + 日本語 = Japanese + 한국어 = Korean + ไทย = Thai + देवनागरी = Devanagari + + # fmt: on diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py new file mode 100644 index 000000000..d8d3f414c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py @@ -0,0 +1,284 @@ +# util.py +import inspect +import warnings +import types +import collections +import itertools +from functools import lru_cache, wraps +from typing import Callable, List, Union, Iterable, TypeVar, cast + +_bslash = chr(92) +C = TypeVar("C", bound=Callable) + + +class __config_flags: + """Internal class for defining compatibility and debugging flags""" + + _all_names: List[str] = [] + _fixed_names: List[str] = [] + _type_desc = "configuration" + + @classmethod + def _set(cls, dname, value): + if dname in cls._fixed_names: + warnings.warn( + f"{cls.__name__}.{dname} {cls._type_desc} is {str(getattr(cls, dname)).upper()}" + f" and cannot be overridden", + stacklevel=3, + ) + return + if dname in cls._all_names: + setattr(cls, dname, value) + else: + raise ValueError(f"no such {cls._type_desc} {dname!r}") + + enable = classmethod(lambda cls, name: cls._set(name, True)) + disable = classmethod(lambda cls, name: cls._set(name, False)) + + +@lru_cache(maxsize=128) +def col(loc: int, strg: str) -> int: + """ + Returns current column within a string, counting newlines as line separators. + The first column is number 1. + + Note: the default parsing behavior is to expand tabs in the input string + before starting the parsing process. See + :class:`ParserElement.parse_string` for more + information on parsing strings containing ```` s, and suggested + methods to maintain a consistent view of the parsed string, the parse + location, and line and column positions within the parsed string. + """ + s = strg + return 1 if 0 < loc < len(s) and s[loc - 1] == "\n" else loc - s.rfind("\n", 0, loc) + + +@lru_cache(maxsize=128) +def lineno(loc: int, strg: str) -> int: + """Returns current line number within a string, counting newlines as line separators. + The first line is number 1. + + Note - the default parsing behavior is to expand tabs in the input string + before starting the parsing process. See :class:`ParserElement.parse_string` + for more information on parsing strings containing ```` s, and + suggested methods to maintain a consistent view of the parsed string, the + parse location, and line and column positions within the parsed string. + """ + return strg.count("\n", 0, loc) + 1 + + +@lru_cache(maxsize=128) +def line(loc: int, strg: str) -> str: + """ + Returns the line of text containing loc within a string, counting newlines as line separators. + """ + last_cr = strg.rfind("\n", 0, loc) + next_cr = strg.find("\n", loc) + return strg[last_cr + 1 : next_cr] if next_cr >= 0 else strg[last_cr + 1 :] + + +class _UnboundedCache: + def __init__(self): + cache = {} + cache_get = cache.get + self.not_in_cache = not_in_cache = object() + + def get(_, key): + return cache_get(key, not_in_cache) + + def set_(_, key, value): + cache[key] = value + + def clear(_): + cache.clear() + + self.size = None + self.get = types.MethodType(get, self) + self.set = types.MethodType(set_, self) + self.clear = types.MethodType(clear, self) + + +class _FifoCache: + def __init__(self, size): + self.not_in_cache = not_in_cache = object() + cache = {} + keyring = [object()] * size + cache_get = cache.get + cache_pop = cache.pop + keyiter = itertools.cycle(range(size)) + + def get(_, key): + return cache_get(key, not_in_cache) + + def set_(_, key, value): + cache[key] = value + i = next(keyiter) + cache_pop(keyring[i], None) + keyring[i] = key + + def clear(_): + cache.clear() + keyring[:] = [object()] * size + + self.size = size + self.get = types.MethodType(get, self) + self.set = types.MethodType(set_, self) + self.clear = types.MethodType(clear, self) + + +class LRUMemo: + """ + A memoizing mapping that retains `capacity` deleted items + + The memo tracks retained items by their access order; once `capacity` items + are retained, the least recently used item is discarded. + """ + + def __init__(self, capacity): + self._capacity = capacity + self._active = {} + self._memory = collections.OrderedDict() + + def __getitem__(self, key): + try: + return self._active[key] + except KeyError: + self._memory.move_to_end(key) + return self._memory[key] + + def __setitem__(self, key, value): + self._memory.pop(key, None) + self._active[key] = value + + def __delitem__(self, key): + try: + value = self._active.pop(key) + except KeyError: + pass + else: + while len(self._memory) >= self._capacity: + self._memory.popitem(last=False) + self._memory[key] = value + + def clear(self): + self._active.clear() + self._memory.clear() + + +class UnboundedMemo(dict): + """ + A memoizing mapping that retains all deleted items + """ + + def __delitem__(self, key): + pass + + +def _escape_regex_range_chars(s: str) -> str: + # escape these chars: ^-[] + for c in r"\^-[]": + s = s.replace(c, _bslash + c) + s = s.replace("\n", r"\n") + s = s.replace("\t", r"\t") + return str(s) + + +def _collapse_string_to_ranges( + s: Union[str, Iterable[str]], re_escape: bool = True +) -> str: + def is_consecutive(c): + c_int = ord(c) + is_consecutive.prev, prev = c_int, is_consecutive.prev + if c_int - prev > 1: + is_consecutive.value = next(is_consecutive.counter) + return is_consecutive.value + + is_consecutive.prev = 0 # type: ignore [attr-defined] + is_consecutive.counter = itertools.count() # type: ignore [attr-defined] + is_consecutive.value = -1 # type: ignore [attr-defined] + + def escape_re_range_char(c): + return "\\" + c if c in r"\^-][" else c + + def no_escape_re_range_char(c): + return c + + if not re_escape: + escape_re_range_char = no_escape_re_range_char + + ret = [] + s = "".join(sorted(set(s))) + if len(s) > 3: + for _, chars in itertools.groupby(s, key=is_consecutive): + first = last = next(chars) + last = collections.deque( + itertools.chain(iter([last]), chars), maxlen=1 + ).pop() + if first == last: + ret.append(escape_re_range_char(first)) + else: + sep = "" if ord(last) == ord(first) + 1 else "-" + ret.append( + f"{escape_re_range_char(first)}{sep}{escape_re_range_char(last)}" + ) + else: + ret = [escape_re_range_char(c) for c in s] + + return "".join(ret) + + +def _flatten(ll: list) -> list: + ret = [] + for i in ll: + if isinstance(i, list): + ret.extend(_flatten(i)) + else: + ret.append(i) + return ret + + +def _make_synonym_function(compat_name: str, fn: C) -> C: + # In a future version, uncomment the code in the internal _inner() functions + # to begin emitting DeprecationWarnings. + + # Unwrap staticmethod/classmethod + fn = getattr(fn, "__func__", fn) + + # (Presence of 'self' arg in signature is used by explain_exception() methods, so we take + # some extra steps to add it if present in decorated function.) + if "self" == list(inspect.signature(fn).parameters)[0]: + + @wraps(fn) + def _inner(self, *args, **kwargs): + # warnings.warn( + # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 + # ) + return fn(self, *args, **kwargs) + + else: + + @wraps(fn) + def _inner(*args, **kwargs): + # warnings.warn( + # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 + # ) + return fn(*args, **kwargs) + + _inner.__doc__ = f"""Deprecated - use :class:`{fn.__name__}`""" + _inner.__name__ = compat_name + _inner.__annotations__ = fn.__annotations__ + if isinstance(fn, types.FunctionType): + _inner.__kwdefaults__ = fn.__kwdefaults__ + elif isinstance(fn, type) and hasattr(fn, "__init__"): + _inner.__kwdefaults__ = fn.__init__.__kwdefaults__ + else: + _inner.__kwdefaults__ = None + _inner.__qualname__ = fn.__qualname__ + return cast(C, _inner) + + +def replaced_by_pep8(fn: C) -> Callable[[Callable], C]: + """ + Decorator for pre-PEP8 compatibility synonyms, to link them to the new function. + """ + return lambda other: _make_synonym_function(other.__name__, fn) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py new file mode 100644 index 000000000..ddfcf7f72 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py @@ -0,0 +1,23 @@ +"""Wrappers to call pyproject.toml-based build backend hooks. +""" + +from ._impl import ( + BackendInvalid, + BackendUnavailable, + BuildBackendHookCaller, + HookMissing, + UnsupportedOperation, + default_subprocess_runner, + quiet_subprocess_runner, +) + +__version__ = '1.0.0' +__all__ = [ + 'BackendUnavailable', + 'BackendInvalid', + 'HookMissing', + 'UnsupportedOperation', + 'default_subprocess_runner', + 'quiet_subprocess_runner', + 'BuildBackendHookCaller', +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c76695b2aa63d978e0e51a0b31836b88f66a1c2 GIT binary patch literal 647 zcmZvZzi$&U6vus+T<)5vR8&wb-j{vsLmmJeRn)LLG< zp*O>dN;$L(Tbp;h^0_xkj!Wt|8wJGLQmVBW9=GiP3<{*0j8)IMz^;ae@h$b ziEB!*R&nP@-DnN!TkjjeuQ^yI`}tnJH%jX+Sgbn%y?`_z3)l!q0MAE*HYJ3aijX!T zLRonwSV=?0b<%b~$Q-^641x^w@Ek(Ep>wE5m!I*>D31M-D|pw;;HSbLHYJ|Cd4gX) zp5P6ANcg~iZc zGgCv+dSGNV7fguI!V{9)#bx$Tty(>*Z-TEdFLwuU+KHm*ERLe?MK6ou3j{a|INd>8 RyB`OC<7^OrO6x7C{RfR4z^niO literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3afc243f072eee81f72ea06ede4ba7a19844160a GIT binary patch literal 408 zcmYLDze~eF7`@9St@MY31xLZLU~{OexU{H?F1i?mkS1qy?Im~Q(v~`R6qi*Q%VySr<`D(RK>-d7 zfgQ|n-(1Q5IUs{8gc56^A`Zz6=uBZomP0VgjHcDZc{!Dl5WG7r_RgBdlmJhw05G(Q zA#axQvg>+6xNc5#rt{i}C7R3F$B76&p(O7QZ8W`JmZM?)Dgn%=O8 z$GuR}W1gN2yR?0IM9({IdMbmVV66)&g{C}Gf<-J&TfQ7?FQYd6IHC}bsw@p4P-hNaJDrPPV?xjURI-se$Sb=f!Z< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f79f18cbcd18b7b7fe0ef13d2023ef845e4c094 GIT binary patch literal 14759 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 D{Gv<1 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py new file mode 100644 index 000000000..95e509c01 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py @@ -0,0 +1,8 @@ +__all__ = ("tomllib",) + +import sys + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py new file mode 100644 index 000000000..37b0e6531 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py @@ -0,0 +1,330 @@ +import json +import os +import sys +import tempfile +from contextlib import contextmanager +from os.path import abspath +from os.path import join as pjoin +from subprocess import STDOUT, check_call, check_output + +from ._in_process import _in_proc_script_path + + +def write_json(obj, path, **kwargs): + with open(path, 'w', encoding='utf-8') as f: + json.dump(obj, f, **kwargs) + + +def read_json(path): + with open(path, encoding='utf-8') as f: + return json.load(f) + + +class BackendUnavailable(Exception): + """Will be raised if the backend cannot be imported in the hook process.""" + def __init__(self, traceback): + self.traceback = traceback + + +class BackendInvalid(Exception): + """Will be raised if the backend is invalid.""" + def __init__(self, backend_name, backend_path, message): + super().__init__(message) + self.backend_name = backend_name + self.backend_path = backend_path + + +class HookMissing(Exception): + """Will be raised on missing hooks (if a fallback can't be used).""" + def __init__(self, hook_name): + super().__init__(hook_name) + self.hook_name = hook_name + + +class UnsupportedOperation(Exception): + """May be raised by build_sdist if the backend indicates that it can't.""" + def __init__(self, traceback): + self.traceback = traceback + + +def default_subprocess_runner(cmd, cwd=None, extra_environ=None): + """The default method of calling the wrapper subprocess. + + This uses :func:`subprocess.check_call` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_call(cmd, cwd=cwd, env=env) + + +def quiet_subprocess_runner(cmd, cwd=None, extra_environ=None): + """Call the subprocess while suppressing output. + + This uses :func:`subprocess.check_output` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_output(cmd, cwd=cwd, env=env, stderr=STDOUT) + + +def norm_and_check(source_tree, requested): + """Normalise and check a backend path. + + Ensure that the requested backend path is specified as a relative path, + and resolves to a location under the given source tree. + + Return an absolute version of the requested path. + """ + if os.path.isabs(requested): + raise ValueError("paths must be relative") + + abs_source = os.path.abspath(source_tree) + abs_requested = os.path.normpath(os.path.join(abs_source, requested)) + # We have to use commonprefix for Python 2.7 compatibility. So we + # normalise case to avoid problems because commonprefix is a character + # based comparison :-( + norm_source = os.path.normcase(abs_source) + norm_requested = os.path.normcase(abs_requested) + if os.path.commonprefix([norm_source, norm_requested]) != norm_source: + raise ValueError("paths must be inside source tree") + + return abs_requested + + +class BuildBackendHookCaller: + """A wrapper to call the build backend hooks for a source directory. + """ + + def __init__( + self, + source_dir, + build_backend, + backend_path=None, + runner=None, + python_executable=None, + ): + """ + :param source_dir: The source directory to invoke the build backend for + :param build_backend: The build backend spec + :param backend_path: Additional path entries for the build backend spec + :param runner: The :ref:`subprocess runner ` to use + :param python_executable: + The Python executable used to invoke the build backend + """ + if runner is None: + runner = default_subprocess_runner + + self.source_dir = abspath(source_dir) + self.build_backend = build_backend + if backend_path: + backend_path = [ + norm_and_check(self.source_dir, p) for p in backend_path + ] + self.backend_path = backend_path + self._subprocess_runner = runner + if not python_executable: + python_executable = sys.executable + self.python_executable = python_executable + + @contextmanager + def subprocess_runner(self, runner): + """A context manager for temporarily overriding the default + :ref:`subprocess runner `. + + .. code-block:: python + + hook_caller = BuildBackendHookCaller(...) + with hook_caller.subprocess_runner(quiet_subprocess_runner): + ... + """ + prev = self._subprocess_runner + self._subprocess_runner = runner + try: + yield + finally: + self._subprocess_runner = prev + + def _supported_features(self): + """Return the list of optional features supported by the backend.""" + return self._call_hook('_supported_features', {}) + + def get_requires_for_build_wheel(self, config_settings=None): + """Get additional dependencies required for building a wheel. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook('get_requires_for_build_wheel', { + 'config_settings': config_settings + }) + + def prepare_metadata_for_build_wheel( + self, metadata_directory, config_settings=None, + _allow_fallback=True): + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + :rtype: str + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_wheel`` hook and the dist-info extracted from + that will be returned. + """ + return self._call_hook('prepare_metadata_for_build_wheel', { + 'metadata_directory': abspath(metadata_directory), + 'config_settings': config_settings, + '_allow_fallback': _allow_fallback, + }) + + def build_wheel( + self, wheel_directory, config_settings=None, + metadata_directory=None): + """Build a wheel from this project. + + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_wheel`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_wheel`, the build backend would + not be invoked. Instead, the previously built wheel will be copied + to ``wheel_directory`` and the name of that file will be returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook('build_wheel', { + 'wheel_directory': abspath(wheel_directory), + 'config_settings': config_settings, + 'metadata_directory': metadata_directory, + }) + + def get_requires_for_build_editable(self, config_settings=None): + """Get additional dependencies required for building an editable wheel. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook('get_requires_for_build_editable', { + 'config_settings': config_settings + }) + + def prepare_metadata_for_build_editable( + self, metadata_directory, config_settings=None, + _allow_fallback=True): + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + :rtype: str + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_editable`` hook and the dist-info + extracted from that will be returned. + """ + return self._call_hook('prepare_metadata_for_build_editable', { + 'metadata_directory': abspath(metadata_directory), + 'config_settings': config_settings, + '_allow_fallback': _allow_fallback, + }) + + def build_editable( + self, wheel_directory, config_settings=None, + metadata_directory=None): + """Build an editable wheel from this project. + + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_editable`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_editable`, the build backend + would not be invoked. Instead, the previously built wheel will be + copied to ``wheel_directory`` and the name of that file will be + returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook('build_editable', { + 'wheel_directory': abspath(wheel_directory), + 'config_settings': config_settings, + 'metadata_directory': metadata_directory, + }) + + def get_requires_for_build_sdist(self, config_settings=None): + """Get additional dependencies required for building an sdist. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + """ + return self._call_hook('get_requires_for_build_sdist', { + 'config_settings': config_settings + }) + + def build_sdist(self, sdist_directory, config_settings=None): + """Build an sdist from this project. + + :returns: + The name of the newly created sdist within ``wheel_directory``. + """ + return self._call_hook('build_sdist', { + 'sdist_directory': abspath(sdist_directory), + 'config_settings': config_settings, + }) + + def _call_hook(self, hook_name, kwargs): + extra_environ = {'PEP517_BUILD_BACKEND': self.build_backend} + + if self.backend_path: + backend_path = os.pathsep.join(self.backend_path) + extra_environ['PEP517_BACKEND_PATH'] = backend_path + + with tempfile.TemporaryDirectory() as td: + hook_input = {'kwargs': kwargs} + write_json(hook_input, pjoin(td, 'input.json'), indent=2) + + # Run the hook in a subprocess + with _in_proc_script_path() as script: + python = self.python_executable + self._subprocess_runner( + [python, abspath(str(script)), hook_name, td], + cwd=self.source_dir, + extra_environ=extra_environ + ) + + data = read_json(pjoin(td, 'output.json')) + if data.get('unsupported'): + raise UnsupportedOperation(data.get('traceback', '')) + if data.get('no_backend'): + raise BackendUnavailable(data.get('traceback', '')) + if data.get('backend_invalid'): + raise BackendInvalid( + backend_name=self.build_backend, + backend_path=self.backend_path, + message=data.get('backend_error', '') + ) + if data.get('hook_missing'): + raise HookMissing(data.get('missing_hook_name') or hook_name) + return data['return_val'] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py new file mode 100644 index 000000000..917fa065b --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py @@ -0,0 +1,18 @@ +"""This is a subpackage because the directory is on sys.path for _in_process.py + +The subpackage should stay as empty as possible to avoid shadowing modules that +the backend might import. +""" + +import importlib.resources as resources + +try: + resources.files +except AttributeError: + # Python 3.8 compatibility + def _in_proc_script_path(): + return resources.path(__package__, '_in_process.py') +else: + def _in_proc_script_path(): + return resources.as_file( + resources.files(__package__).joinpath('_in_process.py')) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..282494780b4247931c47c123427ee85dc8240ced GIT binary patch literal 1114 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 1: + print('Found multiple .whl files; unspecified behaviour. ' + 'Will call build_wheel.') + return None + + # Exactly one .whl file + return whl_files[0] + + +def build_wheel(wheel_directory, config_settings, metadata_directory=None): + """Invoke the mandatory build_wheel hook. + + If a wheel was already built in the + prepare_metadata_for_build_wheel fallback, this + will copy it rather than rebuilding the wheel. + """ + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return _build_backend().build_wheel(wheel_directory, config_settings, + metadata_directory) + + +def build_editable(wheel_directory, config_settings, metadata_directory=None): + """Invoke the optional build_editable hook. + + If a wheel was already built in the + prepare_metadata_for_build_editable fallback, this + will copy it rather than rebuilding the wheel. + """ + backend = _build_backend() + try: + hook = backend.build_editable + except AttributeError: + raise HookMissing() + else: + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return hook(wheel_directory, config_settings, metadata_directory) + + +def get_requires_for_build_sdist(config_settings): + """Invoke the optional get_requires_for_build_wheel hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_sdist + except AttributeError: + return [] + else: + return hook(config_settings) + + +class _DummyException(Exception): + """Nothing should ever raise this exception""" + + +class GotUnsupportedOperation(Exception): + """For internal use when backend raises UnsupportedOperation""" + def __init__(self, traceback): + self.traceback = traceback + + +def build_sdist(sdist_directory, config_settings): + """Invoke the mandatory build_sdist hook.""" + backend = _build_backend() + try: + return backend.build_sdist(sdist_directory, config_settings) + except getattr(backend, 'UnsupportedOperation', _DummyException): + raise GotUnsupportedOperation(traceback.format_exc()) + + +HOOK_NAMES = { + 'get_requires_for_build_wheel', + 'prepare_metadata_for_build_wheel', + 'build_wheel', + 'get_requires_for_build_editable', + 'prepare_metadata_for_build_editable', + 'build_editable', + 'get_requires_for_build_sdist', + 'build_sdist', + '_supported_features', +} + + +def main(): + if len(sys.argv) < 3: + sys.exit("Needs args: hook_name, control_dir") + hook_name = sys.argv[1] + control_dir = sys.argv[2] + if hook_name not in HOOK_NAMES: + sys.exit("Unknown hook: %s" % hook_name) + hook = globals()[hook_name] + + hook_input = read_json(pjoin(control_dir, 'input.json')) + + json_out = {'unsupported': False, 'return_val': None} + try: + json_out['return_val'] = hook(**hook_input['kwargs']) + except BackendUnavailable as e: + json_out['no_backend'] = True + json_out['traceback'] = e.traceback + except BackendInvalid as e: + json_out['backend_invalid'] = True + json_out['backend_error'] = e.message + except GotUnsupportedOperation as e: + json_out['unsupported'] = True + json_out['traceback'] = e.traceback + except HookMissing as e: + json_out['hook_missing'] = True + json_out['missing_hook_name'] = e.hook_name or hook_name + + write_json(json_out, pjoin(control_dir, 'output.json'), indent=2) + + +if __name__ == '__main__': + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py new file mode 100644 index 000000000..10ff67ff4 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py @@ -0,0 +1,182 @@ +# __ +# /__) _ _ _ _ _/ _ +# / ( (- (/ (/ (- _) / _) +# / + +""" +Requests HTTP Library +~~~~~~~~~~~~~~~~~~~~~ + +Requests is an HTTP library, written in Python, for human beings. +Basic GET usage: + + >>> import requests + >>> r = requests.get('https://www.python.org') + >>> r.status_code + 200 + >>> b'Python is a programming language' in r.content + True + +... or POST: + + >>> payload = dict(key1='value1', key2='value2') + >>> r = requests.post('https://httpbin.org/post', data=payload) + >>> print(r.text) + { + ... + "form": { + "key1": "value1", + "key2": "value2" + }, + ... + } + +The other HTTP methods are supported - see `requests.api`. Full documentation +is at . + +:copyright: (c) 2017 by Kenneth Reitz. +:license: Apache 2.0, see LICENSE for more details. +""" + +import warnings + +from pip._vendor import urllib3 + +from .exceptions import RequestsDependencyWarning + +charset_normalizer_version = None + +try: + from pip._vendor.chardet import __version__ as chardet_version +except ImportError: + chardet_version = None + + +def check_compatibility(urllib3_version, chardet_version, charset_normalizer_version): + urllib3_version = urllib3_version.split(".") + assert urllib3_version != ["dev"] # Verify urllib3 isn't installed from git. + + # Sometimes, urllib3 only reports its version as 16.1. + if len(urllib3_version) == 2: + urllib3_version.append("0") + + # Check urllib3 for compatibility. + major, minor, patch = urllib3_version # noqa: F811 + major, minor, patch = int(major), int(minor), int(patch) + # urllib3 >= 1.21.1 + assert major >= 1 + if major == 1: + assert minor >= 21 + + # Check charset_normalizer for compatibility. + if chardet_version: + major, minor, patch = chardet_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # chardet_version >= 3.0.2, < 6.0.0 + assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0) + elif charset_normalizer_version: + major, minor, patch = charset_normalizer_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # charset_normalizer >= 2.0.0 < 4.0.0 + assert (2, 0, 0) <= (major, minor, patch) < (4, 0, 0) + else: + raise Exception("You need either charset_normalizer or chardet installed") + + +def _check_cryptography(cryptography_version): + # cryptography < 1.3.4 + try: + cryptography_version = list(map(int, cryptography_version.split("."))) + except ValueError: + return + + if cryptography_version < [1, 3, 4]: + warning = "Old version of cryptography ({}) may cause slowdown.".format( + cryptography_version + ) + warnings.warn(warning, RequestsDependencyWarning) + + +# Check imported dependencies for compatibility. +try: + check_compatibility( + urllib3.__version__, chardet_version, charset_normalizer_version + ) +except (AssertionError, ValueError): + warnings.warn( + "urllib3 ({}) or chardet ({})/charset_normalizer ({}) doesn't match a supported " + "version!".format( + urllib3.__version__, chardet_version, charset_normalizer_version + ), + RequestsDependencyWarning, + ) + +# Attempt to enable urllib3's fallback for SNI support +# if the standard library doesn't support SNI or the +# 'ssl' library isn't available. +try: + # Note: This logic prevents upgrading cryptography on Windows, if imported + # as part of pip. + from pip._internal.utils.compat import WINDOWS + if not WINDOWS: + raise ImportError("pip internals: don't import cryptography on Windows") + try: + import ssl + except ImportError: + ssl = None + + if not getattr(ssl, "HAS_SNI", False): + from pip._vendor.urllib3.contrib import pyopenssl + + pyopenssl.inject_into_urllib3() + + # Check cryptography version + from cryptography import __version__ as cryptography_version + + _check_cryptography(cryptography_version) +except ImportError: + pass + +# urllib3's DependencyWarnings should be silenced. +from pip._vendor.urllib3.exceptions import DependencyWarning + +warnings.simplefilter("ignore", DependencyWarning) + +# Set default logging handler to avoid "No handler found" warnings. +import logging +from logging import NullHandler + +from . import packages, utils +from .__version__ import ( + __author__, + __author_email__, + __build__, + __cake__, + __copyright__, + __description__, + __license__, + __title__, + __url__, + __version__, +) +from .api import delete, get, head, options, patch, post, put, request +from .exceptions import ( + ConnectionError, + ConnectTimeout, + FileModeWarning, + HTTPError, + JSONDecodeError, + ReadTimeout, + RequestException, + Timeout, + TooManyRedirects, + URLRequired, +) +from .models import PreparedRequest, Request, Response +from .sessions import Session, session +from .status_codes import codes + +logging.getLogger(__name__).addHandler(NullHandler()) + +# FileModeWarnings go off per the default. +warnings.simplefilter("default", FileModeWarning, append=True) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f186cfda9706b35cc8c3d61200c4a4779a8142a0 GIT binary patch literal 5487 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4117bc4f189bd263521e8de4d23a71c6d447de0 GIT binary patch literal 21314 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..081ed10402b9bd0bd8cc281ec5bfc2f15e33bb8e GIT binary patch literal 7238 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 P8`KT4f3EY-^#T6_ilE+S literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46f35fc60c346d658f7f16ee28635d25d2c86b1f GIT binary patch literal 25280 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

*{IXq&`YHOR=v3f*o7Hw;N0kLjv uTa8%v>Ft;Of};lL6TAMirIY5>b(eic@m{()IU`F{aocb>EW literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34e94b4df9f940e1f51156a2eb4492dd1d810b26 GIT binary patch literal 7081 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 cKdibYZ0pz@9{6NyMt8$cY45PA>3R5H*;( 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd6e3ca94ec85ed81b6db85efde392e29c8dd7cb GIT binary patch literal 35482 zcmdVD33OD~ohSTWZK_SGDoLe%DQ!Rrsl;XsVzEI&1_J_vY{#+^<&c5n zu5cl)p9}FJLzM65*{`ABh+kvW6f^gmdAeqbT4DwL1u<*CHD>F##q9m|n4{mpu9>6G zSYdx5%UhyFF;~Bf}u^~TEj%UIqKEss_7SHvp& zD`QptRk7;+>R3&GO{})RHdfbP$Lcsyr@r6E@`cDZ^f$yB`x|3T{Y|W_DB2ur>2Hax z>0c9D+rO5TxuWZ0{(gU~wZApCzJGnJt-meS-rpVz^at2=H?CLqcd)z%`3?OWSiTr} zNB>5aFF}4&|0b3%jc$%@>EFWg-soeot^HeBzAXB9Y+L^}mM@QPk9GEU#&-1Yi0$m( z8QayrE4I6TckGG&Ct^?bKN;K8zbCf0e{Za-zl-O>ThFAGDbapW`Yr8D$)WV3lGlDw z`d#fz$)R*o$!otu=KcerivFiVmHh`pRsDwy+*4er`kP#+<{hj8I{FW@vRahYsb#&a ztR7{)aPK=tx#kg8+JMr=@L`mjsq7N5GqG8`)BAyIJ;-W8kI_w)3BC((_>PwtF6CO-bSup7vPMi-5zGF(G z_FqyLdi{K^^x3#LGCZ6RlHt&i;jj=)MiOzqIp^pO58}!D1R){hiVr0Q*@dG)L6pl1 zj|z!oVlWYvs<@AZgQ31iESwlgN+s6g#}Ba_p5m0B+!F~$LpZMt$Eo#!*hn-P84e1` zfuV#D3k8!wT(qG;3=fP5(O>fDrQeWqCldp4bl_ZgKuije_^F(GBpzWcM8tuhI2eiG zzQX-|eMk2O#mL~Ek>qKALC)G0j7Ebeqv4$E>ElOw^>0*gI5<2^4cSiyMT|3R)Nyho zg8szmA-RIV(?KB=PUdWbiNsm-J8}}wFr5)GJjR?2y_4P{XGK;Vjz*F>J8~m&)_YWO z4-6)TN0HFo180Ilu0+ZsJ1`_9VgsSbU^3@96;3LZPGbzig5Q!W?K(XYKN}A1qhUff zr4e;?CE{_+DP~A2C`Cas98a=0Q>)o%9Ha{F1MzdgXe30hFO}Hkl4p+{^7Dd+#up=Z zI3kL;|M=kPa12u*Sf%ok<4GYLjNvKbNDRH9#X!|V;h`XAZs0WDO+_db?i4r9 zC)MjI?u^nKr9OV&k*|*%Qid}!w9#GW#*HbXXbAE6<sd1e1o5rg4VrPaV@D@y-_F?t)FPudoY= zXh!0r%};=y)oU+&^-%qw9s9j^o{39fuj%ZSPAYqGCrRHXIGd zunXG<6X(U?Xh+~&IDW1J@S4~Q&#fwLj z?8v;c_O{D&>HNg`N%7mMjJ0|h58_rVO&bc>(){~aa923}vP`PWGN~@WA%lYE1Vf5D z&L!2Qmjc=J1=qCurrGkR=dvTEF7-JEy070lc@*#C=#rc#$*M=!? z8>TO9!-P?lw>!^We96RJ{97h2Nr0UlDUhS@nw4H1=V;vhma+fF;0=g{pa3unm@4`r zabM6k90?DGeTg9-;o^YZ&h`V6=OfXmPaGKp*cFFHqR~;Gg#GjloIf3o<6IQOAzx5L zV}##)2?05RsAyGfZc}@51iMBI_>KU_3OpUCP5*Lz77K?>w6MVYv)YB3Za~JV1Qwhfd^)wmiBFZgvmk)G5j^ZEoYAa zA&SXhd@!6d5jy2`o?kg*u!Hwd-Msk6>U(7knCPQx?f4gPs(7eN+ zEh$eQTr30#nA$pD*r+@0oG)CH^_Hi57Ax1yl+INK?s4|Qs>|j{esa@dN$u3hw_E2+ z+JE%?&13IZ%|CW1TU9evI=MGnS$&Ty@KjCi$(C1K9?w?PT`Rm=c;~Sv-sgY1dH%7d zruiRO-?Gk>&-*rh{LEth;w7`Ow(eI(b7j?CGn!f|z;o}Haiz6W&&_O^FWHcBZn#a| z7P|0CgDTX(i3(lbH4=15aiT-pFMt>Fs(+17;<|LCcn#VpYhKXbrS6s2ct8?^4i4}y z^P+(VwpZE(6w$$_hpuuAO8kiob4=rAT`$ZJ_X03SgIXX2l->d6m;rOlDKlWs2w;vS zWg(cOYt51ef;o~ZL`qrI9$WIm99>(chuZ?AGM!Q3g))*H7cwjD0#ccDZCH{{rIzv* zXv1=bHp8l8MH`kCkm@`j)wBt-iuazAN3mes5;Bcj@n>7{yi%pvWSNrF;gXF>Lj3H| z#v)`n3))S<+}Epvc79q=9m$BdGJ-LP^)qA6JVAW<^Ghqm)Hmw zjk{7sDc6tz_{9&2};o8ufw0^96k>$Jap|Ups+GfPO{+{U+#!7z5GwTVR^s z63Y7KJemlbFtv4?_^j*V(S$Crp-q=aO(ax-)0#n`X0X8#yEVCn4`mCzg@w} z7|$)g**&;_L`;I?lvpLvui?V6@*Xy%F;t*F4hxBMkx)1k7^~{0xnbq;1iKdW0TF^A z4hTJ11iivjNPkHX`@k zZtr4oO{RA1T=C->=i`fo>j{Kz|B z|M-%Tt8Kh?=;|R52sImTH>_FQxZ~!YpNR7tyQcPB+kbWc^z-vI?H_xVY#nxKB zrcQq1Y*=~>FLi$#SNHghvANp4v(~D#DILA-Dw%vK<7&uQ8yF$f>$ehpN?U1QAZH&K zkR*M`I|l~7HWG}=SFG5t5Md-og}t;aouF8gkwH-OrxPLJIEsWglIt96lr25sF)F2` z4}aorB;Vw+=EA#%Vsp*1k+T#nQEq7+XDPmGs5VznS@9C(mO5G4Uf$fu3hx>yD>Y3G z4&qNeWa^AtCW=@Sl8}f50&@sP`c0!ofD4bj^!Jl2Ns@jLG*J#>%ISQWLxUg!c}P5z zYr5Zayx`JMaEMRwZ*U>QAFIq3h(v0M9bmf@nZC*r3ibKhP4PrqoKZ{$gp0|3m%?4=%LQ#Eo+Qz<8d&&iDEa5>zKx2vM#fup!5v771(k zd~88JuNRgYKUGkV{uJcQOl~Q>h+?g847&(~alp&H337M#tq&gSX9Pn@k1r^i^khbrL3 zZ&T_X)tS(~-f`Bou;j zAxX{9YCtzIyK?)TOo-x>kYA^dv>@_{A}eMqORfg#YNsMcMw20F`N$V#YPFMzu%K>X z`m`aRTujY9bPFTWR^RY-DkX5+sSx^5-;A?76mtoU8}dOMmI$uw1W}Zo>@^wxgz6AH z1u+Qn%L_8wOvm;^uS5KUv5mjh@a3jQ% zF_9F=e4vbIRBb5<>e)9O4GxA^j1*~RI(?Kf29GA?3w!HZhmFj}iX?-K{X-9k!BBCP z%$>+nAxXxhsbYCaT1lh9r2EQfKqV0P8yyK!WOe#T_2@etjEADY%y`3fv{l-eSky1g z!iwROG=k#FbtCw?0Oca#r-Nu>2)rMiu=S!}02nr91?bl`!%{2TLlaPho`mv&flram zGvvJ>9^%0$HZyb*>K;YDvr`fL?%uuI2mJ=L!^*Qnc|p(>Jl?lUy%3Oh@4B^5?dx0H z=39F@nH&~7J38q1WF#I)2&X!r>|CpGuyPXt86K=t%6G2X{k|8`;8%CE2lo!Dgcbmr zN*s1e#G(0u;S>jHl^OChlbkm}if_DNh)}r^vVDu3w?NWnlk+ynn-qFgCB0JIfLf*_ z9&Kk-sUQJX>3B!^mG6K|3uG^oi$FF5#F~$Qbflc`s#*_FO;wPFfxI2i5vn*-N!64Q zXX>+4CY-5?xs(}a>N6ny;RcAkWk6VHWk#sg0pVcSvUR6%rhBh-6zftLj4;+?v>Z# zP6uh>Oc$-$@;dxDvtBTN7wy^73jElVpRyX9Ig~T1`5mW3zNzaG?_rexmK%|QS<)jI zqc<2E1eu(%cg(I}X5Whs3}4-Soo91^A0l%_YFwskF^<5LyrGsxJQ(rA6AAl0&=1wyZi(TD+Kx6x&|z8N{wUCdV-L z6*96&3L|8(^V<+c64n)haWO_V96-asJ%Gs)=BcGY{HcdQ&MgycUP;VL0+rR|Je`N! zAm(|6m=9S%(iemZkXpmGkX2`oVh`C+>Im79Izyh219ugMoH#2A6^9CO<_ZE7I%KAL#W@Vw zh$baD^&`0eSRXO1Ew&MO43aFsrVWe-SzPIMmb~g7W>(s01F^1%rxPPEI+2Cnk~TOQ zVU5Ltame7JqdR;d*p!^|i6G@6;|C!f8W{}xM&dAsiU>3gtflbK5SilrP0?5qk@gUs z#po~AKcDYWG?#pts)~AA?>OuL0Bls6ja3K`Q?yP{>9}LEy_N69O&d1I1l$T~6D?>0 z{maC+l4&id5#*$Uoe@%E2RlLKDR)CTjq zvR9c}5n{NmQ9;ny6MHi-oFD_YL|k|smvyL|F0FuizMe%YS7})&KTWWs9a;5ncwl(q<%#jC5_;fC^ZR%mLFXyKT&r2 z30iF=T4FS>t#H9wJ!`F=>Y2ATWv$KyYsIX!Vya|nXx`ew&TD3^HB-;$KdYRzR!%if zo2QfW);3mKE-}tqo0ps%wO$2f#?)h<$SRB#JDv6_+v$zS{ASc@@xw4lxQx4n?@_XP z-w{&Ix9=pXHAN$#P_0eV-9I?^*1_prH$b&+&R91;Otq@rJ%$?}LABmq5;Y)*w(`)s%Fe+(Y7bB|9}Udw zn9lt4Ft1}o^V7z>jyVOrD*;_QBOg{nUK3eO3uJF0{4pgA{xTl$Pv~?C$qFL!Its>0 zSMLC7cDJuAkD+LGV5~7l;sMOCRz_{8>Ent zv{@R$!}z0g_3^4-(`)6gaV8I>R@Q|&&pO09$}?zLFOQi7EhVU^lbHf68l|}*(3>;E zo(`tzGAaLU6s?$rX%vjrt)7Kp2`+TAd7FhxS~ATuc(Ns3#x zGGhr?_B&wu8<0(Zg@1sm%#cBN3Avo@KzHvR$xPq*tYo4tncN#l`2_Be>g$I+S2jT2 z1N0=>o*)E0hL{{%vw9}-*PEmnIe z{Y^;qFcn67DnwMKM<~ueiJIBpI3IWD4D?iUKqgPfLw6`UVjN2)#h>GZwRnO9eOh%W z_41kgYR0>wm5J(93TV`1TVZso?7NpxW863n^T2V-c)_@J+y=}0V$BdOWQL~N5Q2#@ z1T_VJteV`t1|g>CN)pOqhg{FPLZhu2rK$IcB}|W3tK6skrqnv)=6FrYocH}yb1)c9 zYR^{bEcD7GnZ1P^vQN#+Ei0Bcr>&XiMdrmX0L6=PbIa-tVT81)%a&T*?|zLs38j12^< zj#NR&1YxM{lxj?=%pk2NFc7+#hNe@M{{R$}kK47eO4;+td%nxP1~cq&`z!YIDyTp! zbxIG=iW2}O?})3Q#Why*D2PqEkDLic%-bIDoq!b(xc81ZWltZbFb5oiX412 z&1(Jb0;Me#|B|ZB=oH9_y?74E5DA|+2cq&TXX*oL>cOfZ~ zp@JkArrjwJBo~^HK#VM$5`|_uCpty=N0j`K62efDwMz%(s*osBW+q@J5m(M4y}Tq@ z{)bdzBE^R000MJ0A$W>BIdXhBXNiZCFgD29p$?PHvmYUL7T!W*W7Vrcu7do)LHrTH z**PRI*)AfJ?ZG!6n|Cy1i@hYfnu5N+d7|r1v3GLt^>yhkKv`Gur85&}z8y^)m+YL= zHQ6-LIW>4Kay9bC*@e0-vvpf;JU3sr6Xsdz?u+}g&f+DD(Y9uB_fsDm|5<$2xg*^( z*$radG##4RcVpXKE9Wj-EUwQM*G-92rdG$j1rrGjMH@3``Z@X+l zmy3!o4NMG7_0JcsV@7D(=8CsxoZE4wxa@mXQ^je^rw$LgIypFTINg)A7ELx!6j7lI zg;V@g^Hka7nOUbV-E)_)40Bf@3y2{y$(oAJJJu5&HZ(-wbP#I&gr&HMaO0H?TSWNXBAbx**ZNmGjt<#v-|y)k1H}Q$L6Yz z&lUBhjZ7H-9qZ@!L9@FX374&*mk(YWx;m68Zpk=Xeoa_y&9CpT;YwjD#~1EiEc0a= zcFvXU%D8voTH)>oA}z=dT1)oTaUTXeJv{fbI@`Y8#-FV%-nZTOv+ZW&|D5;slo?kL zf<$yPWcYn#^vF;_KL9ycFVd0Xh28nlp;8{8Am-61@WlAM`o zqF4Dv2sA2V3W2Ja1t@H-V#RugcGXeT#ICY%73=59+en7;siQbs)o`u-YWo`<_c&AG zu1U)sH&)KPyFFXieAzK+nha+j-#KZz;=JsfuWg?R&DCzc<=%4FhPp&5 z7F^2374AL-3Js-u0$*8nT7#2_N4qOjsFVxvEX6Ynp(3m~?hIkoRYywaQJFFewINsjcO^SXQWobO zHFv&oSY_8$JZ{lZ-B2xS&Sju+_;JfCmK8LPI{q59lk_Q_A2NdSu^<)zKW=@2o8&L9 zQK%g}m0$@wP^Sdc(R$@P-^yWk`;@!=p0UP9fh%U6LUt#C-Z3{!NZ?A$T-!UyhNTCL zn+<~f#Ce$B#&J?0iw_z5CiI{SIa4wmjgDiR8u21JlI$?Oml5yH z>>niq{NJG}U!{bIU4i)aoQ>L*7}TOYaDt1#8&5hH2$|&yz>PBJxPM8vkh~^WaOAjj zgGGu*kSpm;Bo8Pqv$9XQKrl(d8*$1Vr#s6O0*X{Z7&da##;`Ggkl!ZZlU}NQl9F;t zVwChFfxBHeXG3fN5SVZP2c^mGW!$MMLzV36-bQtmvVI8F&}#Wh!ZZIK3B;&H!~mN> z{-mA1aFtA%G8OAU;nW1uhrm4-ZeJ{KTqs{RTMi$)o8I~ICninztz2o{ROsz}^Chjg z?aJ3Le|`G#x$^asraPtOcigbspE@(=_AjDR^6fJ}YW|7&C+9OQPtBF?&$#!)cdoE# z*=Y9K)3&=H9KA$*)h$*wPH%ame$oP;U#JPX@3_h)lT*)4_szLlGp?;mR)yXI3HHj-{Xv)&7d0AZ+vInWcNbp+NA;% zJP>zaHC!y;_c-^#E=P}-`>?{>vx)oJ86UO zij03z$Rk}r7$SuAsl97*WfB##Qt}x>j zvM702@whP0x}RnI$Rk?^`aL$4`w|*pSrwQ5Sw~9}2)ffe$P6Tsk;$ zaOxYgaOr^X7}Vo}+c)b5L$Gnqy(#1F#C{BHOm|;8G;t_X>A&S{U9xeW9Uv(SJ0y~l zR)ccT%(B&icsXo!Txiy>8ShnGub3;} zl-|Es-#ESP&GF0IZZxO6f8lVE&r|c;=6TnecQ?-@-`ReX|NFb|ls8X@GK5F~GCkhO zzSr&PJ-|g+rH3aDFF1YRrKdeVsCuhv-r2^=6)5|j?Yiv~=cc7fJXu+&Xw z^qi?)Oq&lbscTCTjjC%s?$$FR$}EEHS8M3jVqS=bwI}zG0-C()1_7Q|sii?FzcFaV zEsvrBCAID97zZq(($Gkp*-=ZbG7=4^7?F@=)`=5c%#0D1(-Ipi8J0k?Y*z>iNtGf! zLxgoL8Hh+{hzSz#b;Fqf*2`+iTG2<=BB$bQ%;H6ARc(yfyT~Re@KsRFSztvSK_rAI zMKVAz26BjiT`!67B-0sK2P?0lwlxTWT_O&T3)s()MKA->gD~8Ioib_0qmdyN`$7LQ zigCX@lnR0Lkim#%?C;wXABC{+B;qKHfNWz=Qmlr3^yVi{XrP%{He)Q=Yn~3C3&Y&T z2a_KRyic;4X@fNl95f{@RiiZcjp{4ObHHq&$K=iQ7~7t4KlsMcPjid&F{5eZ@*bOSFt-?m~~WS z9L?F5O%i&Us<`EB1Y&WvJiLKb(b9f&jK~g2Vo!lnQhc}M%tadrXlM07oNdZL&Q!{V zlbyN9x&oeO%x^=lFJvYSko@q>B3K!+SI_`6B3_B6{~n6RYF8~JO{jxyC7!2YB8DD- z(aw3wzUP48&Qj5hZU?@_kC)ri3UAf#AA8vn|k@tTz55Q#hv3?!>@~ zDV&ksL!7MPBE=xX`$lWX6 z&zsBd^}+LJ*K*k*-duU_B}0*URy!l>Rv3c|Ix&pI29@M8n{HX^mTsoHje|bdq=s?ZFa1mJwDx7)03+IKpb2rXm zJE&gw;M}DOm|)pDo0-`QCguZ ztqN75v^rFUv}Ux#Uz4*chG}D``vCS75T}%qO`sGgOa*F+`w_9CEYMz%K_JQf2moAA zEZxX0B`&!h$;7V&g%AXdOv)IwoO6(u?udwUIG4SEnUI1}6(FKtGJ!xs`}j+6gd z5WG7xgwGX(qfpg^L&CqnE%~i$$jV)^uF=d2$TD1$CBsaF(+p79nX)K24Nof*g}S7F zVF#>3GB*^wkhogG@F71UNuR5TIe8C7(o+(Eq0J2Ke9 zJ*xPVJ;ANif)|6aw?|ULdxZZF#W{~M^z_R@+2zawa5+s1e~HVQ)H-Jrg6AdO(_Ol- zM9Do$7;a#wz)GZH5`hkLHcAnk5n8KdszcNAkX;hNnlX>Epj1P^*9p-59V>rNH|NLNECAvVUME<%gspWY5A~|vMAwitw4E19*iPj zlVXO&+KA9{yX z2V-zds|s=2&0XRL;gU3H_$rny;bk4W28r9$eR;cs-aqaAe_RJ|Kyvg4r=~*F-80Q|WgWBbj$5vS8SBBn!jDLA z{sZq5rWH~VT2E|1Uqgn-lP{WTkSmZrG9f!fbyFc#3OX$qqsr$XQc4k-Mt7C$fwZeD zt{An!rG?}-^|E2?6Fx(KFlOJvPp&|e1etyl6FlV1Y_OQdO86KR*sBq}&qzRu$$%U3 z4X9R}p#j~Cd$HWAeUkGKQ8jBP4yL;&TNa%qOlNEU#JPr)j%y(}w7DlunKD1ZWLY;X zT3w{Ln(F(+Dn(q#j{q9+fZxo#(xGBG-;2zy5;PNohO72Aqmfo@AIYRLOYcK^BfO8N zW~y%ivcuZ;Oif_sWX82IW8L`hE>~en73(GT41QN1$GPi#@GPpX_Wtgqb=-MEhdY_` zs>~Yz>u%YwLAJ1`nPJ=<-NJ;_J{Ex#LGC0ka;XvUU?GL!(NH*eiId^v`EWR{av5lu z39q)|7Z_d)EAHr!^q*&;?gkNS4!lm7BBV+o?BdJ z6betadjYZwf>;au@&X!$qR7cY3Cf^&^*abXsI+1aNr4CdlJ-yuu0a^-Dp_#(W?jDN zk~vpP#ws&*cq#QTAxAK7xf_Wbut9%auBbzk2B^{S2s3u5|lDv!t{yH0N zb?60kLH^&e?fwtgbv=C)+FA%k5Rn)%3+SqdD-aqmT@NiFn1^v=4t4P-&Mwo^X+u@) zzhWbcL$Tm&m~}SHJDV87{`@|SH1h_aaF=ke+v<&f!q*#D>=jxmY<^kSdV@I%pys~m&`-km(N2!9g#Lm`RtpA z4D#GPnSbsQaTROACLF$Sg!&MNgFM1SiddkGc0ee{x`kqgF}aMoSW6@9VWPSL_2%d( zVtFeqsbl-lz-Z;=m6bzWjYp}o&{&qth0$_D8vqw zuU)(yc5xk)*z6Ba6y8nRFkej1`1!Fu1;z#yGb&Y(st8|+9mT*guXUJJVs|K`2)quN z1Ly=syMW}t-oX?EK(LV*=b>RTQBz}u>Zs7EhX#REG14HEUK*Pi%UGqTF)M%o>gj=i zrjp9X-++QMq5i7l9U2!LAr?D}0f8eVXMr^XOe2U&lC2yN7DJ9U2oFytfySF6^nVhl z9m^^j0n#U8ib@fQAM)vwi24g-i-17vImC@#{NyaS2ACmmc zrTH{Bgc$4Jw2m7m@>04&v&NX9MxK#OQoHO>hu3^c;);MPIxuQ7Ar=8hZk@#jYm-{VxJo<}8z=Qe zf@m~;iawx1bEsn;4F42a- z1glz8qX({koV&OUoQn$lz`3}`b<%0g76B%Q+&K3N0?cV3Pp(b8DLeAkCRE4{xwZ=I z^42B`IDKtGJM73;TQNeU_=k`#!S8@Ae{uyYk{6ZCCc;PI5Sn3DtRzU%vK@tKXOz z`?z`P8*}wX7D|s~N{=ixa%)=C-Jd{hSqS-bw#G*hV6Pp%dU&RFuI91HeV#p@g7M_*0rlJCjLDx@xAuKv3aCR3J0zoDug4 zwKxGl6JE0E3<%55TZ@r52-Q!}^xfiHY@#q?(q*>v-y4UEqGz=(V*j1z=UO;AptzXn6a~jnW_2{;>9^rujAd z7K>Zviq~eGYqN#rnZl-bpT04MPYARaq+vQCcGCHkyP)}D;z6pQJZoHBNOkprZ22D6$eUL8vT{Q{;MA1RW>Jh!*Rf=F> zCgu!hMtCZk^Ttz94YS5AaX0FyiZtyxD$NAC2eD!ie6bQ2g$7t~*DGgISqh&Fpli%P zi-PSFR9JPWt(jmcPH$xa2Qr>{nkxbhQ!V0XiHB zh^3&9G+>}zh!9gTo*ublX=?--a2?}r9!ZF)O~~-^Q3M&h%~ld(O1L_oFAyLC3K8ri z`LAqvh;9&BB|vz9?}mWR5rac=7(-g+6!VNWjet+xalibZH~>j$(L?Speb|fr&})l1 z<8WeFzth-FIUDqVkr?d^1WJ)u1byvn7qN?DB`e`CD}0tV)_a&? z25Of|Im8JmV17?)X1!~&>kz2>;;m_9I95g?bS+J%aBvlZ*+Dq87s>6CX$_@m0VMs9d-2tTa6x#@?s@R2fn z;J>x;V799Mn*XZ*jrErcZdcV!7ThkcS#Z|OI%}4i@H7}SI7>2)x@>Xfw-2Ky&U!cn z7uG%y30J_cFlPhoCovS|lZ+^VkT&rNm@oekQ3QeVDMD61EkJyN>ks?d$Cu z=-U5m@4nz7fvg=b?V8v%wQttZz+~Q}R$MG= z%rreeSN4^R`zx%le%4h#z44Z-dB*gf^}02)Zd=yZJZbvdg|~f8KcG*}lrH!?XZ@Y? zI}XqJd*^&dZuy?e9DfeF$imwVEliKjgrJwkC&n|@8ur5Zm*D5<7s=Q_mFAre=5Q=i z)2ON*B0ow-RO-2wxj@QbJ<^dcjT_)VrGjnL$!;dI8o0DbFmPN7i!=3ovp_C;$=CLdO^M(PABf*c}Yh)rzMm>kB|fzDyy z^8?q#*drCdpE&Wbqz5Di*iY#SBs!#@QtQ)7S0A=&PpDe}oghh&fN!?pfszqAq`zS> zr(j7*zO1$a z5cgf6=wo;t$;J_Ok|ZXO*iO7W)u2xSXsl!}vw|ZhCKk9C9EgQ!C`EiMk0fYp!wQX9 z1H#id%{dOi2ybMVIqWbJQ?ck{qBXi>g+(8^LamTA(&@Kox03}Rc6$xOS`<=Z*X3Pl zE4KEf)VEUE5-&EV1P3w>AM+({pDk}s?_aXmY@Lf`Fm}GycC~HBdb4uAtSkK#u%Ej; zUG(|=63$ce<_j4Y$om3YCtRt^tK_Pq^JUv7p1SQSOBXGb;MxO`IJ$pavB$-I;99e1 zyYYi8q{u=Md2qDCu?ZyB<^<_I%sn2Yj zHvm?s7F1{Kt9!-5P3D0g`B0P=rhSNyVE@0(e-|*|H)x-v+N%zI3xG>1@&ha~l5X*0 zTM`B>(t)xKu-VWAea3uN{V8LGO3mT_TYHjLsGVa6SyPmc+oS58!rEsBG%7N-ju# zkqHRhKq{+EQq%MvP(YAC50M^N2h{7rbC{!E#0l2G36VPjX(ok#gM@-RptDkdn_@Yt zO*fORNnnQdX|DX3+~rl>%o$_ishknPH;L{Rg}vBQicOA18Z7C_AEA|%MmfwQP^Sf< ze%~P2^j}aFu!$KhjDKr>;m(~Z!Nqd$z!ZR&bIcx%&B_hC)922r1)Z$;dY!T_CKRNXGFLzgWFyp}K9hx^1TKy_c@Pw9x+KZ2Ob%SIo6PJzM?k$3sXmrOz&v znr%-kmeehjG|!gca}7Uu;jI^DOSa!wg9Kp_KELnfDq8PxW=|!8E_f>!%h!;20*zN~ zywULEmLIm<^!%CkPrdK+e_{T>JXh6|DeYnMil_Krqi=3R&t?w=|{&(pc^mj z(7{es0U>{Pb3N!D#3{(zk}5+4ag9%;hI~FP_ zQY6cM1Yo_+G7YAFYp7e6zB3g+3nS5Rlo^QvJHCLXh1-+_kN~YR3Cv$0pDV)FBHeQc z-xH=U6PwwOa0p8{XG9Qwk?@bSbs0-29Kn^bB9*ve)n{qNhEb8x&WLqebGc^0(=h94 zm|ipI@uw}fE34B*zi@aKOV>=Fn=1{Z_kqW|2hj-}gR*5+S599(JvH)r;#S!<$-n4E z%RBY>qSKnz$)YLomb+=mjH<*q)@7`KWs|BYm{!ag)D*(i3>X#*0OK+P3V*rI_jncocnWiX@d z6|}10rG8bayKA-C&A+FO_MgxqHkyU2s!10u(&u-soV|SZZN%#FFWHTSo$w;QR(-X4 zp>q9f<@%YY<|?;bCMRrcvllPF2&tn3L2VX_8)u6f=N;>&kALD=hw!coB~7y>O_}26 z=_5CKZfv{R`F`jxPJeLv{r-&m=w0}RR-=U?4>=(>&z3gN7q(7|pA@!!$&E{NBRsgB zRS=*~_1@^4XP#{TBeWxq`J$g;!k3w{;eeDIi7?;kbbt2D;3?6GhZ z4iZ?k1g}A-KygZh6PQ1I>q2Jah9Nn}cZNx^%PcBonIHwQB5NX*l#xB+s3nTuj8AM4 zX9Yeicpjvd6un^O=MWkD1>_Mt1@cHo(6#oG2-0_4iytl7Gk|l8hfyCL(>(C-;VXoo zh(LuJXjS`?a{|ZEn~}ppycZ-7>31YW(SN6$&cIuE7AsqC-z`uL9U@^S^8b_8_byz( z`bIPWojv#diT#&)Cwk|dHFwJ43QhW(nL4o#-Q(m9^1^567+ z+`Me`p&q_=LN~k3wQ@z|mYP{vlet_jL+;+we7*UJB@7T%FEZE3myo;Xt2Xag?sS-? zh|+9a{Kq8sI1-8FiWK347@+WyIh%T(Geiv#@Hhe>ci(rXf~ zmvop_`EHcHw<&$AvnGFqXc$aDl6|=|SCOyENHP)?9Mpdoz61iP3%+kNK!u_dBaRqW zDFB>{Dp@E#N-!x9?BE>o(mQ@NvK#E@GEGjK9VrbYGz6GYIAqH9cMhV45l6-_} zkweTlmGP3ax%G72M@a)Ejg&M|f_Pz^&`i0tlxv|J2~SwWap`l8vZI(NtVKBm$)k@% zi~v_Mza<1_Wv}O_n_4LW0WI@iOfyJysn9{m21+(kvI$Af%#85x<|e&y!) zF8=3S%g;Hqu>R+q54R)pnZZFdlw`@rneD%S@YRD^lWpbCf~jWKRD)tEv*fT88!i-q zk*uo8aAjFsSe literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e57197f6c42eaa40859f5e7052f864a15d5f3dda GIT binary patch literal 806 zcmZuvO;6NN6n(EPQ|tgDA7M1X07fGV`l5hwLD&oeIzmh|Aq>K#Os`C#)7HK>;LHl+ zW=u%b6*~hfHSE=&;K#xa6O-||bmfkZ-K>0-X~KfHXwNjUv%SzI7s2Cti`|TxVFn zag$Js!BDgl5gU`nCm_+rB#AI4C7*X!hV>P@P8zV8UhO-r~e*WztK z$H0DkU?=;|*>!@^J746=XzJ&+`?cP_-Oin*YX3;kKN|GjD$mwt9{gDNx)97iuFNc! fldn=QQ$gbP=kZG7?taU?Lp5|fjE7PDP7(1Rt(@Gk literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ddd4d106dae1b3508d3427b20249042d5f362e88 GIT binary patch literal 27791 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 WF}0@4H$3Jj@#t*1+f>B>?0*Af@m+%e literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b91faa84107ad5ce387617328b4e6b6075e59c32 GIT binary patch literal 5993 zcmZ`+YjhmNmF}LGG^4TJvMqz`#xGfpH6u&*LNMz9mW_z9Y_NFwL8~=YBb7DNJ#_a- z9w8@A;v^z*5{Lndm;@&$4+!KWzw#&flkEQ3O?DH!kh7dV{Mf_(iT<^1k|o}=kFV;^ zj084w&V1e9y|=1v-CK35`uD3=r8NB7fB8G{^;S*$Pf2ROSoP)l`?{uG)R<;zOlOgT zUW^=z=$g=2l*KOSEY1?Z2G$5nvJ|k1rGcwhGq8oV0^3+Su!D61yVz>r8nzbL&DH^L zW48l)*m~dwW&rPC8-bhH<_kK;*}}Gh^|EciKDHhBDYgUH&oaO)8vyQPgTNuS3%Hy8 z9q>+e7x2^UZr~nv5Ag5VUf^fgy} zfrr@<;KS?@;88XPe3U%~e4IT2e3Bgl9%mNoF3@8>u*_zFv+Ojm!sdX_uzBDa_Br6^*;(Kh*cX9cV&{NgW?un* zl`R0DWnYsc9g9XZ9${a9^ZXmgqWm3;v2UEyj>RF5zd<5R*DBxa`m(U_38u?irR*v`QsmPa1jGDH=JaSafW|wu;c@9oHBc8#`inzU7xa z?xlRk@Ta(N4ZB?AuE<#hv_QW*3@ex8o+l;>+~5K>u3@2b-*?4C*+*aK3IZl_zHn^I zt)zs{i(V#`+JD+AmJ0mtyHhCxzrB0+8lqToT;Fi{(`D}YUR_=jWYn0)d(i_7(V6LT zCR|Lb_oOl&8o2Wl8fAQLl^kDbckR6E6ReK+o^Z0&z6J*dQmLa(k<(0#DQkus#d5(H z@R|aJ+1t#RaQrEwTq<$5U-5!7i`Sgxabt$N9;S^b-n4lC&~&%5?)X$)uL#qUqCv)I*Ll zT`mnHAxn%zjXB5mgC!(*(}p18Ob0PJp&)_zm|%_cghahfIu4tQ zA~EGCTDlXG>8Rh zwR%k2R6$E^E!6}~%W4rce?%*m-Xfn`tpeuE79f>MA}&y~BueCjV2s=11!|L&p-@qqi}oXsFOs;u$g%vGDYex-A2h8X;w9>^ zS;^G;wNOjNMJbL3Jt~fB4Z|PQUAaJ)-AXO1gU;pmWmB<8ZnV^Ppf8HtDf>Y~^+mi) zHx%eI#bkz*%H9~1$mD*^qx@>zWv1-YiMP$k{{Yr@kZ8yn-)UsM!rq&y( zePi9bmOaT;Hax`A%L^IppcbB*LC|$eJMn$;wVj_X;n1OE(5%G|Xs9OaL-?i+n;=nr zt`erTEEYeaUOI}xqti`_*vB@c@m)9$g)L8d(c=DiJz0rnkm#Z?wY711?DZUkD&GA67g$l zfo+8TV#S)=hTeoLCo6BI0SLaJ@%%z7rOG~!#W+b)i} zpzS7+_y=m=gK{y0Wv;S<8ekUqBwC^-dvGII^${wr%SL+8l`9C0VCD)ADs(Ld;sdFT z1zk8cxoe{rkGr@qnA~+8H%PB!bJ47GqI&#Y6n~*^TV%<=m8rmGt-=EME6G)@o5aC5 zYgNR5Nm(T5kiFp;Fjx2=G_4@w!)mA1hGwlk{Ea$TH|6^!vwEMQ{ZreIL3*W5+@Oxu z%vi3lFl(#eIi}4g9h{B05Q_gMeW$>V&gVr=g~s!7pF=VD9~y1#1a3RCf}!LTL{a!A zKb_+oH}4=>*NFe6j?@{%Pve+|Ui_aFMuQDD_h%h<`V%W>dZhs_3b!;z64V74TLgDq zWHKi2$2qL*`mX_R@>+8Jvl#fR(Tkd2SDljbkNs-b^kMDfsHUC3E&YskMxWQghw&cq zKwbZoB&xL4SXR&jQep^kp9Fv-t!&+_Rnnd{|YNb}0z%4lLBee9J*Shg?^MGe`7M<7T z^?YOwp+1VOI64>EVSHpb`Qbc-|MhKvgZQ|*sLg99@u7{zXnG0WemDA(eo@!8^XZsY z(SH`5)%zlIk@4}-*X6#8WCjA=_M|h0apPQe3f~i1e~uS%x1Msc4+wvxJdxe^2{ef;)vhl-W6$_3$~>U$S!3*gamh zBuZIqQq(m!TPwBMm1{Uts@zE4Gs$h7VD8?zEx0lXKXVU?BDU$?40CeJq;6J*_ug8- zpS2IqYX8=~=e4%Q`xl>H%w2AOW&4%xJ%96LoW9uFuFo}YH@2|5jV&JL9y^6Ef*?`d zJm7K{1#$I>S&fMMEi??G7@60@%jK~wRc-PFD9Q)Vz4*!zZiSH@J{!hw_Eot z#NTb{UL3o;d-2efmcF+d`>w-SyP>CUox}{3FY5I)Vqu@rBigf(`TFLmrm`8S)Kn_< zQTIGr^+nxp;Nf17@FKvI`_VAYstLHyfy}M_*aYg~lPlZn0(?mE+c@%z&hHOh_J8u} zD;q~Bc3*1m()*I`w_y~-)dzCWfDaA%86Ct`@d;8$qwC9yG|n{jwHY*+CL(8=?(?!; z!c(`SzL@e7cMstgxEI9Llbn`mG7RHh3VU2R?EV14BL3bB0Oa?*wd-F^zns3*d`*kR zcRib4h%Myb?Yixn7ESJ2*#BO-KJ&hbgx1`CwE=JLOK@zoFX4UfNhA^o}ib#_pX=S%FT%}mEVk2RTVy)8f_OMNnc1e1| z4n;bZ-Ei2Y*lMZT5Ux>Vtx|0YyA@lfSZ{cnVz(=HDC|*ey<+Rb4T>3H80-#3Hdj?! z6x*s;_G+(U+oa*TuuqZgO0^;Ulwvy+TNm~#mXU_*!>l3$Rn<<#1{M2EIHcGvuuzMo z65(#e@70xhLwKLA`2ED!h5LvP6WJE4O#Bha7kaK8B|4^PclapL$H=-Te4O|b#0SDBi60}rH9SuI1o2Jb zN#aitKMCzc*5K_r3^aug3QgA0~bv+)w-f z@jc-K#7Bs43Lhl?5b^uML&Qgk_k@RuA0gfyK1}=(;@R*h@v)lyqr@L0erNbN@h6CH z37;f>jQGazIB{IEWcUZelf<7QzAiM0j}w3Fs-^hZ#MOL6OLi(Q@J3n6A z3ysoVY0u8g{X0M3{qDK<&#kRd0m_!&{>jM11mW-a;upz#SUC+3^MWp<1)b=kNpfOZ zB!V8&!)7QKPKR?+S|WldJSXVVte{7zbTj1kO-K0GCip7Trr@hwYVL}bUyL&PT9Mk0 zowOZR%sNFz?dT6SmS}WPb2MeOk>X5fj#99uC{tec$B2H6b9Rwh>_w(iM)g4>>wHY` zn^S=!k zNA)XNsOd3QtCUPehuTc0$22CXVvU}oStl8dDo{@53MS3bykjexX(~DDOjtTR=XJ#@ zP^LMCmA4gZj5p3?)|#8iD4MNIQRoQ&I7h;U$+A|Vl*uHOe$%#izXG$)8#={06TPe& z4$axn#MPl6`cKjl%*v=jUoU`mR975J8KoE{@Uxv%Mke@+8&`#a&bd*_Y=|A@bD+_n zC%!ADW;-~dKL&NWxkZ@_Ow2mLHIA0g(ymOV+p`O&@5Fadkt;*eA3~{%;4{y-p2CP_ z4PALwX%PL+EIBtb8QHHU&}P6}56x#S9qdh<1sHJ$ zG74)pA4K%LW)^u!HRzrg@VXuIyFo8l;01suRoub5;lsGbbd%byM*$8K))a??+d|1} zIjT$nSS@CZ8+m|y2_R;{^7hw*iy%vYV>qhjdt;jB+5 z$STOCz^{VGr4G^(FE_paX+aIXO_LeX5H1i=m=?~3y#{rE(`1Yo!nF8H@?%1Tl5m3z zcZC>IZY`p6=hPyu{avA2*rw)KEezh!YLUq)jg8wjHU$;Gcr!I&pRFhTJ$QzETmLF}fM3R1OC#Y+Alf$+`NTUX35CK6oz)40p~OBEzuOB#sV~lrVI#g3B`|FKzZn)ZcnW*FhTVy`U3z2gjfJPK z9lCPp>fuT}ah+7+dza+B4>0T*=nwJx3Wh!F$BkRVb~G?Ur@#~siciqs0QN?&%m{Z{ zHeVW=8(IimYrfKaHCAca<*FYnX=oM1We{EVfBP#fO&Up$9~%8#>Mlt3(ZOt0#1*#d6aNz!{egAkz$)G|xGKVHoPwZc1mp)&LMA$N{(?9s&Svst4e-s0+v|W1YG$P=v5!|6!(p1R~uD ze>Is;hlq@T06?svQ??7*l%H(mP2SJVS{op-ANtu}1K}ZYq_Vf~`oZ^Kxx9Vhz~as; zhi+}&U5Sr)kZj);KvLp9*$~)R-E56ny{^GGac&ote~XX&KK#enA7ZzUzEnB-QuXMW zTk(-4d1NE?Vfw&1{XKYCgG%BAsJ!Vtu@=Way1^#rBlH5vN1O)~I%FwuB4LOgKm*@NB@2!R zY|T~^QC0dHtfC!_;_lWBzz8-9SVXa{m+8;Gb1Sy{ZhPXoRBcbr9s8(l=TghgkK%2Y z2XD9UsH&}@eF3E!%mmR{C2jc`htO-U#iZ~Yp z1Dbnfy>op>g}7f_`q&L^H$W|nN44_yMy6xUDd^*Y>u&ss#ok{X{>9Eelx8!rSi!qrCho)tb7 zw@dO$Z&=#3+!B)ZFGq>AZ#hDw-6&2Gl*)2Ml)g=t<%o2QEN>ywp%wU=a0kZWvhWLv zABPoGz^+X7+8zg>70oN07O+nI47lqeJT84C?sTMtDS(C*A z-aM2aMhSNX8Y?L#|Los0G|nc`7e669Z5Gr(vsLz)gH-xQz$reo@nGVH1kNDn_L^iD z;evv@+)I?%01Q-XR@E$A0N9WlqoIm2=!ZlrwUk-?M z8oG#0`x=6R5A9g!#q4%r-{Q+l@y;c=)73EGZD<=%3g$@nOKltFh0}0D<@3I`>~4s- z1dvGq_8~~RH>9~7>*Z~0JR2nEXHj)r4E)rwx&6|GxeK@BN+qr=wk_(__`W51pKAcR z)Gz;o0n_3-0~qqEj}Sa*)SBRAtrbmY?e70PRFyZ?SphbT!Z#Ze3~)RgE$Ve2uf~&0 za?)L5cy{Y*X1HG2vnYs2uUm? V?+N&S@07Tiq%OCACcqyb?mtcs9Vq|+ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2523272f8049fb650a81aca29ac9acd7f788efa GIT binary patch literal 36109 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py new file mode 100644 index 000000000..5063c3f8e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py @@ -0,0 +1,14 @@ +# .-. .-. .-. . . .-. .-. .-. .-. +# |( |- |.| | | |- `-. | `-. +# ' ' `-' `-`.`-' `-' `-' ' `-' + +__title__ = "requests" +__description__ = "Python HTTP for Humans." +__url__ = "https://requests.readthedocs.io" +__version__ = "2.31.0" +__build__ = 0x023100 +__author__ = "Kenneth Reitz" +__author_email__ = "me@kennethreitz.org" +__license__ = "Apache 2.0" +__copyright__ = "Copyright Kenneth Reitz" +__cake__ = "\u2728 \U0001f370 \u2728" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py new file mode 100644 index 000000000..f2cf635e2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py @@ -0,0 +1,50 @@ +""" +requests._internal_utils +~~~~~~~~~~~~~~ + +Provides utility functions that are consumed internally by Requests +which depend on extremely few external helpers (such as compat) +""" +import re + +from .compat import builtin_str + +_VALID_HEADER_NAME_RE_BYTE = re.compile(rb"^[^:\s][^:\r\n]*$") +_VALID_HEADER_NAME_RE_STR = re.compile(r"^[^:\s][^:\r\n]*$") +_VALID_HEADER_VALUE_RE_BYTE = re.compile(rb"^\S[^\r\n]*$|^$") +_VALID_HEADER_VALUE_RE_STR = re.compile(r"^\S[^\r\n]*$|^$") + +_HEADER_VALIDATORS_STR = (_VALID_HEADER_NAME_RE_STR, _VALID_HEADER_VALUE_RE_STR) +_HEADER_VALIDATORS_BYTE = (_VALID_HEADER_NAME_RE_BYTE, _VALID_HEADER_VALUE_RE_BYTE) +HEADER_VALIDATORS = { + bytes: _HEADER_VALIDATORS_BYTE, + str: _HEADER_VALIDATORS_STR, +} + + +def to_native_string(string, encoding="ascii"): + """Given a string object, regardless of type, returns a representation of + that string in the native string type, encoding and decoding where + necessary. This assumes ASCII unless told otherwise. + """ + if isinstance(string, builtin_str): + out = string + else: + out = string.decode(encoding) + + return out + + +def unicode_is_ascii(u_string): + """Determine if unicode string only contains ASCII characters. + + :param str u_string: unicode string to check. Must be unicode + and not Python 2 `str`. + :rtype: bool + """ + assert isinstance(u_string, str) + try: + u_string.encode("ascii") + return True + except UnicodeEncodeError: + return False diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py new file mode 100644 index 000000000..10c176790 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py @@ -0,0 +1,538 @@ +""" +requests.adapters +~~~~~~~~~~~~~~~~~ + +This module contains the transport adapters that Requests uses to define +and maintain connections. +""" + +import os.path +import socket # noqa: F401 + +from pip._vendor.urllib3.exceptions import ClosedPoolError, ConnectTimeoutError +from pip._vendor.urllib3.exceptions import HTTPError as _HTTPError +from pip._vendor.urllib3.exceptions import InvalidHeader as _InvalidHeader +from pip._vendor.urllib3.exceptions import ( + LocationValueError, + MaxRetryError, + NewConnectionError, + ProtocolError, +) +from pip._vendor.urllib3.exceptions import ProxyError as _ProxyError +from pip._vendor.urllib3.exceptions import ReadTimeoutError, ResponseError +from pip._vendor.urllib3.exceptions import SSLError as _SSLError +from pip._vendor.urllib3.poolmanager import PoolManager, proxy_from_url +from pip._vendor.urllib3.util import Timeout as TimeoutSauce +from pip._vendor.urllib3.util import parse_url +from pip._vendor.urllib3.util.retry import Retry + +from .auth import _basic_auth_str +from .compat import basestring, urlparse +from .cookies import extract_cookies_to_jar +from .exceptions import ( + ConnectionError, + ConnectTimeout, + InvalidHeader, + InvalidProxyURL, + InvalidSchema, + InvalidURL, + ProxyError, + ReadTimeout, + RetryError, + SSLError, +) +from .models import Response +from .structures import CaseInsensitiveDict +from .utils import ( + DEFAULT_CA_BUNDLE_PATH, + extract_zipped_paths, + get_auth_from_url, + get_encoding_from_headers, + prepend_scheme_if_needed, + select_proxy, + urldefragauth, +) + +try: + from pip._vendor.urllib3.contrib.socks import SOCKSProxyManager +except ImportError: + + def SOCKSProxyManager(*args, **kwargs): + raise InvalidSchema("Missing dependencies for SOCKS support.") + + +DEFAULT_POOLBLOCK = False +DEFAULT_POOLSIZE = 10 +DEFAULT_RETRIES = 0 +DEFAULT_POOL_TIMEOUT = None + + +class BaseAdapter: + """The Base Transport Adapter""" + + def __init__(self): + super().__init__() + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + """ + raise NotImplementedError + + def close(self): + """Cleans up adapter specific items.""" + raise NotImplementedError + + +class HTTPAdapter(BaseAdapter): + """The built-in HTTP Adapter for urllib3. + + Provides a general-case interface for Requests sessions to contact HTTP and + HTTPS urls by implementing the Transport Adapter interface. This class will + usually be created by the :class:`Session ` class under the + covers. + + :param pool_connections: The number of urllib3 connection pools to cache. + :param pool_maxsize: The maximum number of connections to save in the pool. + :param max_retries: The maximum number of retries each connection + should attempt. Note, this applies only to failed DNS lookups, socket + connections and connection timeouts, never to requests where data has + made it to the server. By default, Requests does not retry failed + connections. If you need granular control over the conditions under + which we retry a request, import urllib3's ``Retry`` class and pass + that instead. + :param pool_block: Whether the connection pool should block for connections. + + Usage:: + + >>> import requests + >>> s = requests.Session() + >>> a = requests.adapters.HTTPAdapter(max_retries=3) + >>> s.mount('http://', a) + """ + + __attrs__ = [ + "max_retries", + "config", + "_pool_connections", + "_pool_maxsize", + "_pool_block", + ] + + def __init__( + self, + pool_connections=DEFAULT_POOLSIZE, + pool_maxsize=DEFAULT_POOLSIZE, + max_retries=DEFAULT_RETRIES, + pool_block=DEFAULT_POOLBLOCK, + ): + if max_retries == DEFAULT_RETRIES: + self.max_retries = Retry(0, read=False) + else: + self.max_retries = Retry.from_int(max_retries) + self.config = {} + self.proxy_manager = {} + + super().__init__() + + self._pool_connections = pool_connections + self._pool_maxsize = pool_maxsize + self._pool_block = pool_block + + self.init_poolmanager(pool_connections, pool_maxsize, block=pool_block) + + def __getstate__(self): + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + # Can't handle by adding 'proxy_manager' to self.__attrs__ because + # self.poolmanager uses a lambda function, which isn't pickleable. + self.proxy_manager = {} + self.config = {} + + for attr, value in state.items(): + setattr(self, attr, value) + + self.init_poolmanager( + self._pool_connections, self._pool_maxsize, block=self._pool_block + ) + + def init_poolmanager( + self, connections, maxsize, block=DEFAULT_POOLBLOCK, **pool_kwargs + ): + """Initializes a urllib3 PoolManager. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param connections: The number of urllib3 connection pools to cache. + :param maxsize: The maximum number of connections to save in the pool. + :param block: Block when no free connections are available. + :param pool_kwargs: Extra keyword arguments used to initialize the Pool Manager. + """ + # save these values for pickling + self._pool_connections = connections + self._pool_maxsize = maxsize + self._pool_block = block + + self.poolmanager = PoolManager( + num_pools=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + def proxy_manager_for(self, proxy, **proxy_kwargs): + """Return urllib3 ProxyManager for the given proxy. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The proxy to return a urllib3 ProxyManager for. + :param proxy_kwargs: Extra keyword arguments used to configure the Proxy Manager. + :returns: ProxyManager + :rtype: urllib3.ProxyManager + """ + if proxy in self.proxy_manager: + manager = self.proxy_manager[proxy] + elif proxy.lower().startswith("socks"): + username, password = get_auth_from_url(proxy) + manager = self.proxy_manager[proxy] = SOCKSProxyManager( + proxy, + username=username, + password=password, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + else: + proxy_headers = self.proxy_headers(proxy) + manager = self.proxy_manager[proxy] = proxy_from_url( + proxy, + proxy_headers=proxy_headers, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + + return manager + + def cert_verify(self, conn, url, verify, cert): + """Verify a SSL certificate. This method should not be called from user + code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param conn: The urllib3 connection object associated with the cert. + :param url: The requested URL. + :param verify: Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: The SSL certificate to verify. + """ + if url.lower().startswith("https") and verify: + + cert_loc = None + + # Allow self-specified cert location. + if verify is not True: + cert_loc = verify + + if not cert_loc: + cert_loc = extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH) + + if not cert_loc or not os.path.exists(cert_loc): + raise OSError( + f"Could not find a suitable TLS CA certificate bundle, " + f"invalid path: {cert_loc}" + ) + + conn.cert_reqs = "CERT_REQUIRED" + + if not os.path.isdir(cert_loc): + conn.ca_certs = cert_loc + else: + conn.ca_cert_dir = cert_loc + else: + conn.cert_reqs = "CERT_NONE" + conn.ca_certs = None + conn.ca_cert_dir = None + + if cert: + if not isinstance(cert, basestring): + conn.cert_file = cert[0] + conn.key_file = cert[1] + else: + conn.cert_file = cert + conn.key_file = None + if conn.cert_file and not os.path.exists(conn.cert_file): + raise OSError( + f"Could not find the TLS certificate file, " + f"invalid path: {conn.cert_file}" + ) + if conn.key_file and not os.path.exists(conn.key_file): + raise OSError( + f"Could not find the TLS key file, invalid path: {conn.key_file}" + ) + + def build_response(self, req, resp): + """Builds a :class:`Response ` object from a urllib3 + response. This should not be called from user code, and is only exposed + for use when subclassing the + :class:`HTTPAdapter ` + + :param req: The :class:`PreparedRequest ` used to generate the response. + :param resp: The urllib3 response object. + :rtype: requests.Response + """ + response = Response() + + # Fallback to None if there's no status_code, for whatever reason. + response.status_code = getattr(resp, "status", None) + + # Make headers case-insensitive. + response.headers = CaseInsensitiveDict(getattr(resp, "headers", {})) + + # Set encoding. + response.encoding = get_encoding_from_headers(response.headers) + response.raw = resp + response.reason = response.raw.reason + + if isinstance(req.url, bytes): + response.url = req.url.decode("utf-8") + else: + response.url = req.url + + # Add new cookies from the server. + extract_cookies_to_jar(response.cookies, req, resp) + + # Give the Response some context. + response.request = req + response.connection = self + + return response + + def get_connection(self, url, proxies=None): + """Returns a urllib3 connection for the given URL. This should not be + called from user code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param url: The URL to connect to. + :param proxies: (optional) A Requests-style dictionary of proxies used on this request. + :rtype: urllib3.ConnectionPool + """ + proxy = select_proxy(url, proxies) + + if proxy: + proxy = prepend_scheme_if_needed(proxy, "http") + proxy_url = parse_url(proxy) + if not proxy_url.host: + raise InvalidProxyURL( + "Please check proxy URL. It is malformed " + "and could be missing the host." + ) + proxy_manager = self.proxy_manager_for(proxy) + conn = proxy_manager.connection_from_url(url) + else: + # Only scheme should be lower case + parsed = urlparse(url) + url = parsed.geturl() + conn = self.poolmanager.connection_from_url(url) + + return conn + + def close(self): + """Disposes of any internal state. + + Currently, this closes the PoolManager and any active ProxyManager, + which closes any pooled connections. + """ + self.poolmanager.clear() + for proxy in self.proxy_manager.values(): + proxy.clear() + + def request_url(self, request, proxies): + """Obtain the url to use when making the final request. + + If the message is being sent through a HTTP proxy, the full URL has to + be used. Otherwise, we should only use the path portion of the URL. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` being sent. + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs. + :rtype: str + """ + proxy = select_proxy(request.url, proxies) + scheme = urlparse(request.url).scheme + + is_proxied_http_request = proxy and scheme != "https" + using_socks_proxy = False + if proxy: + proxy_scheme = urlparse(proxy).scheme.lower() + using_socks_proxy = proxy_scheme.startswith("socks") + + url = request.path_url + if is_proxied_http_request and not using_socks_proxy: + url = urldefragauth(request.url) + + return url + + def add_headers(self, request, **kwargs): + """Add any headers needed by the connection. As of v2.0 this does + nothing by default, but is left for overriding by users that subclass + the :class:`HTTPAdapter `. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` to add headers to. + :param kwargs: The keyword arguments from the call to send(). + """ + pass + + def proxy_headers(self, proxy): + """Returns a dictionary of the headers to add to any request sent + through a proxy. This works with urllib3 magic to ensure that they are + correctly sent to the proxy, rather than in a tunnelled request if + CONNECT is being used. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The url of the proxy being used for this request. + :rtype: dict + """ + headers = {} + username, password = get_auth_from_url(proxy) + + if username: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return headers + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple or urllib3 Timeout object + :param verify: (optional) Either a boolean, in which case it controls whether + we verify the server's TLS certificate, or a string, in which case it + must be a path to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + :rtype: requests.Response + """ + + try: + conn = self.get_connection(request.url, proxies) + except LocationValueError as e: + raise InvalidURL(e, request=request) + + self.cert_verify(conn, request.url, verify, cert) + url = self.request_url(request, proxies) + self.add_headers( + request, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + ) + + chunked = not (request.body is None or "Content-Length" in request.headers) + + if isinstance(timeout, tuple): + try: + connect, read = timeout + timeout = TimeoutSauce(connect=connect, read=read) + except ValueError: + raise ValueError( + f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " + f"or a single float to set both timeouts to the same value." + ) + elif isinstance(timeout, TimeoutSauce): + pass + else: + timeout = TimeoutSauce(connect=timeout, read=timeout) + + try: + resp = conn.urlopen( + method=request.method, + url=url, + body=request.body, + headers=request.headers, + redirect=False, + assert_same_host=False, + preload_content=False, + decode_content=False, + retries=self.max_retries, + timeout=timeout, + chunked=chunked, + ) + + except (ProtocolError, OSError) as err: + raise ConnectionError(err, request=request) + + except MaxRetryError as e: + if isinstance(e.reason, ConnectTimeoutError): + # TODO: Remove this in 3.0.0: see #2811 + if not isinstance(e.reason, NewConnectionError): + raise ConnectTimeout(e, request=request) + + if isinstance(e.reason, ResponseError): + raise RetryError(e, request=request) + + if isinstance(e.reason, _ProxyError): + raise ProxyError(e, request=request) + + if isinstance(e.reason, _SSLError): + # This branch is for urllib3 v1.22 and later. + raise SSLError(e, request=request) + + raise ConnectionError(e, request=request) + + except ClosedPoolError as e: + raise ConnectionError(e, request=request) + + except _ProxyError as e: + raise ProxyError(e) + + except (_SSLError, _HTTPError) as e: + if isinstance(e, _SSLError): + # This branch is for urllib3 versions earlier than v1.22 + raise SSLError(e, request=request) + elif isinstance(e, ReadTimeoutError): + raise ReadTimeout(e, request=request) + elif isinstance(e, _InvalidHeader): + raise InvalidHeader(e, request=request) + else: + raise + + return self.build_response(request, resp) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py new file mode 100644 index 000000000..cd0b3eeac --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py @@ -0,0 +1,157 @@ +""" +requests.api +~~~~~~~~~~~~ + +This module implements the Requests API. + +:copyright: (c) 2012 by Kenneth Reitz. +:license: Apache2, see LICENSE for more details. +""" + +from . import sessions + + +def request(method, url, **kwargs): + """Constructs and sends a :class:`Request `. + + :param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`. + :param files: (optional) Dictionary of ``'name': file-like-objects`` (or ``{'name': file-tuple}``) for multipart encoding upload. + ``file-tuple`` can be a 2-tuple ``('filename', fileobj)``, 3-tuple ``('filename', fileobj, 'content_type')`` + or a 4-tuple ``('filename', fileobj, 'content_type', custom_headers)``, where ``'content-type'`` is a string + defining the content type of the given file and ``custom_headers`` a dict-like object containing additional headers + to add for the file. + :param auth: (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How many seconds to wait for the server to send data + before giving up, as a float, or a :ref:`(connect timeout, read + timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. + :param stream: (optional) if ``False``, the response content will be immediately downloaded. + :param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. + :return: :class:`Response ` object + :rtype: requests.Response + + Usage:: + + >>> import requests + >>> req = requests.request('GET', 'https://httpbin.org/get') + >>> req + + """ + + # By using the 'with' statement we are sure the session is closed, thus we + # avoid leaving sockets open which can trigger a ResourceWarning in some + # cases, and look like a memory leak in others. + with sessions.Session() as session: + return session.request(method=method, url=url, **kwargs) + + +def get(url, params=None, **kwargs): + r"""Sends a GET request. + + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("get", url, params=params, **kwargs) + + +def options(url, **kwargs): + r"""Sends an OPTIONS request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("options", url, **kwargs) + + +def head(url, **kwargs): + r"""Sends a HEAD request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. If + `allow_redirects` is not provided, it will be set to `False` (as + opposed to the default :meth:`request` behavior). + :return: :class:`Response ` object + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return request("head", url, **kwargs) + + +def post(url, data=None, json=None, **kwargs): + r"""Sends a POST request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("post", url, data=data, json=json, **kwargs) + + +def put(url, data=None, **kwargs): + r"""Sends a PUT request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("put", url, data=data, **kwargs) + + +def patch(url, data=None, **kwargs): + r"""Sends a PATCH request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("patch", url, data=data, **kwargs) + + +def delete(url, **kwargs): + r"""Sends a DELETE request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("delete", url, **kwargs) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py new file mode 100644 index 000000000..9733686dd --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py @@ -0,0 +1,315 @@ +""" +requests.auth +~~~~~~~~~~~~~ + +This module contains the authentication handlers for Requests. +""" + +import hashlib +import os +import re +import threading +import time +import warnings +from base64 import b64encode + +from ._internal_utils import to_native_string +from .compat import basestring, str, urlparse +from .cookies import extract_cookies_to_jar +from .utils import parse_dict_header + +CONTENT_TYPE_FORM_URLENCODED = "application/x-www-form-urlencoded" +CONTENT_TYPE_MULTI_PART = "multipart/form-data" + + +def _basic_auth_str(username, password): + """Returns a Basic Auth string.""" + + # "I want us to put a big-ol' comment on top of it that + # says that this behaviour is dumb but we need to preserve + # it because people are relying on it." + # - Lukasa + # + # These are here solely to maintain backwards compatibility + # for things like ints. This will be removed in 3.0.0. + if not isinstance(username, basestring): + warnings.warn( + "Non-string usernames will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(username), + category=DeprecationWarning, + ) + username = str(username) + + if not isinstance(password, basestring): + warnings.warn( + "Non-string passwords will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(type(password)), + category=DeprecationWarning, + ) + password = str(password) + # -- End Removal -- + + if isinstance(username, str): + username = username.encode("latin1") + + if isinstance(password, str): + password = password.encode("latin1") + + authstr = "Basic " + to_native_string( + b64encode(b":".join((username, password))).strip() + ) + + return authstr + + +class AuthBase: + """Base class that all auth implementations derive from""" + + def __call__(self, r): + raise NotImplementedError("Auth hooks must be callable.") + + +class HTTPBasicAuth(AuthBase): + """Attaches HTTP Basic Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers["Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPProxyAuth(HTTPBasicAuth): + """Attaches HTTP Proxy Authentication to a given Request object.""" + + def __call__(self, r): + r.headers["Proxy-Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPDigestAuth(AuthBase): + """Attaches HTTP Digest Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + # Keep state in per-thread local storage + self._thread_local = threading.local() + + def init_per_thread_state(self): + # Ensure state is initialized just once per-thread + if not hasattr(self._thread_local, "init"): + self._thread_local.init = True + self._thread_local.last_nonce = "" + self._thread_local.nonce_count = 0 + self._thread_local.chal = {} + self._thread_local.pos = None + self._thread_local.num_401_calls = None + + def build_digest_header(self, method, url): + """ + :rtype: str + """ + + realm = self._thread_local.chal["realm"] + nonce = self._thread_local.chal["nonce"] + qop = self._thread_local.chal.get("qop") + algorithm = self._thread_local.chal.get("algorithm") + opaque = self._thread_local.chal.get("opaque") + hash_utf8 = None + + if algorithm is None: + _algorithm = "MD5" + else: + _algorithm = algorithm.upper() + # lambdas assume digest modules are imported at the top level + if _algorithm == "MD5" or _algorithm == "MD5-SESS": + + def md5_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.md5(x).hexdigest() + + hash_utf8 = md5_utf8 + elif _algorithm == "SHA": + + def sha_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha1(x).hexdigest() + + hash_utf8 = sha_utf8 + elif _algorithm == "SHA-256": + + def sha256_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha256(x).hexdigest() + + hash_utf8 = sha256_utf8 + elif _algorithm == "SHA-512": + + def sha512_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha512(x).hexdigest() + + hash_utf8 = sha512_utf8 + + KD = lambda s, d: hash_utf8(f"{s}:{d}") # noqa:E731 + + if hash_utf8 is None: + return None + + # XXX not implemented yet + entdig = None + p_parsed = urlparse(url) + #: path is request-uri defined in RFC 2616 which should not be empty + path = p_parsed.path or "/" + if p_parsed.query: + path += f"?{p_parsed.query}" + + A1 = f"{self.username}:{realm}:{self.password}" + A2 = f"{method}:{path}" + + HA1 = hash_utf8(A1) + HA2 = hash_utf8(A2) + + if nonce == self._thread_local.last_nonce: + self._thread_local.nonce_count += 1 + else: + self._thread_local.nonce_count = 1 + ncvalue = f"{self._thread_local.nonce_count:08x}" + s = str(self._thread_local.nonce_count).encode("utf-8") + s += nonce.encode("utf-8") + s += time.ctime().encode("utf-8") + s += os.urandom(8) + + cnonce = hashlib.sha1(s).hexdigest()[:16] + if _algorithm == "MD5-SESS": + HA1 = hash_utf8(f"{HA1}:{nonce}:{cnonce}") + + if not qop: + respdig = KD(HA1, f"{nonce}:{HA2}") + elif qop == "auth" or "auth" in qop.split(","): + noncebit = f"{nonce}:{ncvalue}:{cnonce}:auth:{HA2}" + respdig = KD(HA1, noncebit) + else: + # XXX handle auth-int. + return None + + self._thread_local.last_nonce = nonce + + # XXX should the partial digests be encoded too? + base = ( + f'username="{self.username}", realm="{realm}", nonce="{nonce}", ' + f'uri="{path}", response="{respdig}"' + ) + if opaque: + base += f', opaque="{opaque}"' + if algorithm: + base += f', algorithm="{algorithm}"' + if entdig: + base += f', digest="{entdig}"' + if qop: + base += f', qop="auth", nc={ncvalue}, cnonce="{cnonce}"' + + return f"Digest {base}" + + def handle_redirect(self, r, **kwargs): + """Reset num_401_calls counter on redirects.""" + if r.is_redirect: + self._thread_local.num_401_calls = 1 + + def handle_401(self, r, **kwargs): + """ + Takes the given response and tries digest-auth, if needed. + + :rtype: requests.Response + """ + + # If response is not 4xx, do not auth + # See https://github.com/psf/requests/issues/3772 + if not 400 <= r.status_code < 500: + self._thread_local.num_401_calls = 1 + return r + + if self._thread_local.pos is not None: + # Rewind the file position indicator of the body to where + # it was to resend the request. + r.request.body.seek(self._thread_local.pos) + s_auth = r.headers.get("www-authenticate", "") + + if "digest" in s_auth.lower() and self._thread_local.num_401_calls < 2: + + self._thread_local.num_401_calls += 1 + pat = re.compile(r"digest ", flags=re.IGNORECASE) + self._thread_local.chal = parse_dict_header(pat.sub("", s_auth, count=1)) + + # Consume content and release the original connection + # to allow our new request to reuse the same one. + r.content + r.close() + prep = r.request.copy() + extract_cookies_to_jar(prep._cookies, r.request, r.raw) + prep.prepare_cookies(prep._cookies) + + prep.headers["Authorization"] = self.build_digest_header( + prep.method, prep.url + ) + _r = r.connection.send(prep, **kwargs) + _r.history.append(r) + _r.request = prep + + return _r + + self._thread_local.num_401_calls = 1 + return r + + def __call__(self, r): + # Initialize per-thread state, if needed + self.init_per_thread_state() + # If we have a saved nonce, skip the 401 + if self._thread_local.last_nonce: + r.headers["Authorization"] = self.build_digest_header(r.method, r.url) + try: + self._thread_local.pos = r.body.tell() + except AttributeError: + # In the case of HTTPDigestAuth being reused and the body of + # the previous request was a file-like object, pos has the + # file position of the previous body. Ensure it's set to + # None. + self._thread_local.pos = None + r.register_hook("response", self.handle_401) + r.register_hook("response", self.handle_redirect) + self._thread_local.num_401_calls = 1 + + return r + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py new file mode 100644 index 000000000..38696a1fb --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +""" +requests.certs +~~~~~~~~~~~~~~ + +This module returns the preferred default CA certificate bundle. There is +only one — the one from the certifi package. + +If you are packaging Requests, e.g., for a Linux distribution or a managed +environment, you can change the definition of where() to return a separately +packaged CA bundle. +""" + +import os + +if "_PIP_STANDALONE_CERT" not in os.environ: + from pip._vendor.certifi import where +else: + def where(): + return os.environ["_PIP_STANDALONE_CERT"] + +if __name__ == "__main__": + print(where()) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py new file mode 100644 index 000000000..9ab2bb486 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py @@ -0,0 +1,67 @@ +""" +requests.compat +~~~~~~~~~~~~~~~ + +This module previously handled import compatibility issues +between Python 2 and Python 3. It remains for backwards +compatibility until the next major version. +""" + +from pip._vendor import chardet + +import sys + +# ------- +# Pythons +# ------- + +# Syntax sugar. +_ver = sys.version_info + +#: Python 2.x? +is_py2 = _ver[0] == 2 + +#: Python 3.x? +is_py3 = _ver[0] == 3 + +# Note: We've patched out simplejson support in pip because it prevents +# upgrading simplejson on Windows. +import json +from json import JSONDecodeError + +# Keep OrderedDict for backwards compatibility. +from collections import OrderedDict +from collections.abc import Callable, Mapping, MutableMapping +from http import cookiejar as cookielib +from http.cookies import Morsel +from io import StringIO + +# -------------- +# Legacy Imports +# -------------- +from urllib.parse import ( + quote, + quote_plus, + unquote, + unquote_plus, + urldefrag, + urlencode, + urljoin, + urlparse, + urlsplit, + urlunparse, +) +from urllib.request import ( + getproxies, + getproxies_environment, + parse_http_list, + proxy_bypass, + proxy_bypass_environment, +) + +builtin_str = str +str = str +bytes = bytes +basestring = (str, bytes) +numeric_types = (int, float) +integer_types = (int,) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py new file mode 100644 index 000000000..bf54ab237 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py @@ -0,0 +1,561 @@ +""" +requests.cookies +~~~~~~~~~~~~~~~~ + +Compatibility code to be able to use `cookielib.CookieJar` with requests. + +requests.utils imports from here, so be careful with imports. +""" + +import calendar +import copy +import time + +from ._internal_utils import to_native_string +from .compat import Morsel, MutableMapping, cookielib, urlparse, urlunparse + +try: + import threading +except ImportError: + import dummy_threading as threading + + +class MockRequest: + """Wraps a `requests.Request` to mimic a `urllib2.Request`. + + The code in `cookielib.CookieJar` expects this interface in order to correctly + manage cookie policies, i.e., determine whether a cookie can be set, given the + domains of the request and the cookie. + + The original request object is read-only. The client is responsible for collecting + the new headers via `get_new_headers()` and interpreting them appropriately. You + probably want `get_cookie_header`, defined below. + """ + + def __init__(self, request): + self._r = request + self._new_headers = {} + self.type = urlparse(self._r.url).scheme + + def get_type(self): + return self.type + + def get_host(self): + return urlparse(self._r.url).netloc + + def get_origin_req_host(self): + return self.get_host() + + def get_full_url(self): + # Only return the response's URL if the user hadn't set the Host + # header + if not self._r.headers.get("Host"): + return self._r.url + # If they did set it, retrieve it and reconstruct the expected domain + host = to_native_string(self._r.headers["Host"], encoding="utf-8") + parsed = urlparse(self._r.url) + # Reconstruct the URL as we expect it + return urlunparse( + [ + parsed.scheme, + host, + parsed.path, + parsed.params, + parsed.query, + parsed.fragment, + ] + ) + + def is_unverifiable(self): + return True + + def has_header(self, name): + return name in self._r.headers or name in self._new_headers + + def get_header(self, name, default=None): + return self._r.headers.get(name, self._new_headers.get(name, default)) + + def add_header(self, key, val): + """cookielib has no legitimate use for this method; add it back if you find one.""" + raise NotImplementedError( + "Cookie headers should be added with add_unredirected_header()" + ) + + def add_unredirected_header(self, name, value): + self._new_headers[name] = value + + def get_new_headers(self): + return self._new_headers + + @property + def unverifiable(self): + return self.is_unverifiable() + + @property + def origin_req_host(self): + return self.get_origin_req_host() + + @property + def host(self): + return self.get_host() + + +class MockResponse: + """Wraps a `httplib.HTTPMessage` to mimic a `urllib.addinfourl`. + + ...what? Basically, expose the parsed HTTP headers from the server response + the way `cookielib` expects to see them. + """ + + def __init__(self, headers): + """Make a MockResponse for `cookielib` to read. + + :param headers: a httplib.HTTPMessage or analogous carrying the headers + """ + self._headers = headers + + def info(self): + return self._headers + + def getheaders(self, name): + self._headers.getheaders(name) + + +def extract_cookies_to_jar(jar, request, response): + """Extract the cookies from the response into a CookieJar. + + :param jar: cookielib.CookieJar (not necessarily a RequestsCookieJar) + :param request: our own requests.Request object + :param response: urllib3.HTTPResponse object + """ + if not (hasattr(response, "_original_response") and response._original_response): + return + # the _original_response field is the wrapped httplib.HTTPResponse object, + req = MockRequest(request) + # pull out the HTTPMessage with the headers and put it in the mock: + res = MockResponse(response._original_response.msg) + jar.extract_cookies(res, req) + + +def get_cookie_header(jar, request): + """ + Produce an appropriate Cookie header string to be sent with `request`, or None. + + :rtype: str + """ + r = MockRequest(request) + jar.add_cookie_header(r) + return r.get_new_headers().get("Cookie") + + +def remove_cookie_by_name(cookiejar, name, domain=None, path=None): + """Unsets a cookie by name, by default over all domains and paths. + + Wraps CookieJar.clear(), is O(n). + """ + clearables = [] + for cookie in cookiejar: + if cookie.name != name: + continue + if domain is not None and domain != cookie.domain: + continue + if path is not None and path != cookie.path: + continue + clearables.append((cookie.domain, cookie.path, cookie.name)) + + for domain, path, name in clearables: + cookiejar.clear(domain, path, name) + + +class CookieConflictError(RuntimeError): + """There are two cookies that meet the criteria specified in the cookie jar. + Use .get and .set and include domain and path args in order to be more specific. + """ + + +class RequestsCookieJar(cookielib.CookieJar, MutableMapping): + """Compatibility class; is a cookielib.CookieJar, but exposes a dict + interface. + + This is the CookieJar we create by default for requests and sessions that + don't specify one, since some clients may expect response.cookies and + session.cookies to support dict operations. + + Requests does not use the dict interface internally; it's just for + compatibility with external client code. All requests code should work + out of the box with externally provided instances of ``CookieJar``, e.g. + ``LWPCookieJar`` and ``FileCookieJar``. + + Unlike a regular CookieJar, this class is pickleable. + + .. warning:: dictionary operations that are normally O(1) may be O(n). + """ + + def get(self, name, default=None, domain=None, path=None): + """Dict-like get() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + + .. warning:: operation is O(n), not O(1). + """ + try: + return self._find_no_duplicates(name, domain, path) + except KeyError: + return default + + def set(self, name, value, **kwargs): + """Dict-like set() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + """ + # support client code that unsets cookies by assignment of a None value: + if value is None: + remove_cookie_by_name( + self, name, domain=kwargs.get("domain"), path=kwargs.get("path") + ) + return + + if isinstance(value, Morsel): + c = morsel_to_cookie(value) + else: + c = create_cookie(name, value, **kwargs) + self.set_cookie(c) + return c + + def iterkeys(self): + """Dict-like iterkeys() that returns an iterator of names of cookies + from the jar. + + .. seealso:: itervalues() and iteritems(). + """ + for cookie in iter(self): + yield cookie.name + + def keys(self): + """Dict-like keys() that returns a list of names of cookies from the + jar. + + .. seealso:: values() and items(). + """ + return list(self.iterkeys()) + + def itervalues(self): + """Dict-like itervalues() that returns an iterator of values of cookies + from the jar. + + .. seealso:: iterkeys() and iteritems(). + """ + for cookie in iter(self): + yield cookie.value + + def values(self): + """Dict-like values() that returns a list of values of cookies from the + jar. + + .. seealso:: keys() and items(). + """ + return list(self.itervalues()) + + def iteritems(self): + """Dict-like iteritems() that returns an iterator of name-value tuples + from the jar. + + .. seealso:: iterkeys() and itervalues(). + """ + for cookie in iter(self): + yield cookie.name, cookie.value + + def items(self): + """Dict-like items() that returns a list of name-value tuples from the + jar. Allows client-code to call ``dict(RequestsCookieJar)`` and get a + vanilla python dict of key value pairs. + + .. seealso:: keys() and values(). + """ + return list(self.iteritems()) + + def list_domains(self): + """Utility method to list all the domains in the jar.""" + domains = [] + for cookie in iter(self): + if cookie.domain not in domains: + domains.append(cookie.domain) + return domains + + def list_paths(self): + """Utility method to list all the paths in the jar.""" + paths = [] + for cookie in iter(self): + if cookie.path not in paths: + paths.append(cookie.path) + return paths + + def multiple_domains(self): + """Returns True if there are multiple domains in the jar. + Returns False otherwise. + + :rtype: bool + """ + domains = [] + for cookie in iter(self): + if cookie.domain is not None and cookie.domain in domains: + return True + domains.append(cookie.domain) + return False # there is only one domain in jar + + def get_dict(self, domain=None, path=None): + """Takes as an argument an optional domain and path and returns a plain + old Python dict of name-value pairs of cookies that meet the + requirements. + + :rtype: dict + """ + dictionary = {} + for cookie in iter(self): + if (domain is None or cookie.domain == domain) and ( + path is None or cookie.path == path + ): + dictionary[cookie.name] = cookie.value + return dictionary + + def __contains__(self, name): + try: + return super().__contains__(name) + except CookieConflictError: + return True + + def __getitem__(self, name): + """Dict-like __getitem__() for compatibility with client code. Throws + exception if there are more than one cookie with name. In that case, + use the more explicit get() method instead. + + .. warning:: operation is O(n), not O(1). + """ + return self._find_no_duplicates(name) + + def __setitem__(self, name, value): + """Dict-like __setitem__ for compatibility with client code. Throws + exception if there is already a cookie of that name in the jar. In that + case, use the more explicit set() method instead. + """ + self.set(name, value) + + def __delitem__(self, name): + """Deletes a cookie given a name. Wraps ``cookielib.CookieJar``'s + ``remove_cookie_by_name()``. + """ + remove_cookie_by_name(self, name) + + def set_cookie(self, cookie, *args, **kwargs): + if ( + hasattr(cookie.value, "startswith") + and cookie.value.startswith('"') + and cookie.value.endswith('"') + ): + cookie.value = cookie.value.replace('\\"', "") + return super().set_cookie(cookie, *args, **kwargs) + + def update(self, other): + """Updates this jar with cookies from another CookieJar or dict-like""" + if isinstance(other, cookielib.CookieJar): + for cookie in other: + self.set_cookie(copy.copy(cookie)) + else: + super().update(other) + + def _find(self, name, domain=None, path=None): + """Requests uses this method internally to get cookie values. + + If there are conflicting cookies, _find arbitrarily chooses one. + See _find_no_duplicates if you want an exception thrown if there are + conflicting cookies. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :return: cookie.value + """ + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + return cookie.value + + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def _find_no_duplicates(self, name, domain=None, path=None): + """Both ``__get_item__`` and ``get`` call this function: it's never + used elsewhere in Requests. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :raises KeyError: if cookie is not found + :raises CookieConflictError: if there are multiple cookies + that match name and optionally domain and path + :return: cookie.value + """ + toReturn = None + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + if toReturn is not None: + # if there are multiple cookies that meet passed in criteria + raise CookieConflictError( + f"There are multiple cookies with name, {name!r}" + ) + # we will eventually return this as long as no cookie conflict + toReturn = cookie.value + + if toReturn: + return toReturn + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def __getstate__(self): + """Unlike a normal CookieJar, this class is pickleable.""" + state = self.__dict__.copy() + # remove the unpickleable RLock object + state.pop("_cookies_lock") + return state + + def __setstate__(self, state): + """Unlike a normal CookieJar, this class is pickleable.""" + self.__dict__.update(state) + if "_cookies_lock" not in self.__dict__: + self._cookies_lock = threading.RLock() + + def copy(self): + """Return a copy of this RequestsCookieJar.""" + new_cj = RequestsCookieJar() + new_cj.set_policy(self.get_policy()) + new_cj.update(self) + return new_cj + + def get_policy(self): + """Return the CookiePolicy instance used.""" + return self._policy + + +def _copy_cookie_jar(jar): + if jar is None: + return None + + if hasattr(jar, "copy"): + # We're dealing with an instance of RequestsCookieJar + return jar.copy() + # We're dealing with a generic CookieJar instance + new_jar = copy.copy(jar) + new_jar.clear() + for cookie in jar: + new_jar.set_cookie(copy.copy(cookie)) + return new_jar + + +def create_cookie(name, value, **kwargs): + """Make a cookie from underspecified parameters. + + By default, the pair of `name` and `value` will be set for the domain '' + and sent on every request (this is sometimes called a "supercookie"). + """ + result = { + "version": 0, + "name": name, + "value": value, + "port": None, + "domain": "", + "path": "/", + "secure": False, + "expires": None, + "discard": True, + "comment": None, + "comment_url": None, + "rest": {"HttpOnly": None}, + "rfc2109": False, + } + + badargs = set(kwargs) - set(result) + if badargs: + raise TypeError( + f"create_cookie() got unexpected keyword arguments: {list(badargs)}" + ) + + result.update(kwargs) + result["port_specified"] = bool(result["port"]) + result["domain_specified"] = bool(result["domain"]) + result["domain_initial_dot"] = result["domain"].startswith(".") + result["path_specified"] = bool(result["path"]) + + return cookielib.Cookie(**result) + + +def morsel_to_cookie(morsel): + """Convert a Morsel object into a Cookie containing the one k/v pair.""" + + expires = None + if morsel["max-age"]: + try: + expires = int(time.time() + int(morsel["max-age"])) + except ValueError: + raise TypeError(f"max-age: {morsel['max-age']} must be integer") + elif morsel["expires"]: + time_template = "%a, %d-%b-%Y %H:%M:%S GMT" + expires = calendar.timegm(time.strptime(morsel["expires"], time_template)) + return create_cookie( + comment=morsel["comment"], + comment_url=bool(morsel["comment"]), + discard=False, + domain=morsel["domain"], + expires=expires, + name=morsel.key, + path=morsel["path"], + port=None, + rest={"HttpOnly": morsel["httponly"]}, + rfc2109=False, + secure=bool(morsel["secure"]), + value=morsel.value, + version=morsel["version"] or 0, + ) + + +def cookiejar_from_dict(cookie_dict, cookiejar=None, overwrite=True): + """Returns a CookieJar from a key/value dictionary. + + :param cookie_dict: Dict of key/values to insert into CookieJar. + :param cookiejar: (optional) A cookiejar to add the cookies to. + :param overwrite: (optional) If False, will not replace cookies + already in the jar with new ones. + :rtype: CookieJar + """ + if cookiejar is None: + cookiejar = RequestsCookieJar() + + if cookie_dict is not None: + names_from_jar = [cookie.name for cookie in cookiejar] + for name in cookie_dict: + if overwrite or (name not in names_from_jar): + cookiejar.set_cookie(create_cookie(name, cookie_dict[name])) + + return cookiejar + + +def merge_cookies(cookiejar, cookies): + """Add cookies to cookiejar and returns a merged CookieJar. + + :param cookiejar: CookieJar object to add the cookies to. + :param cookies: Dictionary or CookieJar object to be added. + :rtype: CookieJar + """ + if not isinstance(cookiejar, cookielib.CookieJar): + raise ValueError("You can only merge into CookieJar") + + if isinstance(cookies, dict): + cookiejar = cookiejar_from_dict(cookies, cookiejar=cookiejar, overwrite=False) + elif isinstance(cookies, cookielib.CookieJar): + try: + cookiejar.update(cookies) + except AttributeError: + for cookie_in_jar in cookies: + cookiejar.set_cookie(cookie_in_jar) + + return cookiejar diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py new file mode 100644 index 000000000..168d07390 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py @@ -0,0 +1,141 @@ +""" +requests.exceptions +~~~~~~~~~~~~~~~~~~~ + +This module contains the set of Requests' exceptions. +""" +from pip._vendor.urllib3.exceptions import HTTPError as BaseHTTPError + +from .compat import JSONDecodeError as CompatJSONDecodeError + + +class RequestException(IOError): + """There was an ambiguous exception that occurred while handling your + request. + """ + + def __init__(self, *args, **kwargs): + """Initialize RequestException with `request` and `response` objects.""" + response = kwargs.pop("response", None) + self.response = response + self.request = kwargs.pop("request", None) + if response is not None and not self.request and hasattr(response, "request"): + self.request = self.response.request + super().__init__(*args, **kwargs) + + +class InvalidJSONError(RequestException): + """A JSON error occurred.""" + + +class JSONDecodeError(InvalidJSONError, CompatJSONDecodeError): + """Couldn't decode the text into json""" + + def __init__(self, *args, **kwargs): + """ + Construct the JSONDecodeError instance first with all + args. Then use it's args to construct the IOError so that + the json specific args aren't used as IOError specific args + and the error message from JSONDecodeError is preserved. + """ + CompatJSONDecodeError.__init__(self, *args) + InvalidJSONError.__init__(self, *self.args, **kwargs) + + +class HTTPError(RequestException): + """An HTTP error occurred.""" + + +class ConnectionError(RequestException): + """A Connection error occurred.""" + + +class ProxyError(ConnectionError): + """A proxy error occurred.""" + + +class SSLError(ConnectionError): + """An SSL error occurred.""" + + +class Timeout(RequestException): + """The request timed out. + + Catching this error will catch both + :exc:`~requests.exceptions.ConnectTimeout` and + :exc:`~requests.exceptions.ReadTimeout` errors. + """ + + +class ConnectTimeout(ConnectionError, Timeout): + """The request timed out while trying to connect to the remote server. + + Requests that produced this error are safe to retry. + """ + + +class ReadTimeout(Timeout): + """The server did not send any data in the allotted amount of time.""" + + +class URLRequired(RequestException): + """A valid URL is required to make a request.""" + + +class TooManyRedirects(RequestException): + """Too many redirects.""" + + +class MissingSchema(RequestException, ValueError): + """The URL scheme (e.g. http or https) is missing.""" + + +class InvalidSchema(RequestException, ValueError): + """The URL scheme provided is either invalid or unsupported.""" + + +class InvalidURL(RequestException, ValueError): + """The URL provided was somehow invalid.""" + + +class InvalidHeader(RequestException, ValueError): + """The header value provided was somehow invalid.""" + + +class InvalidProxyURL(InvalidURL): + """The proxy URL provided is invalid.""" + + +class ChunkedEncodingError(RequestException): + """The server declared chunked encoding but sent an invalid chunk.""" + + +class ContentDecodingError(RequestException, BaseHTTPError): + """Failed to decode response content.""" + + +class StreamConsumedError(RequestException, TypeError): + """The content for this response was already consumed.""" + + +class RetryError(RequestException): + """Custom retries logic failed""" + + +class UnrewindableBodyError(RequestException): + """Requests encountered an error when trying to rewind a body.""" + + +# Warnings + + +class RequestsWarning(Warning): + """Base warning for Requests.""" + + +class FileModeWarning(RequestsWarning, DeprecationWarning): + """A file was opened in text mode, but Requests determined its binary length.""" + + +class RequestsDependencyWarning(RequestsWarning): + """An imported dependency doesn't match the expected version range.""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py new file mode 100644 index 000000000..2d292c2f0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py @@ -0,0 +1,131 @@ +"""Module containing bug report helper(s).""" + +import json +import platform +import ssl +import sys + +from pip._vendor import idna +from pip._vendor import urllib3 + +from . import __version__ as requests_version + +charset_normalizer = None + +try: + from pip._vendor import chardet +except ImportError: + chardet = None + +try: + from pip._vendor.urllib3.contrib import pyopenssl +except ImportError: + pyopenssl = None + OpenSSL = None + cryptography = None +else: + import cryptography + import OpenSSL + + +def _implementation(): + """Return a dict with the Python implementation and version. + + Provide both the name and the version of the Python implementation + currently running. For example, on CPython 3.10.3 it will return + {'name': 'CPython', 'version': '3.10.3'}. + + This function works best on CPython and PyPy: in particular, it probably + doesn't work for Jython or IronPython. Future investigation should be done + to work out the correct shape of the code for those platforms. + """ + implementation = platform.python_implementation() + + if implementation == "CPython": + implementation_version = platform.python_version() + elif implementation == "PyPy": + implementation_version = "{}.{}.{}".format( + sys.pypy_version_info.major, + sys.pypy_version_info.minor, + sys.pypy_version_info.micro, + ) + if sys.pypy_version_info.releaselevel != "final": + implementation_version = "".join( + [implementation_version, sys.pypy_version_info.releaselevel] + ) + elif implementation == "Jython": + implementation_version = platform.python_version() # Complete Guess + elif implementation == "IronPython": + implementation_version = platform.python_version() # Complete Guess + else: + implementation_version = "Unknown" + + return {"name": implementation, "version": implementation_version} + + +def info(): + """Generate information for a bug report.""" + try: + platform_info = { + "system": platform.system(), + "release": platform.release(), + } + except OSError: + platform_info = { + "system": "Unknown", + "release": "Unknown", + } + + implementation_info = _implementation() + urllib3_info = {"version": urllib3.__version__} + charset_normalizer_info = {"version": None} + chardet_info = {"version": None} + if charset_normalizer: + charset_normalizer_info = {"version": charset_normalizer.__version__} + if chardet: + chardet_info = {"version": chardet.__version__} + + pyopenssl_info = { + "version": None, + "openssl_version": "", + } + if OpenSSL: + pyopenssl_info = { + "version": OpenSSL.__version__, + "openssl_version": f"{OpenSSL.SSL.OPENSSL_VERSION_NUMBER:x}", + } + cryptography_info = { + "version": getattr(cryptography, "__version__", ""), + } + idna_info = { + "version": getattr(idna, "__version__", ""), + } + + system_ssl = ssl.OPENSSL_VERSION_NUMBER + system_ssl_info = {"version": f"{system_ssl:x}" if system_ssl is not None else ""} + + return { + "platform": platform_info, + "implementation": implementation_info, + "system_ssl": system_ssl_info, + "using_pyopenssl": pyopenssl is not None, + "using_charset_normalizer": chardet is None, + "pyOpenSSL": pyopenssl_info, + "urllib3": urllib3_info, + "chardet": chardet_info, + "charset_normalizer": charset_normalizer_info, + "cryptography": cryptography_info, + "idna": idna_info, + "requests": { + "version": requests_version, + }, + } + + +def main(): + """Pretty-print the bug information as JSON.""" + print(json.dumps(info(), sort_keys=True, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py new file mode 100644 index 000000000..d181ba2ec --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py @@ -0,0 +1,33 @@ +""" +requests.hooks +~~~~~~~~~~~~~~ + +This module provides the capabilities for the Requests hooks system. + +Available hooks: + +``response``: + The response generated from a Request. +""" +HOOKS = ["response"] + + +def default_hooks(): + return {event: [] for event in HOOKS} + + +# TODO: response is the only one + + +def dispatch_hook(key, hooks, hook_data, **kwargs): + """Dispatches a hook dictionary on a given piece of data.""" + hooks = hooks or {} + hooks = hooks.get(key) + if hooks: + if hasattr(hooks, "__call__"): + hooks = [hooks] + for hook in hooks: + _hook_data = hook(hook_data, **kwargs) + if _hook_data is not None: + hook_data = _hook_data + return hook_data diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py new file mode 100644 index 000000000..76e6f199c --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py @@ -0,0 +1,1034 @@ +""" +requests.models +~~~~~~~~~~~~~~~ + +This module contains the primary objects that power Requests. +""" + +import datetime + +# Import encoding now, to avoid implicit import later. +# Implicit import within threads may cause LookupError when standard library is in a ZIP, +# such as in Embedded Python. See https://github.com/psf/requests/issues/3578. +import encodings.idna # noqa: F401 +from io import UnsupportedOperation + +from pip._vendor.urllib3.exceptions import ( + DecodeError, + LocationParseError, + ProtocolError, + ReadTimeoutError, + SSLError, +) +from pip._vendor.urllib3.fields import RequestField +from pip._vendor.urllib3.filepost import encode_multipart_formdata +from pip._vendor.urllib3.util import parse_url + +from ._internal_utils import to_native_string, unicode_is_ascii +from .auth import HTTPBasicAuth +from .compat import ( + Callable, + JSONDecodeError, + Mapping, + basestring, + builtin_str, + chardet, + cookielib, +) +from .compat import json as complexjson +from .compat import urlencode, urlsplit, urlunparse +from .cookies import _copy_cookie_jar, cookiejar_from_dict, get_cookie_header +from .exceptions import ( + ChunkedEncodingError, + ConnectionError, + ContentDecodingError, + HTTPError, + InvalidJSONError, + InvalidURL, +) +from .exceptions import JSONDecodeError as RequestsJSONDecodeError +from .exceptions import MissingSchema +from .exceptions import SSLError as RequestsSSLError +from .exceptions import StreamConsumedError +from .hooks import default_hooks +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( + check_header_validity, + get_auth_from_url, + guess_filename, + guess_json_utf, + iter_slices, + parse_header_links, + requote_uri, + stream_decode_response_unicode, + super_len, + to_key_val_list, +) + +#: The set of HTTP status codes that indicate an automatically +#: processable redirect. +REDIRECT_STATI = ( + codes.moved, # 301 + codes.found, # 302 + codes.other, # 303 + codes.temporary_redirect, # 307 + codes.permanent_redirect, # 308 +) + +DEFAULT_REDIRECT_LIMIT = 30 +CONTENT_CHUNK_SIZE = 10 * 1024 +ITER_CHUNK_SIZE = 512 + + +class RequestEncodingMixin: + @property + def path_url(self): + """Build the path URL to use.""" + + url = [] + + p = urlsplit(self.url) + + path = p.path + if not path: + path = "/" + + url.append(path) + + query = p.query + if query: + url.append("?") + url.append(query) + + return "".join(url) + + @staticmethod + def _encode_params(data): + """Encode parameters in a piece of data. + + Will successfully encode parameters when passed as a dict or a list of + 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary + if parameters are supplied as a dict. + """ + + if isinstance(data, (str, bytes)): + return data + elif hasattr(data, "read"): + return data + elif hasattr(data, "__iter__"): + result = [] + for k, vs in to_key_val_list(data): + if isinstance(vs, basestring) or not hasattr(vs, "__iter__"): + vs = [vs] + for v in vs: + if v is not None: + result.append( + ( + k.encode("utf-8") if isinstance(k, str) else k, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + return urlencode(result, doseq=True) + else: + return data + + @staticmethod + def _encode_files(files, data): + """Build the body for a multipart/form-data request. + + Will successfully encode files when passed as a dict or a list of + tuples. Order is retained if data is a list of tuples but arbitrary + if parameters are supplied as a dict. + The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) + or 4-tuples (filename, fileobj, contentype, custom_headers). + """ + if not files: + raise ValueError("Files must be provided.") + elif isinstance(data, basestring): + raise ValueError("Data must not be a string.") + + new_fields = [] + fields = to_key_val_list(data or {}) + files = to_key_val_list(files or {}) + + for field, val in fields: + if isinstance(val, basestring) or not hasattr(val, "__iter__"): + val = [val] + for v in val: + if v is not None: + # Don't call str() on bytestrings: in Py3 it all goes wrong. + if not isinstance(v, bytes): + v = str(v) + + new_fields.append( + ( + field.decode("utf-8") + if isinstance(field, bytes) + else field, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + + for (k, v) in files: + # support for explicit filename + ft = None + fh = None + if isinstance(v, (tuple, list)): + if len(v) == 2: + fn, fp = v + elif len(v) == 3: + fn, fp, ft = v + else: + fn, fp, ft, fh = v + else: + fn = guess_filename(v) or k + fp = v + + if isinstance(fp, (str, bytes, bytearray)): + fdata = fp + elif hasattr(fp, "read"): + fdata = fp.read() + elif fp is None: + continue + else: + fdata = fp + + rf = RequestField(name=k, data=fdata, filename=fn, headers=fh) + rf.make_multipart(content_type=ft) + new_fields.append(rf) + + body, content_type = encode_multipart_formdata(new_fields) + + return body, content_type + + +class RequestHooksMixin: + def register_hook(self, event, hook): + """Properly register a hook.""" + + if event not in self.hooks: + raise ValueError(f'Unsupported event specified, with event name "{event}"') + + if isinstance(hook, Callable): + self.hooks[event].append(hook) + elif hasattr(hook, "__iter__"): + self.hooks[event].extend(h for h in hook if isinstance(h, Callable)) + + def deregister_hook(self, event, hook): + """Deregister a previously registered hook. + Returns True if the hook existed, False if not. + """ + + try: + self.hooks[event].remove(hook) + return True + except ValueError: + return False + + +class Request(RequestHooksMixin): + """A user-created :class:`Request ` object. + + Used to prepare a :class:`PreparedRequest `, which is sent to the server. + + :param method: HTTP method to use. + :param url: URL to send. + :param headers: dictionary of headers to send. + :param files: dictionary of {filename: fileobject} files to multipart upload. + :param data: the body to attach to the request. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param json: json for the body to attach to the request (if files or data is not specified). + :param params: URL parameters to append to the URL. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param auth: Auth handler or (user, pass) tuple. + :param cookies: dictionary or CookieJar of cookies to attach to this request. + :param hooks: dictionary of callback hooks, for internal usage. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> req.prepare() + + """ + + def __init__( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + + # Default empty dicts for dict params. + data = [] if data is None else data + files = [] if files is None else files + headers = {} if headers is None else headers + params = {} if params is None else params + hooks = {} if hooks is None else hooks + + self.hooks = default_hooks() + for (k, v) in list(hooks.items()): + self.register_hook(event=k, hook=v) + + self.method = method + self.url = url + self.headers = headers + self.files = files + self.data = data + self.json = json + self.params = params + self.auth = auth + self.cookies = cookies + + def __repr__(self): + return f"" + + def prepare(self): + """Constructs a :class:`PreparedRequest ` for transmission and returns it.""" + p = PreparedRequest() + p.prepare( + method=self.method, + url=self.url, + headers=self.headers, + files=self.files, + data=self.data, + json=self.json, + params=self.params, + auth=self.auth, + cookies=self.cookies, + hooks=self.hooks, + ) + return p + + +class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): + """The fully mutable :class:`PreparedRequest ` object, + containing the exact bytes that will be sent to the server. + + Instances are generated from a :class:`Request ` object, and + should not be instantiated manually; doing so may produce undesirable + effects. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> r = req.prepare() + >>> r + + + >>> s = requests.Session() + >>> s.send(r) + + """ + + def __init__(self): + #: HTTP verb to send to the server. + self.method = None + #: HTTP URL to send the request to. + self.url = None + #: dictionary of HTTP headers. + self.headers = None + # The `CookieJar` used to create the Cookie header will be stored here + # after prepare_cookies is called + self._cookies = None + #: request body to send to the server. + self.body = None + #: dictionary of callback hooks, for internal usage. + self.hooks = default_hooks() + #: integer denoting starting position of a readable file-like body. + self._body_position = None + + def prepare( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + """Prepares the entire request with the given parameters.""" + + self.prepare_method(method) + self.prepare_url(url, params) + self.prepare_headers(headers) + self.prepare_cookies(cookies) + self.prepare_body(data, files, json) + self.prepare_auth(auth, url) + + # Note that prepare_auth must be last to enable authentication schemes + # such as OAuth to work on a fully prepared request. + + # This MUST go after prepare_auth. Authenticators could add a hook + self.prepare_hooks(hooks) + + def __repr__(self): + return f"" + + def copy(self): + p = PreparedRequest() + p.method = self.method + p.url = self.url + p.headers = self.headers.copy() if self.headers is not None else None + p._cookies = _copy_cookie_jar(self._cookies) + p.body = self.body + p.hooks = self.hooks + p._body_position = self._body_position + return p + + def prepare_method(self, method): + """Prepares the given HTTP method.""" + self.method = method + if self.method is not None: + self.method = to_native_string(self.method.upper()) + + @staticmethod + def _get_idna_encoded_host(host): + from pip._vendor import idna + + try: + host = idna.encode(host, uts46=True).decode("utf-8") + except idna.IDNAError: + raise UnicodeError + return host + + def prepare_url(self, url, params): + """Prepares the given HTTP URL.""" + #: Accept objects that have string representations. + #: We're unable to blindly call unicode/str functions + #: as this will include the bytestring indicator (b'') + #: on python 3.x. + #: https://github.com/psf/requests/pull/2238 + if isinstance(url, bytes): + url = url.decode("utf8") + else: + url = str(url) + + # Remove leading whitespaces from url + url = url.lstrip() + + # Don't do any URL preparation for non-HTTP schemes like `mailto`, + # `data` etc to work around exceptions from `url_parse`, which + # handles RFC 3986 only. + if ":" in url and not url.lower().startswith("http"): + self.url = url + return + + # Support for unicode domain names and paths. + try: + scheme, auth, host, port, path, query, fragment = parse_url(url) + except LocationParseError as e: + raise InvalidURL(*e.args) + + if not scheme: + raise MissingSchema( + f"Invalid URL {url!r}: No scheme supplied. " + f"Perhaps you meant https://{url}?" + ) + + if not host: + raise InvalidURL(f"Invalid URL {url!r}: No host supplied") + + # In general, we want to try IDNA encoding the hostname if the string contains + # non-ASCII characters. This allows users to automatically get the correct IDNA + # behaviour. For strings containing only ASCII characters, we need to also verify + # it doesn't start with a wildcard (*), before allowing the unencoded hostname. + if not unicode_is_ascii(host): + try: + host = self._get_idna_encoded_host(host) + except UnicodeError: + raise InvalidURL("URL has an invalid label.") + elif host.startswith(("*", ".")): + raise InvalidURL("URL has an invalid label.") + + # Carefully reconstruct the network location + netloc = auth or "" + if netloc: + netloc += "@" + netloc += host + if port: + netloc += f":{port}" + + # Bare domains aren't valid URLs. + if not path: + path = "/" + + if isinstance(params, (str, bytes)): + params = to_native_string(params) + + enc_params = self._encode_params(params) + if enc_params: + if query: + query = f"{query}&{enc_params}" + else: + query = enc_params + + url = requote_uri(urlunparse([scheme, netloc, path, None, query, fragment])) + self.url = url + + def prepare_headers(self, headers): + """Prepares the given HTTP headers.""" + + self.headers = CaseInsensitiveDict() + if headers: + for header in headers.items(): + # Raise exception on invalid header value. + check_header_validity(header) + name, value = header + self.headers[to_native_string(name)] = value + + def prepare_body(self, data, files, json=None): + """Prepares the given HTTP body data.""" + + # Check if file, fo, generator, iterator. + # If not, run through normal process. + + # Nottin' on you. + body = None + content_type = None + + if not data and json is not None: + # urllib3 requires a bytes-like body. Python 2's json.dumps + # provides this natively, but Python 3 gives a Unicode string. + content_type = "application/json" + + try: + body = complexjson.dumps(json, allow_nan=False) + except ValueError as ve: + raise InvalidJSONError(ve, request=self) + + if not isinstance(body, bytes): + body = body.encode("utf-8") + + is_stream = all( + [ + hasattr(data, "__iter__"), + not isinstance(data, (basestring, list, tuple, Mapping)), + ] + ) + + if is_stream: + try: + length = super_len(data) + except (TypeError, AttributeError, UnsupportedOperation): + length = None + + body = data + + if getattr(body, "tell", None) is not None: + # Record the current file position before reading. + # This will allow us to rewind a file in the event + # of a redirect. + try: + self._body_position = body.tell() + except OSError: + # This differentiates from None, allowing us to catch + # a failed `tell()` later when trying to rewind the body + self._body_position = object() + + if files: + raise NotImplementedError( + "Streamed bodies and files are mutually exclusive." + ) + + if length: + self.headers["Content-Length"] = builtin_str(length) + else: + self.headers["Transfer-Encoding"] = "chunked" + else: + # Multi-part file uploads. + if files: + (body, content_type) = self._encode_files(files, data) + else: + if data: + body = self._encode_params(data) + if isinstance(data, basestring) or hasattr(data, "read"): + content_type = None + else: + content_type = "application/x-www-form-urlencoded" + + self.prepare_content_length(body) + + # Add content-type if it wasn't explicitly provided. + if content_type and ("content-type" not in self.headers): + self.headers["Content-Type"] = content_type + + self.body = body + + def prepare_content_length(self, body): + """Prepare Content-Length header based on request method and body""" + if body is not None: + length = super_len(body) + if length: + # If length exists, set it. Otherwise, we fallback + # to Transfer-Encoding: chunked. + self.headers["Content-Length"] = builtin_str(length) + elif ( + self.method not in ("GET", "HEAD") + and self.headers.get("Content-Length") is None + ): + # Set Content-Length to 0 for methods that can have a body + # but don't provide one. (i.e. not GET or HEAD) + self.headers["Content-Length"] = "0" + + def prepare_auth(self, auth, url=""): + """Prepares the given HTTP auth data.""" + + # If no Auth is explicitly provided, extract it from the URL first. + if auth is None: + url_auth = get_auth_from_url(self.url) + auth = url_auth if any(url_auth) else None + + if auth: + if isinstance(auth, tuple) and len(auth) == 2: + # special-case basic HTTP auth + auth = HTTPBasicAuth(*auth) + + # Allow auth to make its changes. + r = auth(self) + + # Update self to reflect the auth changes. + self.__dict__.update(r.__dict__) + + # Recompute Content-Length + self.prepare_content_length(self.body) + + def prepare_cookies(self, cookies): + """Prepares the given HTTP cookie data. + + This function eventually generates a ``Cookie`` header from the + given cookies using cookielib. Due to cookielib's design, the header + will not be regenerated if it already exists, meaning this function + can only be called once for the life of the + :class:`PreparedRequest ` object. Any subsequent calls + to ``prepare_cookies`` will have no actual effect, unless the "Cookie" + header is removed beforehand. + """ + if isinstance(cookies, cookielib.CookieJar): + self._cookies = cookies + else: + self._cookies = cookiejar_from_dict(cookies) + + cookie_header = get_cookie_header(self._cookies, self) + if cookie_header is not None: + self.headers["Cookie"] = cookie_header + + def prepare_hooks(self, hooks): + """Prepares the given hooks.""" + # hooks can be passed as None to the prepare method and to this + # method. To prevent iterating over None, simply use an empty list + # if hooks is False-y + hooks = hooks or [] + for event in hooks: + self.register_hook(event, hooks[event]) + + +class Response: + """The :class:`Response ` object, which contains a + server's response to an HTTP request. + """ + + __attrs__ = [ + "_content", + "status_code", + "headers", + "url", + "history", + "encoding", + "reason", + "cookies", + "elapsed", + "request", + ] + + def __init__(self): + self._content = False + self._content_consumed = False + self._next = None + + #: Integer Code of responded HTTP Status, e.g. 404 or 200. + self.status_code = None + + #: Case-insensitive Dictionary of Response Headers. + #: For example, ``headers['content-encoding']`` will return the + #: value of a ``'Content-Encoding'`` response header. + self.headers = CaseInsensitiveDict() + + #: File-like object representation of response (for advanced usage). + #: Use of ``raw`` requires that ``stream=True`` be set on the request. + #: This requirement does not apply for use internally to Requests. + self.raw = None + + #: Final URL location of Response. + self.url = None + + #: Encoding to decode with when accessing r.text. + self.encoding = None + + #: A list of :class:`Response ` objects from + #: the history of the Request. Any redirect responses will end + #: up here. The list is sorted from the oldest to the most recent request. + self.history = [] + + #: Textual reason of responded HTTP Status, e.g. "Not Found" or "OK". + self.reason = None + + #: A CookieJar of Cookies the server sent back. + self.cookies = cookiejar_from_dict({}) + + #: The amount of time elapsed between sending the request + #: and the arrival of the response (as a timedelta). + #: This property specifically measures the time taken between sending + #: the first byte of the request and finishing parsing the headers. It + #: is therefore unaffected by consuming the response content or the + #: value of the ``stream`` keyword argument. + self.elapsed = datetime.timedelta(0) + + #: The :class:`PreparedRequest ` object to which this + #: is a response. + self.request = None + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def __getstate__(self): + # Consume everything; accessing the content attribute makes + # sure the content has been fully read. + if not self._content_consumed: + self.content + + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + for name, value in state.items(): + setattr(self, name, value) + + # pickled objects do not have .raw + setattr(self, "_content_consumed", True) + setattr(self, "raw", None) + + def __repr__(self): + return f"" + + def __bool__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __nonzero__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __iter__(self): + """Allows you to use a response as an iterator.""" + return self.iter_content(128) + + @property + def ok(self): + """Returns True if :attr:`status_code` is less than 400, False if not. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + try: + self.raise_for_status() + except HTTPError: + return False + return True + + @property + def is_redirect(self): + """True if this Response is a well-formed HTTP redirect that could have + been processed automatically (by :meth:`Session.resolve_redirects`). + """ + return "location" in self.headers and self.status_code in REDIRECT_STATI + + @property + def is_permanent_redirect(self): + """True if this Response one of the permanent versions of redirect.""" + return "location" in self.headers and self.status_code in ( + codes.moved_permanently, + codes.permanent_redirect, + ) + + @property + def next(self): + """Returns a PreparedRequest for the next request in a redirect chain, if there is one.""" + return self._next + + @property + def apparent_encoding(self): + """The apparent encoding, provided by the charset_normalizer or chardet libraries.""" + return chardet.detect(self.content)["encoding"] + + def iter_content(self, chunk_size=1, decode_unicode=False): + """Iterates over the response data. When stream=True is set on the + request, this avoids reading the content at once into memory for + large responses. The chunk size is the number of bytes it should + read into memory. This is not necessarily the length of each item + returned as decoding can take place. + + chunk_size must be of type int or None. A value of None will + function differently depending on the value of `stream`. + stream=True will read data as it arrives in whatever size the + chunks are received. If stream=False, data is returned as + a single chunk. + + If decode_unicode is True, content will be decoded using the best + available encoding based on the response. + """ + + def generate(): + # Special case for urllib3. + if hasattr(self.raw, "stream"): + try: + yield from self.raw.stream(chunk_size, decode_content=True) + except ProtocolError as e: + raise ChunkedEncodingError(e) + except DecodeError as e: + raise ContentDecodingError(e) + except ReadTimeoutError as e: + raise ConnectionError(e) + except SSLError as e: + raise RequestsSSLError(e) + else: + # Standard file-like object. + while True: + chunk = self.raw.read(chunk_size) + if not chunk: + break + yield chunk + + self._content_consumed = True + + if self._content_consumed and isinstance(self._content, bool): + raise StreamConsumedError() + elif chunk_size is not None and not isinstance(chunk_size, int): + raise TypeError( + f"chunk_size must be an int, it is instead a {type(chunk_size)}." + ) + # simulate reading small chunks of the content + reused_chunks = iter_slices(self._content, chunk_size) + + stream_chunks = generate() + + chunks = reused_chunks if self._content_consumed else stream_chunks + + if decode_unicode: + chunks = stream_decode_response_unicode(chunks, self) + + return chunks + + def iter_lines( + self, chunk_size=ITER_CHUNK_SIZE, decode_unicode=False, delimiter=None + ): + """Iterates over the response data, one line at a time. When + stream=True is set on the request, this avoids reading the + content at once into memory for large responses. + + .. note:: This method is not reentrant safe. + """ + + pending = None + + for chunk in self.iter_content( + chunk_size=chunk_size, decode_unicode=decode_unicode + ): + + if pending is not None: + chunk = pending + chunk + + if delimiter: + lines = chunk.split(delimiter) + else: + lines = chunk.splitlines() + + if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: + pending = lines.pop() + else: + pending = None + + yield from lines + + if pending is not None: + yield pending + + @property + def content(self): + """Content of the response, in bytes.""" + + if self._content is False: + # Read the contents. + if self._content_consumed: + raise RuntimeError("The content for this response was already consumed") + + if self.status_code == 0 or self.raw is None: + self._content = None + else: + self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b"" + + self._content_consumed = True + # don't need to release the connection; that's been handled by urllib3 + # since we exhausted the data. + return self._content + + @property + def text(self): + """Content of the response, in unicode. + + If Response.encoding is None, encoding will be guessed using + ``charset_normalizer`` or ``chardet``. + + The encoding of the response content is determined based solely on HTTP + headers, following RFC 2616 to the letter. If you can take advantage of + non-HTTP knowledge to make a better guess at the encoding, you should + set ``r.encoding`` appropriately before accessing this property. + """ + + # Try charset from content-type + content = None + encoding = self.encoding + + if not self.content: + return "" + + # Fallback to auto-detected encoding. + if self.encoding is None: + encoding = self.apparent_encoding + + # Decode unicode from given encoding. + try: + content = str(self.content, encoding, errors="replace") + except (LookupError, TypeError): + # A LookupError is raised if the encoding was not found which could + # indicate a misspelling or similar mistake. + # + # A TypeError can be raised if encoding is None + # + # So we try blindly encoding. + content = str(self.content, errors="replace") + + return content + + def json(self, **kwargs): + r"""Returns the json-encoded content of a response, if any. + + :param \*\*kwargs: Optional arguments that ``json.loads`` takes. + :raises requests.exceptions.JSONDecodeError: If the response body does not + contain valid json. + """ + + if not self.encoding and self.content and len(self.content) > 3: + # No encoding set. JSON RFC 4627 section 3 states we should expect + # UTF-8, -16 or -32. Detect which one to use; If the detection or + # decoding fails, fall back to `self.text` (using charset_normalizer to make + # a best guess). + encoding = guess_json_utf(self.content) + if encoding is not None: + try: + return complexjson.loads(self.content.decode(encoding), **kwargs) + except UnicodeDecodeError: + # Wrong UTF codec detected; usually because it's not UTF-8 + # but some other 8-bit codec. This is an RFC violation, + # and the server didn't bother to tell us what codec *was* + # used. + pass + except JSONDecodeError as e: + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + try: + return complexjson.loads(self.text, **kwargs) + except JSONDecodeError as e: + # Catch JSON-related errors and raise as requests.JSONDecodeError + # This aliases json.JSONDecodeError and simplejson.JSONDecodeError + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + @property + def links(self): + """Returns the parsed header links of the response, if any.""" + + header = self.headers.get("link") + + resolved_links = {} + + if header: + links = parse_header_links(header) + + for link in links: + key = link.get("rel") or link.get("url") + resolved_links[key] = link + + return resolved_links + + def raise_for_status(self): + """Raises :class:`HTTPError`, if one occurred.""" + + http_error_msg = "" + if isinstance(self.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. (See PR #3538) + try: + reason = self.reason.decode("utf-8") + except UnicodeDecodeError: + reason = self.reason.decode("iso-8859-1") + else: + reason = self.reason + + if 400 <= self.status_code < 500: + http_error_msg = ( + f"{self.status_code} Client Error: {reason} for url: {self.url}" + ) + + elif 500 <= self.status_code < 600: + http_error_msg = ( + f"{self.status_code} Server Error: {reason} for url: {self.url}" + ) + + if http_error_msg: + raise HTTPError(http_error_msg, response=self) + + def close(self): + """Releases the connection back to the pool. Once this method has been + called the underlying ``raw`` object must not be accessed again. + + *Note: Should not normally need to be called explicitly.* + """ + if not self._content_consumed: + self.raw.close() + + release_conn = getattr(self.raw, "release_conn", None) + if release_conn is not None: + release_conn() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py new file mode 100644 index 000000000..9582fa730 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py @@ -0,0 +1,16 @@ +import sys + +# This code exists for backwards compatibility reasons. +# I don't like it either. Just look the other way. :) + +for package in ('urllib3', 'idna', 'chardet'): + vendored_package = "pip._vendor." + package + locals()[package] = __import__(vendored_package) + # This traversal is apparently necessary such that the identities are + # preserved (requests.packages.urllib3.* is urllib3.*) + for mod in list(sys.modules): + if mod == vendored_package or mod.startswith(vendored_package + '.'): + unprefixed_mod = mod[len("pip._vendor."):] + sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] + +# Kinda cool, though, right? diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py new file mode 100644 index 000000000..dbcf2a7b0 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py @@ -0,0 +1,833 @@ +""" +requests.sessions +~~~~~~~~~~~~~~~~~ + +This module provides a Session object to manage and persist settings across +requests (cookies, auth, proxies). +""" +import os +import sys +import time +from collections import OrderedDict +from datetime import timedelta + +from ._internal_utils import to_native_string +from .adapters import HTTPAdapter +from .auth import _basic_auth_str +from .compat import Mapping, cookielib, urljoin, urlparse +from .cookies import ( + RequestsCookieJar, + cookiejar_from_dict, + extract_cookies_to_jar, + merge_cookies, +) +from .exceptions import ( + ChunkedEncodingError, + ContentDecodingError, + InvalidSchema, + TooManyRedirects, +) +from .hooks import default_hooks, dispatch_hook + +# formerly defined here, reexposed here for backward compatibility +from .models import ( # noqa: F401 + DEFAULT_REDIRECT_LIMIT, + REDIRECT_STATI, + PreparedRequest, + Request, +) +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( # noqa: F401 + DEFAULT_PORTS, + default_headers, + get_auth_from_url, + get_environ_proxies, + get_netrc_auth, + requote_uri, + resolve_proxies, + rewind_body, + should_bypass_proxies, + to_key_val_list, +) + +# Preferred clock, based on which one is more accurate on a given system. +if sys.platform == "win32": + preferred_clock = time.perf_counter +else: + preferred_clock = time.time + + +def merge_setting(request_setting, session_setting, dict_class=OrderedDict): + """Determines appropriate setting for a given request, taking into account + the explicit setting on that request, and the setting in the session. If a + setting is a dictionary, they will be merged together using `dict_class` + """ + + if session_setting is None: + return request_setting + + if request_setting is None: + return session_setting + + # Bypass if not a dictionary (e.g. verify) + if not ( + isinstance(session_setting, Mapping) and isinstance(request_setting, Mapping) + ): + return request_setting + + merged_setting = dict_class(to_key_val_list(session_setting)) + merged_setting.update(to_key_val_list(request_setting)) + + # Remove keys that are set to None. Extract keys first to avoid altering + # the dictionary during iteration. + none_keys = [k for (k, v) in merged_setting.items() if v is None] + for key in none_keys: + del merged_setting[key] + + return merged_setting + + +def merge_hooks(request_hooks, session_hooks, dict_class=OrderedDict): + """Properly merges both requests and session hooks. + + This is necessary because when request_hooks == {'response': []}, the + merge breaks Session hooks entirely. + """ + if session_hooks is None or session_hooks.get("response") == []: + return request_hooks + + if request_hooks is None or request_hooks.get("response") == []: + return session_hooks + + return merge_setting(request_hooks, session_hooks, dict_class) + + +class SessionRedirectMixin: + def get_redirect_target(self, resp): + """Receives a Response. Returns a redirect URI or ``None``""" + # Due to the nature of how requests processes redirects this method will + # be called at least once upon the original response and at least twice + # on each subsequent redirect response (if any). + # If a custom mixin is used to handle this logic, it may be advantageous + # to cache the redirect location onto the response object as a private + # attribute. + if resp.is_redirect: + location = resp.headers["location"] + # Currently the underlying http module on py3 decode headers + # in latin1, but empirical evidence suggests that latin1 is very + # rarely used with non-ASCII characters in HTTP headers. + # It is more likely to get UTF8 header rather than latin1. + # This causes incorrect handling of UTF8 encoded location headers. + # To solve this, we re-encode the location in latin1. + location = location.encode("latin1") + return to_native_string(location, "utf8") + return None + + def should_strip_auth(self, old_url, new_url): + """Decide whether Authorization header should be removed when redirecting""" + old_parsed = urlparse(old_url) + new_parsed = urlparse(new_url) + if old_parsed.hostname != new_parsed.hostname: + return True + # Special case: allow http -> https redirect when using the standard + # ports. This isn't specified by RFC 7235, but is kept to avoid + # breaking backwards compatibility with older versions of requests + # that allowed any redirects on the same host. + if ( + old_parsed.scheme == "http" + and old_parsed.port in (80, None) + and new_parsed.scheme == "https" + and new_parsed.port in (443, None) + ): + return False + + # Handle default port usage corresponding to scheme. + changed_port = old_parsed.port != new_parsed.port + changed_scheme = old_parsed.scheme != new_parsed.scheme + default_port = (DEFAULT_PORTS.get(old_parsed.scheme, None), None) + if ( + not changed_scheme + and old_parsed.port in default_port + and new_parsed.port in default_port + ): + return False + + # Standard case: root URI must match + return changed_port or changed_scheme + + def resolve_redirects( + self, + resp, + req, + stream=False, + timeout=None, + verify=True, + cert=None, + proxies=None, + yield_requests=False, + **adapter_kwargs, + ): + """Receives a Response. Returns a generator of Responses or Requests.""" + + hist = [] # keep track of history + + url = self.get_redirect_target(resp) + previous_fragment = urlparse(req.url).fragment + while url: + prepared_request = req.copy() + + # Update history and keep track of redirects. + # resp.history must ignore the original request in this loop + hist.append(resp) + resp.history = hist[1:] + + try: + resp.content # Consume socket so it can be released + except (ChunkedEncodingError, ContentDecodingError, RuntimeError): + resp.raw.read(decode_content=False) + + if len(resp.history) >= self.max_redirects: + raise TooManyRedirects( + f"Exceeded {self.max_redirects} redirects.", response=resp + ) + + # Release the connection back into the pool. + resp.close() + + # Handle redirection without scheme (see: RFC 1808 Section 4) + if url.startswith("//"): + parsed_rurl = urlparse(resp.url) + url = ":".join([to_native_string(parsed_rurl.scheme), url]) + + # Normalize url case and attach previous fragment if needed (RFC 7231 7.1.2) + parsed = urlparse(url) + if parsed.fragment == "" and previous_fragment: + parsed = parsed._replace(fragment=previous_fragment) + elif parsed.fragment: + previous_fragment = parsed.fragment + url = parsed.geturl() + + # Facilitate relative 'location' headers, as allowed by RFC 7231. + # (e.g. '/path/to/resource' instead of 'http://domain.tld/path/to/resource') + # Compliant with RFC3986, we percent encode the url. + if not parsed.netloc: + url = urljoin(resp.url, requote_uri(url)) + else: + url = requote_uri(url) + + prepared_request.url = to_native_string(url) + + self.rebuild_method(prepared_request, resp) + + # https://github.com/psf/requests/issues/1084 + if resp.status_code not in ( + codes.temporary_redirect, + codes.permanent_redirect, + ): + # https://github.com/psf/requests/issues/3490 + purged_headers = ("Content-Length", "Content-Type", "Transfer-Encoding") + for header in purged_headers: + prepared_request.headers.pop(header, None) + prepared_request.body = None + + headers = prepared_request.headers + headers.pop("Cookie", None) + + # Extract any cookies sent on the response to the cookiejar + # in the new request. Because we've mutated our copied prepared + # request, use the old one that we haven't yet touched. + extract_cookies_to_jar(prepared_request._cookies, req, resp.raw) + merge_cookies(prepared_request._cookies, self.cookies) + prepared_request.prepare_cookies(prepared_request._cookies) + + # Rebuild auth and proxy information. + proxies = self.rebuild_proxies(prepared_request, proxies) + self.rebuild_auth(prepared_request, resp) + + # A failed tell() sets `_body_position` to `object()`. This non-None + # value ensures `rewindable` will be True, allowing us to raise an + # UnrewindableBodyError, instead of hanging the connection. + rewindable = prepared_request._body_position is not None and ( + "Content-Length" in headers or "Transfer-Encoding" in headers + ) + + # Attempt to rewind consumed file-like object. + if rewindable: + rewind_body(prepared_request) + + # Override the original request. + req = prepared_request + + if yield_requests: + yield req + else: + + resp = self.send( + req, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + allow_redirects=False, + **adapter_kwargs, + ) + + extract_cookies_to_jar(self.cookies, prepared_request, resp.raw) + + # extract redirect url, if any, for the next loop + url = self.get_redirect_target(resp) + yield resp + + def rebuild_auth(self, prepared_request, response): + """When being redirected we may want to strip authentication from the + request to avoid leaking credentials. This method intelligently removes + and reapplies authentication where possible to avoid credential loss. + """ + headers = prepared_request.headers + url = prepared_request.url + + if "Authorization" in headers and self.should_strip_auth( + response.request.url, url + ): + # If we get redirected to a new host, we should strip out any + # authentication headers. + del headers["Authorization"] + + # .netrc might have more auth for us on our new host. + new_auth = get_netrc_auth(url) if self.trust_env else None + if new_auth is not None: + prepared_request.prepare_auth(new_auth) + + def rebuild_proxies(self, prepared_request, proxies): + """This method re-evaluates the proxy configuration by considering the + environment variables. If we are redirected to a URL covered by + NO_PROXY, we strip the proxy configuration. Otherwise, we set missing + proxy keys for this URL (in case they were stripped by a previous + redirect). + + This method also replaces the Proxy-Authorization header where + necessary. + + :rtype: dict + """ + headers = prepared_request.headers + scheme = urlparse(prepared_request.url).scheme + new_proxies = resolve_proxies(prepared_request, proxies, self.trust_env) + + if "Proxy-Authorization" in headers: + del headers["Proxy-Authorization"] + + try: + username, password = get_auth_from_url(new_proxies[scheme]) + except KeyError: + username, password = None, None + + # urllib3 handles proxy authorization for us in the standard adapter. + # Avoid appending this to TLS tunneled requests where it may be leaked. + if not scheme.startswith('https') and username and password: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return new_proxies + + def rebuild_method(self, prepared_request, response): + """When being redirected we may want to change the method of the request + based on certain specs or browser behavior. + """ + method = prepared_request.method + + # https://tools.ietf.org/html/rfc7231#section-6.4.4 + if response.status_code == codes.see_other and method != "HEAD": + method = "GET" + + # Do what the browsers do, despite standards... + # First, turn 302s into GETs. + if response.status_code == codes.found and method != "HEAD": + method = "GET" + + # Second, if a POST is responded to with a 301, turn it into a GET. + # This bizarre behaviour is explained in Issue 1704. + if response.status_code == codes.moved and method == "POST": + method = "GET" + + prepared_request.method = method + + +class Session(SessionRedirectMixin): + """A Requests session. + + Provides cookie persistence, connection-pooling, and configuration. + + Basic Usage:: + + >>> import requests + >>> s = requests.Session() + >>> s.get('https://httpbin.org/get') + + + Or as a context manager:: + + >>> with requests.Session() as s: + ... s.get('https://httpbin.org/get') + + """ + + __attrs__ = [ + "headers", + "cookies", + "auth", + "proxies", + "hooks", + "params", + "verify", + "cert", + "adapters", + "stream", + "trust_env", + "max_redirects", + ] + + def __init__(self): + + #: A case-insensitive dictionary of headers to be sent on each + #: :class:`Request ` sent from this + #: :class:`Session `. + self.headers = default_headers() + + #: Default Authentication tuple or object to attach to + #: :class:`Request `. + self.auth = None + + #: Dictionary mapping protocol or protocol and host to the URL of the proxy + #: (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to + #: be used on each :class:`Request `. + self.proxies = {} + + #: Event-handling hooks. + self.hooks = default_hooks() + + #: Dictionary of querystring data to attach to each + #: :class:`Request `. The dictionary values may be lists for + #: representing multivalued query parameters. + self.params = {} + + #: Stream response content default. + self.stream = False + + #: SSL Verification default. + #: Defaults to `True`, requiring requests to verify the TLS certificate at the + #: remote end. + #: If verify is set to `False`, requests will accept any TLS certificate + #: presented by the server, and will ignore hostname mismatches and/or + #: expired certificates, which will make your application vulnerable to + #: man-in-the-middle (MitM) attacks. + #: Only set this to `False` for testing. + self.verify = True + + #: SSL client certificate default, if String, path to ssl client + #: cert file (.pem). If Tuple, ('cert', 'key') pair. + self.cert = None + + #: Maximum number of redirects allowed. If the request exceeds this + #: limit, a :class:`TooManyRedirects` exception is raised. + #: This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is + #: 30. + self.max_redirects = DEFAULT_REDIRECT_LIMIT + + #: Trust environment settings for proxy configuration, default + #: authentication and similar. + self.trust_env = True + + #: A CookieJar containing all currently outstanding cookies set on this + #: session. By default it is a + #: :class:`RequestsCookieJar `, but + #: may be any other ``cookielib.CookieJar`` compatible object. + self.cookies = cookiejar_from_dict({}) + + # Default connection adapters. + self.adapters = OrderedDict() + self.mount("https://", HTTPAdapter()) + self.mount("http://", HTTPAdapter()) + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def prepare_request(self, request): + """Constructs a :class:`PreparedRequest ` for + transmission and returns it. The :class:`PreparedRequest` has settings + merged from the :class:`Request ` instance and those of the + :class:`Session`. + + :param request: :class:`Request` instance to prepare with this + session's settings. + :rtype: requests.PreparedRequest + """ + cookies = request.cookies or {} + + # Bootstrap CookieJar. + if not isinstance(cookies, cookielib.CookieJar): + cookies = cookiejar_from_dict(cookies) + + # Merge with session cookies + merged_cookies = merge_cookies( + merge_cookies(RequestsCookieJar(), self.cookies), cookies + ) + + # Set environment's basic authentication if not explicitly set. + auth = request.auth + if self.trust_env and not auth and not self.auth: + auth = get_netrc_auth(request.url) + + p = PreparedRequest() + p.prepare( + method=request.method.upper(), + url=request.url, + files=request.files, + data=request.data, + json=request.json, + headers=merge_setting( + request.headers, self.headers, dict_class=CaseInsensitiveDict + ), + params=merge_setting(request.params, self.params), + auth=merge_setting(auth, self.auth), + cookies=merged_cookies, + hooks=merge_hooks(request.hooks, self.hooks), + ) + return p + + def request( + self, + method, + url, + params=None, + data=None, + headers=None, + cookies=None, + files=None, + auth=None, + timeout=None, + allow_redirects=True, + proxies=None, + hooks=None, + stream=None, + verify=None, + cert=None, + json=None, + ): + """Constructs a :class:`Request `, prepares it and sends it. + Returns :class:`Response ` object. + + :param method: method for the new :class:`Request` object. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary or bytes to be sent in the query + string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the + :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the + :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the + :class:`Request`. + :param files: (optional) Dictionary of ``'filename': file-like-objects`` + for multipart encoding upload. + :param auth: (optional) Auth tuple or callable to enable + Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Set to True by default. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol or protocol and + hostname to the URL of the proxy. + :param stream: (optional) whether to immediately download the response + content. Defaults to ``False``. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. When set to + ``False``, requests will accept any TLS certificate presented by + the server, and will ignore hostname mismatches and/or expired + certificates, which will make your application vulnerable to + man-in-the-middle (MitM) attacks. Setting verify to ``False`` + may be useful during local development or testing. + :param cert: (optional) if String, path to ssl client cert file (.pem). + If Tuple, ('cert', 'key') pair. + :rtype: requests.Response + """ + # Create the Request. + req = Request( + method=method.upper(), + url=url, + headers=headers, + files=files, + data=data or {}, + json=json, + params=params or {}, + auth=auth, + cookies=cookies, + hooks=hooks, + ) + prep = self.prepare_request(req) + + proxies = proxies or {} + + settings = self.merge_environment_settings( + prep.url, proxies, stream, verify, cert + ) + + # Send the request. + send_kwargs = { + "timeout": timeout, + "allow_redirects": allow_redirects, + } + send_kwargs.update(settings) + resp = self.send(prep, **send_kwargs) + + return resp + + def get(self, url, **kwargs): + r"""Sends a GET request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("GET", url, **kwargs) + + def options(self, url, **kwargs): + r"""Sends a OPTIONS request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("OPTIONS", url, **kwargs) + + def head(self, url, **kwargs): + r"""Sends a HEAD request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return self.request("HEAD", url, **kwargs) + + def post(self, url, data=None, json=None, **kwargs): + r"""Sends a POST request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("POST", url, data=data, json=json, **kwargs) + + def put(self, url, data=None, **kwargs): + r"""Sends a PUT request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PUT", url, data=data, **kwargs) + + def patch(self, url, data=None, **kwargs): + r"""Sends a PATCH request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PATCH", url, data=data, **kwargs) + + def delete(self, url, **kwargs): + r"""Sends a DELETE request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("DELETE", url, **kwargs) + + def send(self, request, **kwargs): + """Send a given PreparedRequest. + + :rtype: requests.Response + """ + # Set defaults that the hooks can utilize to ensure they always have + # the correct parameters to reproduce the previous request. + kwargs.setdefault("stream", self.stream) + kwargs.setdefault("verify", self.verify) + kwargs.setdefault("cert", self.cert) + if "proxies" not in kwargs: + kwargs["proxies"] = resolve_proxies(request, self.proxies, self.trust_env) + + # It's possible that users might accidentally send a Request object. + # Guard against that specific failure case. + if isinstance(request, Request): + raise ValueError("You can only send PreparedRequests.") + + # Set up variables needed for resolve_redirects and dispatching of hooks + allow_redirects = kwargs.pop("allow_redirects", True) + stream = kwargs.get("stream") + hooks = request.hooks + + # Get the appropriate adapter to use + adapter = self.get_adapter(url=request.url) + + # Start time (approximately) of the request + start = preferred_clock() + + # Send the request + r = adapter.send(request, **kwargs) + + # Total elapsed time of the request (approximately) + elapsed = preferred_clock() - start + r.elapsed = timedelta(seconds=elapsed) + + # Response manipulation hooks + r = dispatch_hook("response", hooks, r, **kwargs) + + # Persist cookies + if r.history: + + # If the hooks create history then we want those cookies too + for resp in r.history: + extract_cookies_to_jar(self.cookies, resp.request, resp.raw) + + extract_cookies_to_jar(self.cookies, request, r.raw) + + # Resolve redirects if allowed. + if allow_redirects: + # Redirect resolving generator. + gen = self.resolve_redirects(r, request, **kwargs) + history = [resp for resp in gen] + else: + history = [] + + # Shuffle things around if there's history. + if history: + # Insert the first (original) request at the start + history.insert(0, r) + # Get the last request made + r = history.pop() + r.history = history + + # If redirects aren't being followed, store the response on the Request for Response.next(). + if not allow_redirects: + try: + r._next = next( + self.resolve_redirects(r, request, yield_requests=True, **kwargs) + ) + except StopIteration: + pass + + if not stream: + r.content + + return r + + def merge_environment_settings(self, url, proxies, stream, verify, cert): + """ + Check the environment and merge it with some settings. + + :rtype: dict + """ + # Gather clues from the surrounding environment. + if self.trust_env: + # Set environment's proxies. + no_proxy = proxies.get("no_proxy") if proxies is not None else None + env_proxies = get_environ_proxies(url, no_proxy=no_proxy) + for (k, v) in env_proxies.items(): + proxies.setdefault(k, v) + + # Look for requests environment configuration + # and be compatible with cURL. + if verify is True or verify is None: + verify = ( + os.environ.get("REQUESTS_CA_BUNDLE") + or os.environ.get("CURL_CA_BUNDLE") + or verify + ) + + # Merge all the kwargs. + proxies = merge_setting(proxies, self.proxies) + stream = merge_setting(stream, self.stream) + verify = merge_setting(verify, self.verify) + cert = merge_setting(cert, self.cert) + + return {"proxies": proxies, "stream": stream, "verify": verify, "cert": cert} + + def get_adapter(self, url): + """ + Returns the appropriate connection adapter for the given URL. + + :rtype: requests.adapters.BaseAdapter + """ + for (prefix, adapter) in self.adapters.items(): + + if url.lower().startswith(prefix.lower()): + return adapter + + # Nothing matches :-/ + raise InvalidSchema(f"No connection adapters were found for {url!r}") + + def close(self): + """Closes all adapters and as such the session""" + for v in self.adapters.values(): + v.close() + + def mount(self, prefix, adapter): + """Registers a connection adapter to a prefix. + + Adapters are sorted in descending order by prefix length. + """ + self.adapters[prefix] = adapter + keys_to_move = [k for k in self.adapters if len(k) < len(prefix)] + + for key in keys_to_move: + self.adapters[key] = self.adapters.pop(key) + + def __getstate__(self): + state = {attr: getattr(self, attr, None) for attr in self.__attrs__} + return state + + def __setstate__(self, state): + for attr, value in state.items(): + setattr(self, attr, value) + + +def session(): + """ + Returns a :class:`Session` for context-management. + + .. deprecated:: 1.0.0 + + This method has been deprecated since version 1.0.0 and is only kept for + backwards compatibility. New code should use :class:`~requests.sessions.Session` + to create a session. This may be removed at a future date. + + :rtype: Session + """ + return Session() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py new file mode 100644 index 000000000..4bd072be9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py @@ -0,0 +1,128 @@ +r""" +The ``codes`` object defines a mapping from common names for HTTP statuses +to their numerical codes, accessible either as attributes or as dictionary +items. + +Example:: + + >>> import requests + >>> requests.codes['temporary_redirect'] + 307 + >>> requests.codes.teapot + 418 + >>> requests.codes['\o/'] + 200 + +Some codes have multiple names, and both upper- and lower-case versions of +the names are allowed. For example, ``codes.ok``, ``codes.OK``, and +``codes.okay`` all correspond to the HTTP status code 200. +""" + +from .structures import LookupDict + +_codes = { + # Informational. + 100: ("continue",), + 101: ("switching_protocols",), + 102: ("processing",), + 103: ("checkpoint",), + 122: ("uri_too_long", "request_uri_too_long"), + 200: ("ok", "okay", "all_ok", "all_okay", "all_good", "\\o/", "✓"), + 201: ("created",), + 202: ("accepted",), + 203: ("non_authoritative_info", "non_authoritative_information"), + 204: ("no_content",), + 205: ("reset_content", "reset"), + 206: ("partial_content", "partial"), + 207: ("multi_status", "multiple_status", "multi_stati", "multiple_stati"), + 208: ("already_reported",), + 226: ("im_used",), + # Redirection. + 300: ("multiple_choices",), + 301: ("moved_permanently", "moved", "\\o-"), + 302: ("found",), + 303: ("see_other", "other"), + 304: ("not_modified",), + 305: ("use_proxy",), + 306: ("switch_proxy",), + 307: ("temporary_redirect", "temporary_moved", "temporary"), + 308: ( + "permanent_redirect", + "resume_incomplete", + "resume", + ), # "resume" and "resume_incomplete" to be removed in 3.0 + # Client Error. + 400: ("bad_request", "bad"), + 401: ("unauthorized",), + 402: ("payment_required", "payment"), + 403: ("forbidden",), + 404: ("not_found", "-o-"), + 405: ("method_not_allowed", "not_allowed"), + 406: ("not_acceptable",), + 407: ("proxy_authentication_required", "proxy_auth", "proxy_authentication"), + 408: ("request_timeout", "timeout"), + 409: ("conflict",), + 410: ("gone",), + 411: ("length_required",), + 412: ("precondition_failed", "precondition"), + 413: ("request_entity_too_large",), + 414: ("request_uri_too_large",), + 415: ("unsupported_media_type", "unsupported_media", "media_type"), + 416: ( + "requested_range_not_satisfiable", + "requested_range", + "range_not_satisfiable", + ), + 417: ("expectation_failed",), + 418: ("im_a_teapot", "teapot", "i_am_a_teapot"), + 421: ("misdirected_request",), + 422: ("unprocessable_entity", "unprocessable"), + 423: ("locked",), + 424: ("failed_dependency", "dependency"), + 425: ("unordered_collection", "unordered"), + 426: ("upgrade_required", "upgrade"), + 428: ("precondition_required", "precondition"), + 429: ("too_many_requests", "too_many"), + 431: ("header_fields_too_large", "fields_too_large"), + 444: ("no_response", "none"), + 449: ("retry_with", "retry"), + 450: ("blocked_by_windows_parental_controls", "parental_controls"), + 451: ("unavailable_for_legal_reasons", "legal_reasons"), + 499: ("client_closed_request",), + # Server Error. + 500: ("internal_server_error", "server_error", "/o\\", "✗"), + 501: ("not_implemented",), + 502: ("bad_gateway",), + 503: ("service_unavailable", "unavailable"), + 504: ("gateway_timeout",), + 505: ("http_version_not_supported", "http_version"), + 506: ("variant_also_negotiates",), + 507: ("insufficient_storage",), + 509: ("bandwidth_limit_exceeded", "bandwidth"), + 510: ("not_extended",), + 511: ("network_authentication_required", "network_auth", "network_authentication"), +} + +codes = LookupDict(name="status_codes") + + +def _init(): + for code, titles in _codes.items(): + for title in titles: + setattr(codes, title, code) + if not title.startswith(("\\", "/")): + setattr(codes, title.upper(), code) + + def doc(code): + names = ", ".join(f"``{n}``" for n in _codes[code]) + return "* %d: %s" % (code, names) + + global __doc__ + __doc__ = ( + __doc__ + "\n" + "\n".join(doc(code) for code in sorted(_codes)) + if __doc__ is not None + else None + ) + + +_init() diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py new file mode 100644 index 000000000..188e13e48 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py @@ -0,0 +1,99 @@ +""" +requests.structures +~~~~~~~~~~~~~~~~~~~ + +Data structures that power Requests. +""" + +from collections import OrderedDict + +from .compat import Mapping, MutableMapping + + +class CaseInsensitiveDict(MutableMapping): + """A case-insensitive ``dict``-like object. + + Implements all methods and operations of + ``MutableMapping`` as well as dict's ``copy``. Also + provides ``lower_items``. + + All keys are expected to be strings. The structure remembers the + case of the last key to be set, and ``iter(instance)``, + ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` + will contain case-sensitive keys. However, querying and contains + testing is case insensitive:: + + cid = CaseInsensitiveDict() + cid['Accept'] = 'application/json' + cid['aCCEPT'] == 'application/json' # True + list(cid) == ['Accept'] # True + + For example, ``headers['content-encoding']`` will return the + value of a ``'Content-Encoding'`` response header, regardless + of how the header name was originally stored. + + If the constructor, ``.update``, or equality comparison + operations are given keys that have equal ``.lower()``s, the + behavior is undefined. + """ + + def __init__(self, data=None, **kwargs): + self._store = OrderedDict() + if data is None: + data = {} + self.update(data, **kwargs) + + def __setitem__(self, key, value): + # Use the lowercased key for lookups, but store the actual + # key alongside the value. + self._store[key.lower()] = (key, value) + + def __getitem__(self, key): + return self._store[key.lower()][1] + + def __delitem__(self, key): + del self._store[key.lower()] + + def __iter__(self): + return (casedkey for casedkey, mappedvalue in self._store.values()) + + def __len__(self): + return len(self._store) + + def lower_items(self): + """Like iteritems(), but with all lowercase keys.""" + return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items()) + + def __eq__(self, other): + if isinstance(other, Mapping): + other = CaseInsensitiveDict(other) + else: + return NotImplemented + # Compare insensitively + return dict(self.lower_items()) == dict(other.lower_items()) + + # Copy is required + def copy(self): + return CaseInsensitiveDict(self._store.values()) + + def __repr__(self): + return str(dict(self.items())) + + +class LookupDict(dict): + """Dictionary lookup object.""" + + def __init__(self, name=None): + self.name = name + super().__init__() + + def __repr__(self): + return f"" + + def __getitem__(self, key): + # We allow fall-through here, so values default to None + + return self.__dict__.get(key, None) + + def get(self, key, default=None): + return self.__dict__.get(key, default) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py new file mode 100644 index 000000000..6adec3320 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py @@ -0,0 +1,1088 @@ +""" +requests.utils +~~~~~~~~~~~~~~ + +This module provides utility functions that are used within Requests +that are also useful for external consumption. +""" + +import codecs +import contextlib +import io +import os +import re +import socket +import struct +import sys +import tempfile +import warnings +import zipfile +from collections import OrderedDict + +from pip._vendor.urllib3.util import make_headers, parse_url + +from . import certs +from .__version__ import __version__ + +# to_native_string is unused here, but imported here for backwards compatibility +from ._internal_utils import ( # noqa: F401 + _HEADER_VALIDATORS_BYTE, + _HEADER_VALIDATORS_STR, + HEADER_VALIDATORS, + to_native_string, +) +from .compat import ( + Mapping, + basestring, + bytes, + getproxies, + getproxies_environment, + integer_types, +) +from .compat import parse_http_list as _parse_list_header +from .compat import ( + proxy_bypass, + proxy_bypass_environment, + quote, + str, + unquote, + urlparse, + urlunparse, +) +from .cookies import cookiejar_from_dict +from .exceptions import ( + FileModeWarning, + InvalidHeader, + InvalidURL, + UnrewindableBodyError, +) +from .structures import CaseInsensitiveDict + +NETRC_FILES = (".netrc", "_netrc") + +DEFAULT_CA_BUNDLE_PATH = certs.where() + +DEFAULT_PORTS = {"http": 80, "https": 443} + +# Ensure that ', ' is used to preserve previous delimiter behavior. +DEFAULT_ACCEPT_ENCODING = ", ".join( + re.split(r",\s*", make_headers(accept_encoding=True)["accept-encoding"]) +) + + +if sys.platform == "win32": + # provide a proxy_bypass version on Windows without DNS lookups + + def proxy_bypass_registry(host): + try: + import winreg + except ImportError: + return False + + try: + internetSettings = winreg.OpenKey( + winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Internet Settings", + ) + # ProxyEnable could be REG_SZ or REG_DWORD, normalizing it + proxyEnable = int(winreg.QueryValueEx(internetSettings, "ProxyEnable")[0]) + # ProxyOverride is almost always a string + proxyOverride = winreg.QueryValueEx(internetSettings, "ProxyOverride")[0] + except (OSError, ValueError): + return False + if not proxyEnable or not proxyOverride: + return False + + # make a check value list from the registry entry: replace the + # '' string by the localhost entry and the corresponding + # canonical entry. + proxyOverride = proxyOverride.split(";") + # now check if we match one of the registry values. + for test in proxyOverride: + if test == "": + if "." not in host: + return True + test = test.replace(".", r"\.") # mask dots + test = test.replace("*", r".*") # change glob sequence + test = test.replace("?", r".") # change glob char + if re.match(test, host, re.I): + return True + return False + + def proxy_bypass(host): # noqa + """Return True, if the host should be bypassed. + + Checks proxy settings gathered from the environment, if specified, + or the registry. + """ + if getproxies_environment(): + return proxy_bypass_environment(host) + else: + return proxy_bypass_registry(host) + + +def dict_to_sequence(d): + """Returns an internal sequence dictionary update.""" + + if hasattr(d, "items"): + d = d.items() + + return d + + +def super_len(o): + total_length = None + current_position = 0 + + if hasattr(o, "__len__"): + total_length = len(o) + + elif hasattr(o, "len"): + total_length = o.len + + elif hasattr(o, "fileno"): + try: + fileno = o.fileno() + except (io.UnsupportedOperation, AttributeError): + # AttributeError is a surprising exception, seeing as how we've just checked + # that `hasattr(o, 'fileno')`. It happens for objects obtained via + # `Tarfile.extractfile()`, per issue 5229. + pass + else: + total_length = os.fstat(fileno).st_size + + # Having used fstat to determine the file length, we need to + # confirm that this file was opened up in binary mode. + if "b" not in o.mode: + warnings.warn( + ( + "Requests has determined the content-length for this " + "request using the binary size of the file: however, the " + "file has been opened in text mode (i.e. without the 'b' " + "flag in the mode). This may lead to an incorrect " + "content-length. In Requests 3.0, support will be removed " + "for files in text mode." + ), + FileModeWarning, + ) + + if hasattr(o, "tell"): + try: + current_position = o.tell() + except OSError: + # This can happen in some weird situations, such as when the file + # is actually a special file descriptor like stdin. In this + # instance, we don't know what the length is, so set it to zero and + # let requests chunk it instead. + if total_length is not None: + current_position = total_length + else: + if hasattr(o, "seek") and total_length is None: + # StringIO and BytesIO have seek but no usable fileno + try: + # seek to end of file + o.seek(0, 2) + total_length = o.tell() + + # seek back to current position to support + # partially read file-like objects + o.seek(current_position or 0) + except OSError: + total_length = 0 + + if total_length is None: + total_length = 0 + + return max(0, total_length - current_position) + + +def get_netrc_auth(url, raise_errors=False): + """Returns the Requests tuple auth for a given url from netrc.""" + + netrc_file = os.environ.get("NETRC") + if netrc_file is not None: + netrc_locations = (netrc_file,) + else: + netrc_locations = (f"~/{f}" for f in NETRC_FILES) + + try: + from netrc import NetrcParseError, netrc + + netrc_path = None + + for f in netrc_locations: + try: + loc = os.path.expanduser(f) + except KeyError: + # os.path.expanduser can fail when $HOME is undefined and + # getpwuid fails. See https://bugs.python.org/issue20164 & + # https://github.com/psf/requests/issues/1846 + return + + if os.path.exists(loc): + netrc_path = loc + break + + # Abort early if there isn't one. + if netrc_path is None: + return + + ri = urlparse(url) + host = ri.hostname + + try: + _netrc = netrc(netrc_path).authenticators(host) + if _netrc: + # Return with login / password + login_i = 0 if _netrc[0] else 1 + return (_netrc[login_i], _netrc[2]) + except (NetrcParseError, OSError): + # If there was a parsing error or a permissions issue reading the file, + # we'll just skip netrc auth unless explicitly asked to raise errors. + if raise_errors: + raise + + # App Engine hackiness. + except (ImportError, AttributeError): + pass + + +def guess_filename(obj): + """Tries to guess the filename of the given object.""" + name = getattr(obj, "name", None) + if name and isinstance(name, basestring) and name[0] != "<" and name[-1] != ">": + return os.path.basename(name) + + +def extract_zipped_paths(path): + """Replace nonexistent paths that look like they refer to a member of a zip + archive with the location of an extracted copy of the target, or else + just return the provided path unchanged. + """ + if os.path.exists(path): + # this is already a valid path, no need to do anything further + return path + + # find the first valid part of the provided path and treat that as a zip archive + # assume the rest of the path is the name of a member in the archive + archive, member = os.path.split(path) + while archive and not os.path.exists(archive): + archive, prefix = os.path.split(archive) + if not prefix: + # If we don't check for an empty prefix after the split (in other words, archive remains unchanged after the split), + # we _can_ end up in an infinite loop on a rare corner case affecting a small number of users + break + member = "/".join([prefix, member]) + + if not zipfile.is_zipfile(archive): + return path + + zip_file = zipfile.ZipFile(archive) + if member not in zip_file.namelist(): + return path + + # we have a valid zip archive and a valid member of that archive + tmp = tempfile.gettempdir() + extracted_path = os.path.join(tmp, member.split("/")[-1]) + if not os.path.exists(extracted_path): + # use read + write to avoid the creating nested folders, we only want the file, avoids mkdir racing condition + with atomic_open(extracted_path) as file_handler: + file_handler.write(zip_file.read(member)) + return extracted_path + + +@contextlib.contextmanager +def atomic_open(filename): + """Write a file to the disk in an atomic fashion""" + tmp_descriptor, tmp_name = tempfile.mkstemp(dir=os.path.dirname(filename)) + try: + with os.fdopen(tmp_descriptor, "wb") as tmp_handler: + yield tmp_handler + os.replace(tmp_name, filename) + except BaseException: + os.remove(tmp_name) + raise + + +def from_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. Unless it can not be represented as such, return an + OrderedDict, e.g., + + :: + + >>> from_key_val_list([('key', 'val')]) + OrderedDict([('key', 'val')]) + >>> from_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + >>> from_key_val_list({'key': 'val'}) + OrderedDict([('key', 'val')]) + + :rtype: OrderedDict + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + return OrderedDict(value) + + +def to_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. If it can be, return a list of tuples, e.g., + + :: + + >>> to_key_val_list([('key', 'val')]) + [('key', 'val')] + >>> to_key_val_list({'key': 'val'}) + [('key', 'val')] + >>> to_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + + :rtype: list + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + if isinstance(value, Mapping): + value = value.items() + + return list(value) + + +# From mitsuhiko/werkzeug (used with permission). +def parse_list_header(value): + """Parse lists as described by RFC 2068 Section 2. + + In particular, parse comma-separated lists where the elements of + the list may include quoted-strings. A quoted-string could + contain a comma. A non-quoted string could have quotes in the + middle. Quotes are removed automatically after parsing. + + It basically works like :func:`parse_set_header` just that items + may appear multiple times and case sensitivity is preserved. + + The return value is a standard :class:`list`: + + >>> parse_list_header('token, "quoted value"') + ['token', 'quoted value'] + + To create a header from the :class:`list` again, use the + :func:`dump_header` function. + + :param value: a string with a list header. + :return: :class:`list` + :rtype: list + """ + result = [] + for item in _parse_list_header(value): + if item[:1] == item[-1:] == '"': + item = unquote_header_value(item[1:-1]) + result.append(item) + return result + + +# From mitsuhiko/werkzeug (used with permission). +def parse_dict_header(value): + """Parse lists of key, value pairs as described by RFC 2068 Section 2 and + convert them into a python dict: + + >>> d = parse_dict_header('foo="is a fish", bar="as well"') + >>> type(d) is dict + True + >>> sorted(d.items()) + [('bar', 'as well'), ('foo', 'is a fish')] + + If there is no value for a key it will be `None`: + + >>> parse_dict_header('key_without_value') + {'key_without_value': None} + + To create a header from the :class:`dict` again, use the + :func:`dump_header` function. + + :param value: a string with a dict header. + :return: :class:`dict` + :rtype: dict + """ + result = {} + for item in _parse_list_header(value): + if "=" not in item: + result[item] = None + continue + name, value = item.split("=", 1) + if value[:1] == value[-1:] == '"': + value = unquote_header_value(value[1:-1]) + result[name] = value + return result + + +# From mitsuhiko/werkzeug (used with permission). +def unquote_header_value(value, is_filename=False): + r"""Unquotes a header value. (Reversal of :func:`quote_header_value`). + This does not use the real unquoting but what browsers are actually + using for quoting. + + :param value: the header value to unquote. + :rtype: str + """ + if value and value[0] == value[-1] == '"': + # this is not the real unquoting, but fixing this so that the + # RFC is met will result in bugs with internet explorer and + # probably some other browsers as well. IE for example is + # uploading files with "C:\foo\bar.txt" as filename + value = value[1:-1] + + # if this is a filename and the starting characters look like + # a UNC path, then just return the value without quotes. Using the + # replace sequence below on a UNC path has the effect of turning + # the leading double slash into a single slash and then + # _fix_ie_filename() doesn't work correctly. See #458. + if not is_filename or value[:2] != "\\\\": + return value.replace("\\\\", "\\").replace('\\"', '"') + return value + + +def dict_from_cookiejar(cj): + """Returns a key/value dictionary from a CookieJar. + + :param cj: CookieJar object to extract cookies from. + :rtype: dict + """ + + cookie_dict = {} + + for cookie in cj: + cookie_dict[cookie.name] = cookie.value + + return cookie_dict + + +def add_dict_to_cookiejar(cj, cookie_dict): + """Returns a CookieJar from a key/value dictionary. + + :param cj: CookieJar to insert cookies into. + :param cookie_dict: Dict of key/values to insert into CookieJar. + :rtype: CookieJar + """ + + return cookiejar_from_dict(cookie_dict, cj) + + +def get_encodings_from_content(content): + """Returns encodings from given content string. + + :param content: bytestring to extract encodings from. + """ + warnings.warn( + ( + "In requests 3.0, get_encodings_from_content will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + charset_re = re.compile(r']', flags=re.I) + pragma_re = re.compile(r']', flags=re.I) + xml_re = re.compile(r'^<\?xml.*?encoding=["\']*(.+?)["\'>]') + + return ( + charset_re.findall(content) + + pragma_re.findall(content) + + xml_re.findall(content) + ) + + +def _parse_content_type_header(header): + """Returns content type and parameters from given header + + :param header: string + :return: tuple containing content type and dictionary of + parameters + """ + + tokens = header.split(";") + content_type, params = tokens[0].strip(), tokens[1:] + params_dict = {} + items_to_strip = "\"' " + + for param in params: + param = param.strip() + if param: + key, value = param, True + index_of_equals = param.find("=") + if index_of_equals != -1: + key = param[:index_of_equals].strip(items_to_strip) + value = param[index_of_equals + 1 :].strip(items_to_strip) + params_dict[key.lower()] = value + return content_type, params_dict + + +def get_encoding_from_headers(headers): + """Returns encodings from given HTTP Header Dict. + + :param headers: dictionary to extract encoding from. + :rtype: str + """ + + content_type = headers.get("content-type") + + if not content_type: + return None + + content_type, params = _parse_content_type_header(content_type) + + if "charset" in params: + return params["charset"].strip("'\"") + + if "text" in content_type: + return "ISO-8859-1" + + if "application/json" in content_type: + # Assume UTF-8 based on RFC 4627: https://www.ietf.org/rfc/rfc4627.txt since the charset was unset + return "utf-8" + + +def stream_decode_response_unicode(iterator, r): + """Stream decodes an iterator.""" + + if r.encoding is None: + yield from iterator + return + + decoder = codecs.getincrementaldecoder(r.encoding)(errors="replace") + for chunk in iterator: + rv = decoder.decode(chunk) + if rv: + yield rv + rv = decoder.decode(b"", final=True) + if rv: + yield rv + + +def iter_slices(string, slice_length): + """Iterate over slices of a string.""" + pos = 0 + if slice_length is None or slice_length <= 0: + slice_length = len(string) + while pos < len(string): + yield string[pos : pos + slice_length] + pos += slice_length + + +def get_unicode_from_response(r): + """Returns the requested content back in unicode. + + :param r: Response object to get unicode content from. + + Tried: + + 1. charset from content-type + 2. fall back and replace all unicode characters + + :rtype: str + """ + warnings.warn( + ( + "In requests 3.0, get_unicode_from_response will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + tried_encodings = [] + + # Try charset from content-type + encoding = get_encoding_from_headers(r.headers) + + if encoding: + try: + return str(r.content, encoding) + except UnicodeError: + tried_encodings.append(encoding) + + # Fall back: + try: + return str(r.content, encoding, errors="replace") + except TypeError: + return r.content + + +# The unreserved URI characters (RFC 3986) +UNRESERVED_SET = frozenset( + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + "0123456789-._~" +) + + +def unquote_unreserved(uri): + """Un-escape any percent-escape sequences in a URI that are unreserved + characters. This leaves all reserved, illegal and non-ASCII bytes encoded. + + :rtype: str + """ + parts = uri.split("%") + for i in range(1, len(parts)): + h = parts[i][0:2] + if len(h) == 2 and h.isalnum(): + try: + c = chr(int(h, 16)) + except ValueError: + raise InvalidURL(f"Invalid percent-escape sequence: '{h}'") + + if c in UNRESERVED_SET: + parts[i] = c + parts[i][2:] + else: + parts[i] = f"%{parts[i]}" + else: + parts[i] = f"%{parts[i]}" + return "".join(parts) + + +def requote_uri(uri): + """Re-quote the given URI. + + This function passes the given URI through an unquote/quote cycle to + ensure that it is fully and consistently quoted. + + :rtype: str + """ + safe_with_percent = "!#$%&'()*+,/:;=?@[]~" + safe_without_percent = "!#$&'()*+,/:;=?@[]~" + try: + # Unquote only the unreserved characters + # Then quote only illegal characters (do not quote reserved, + # unreserved, or '%') + return quote(unquote_unreserved(uri), safe=safe_with_percent) + except InvalidURL: + # We couldn't unquote the given URI, so let's try quoting it, but + # there may be unquoted '%'s in the URI. We need to make sure they're + # properly quoted so they do not cause issues elsewhere. + return quote(uri, safe=safe_without_percent) + + +def address_in_network(ip, net): + """This function allows you to check if an IP belongs to a network subnet + + Example: returns True if ip = 192.168.1.1 and net = 192.168.1.0/24 + returns False if ip = 192.168.1.1 and net = 192.168.100.0/24 + + :rtype: bool + """ + ipaddr = struct.unpack("=L", socket.inet_aton(ip))[0] + netaddr, bits = net.split("/") + netmask = struct.unpack("=L", socket.inet_aton(dotted_netmask(int(bits))))[0] + network = struct.unpack("=L", socket.inet_aton(netaddr))[0] & netmask + return (ipaddr & netmask) == (network & netmask) + + +def dotted_netmask(mask): + """Converts mask from /xx format to xxx.xxx.xxx.xxx + + Example: if mask is 24 function returns 255.255.255.0 + + :rtype: str + """ + bits = 0xFFFFFFFF ^ (1 << 32 - mask) - 1 + return socket.inet_ntoa(struct.pack(">I", bits)) + + +def is_ipv4_address(string_ip): + """ + :rtype: bool + """ + try: + socket.inet_aton(string_ip) + except OSError: + return False + return True + + +def is_valid_cidr(string_network): + """ + Very simple check of the cidr format in no_proxy variable. + + :rtype: bool + """ + if string_network.count("/") == 1: + try: + mask = int(string_network.split("/")[1]) + except ValueError: + return False + + if mask < 1 or mask > 32: + return False + + try: + socket.inet_aton(string_network.split("/")[0]) + except OSError: + return False + else: + return False + return True + + +@contextlib.contextmanager +def set_environ(env_name, value): + """Set the environment variable 'env_name' to 'value' + + Save previous value, yield, and then restore the previous value stored in + the environment variable 'env_name'. + + If 'value' is None, do nothing""" + value_changed = value is not None + if value_changed: + old_value = os.environ.get(env_name) + os.environ[env_name] = value + try: + yield + finally: + if value_changed: + if old_value is None: + del os.environ[env_name] + else: + os.environ[env_name] = old_value + + +def should_bypass_proxies(url, no_proxy): + """ + Returns whether we should bypass proxies or not. + + :rtype: bool + """ + # Prioritize lowercase environment variables over uppercase + # to keep a consistent behaviour with other http projects (curl, wget). + def get_proxy(key): + return os.environ.get(key) or os.environ.get(key.upper()) + + # First check whether no_proxy is defined. If it is, check that the URL + # we're getting isn't in the no_proxy list. + no_proxy_arg = no_proxy + if no_proxy is None: + no_proxy = get_proxy("no_proxy") + parsed = urlparse(url) + + if parsed.hostname is None: + # URLs don't always have hostnames, e.g. file:/// urls. + return True + + if no_proxy: + # We need to check whether we match here. We need to see if we match + # the end of the hostname, both with and without the port. + no_proxy = (host for host in no_proxy.replace(" ", "").split(",") if host) + + if is_ipv4_address(parsed.hostname): + for proxy_ip in no_proxy: + if is_valid_cidr(proxy_ip): + if address_in_network(parsed.hostname, proxy_ip): + return True + elif parsed.hostname == proxy_ip: + # If no_proxy ip was defined in plain IP notation instead of cidr notation & + # matches the IP of the index + return True + else: + host_with_port = parsed.hostname + if parsed.port: + host_with_port += f":{parsed.port}" + + for host in no_proxy: + if parsed.hostname.endswith(host) or host_with_port.endswith(host): + # The URL does match something in no_proxy, so we don't want + # to apply the proxies on this URL. + return True + + with set_environ("no_proxy", no_proxy_arg): + # parsed.hostname can be `None` in cases such as a file URI. + try: + bypass = proxy_bypass(parsed.hostname) + except (TypeError, socket.gaierror): + bypass = False + + if bypass: + return True + + return False + + +def get_environ_proxies(url, no_proxy=None): + """ + Return a dict of environment proxies. + + :rtype: dict + """ + if should_bypass_proxies(url, no_proxy=no_proxy): + return {} + else: + return getproxies() + + +def select_proxy(url, proxies): + """Select a proxy for the url, if applicable. + + :param url: The url being for the request + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + """ + proxies = proxies or {} + urlparts = urlparse(url) + if urlparts.hostname is None: + return proxies.get(urlparts.scheme, proxies.get("all")) + + proxy_keys = [ + urlparts.scheme + "://" + urlparts.hostname, + urlparts.scheme, + "all://" + urlparts.hostname, + "all", + ] + proxy = None + for proxy_key in proxy_keys: + if proxy_key in proxies: + proxy = proxies[proxy_key] + break + + return proxy + + +def resolve_proxies(request, proxies, trust_env=True): + """This method takes proxy information from a request and configuration + input to resolve a mapping of target proxies. This will consider settings + such a NO_PROXY to strip proxy configurations. + + :param request: Request or PreparedRequest + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + :param trust_env: Boolean declaring whether to trust environment configs + + :rtype: dict + """ + proxies = proxies if proxies is not None else {} + url = request.url + scheme = urlparse(url).scheme + no_proxy = proxies.get("no_proxy") + new_proxies = proxies.copy() + + if trust_env and not should_bypass_proxies(url, no_proxy=no_proxy): + environ_proxies = get_environ_proxies(url, no_proxy=no_proxy) + + proxy = environ_proxies.get(scheme, environ_proxies.get("all")) + + if proxy: + new_proxies.setdefault(scheme, proxy) + return new_proxies + + +def default_user_agent(name="python-requests"): + """ + Return a string representing the default user agent. + + :rtype: str + """ + return f"{name}/{__version__}" + + +def default_headers(): + """ + :rtype: requests.structures.CaseInsensitiveDict + """ + return CaseInsensitiveDict( + { + "User-Agent": default_user_agent(), + "Accept-Encoding": DEFAULT_ACCEPT_ENCODING, + "Accept": "*/*", + "Connection": "keep-alive", + } + ) + + +def parse_header_links(value): + """Return a list of parsed link headers proxies. + + i.e. Link: ; rel=front; type="image/jpeg",; rel=back;type="image/jpeg" + + :rtype: list + """ + + links = [] + + replace_chars = " '\"" + + value = value.strip(replace_chars) + if not value: + return links + + for val in re.split(", *<", value): + try: + url, params = val.split(";", 1) + except ValueError: + url, params = val, "" + + link = {"url": url.strip("<> '\"")} + + for param in params.split(";"): + try: + key, value = param.split("=") + except ValueError: + break + + link[key.strip(replace_chars)] = value.strip(replace_chars) + + links.append(link) + + return links + + +# Null bytes; no need to recreate these on each call to guess_json_utf +_null = "\x00".encode("ascii") # encoding to ASCII for Python 3 +_null2 = _null * 2 +_null3 = _null * 3 + + +def guess_json_utf(data): + """ + :rtype: str + """ + # JSON always starts with two ASCII characters, so detection is as + # easy as counting the nulls and from their location and count + # determine the encoding. Also detect a BOM, if present. + sample = data[:4] + if sample in (codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE): + return "utf-32" # BOM included + if sample[:3] == codecs.BOM_UTF8: + return "utf-8-sig" # BOM included, MS style (discouraged) + if sample[:2] in (codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE): + return "utf-16" # BOM included + nullcount = sample.count(_null) + if nullcount == 0: + return "utf-8" + if nullcount == 2: + if sample[::2] == _null2: # 1st and 3rd are null + return "utf-16-be" + if sample[1::2] == _null2: # 2nd and 4th are null + return "utf-16-le" + # Did not detect 2 valid UTF-16 ascii-range characters + if nullcount == 3: + if sample[:3] == _null3: + return "utf-32-be" + if sample[1:] == _null3: + return "utf-32-le" + # Did not detect a valid UTF-32 ascii-range character + return None + + +def prepend_scheme_if_needed(url, new_scheme): + """Given a URL that may or may not have a scheme, prepend the given scheme. + Does not replace a present scheme with the one provided as an argument. + + :rtype: str + """ + parsed = parse_url(url) + scheme, auth, host, port, path, query, fragment = parsed + + # A defect in urlparse determines that there isn't a netloc present in some + # urls. We previously assumed parsing was overly cautious, and swapped the + # netloc and path. Due to a lack of tests on the original defect, this is + # maintained with parse_url for backwards compatibility. + netloc = parsed.netloc + if not netloc: + netloc, path = path, netloc + + if auth: + # parse_url doesn't provide the netloc with auth + # so we'll add it ourselves. + netloc = "@".join([auth, netloc]) + if scheme is None: + scheme = new_scheme + if path is None: + path = "" + + return urlunparse((scheme, netloc, path, "", query, fragment)) + + +def get_auth_from_url(url): + """Given a url with authentication components, extract them into a tuple of + username,password. + + :rtype: (str,str) + """ + parsed = urlparse(url) + + try: + auth = (unquote(parsed.username), unquote(parsed.password)) + except (AttributeError, TypeError): + auth = ("", "") + + return auth + + +def check_header_validity(header): + """Verifies that header parts don't contain leading whitespace + reserved characters, or return characters. + + :param header: tuple, in the format (name, value). + """ + name, value = header + _validate_header_part(header, name, 0) + _validate_header_part(header, value, 1) + + +def _validate_header_part(header, header_part, header_validator_index): + if isinstance(header_part, str): + validator = _HEADER_VALIDATORS_STR[header_validator_index] + elif isinstance(header_part, bytes): + validator = _HEADER_VALIDATORS_BYTE[header_validator_index] + else: + raise InvalidHeader( + f"Header part ({header_part!r}) from {header} " + f"must be of type str or bytes, not {type(header_part)}" + ) + + if not validator.match(header_part): + header_kind = "name" if header_validator_index == 0 else "value" + raise InvalidHeader( + f"Invalid leading whitespace, reserved character(s), or return" + f"character(s) in header {header_kind}: {header_part!r}" + ) + + +def urldefragauth(url): + """ + Given a url remove the fragment and the authentication part. + + :rtype: str + """ + scheme, netloc, path, params, query, fragment = urlparse(url) + + # see func:`prepend_scheme_if_needed` + if not netloc: + netloc, path = path, netloc + + netloc = netloc.rsplit("@", 1)[-1] + + return urlunparse((scheme, netloc, path, params, query, "")) + + +def rewind_body(prepared_request): + """Move file pointer back to its recorded starting position + so it can be read again on redirect. + """ + body_seek = getattr(prepared_request.body, "seek", None) + if body_seek is not None and isinstance( + prepared_request._body_position, integer_types + ): + try: + body_seek(prepared_request._body_position) + except OSError: + raise UnrewindableBodyError( + "An error occurred when rewinding request body for redirect." + ) + else: + raise UnrewindableBodyError("Unable to rewind request body for redirect.") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py new file mode 100644 index 000000000..d92acc7be --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py @@ -0,0 +1,26 @@ +__all__ = [ + "__version__", + "AbstractProvider", + "AbstractResolver", + "BaseReporter", + "InconsistentCandidate", + "Resolver", + "RequirementsConflicted", + "ResolutionError", + "ResolutionImpossible", + "ResolutionTooDeep", +] + +__version__ = "1.0.1" + + +from .providers import AbstractProvider, AbstractResolver +from .reporters import BaseReporter +from .resolvers import ( + InconsistentCandidate, + RequirementsConflicted, + ResolutionError, + ResolutionImpossible, + ResolutionTooDeep, + Resolver, +) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78da774d9de717a251cd6467598bb63c035ed7b9 GIT binary patch literal 668 zcmaJ;yN(kv6t!oPd1Mk6R?AAzQUxhv0v$p~kma!wAQWhDV@)z9vDS~lc7n3iil3mT z;|KT%_=AzCsOTcLh_n^<5J<-@&b{aQ=-T)ATd&svF805CW!C}#et7aX9B<*SyOa7^DVn5M#=n~{=lIh$Hq)_aX&Vco@#v{t%4*fowtrHo+{PU|bX?rWuv zD6LN0!~9l0{0W^K{XmB<>6WjdZu=DJ$hQ&?sR!?@&OF2pUi2^3F(C!#glKPVomSgr z&2Cto>g|T6ndjU>B@0YphU>!mTe+5|qT#<#WD# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7651d15437e7018b88c89125773d734f623a857c GIT binary patch literal 6885 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e3e2f569205dd85d0d5a870d28a34102c79de45 GIT binary patch literal 2688 zcma)8&2QsG6u0x$G)))O7SQsc9S#VxqP75OC048DqYGOO1ZlS%wijpOnKT2A$2()E z#5Y8*NZj_y6>;Z(0R94e&#*{w|;HrXUF!UF=+a$8~AM(Kb9ZE;)%trW1CsW z4Q3xVS>wz)Zm}lFHfw?Gur|mI)&bdN8z47X7i5oZg4|m423uMGQ>ys`9!V8*m40-O z2mFM_ocICNn#7VsO3nr23Ku7e!=^IYB0M1zsYpEKu%l%#=gRR{;T2I@n8>naLS5K{ zM!J7MgMc$K=5Uu^Tux#kLqh#Hf%65?F;%g4hQC+?J8NkkOf*_1Pk(Tya>m^_ zNXy4{^?4SRM|D&<^`}J1BxFQRa&U8e3RrqQQanchz6crrjtEUsuH^n0%E_EkVW^O1 zgN6e3Sy|iYY7B=EwSimLRzZ8lVfxyo8Rds~L2aTyR{I4>VVOVAX7&4XW(8ntrO)2vA`RLq1j@fTU}f6(h2f zTd#G@ZjLqF@>T)rl+<9lMB~jmPFM6&daH_);@@yT&U@*Cjx15QRZF8@@y(*IWSDK1 z_v$5wWD46}sj-&Kn#SApWUeauht*`tsZjdE@?$|F8AH_tbaq+o`tW)k+}2955s5Ga z5YoLG{Kf9gT9m^-}6)#ubbigBCd8& zyo};HiZ@W)K!LAR^9nR$Utwj9z`rQk1#xEm)%xPRWw-B~cUtZKdA|+fn%%y8-s!?> z&+OUl&+KK#ZXepYEi^M6G_sByBmBA9x~r$%J9!Rw)mxx#{O!WxpQdfw|2A&ghxSjm K{ubtqIzR1;wt2EXi3q<+$j|AJ%5IuEgs~rZtdfILjp5cwLqKCj|nqS5#b; z{Jz)692{u1PMpds;&spKcfap__j~+dVWEpdDE^bb2sOOKaeqxe^kCIqHm~p;cY_OX z0e*rTQJ?$>&wiUmOaW8CJYk-+j97RM@0JPcq;14DX&MV$ zRX7-ug8oP_a7^+|kEJ|Ak)Y&@grygJ)6=1;3n|aJnb1UFG=${QOQGOws{EDU8#5>~ z8Jvm?O`Q)*lfFnOJe4Yt(&;JNv`@l!zq%%BOr4;x=|yw{i%cK^aNtMGb0+kpNbl8= zH~qnBs&oF&2gGweIVk!ke6lQ}EzvhIAqMsDvMBjNaxfsCn-e2rAz7RZ2WBRMy)KuC zU{oWEfuIz+l#x%ZPaX@;Oaxe!=YryxZz?c>JfW$qy2OF0Iab}dnRDkRFeBnL^(8VE z6eVpIMXe%K5|M&F%%$j)MW1+X=0YzkI^1DNIYvjPe3QY^(Ufa+RP86;h0)PBW_%Oc z7yIaFAnYF_X5^&LKawC~ly!+kHX;r5&g zhbQE|(B$+4Ta+Gucvkk!_4Qr~PF?Do2%YPjo{Nlyr*`%B@9dMYkUi5r|3%-0pxied zn(iA#wm?|w(?&!2^?}K~({qx5p0KD8FR~rc6>h_1u{tE$qwGu8GHbh&+ibz-Z)Gg> zB6pq-@K+oo=70%MYgy#pmfci&OC=5ARH zD2^xZoL+N0o2+VDw0zsmX40?k4`k(Nn%Q74;{~XcAJ6=XGztOJxG^v_g{7LWa8YjD zl1|az#;Mkv@S*m5kkjAvsnefWAj|N4Rpux~zqUmC#kUr|Fm;PreW#Xp;cs&%q7xjC z{zthp9*$e!BgQDwOZ40P4W8$&6qA$E(39232j6)A8;SO#O8e1x`}1pMLvdkf(`@p( z);W{Y#USRkO`<(1xhcZ@ssJf<<1JOFfvi6`F#&|aOEhfO&F56uCD3Q^PcJgn^Z6BS z%Ve@P|DD5ZRU2U6{rF@AeWU#%o4agi3h*L_&3~ zsKEi`?(V1wd!6cHVUA;<)M1q>@muPrh;}Ttx!wu3svQ=#h7!RnOHk*E>JhWIdVSuJ z7(2ZYCFEvA`c7|NJ*7By-5I(&x8@jPd;OYw+b!=vK{f}!jhF4VJT|tz1jwZaAOfBD z(v$EEsEELpk)*wjJ0DNew|^c)ptYzXg07dO@TE`yG|res@vTN_K@5b0vN#ovh%)#A z`TQJEgH(@p{;%T(Nkpwu6QWF{AhjZ4{)z2YXgh4sL3OoJ)Q$+SvV-0kD6mhoOQlYV zx)5dTbGFUq>%O!-s#ks*5pD4U3D050bC|aH@YUg;x6`d=+UaI(r%OH5gFd|n+7@OI zO_4|+j4f=&7IsPX560`J}*v(WjS%Koc zIgJ@Q7n%q~LP0t2Ac&{EI2E3qqV3ZY3HQu~rHkpdWUX=Z4xI1AOdu$pm%@|Obr~BG z+&U)1Xwuk~dD^1E`oQa8sMMyhVCgd8lmj!wdTDL4hKSdlnbKxFYr-;S5^IC0Qil-& z!p|DEz7Rve4l2_<6@>U9f@2O&PDkdtHJ)Ca9Sais4US(2HnwC_Y2aX>r1ehY{xg9f zg9AG&?f@@8I~Ky?`$>ujMObAMv%Wc5ZMQ>%#ok_;`r!WkTE(Kspi>nS0Cu4%&@RGx zSOe3(r4m2WWW{$cY!bUKFoIxHIBdCL^ z-ymGrmxOY$$+*p4wn-Tii#IheGN*52E@}qRGl+sl^lqC|uJo#=3NrRls_3!h(JA15 z)Grafk`5q}H43QmH7c`PY#;%H>J3mg zSZ^$d!G&lHYz-J#o*38;)4X>Fk;HECQpooVy>$$C@Qku_n5AYklrm%INTf;81PX1A z84YXAoMU2w^RltWs4$Tz#>Q@N=0?|#y){ebrC(Y%bA=5Fp;ZxDSN*s4B!rz0&G`C= zt>@bfjr@F}(ZY_m7CO);M(WtY6H(|eF@`85WNz5 zH|Cb-9#ZcfG&Cm~`jm#gEh~O)a^_0cqOk7ZybTFYtKw;0orrsO#T>gHhZbWqs1yq_ zB*6t5$PH<@z-pU@vp5f`ge^3&+{Qvf6|ula`FxdW%UYZxmq<>Ozim>Nkq>1~i^_uZ z7?azZD=p-aMut(FoR&sB`&Jv5_#1`aDO5cBG-;%~k_Z3JRwtJSA;x6Bdiw@npxR3i zUFPng>PVt}uhPDE&9g7&*!TbYJk#!wj?e&T=`_(#o#GuiBUY77d1m)zDxNXByH;Mt z>^i>VP&~UHNwkHe=PAmWSKv!hcd6CRm*s5@%Fp!F?pke0H0@NHcCMvCc(}unE1r?! zi{Vj;kfzF3o}{-TikLcu7E9WzN5uBYHHfZo4^2f@$3~mkx@*H_wLZDw=B-a{+IZ`e zYB?(6$Da{&`mjm*n>3pTrJyP0d4)7rj6*vjNnvRiD1g|<3`sJlM+Bx4MW^s56VklG zB`ul?h|;s#rUj$0N&J6)6%bSYSZJH3O4Gd=n$&rce+<=+Dh^syagf$e6$fp8-;5lT zF$Xl$(km1(X_+XLn5FBf%hy$d5}ro>EKN_->Y(D-d1ud>WB-HlT4;I-*kawb=FT>e zPpOxpTppiwlcLwDa#|#a=|3}>t#yzNtaa+*)A#>_1yB{Q3>=_J91I4h|IugvYv{2$ z`vp>XW-2i1M;y_Y;5GWX%@S0nmq6>RG5=>#jO`X({%%+;RUCbH3f3G47*Fz4tqNx0bK{VrGDR`4xq+Y@x-g}yuftQpp78neqM8+4 zIV2ucUd!Mni6g!k@?R9?h);?z_SsO4t1UrD@&{#E6{U1}j|quPGW4AXs-5*o0Zm%- z)2`ElLHTKKK#fScT>TrD%?4ipPw*HU3^lH4bQ*sW)N<${WJ?XkQVvaclTr?_Enx}0 z$mYdpPtKR5=g|POX?&1LNeTX@xEc(vU4K+mVUG(8P_lRrgWVrg76PUZHO&4tKg+#oKFxvQG!Osue<47tO+&;8e+79{t|5plZ!!d* zau4XjHT#`Q@FW7%d2hyGSxqxYm7hR#nOnD*ot?>&iW>)(53HJ$lIEDu{P}%P)dt5q zJMR~Zs}=F$j+oG~ZpQB~WCsep?JnY$%i7FYQ$Z?dTH($Afru2t`B*P?BA_ldU;!)| zO=3>?GKDruP$zQ2&nZDXM^1o+(p1fTWY+C!3(zs<>+?7vjGO=&L0c@IgNe&BfAysq zc}(<)Q^8rtn2d2`WNhn+!`L^MbmLzJ@k!!Qkn z=r>J9$_7jb30dD<7P8tgpvu})DbMIMCSVi;Q+MNh1~%`_`4&aJG66DxPvE?z*P~aX zD~A+M!=mNBw=7v&dE?~r$wXWJDtvKhU_`iwW}xzbO$AVLB@3sI|H_H90D1!1!sK>8flVIPM0P0P>J12EcGW=P?q zVF{dtW4QTn zI+rqE2u4zt31A~uJSChDfi;7D-#-?VB^%2ehTW9>15(0d5LV>?tZNfNDdi%?7K($6 zs-o%ya!Z7PRcVIszQpuPWq9jws=PKsAjV)Ni83*bJN2GWliD)LzA|Mae8vK^VWqsI z7}IDZJgTFv`I-z8mizG?s-+JI8FbqrT(@7fCmcttDKuS{*O#UUc3oD7`PXte#G^KBu%k7Z(Qj*IYugw1K9wx0S-H4!Cg$zhv|Fm(TQ07l zSI^a~c$;G_d*j}H$Q7&Wjd}Z!slmPO;Y!*!IibY0Xn$DC31#=I>sRIy4Noc!PsXcv zFP=yW6$znU5$e|(cHg=9@t%0Y@y~=4KdI@z({=Y!yyj@E`q<)$pOn_!uV`DHjaT#~ zE1Q$`eZY!ku0DT^8lXf5 zH*m=}F@sm8pbwILLn|AeYL~^cS%#CdE^XI{Ko4LXR8HQ9zJSGNR+O_^AI_d7&lR0B zrcWv}Z(xj!j_pSoAFL1>*RUTvi=npnkytP@O?KWi%b^v}n%XZ885m1-?NK%LD5wte z@rj~g>&>OBg`Op4g}!D|RxwRliA_MjP@DwNQ!!$PEsc0mcC9NZ^Tpttigy^MA<$E2 zOhq$|z?n4ha1$|>Zj>fIjd!{;@y^f7{YR)@{!K)exrfD^w<0MNC+pkZo4Pp_ukYR9 z1gHDz@Z#a6s{6IAN$gB-i{forw{biA6YU3-_5*)swHFmXsBFf+L}jN^*%_cI9_KpySXJMN% zc{X*#;JWi|%z)tsq!aspgfbkH-h1`YrJs;0G{H`_P8gsIJ2cTk@~P7mb+Sr5 z2|yXk4HC+zw;M!v6sFkoK{(v`Ri>Nq=!{;gEc%;NXx=EPsrN19b(X1I1$&-dSvGr~ z{p~MMo%~M_ftq?suFqbbRn_=V`6nxD-*eq`slW-6lk}F}a4owMUZQV|9Ma3`$+)+F z(`v4CZ#g)klzB6~5clpxrYbiq1@%qujochb)a_I1_N`ZN-Zqd#vXTp$l{`yzKoiSA z_V@7eE$&-plDn_w2V7D!K9z*|K2tfK43t{zJW&5F=`hrj#F zP(CDtA(*vFT&j`e*V;RIY#Kibs{*RyL~xF&I#Onk4aO?#R!#z17298<25Di=ilXXM zk*Xfuw#W0WUuj_Xs8UiBK7!zCGCQl1)%EXn-t0_NcPrK1w@xY5I~PxE**I^>7Ki>n zD63DD^(ke2@v?qc#!ARCrn!E6zGdaSm84;*x>r(3nw6?AWRlFTR1I+4_c-T(VE$eK zk2nii6ZvA0e-|&?%CC7~KA!{Tn_S_tQO;wSC8h8)tu>H&X6D4g*Nn4_%ODXA! zm-H+;3}U=Xso8Zm6sy@4uX&!9@dQt-x;G&-DnjGxj$0=_cE*Ip&xGT&wkP-po{B|} z%57(^j!x6g{$_oDgA987&;G`A1B3VPPl4M>rD7x zU`Fz32GY8fZELE{X&yhv4V^&xTNFO+I>tp^_H8Imp4y`P0aQcM4G$eKc7d7E4MT|u zx^Z&By3PC;Y*0o|toc|XtfmHA&`+7i4L#4#E2pm>QLX@FuWwkF_-l3Q+iWH!`+rZ! zq^sz>^bVp-TBYI+(gNk9QF}ADIaC+qg+z)3&@~+wz^CeQ=ix_GUlxg~bw4OA1Bogs zyJ26pC%o;7xBbq*$5k}{+__RV6-}wM&paKThVhxkE~SaxEA*4FVTuo?oCb+! z^ThP^Ac7P$LRdAr-L%ZNe3i-jDO!^2Km|YsNm+Y*`FNtVT`6t9Wl>6d7M%}@N)~N! zhD}uUC{;ZhT#d7QacJFSEvy3iOw{aFYIffV#cQ5ha%`1yRkfg%m}$zsOR3rwui6b- zS?dO^ta2|7J#=u;ZIpN28oDzVFCU0`2Ohx75*)+z7q7m!8d`jDO?ZMFE{|V5o)8)o z0p2lfiqN+DCep!Ig1cZ}NP&_NniQdF^~qbMYeH|b{fWiF^tY9WBD6dxDSKyVeJ{GZ zevtE)FBX2j^%Pgy2?reX96T%o0ur!p4Se^+?Gtya*1U(4-trrT%Y`ex_b%SNxaRHr z&)&-axo$^+FJw|<{;Q(HdrjZp>pUV@Kj8-WBX;W#>{k59qUwYP7*)T97*xQ60}vXG z1t!X*7syC~xykTp{L9>_GJflL0F>PX%?fykG19C+N4j7JmdQgY@)=K{N7Z`qo2F|G z7H+|^U``8J`LUH=B4EDwb&gx&rM~?60+wgEfR*$-@^3Kel#epx!F)RHAxe`E2j;_i zdKu>SWnXY?GXr_(P}HH12eatRm__F{b>yM3QKw#qHjAzWXVmrOluBS4Fqyyh8{f2z z=bQf938^SlXKv3h95%nQOo!8@L- zo^fLSbHX?6-*jBy&l@5#&nX9<)B8l|B2JIN5C|Vsmx_qh z_?I<9;fQ!9Z~EzN(qGR>??n)UK4}6L0<}u$5hbW2A<#_(FZrf)X8>xpzgHX%ix`6} zk}oohju@Lb(k;qi@}f0d{l`d&2*>V_=6_6OclL^}1;trZNJ>BnKH_ltWwy@KOe;7= zG%FZT{Q>X}@7OT3j8fX+Ij!5<)hoWrioULS9?X&xf?nG!bd~3V=o!sikb2RLGk59k zWzHAtDdoy`euV>XTBj#o@KHxFTJ%b5Bx4Pk7dbhG86NLc-$Xb(Es}jUW8E-)x^{C; z9O-46(Z||V4@>w|Z)D~!qMc(zo#d#Hw&2pNvhMVXN3jgSH+^)}uUou;GmYdeP0sTf zRvlR!=oSw#ckIL6=vrhfb0Xm6krtQ4fqrD|SM%Z(?$?;i0X2cr2|x^I?up=jn&_vW&V?>_$`8%@yk>dljuU32*t&-+3XGnjzcU_0VK(8o@H z(tL^%8!BA((>;0;9evEYf4ZHWUkyOfF21hT3`05G#`8d8R(~>~lBxLF-Z|Z#Zg01* zR~#b!JdlU#Y$T#J>^L~+v*VLkP4Wa#*TJypi@pnRI`0)<@B!bPZqI6zIz>JQBWwyT zz}20Q6RO0?t!eCQBlGTaTHBe>p`CCL)dBh^g1#x5O^D`cwtk|sdPNE`11AFzx}!*9DJlYz!bIe@8U22K%Yb%#z3JQ z-fp0I{g9rqB%MSfOj>4GiGSx6dd-m+Bn*Q(`!or^r!1-i%OyH_`-b z9>TJH#{_+Zbr5{q8Sto#lVD>3XW|0aX3Muk`S{f+N6giN2_?R&o{39)1bp>&eqoaV zjh2OfP#byF{%IesC=4VS{tjs;BXe5QlIF1C8Df#a$;^?5NFJRFG%|o0Cj`+D!?YRf#))$3Gi9C_Te;rt1|T8_TjWI zgY*VU9%Y^jr#d_t((-R0UA5-T(i_2u#0(pA^v0|k#960obUJ4$pgKV8rEixgBEtzz zvGEtx4@{(fi$0JPo~p~H7|+g4hp)$z&GFXh*j*kSJR!W6rnyYYfQH6_~7{a#}h4km6pACd8K9l ziWAnrhUWJ!+`N#e->KB^Og6XNZ+$XZE53L9=J7;rpHka*zqTb&+ppC2$94|JYmdN$ z(pC*SOV|F#b5Zu#6NlrqgUP!3nAjhy-3hOQuIlwdu3^_ESI|(tbZo1VYwEvK5pR5I z>G-{x)_V;t$|n-iPt7@8c?KKi}%(YFnTnEo)3+&}KYUJ@@sh!6MTqMb5!`>nC+Q z;!_=^DJQXD5xVjqW%ZANn5jTPCf<~J0*ggHW76+XG)8H5XhX<6ECncuLD5U}_FMGP z6_UY`&;f6p0;JS$P{aU+AXrtpOyLcR8>UYoElTDIs)-;u)W}lHL&2}cZi^%**eJ8wY~S^%@^;1o?TiK4&D>GR*$X;U4WZ9SIkibEy>d- z`M;_?dFSPoQ}4ZY^R+}>k5boj%lBE`6S3Np$btC2yJ)H9M)z`e+}*I+A9uGrfIdW6 z7FJ$~c}0M1Q+rIPzgNCv-C`-)n{00X;K2I_63x4m=3VjT-AgBvZ95Zf`<1r+iMB&Z z+o5>d;PQ)0gDV~IPl4r+wYgiVBdt)~bAM+w?|==w3W_)Q>>OJ@mMCpeN?TT6{;afp z-HdNBn9Mmm(eciMiH_%$j^_cfI6&W73~%l>d~e#Q;3_)So4C3Tb*Ch1_bRn}W-K8eCqApG$R8!y9!)kXF_;F5uUiya<}Sk zL9BmpO*rzmj=I8HXom`m5`w4*;+oKOue>#0-oAM3A?!XCFp+K@GjX2cjM>7q5bLj) zIB(gbjjx%wx)=D*vE{0o|KRyp1(aia(cb&jy|*sKtM|l8_h5$FCpzPg)v}akf9Nt2w&QoMjqy0%nM^Z=M7a-OfNH6{MYX z(spz>t9@nFkS@A|@KB2^qzQIjmqjgC2x{=OQRqUp*EdvHXSzs9#oVa#xi50#d5G?~ zA@*yH;1M+kGCX@>eCmPPof{|aE+=G+#ZdaEy?ep@n9l4(pRC)=PGe4W_!+f+WVk&t zSJAK7=W*g-bAsMGsC8`D?V4H##GWx@HaJgm`IIwJ8ypxl#i4A9+Mv+E8O8<20+n#c zPi`}oJSrRH%+q@?4!|xHwi};n>WFlxxiBYr>&drrCLe%|{VU}aFyE`WXen#C!4?R)$ zHgmh@@p1t!z}0Y3kNkexNcYuC>uoYjkq0XBuI5*OX_TZEpOj$49-*2=ieLuMQh*=D!qMpw@gVO3Y|ZfD>?D=>N!(Zf(hQZMTJsJfjy) zW1zQrFxiGW6HImsjJ0WHre&P$3^^emY^GNaraj9yENRmoQ+}Ek>GRQnRR0EjQ*>qzSUInW4!{S>P%tr_4A~A^lUT;-6Cv80~1R z$b@rjs`f>e{)9f0@GJc)dt$rF@P)yC!{as^3&zQu-x zI-e?{c;3<;h84Y-P%=>9DlpXwv(rR60r#&A9Y$sErD!d?w~bAFGminix!_ z{-SzB+O@@q^B@x#l35 zq_Frtc{27Xm3{Hb{$y26vauN=L!o=!Y{MCG%Qa!$%@x;ga2Dqvzc>J)sBn;nsZI5& zUJZOO{{DEP?J1@0sk{9jpNe@~Kl2`6w^HWyVx0F#IBFF~?V6+hCp98mxNEvMxqjzS z)e}SYDk6*Dt(ut7v?lBZzu4ZDt})T}tkU*uylvoTR!bvz!ltFeD^=j%5*2%tiamGa zyF+UgM>nioQR%uF8Q=u|ki+w#n=6IyCbI_Ka4)-8Pkk`*{>YMh&HDr$iJxDd|J2(E zAE1V&)s_!B-|tK`?N*w0Cz|#vP5a|b2jcb5d}2;|8^Nv)@a~74slmPYB0R-QD)TjlZUCzkBV{=G{U)oqV5-G)`Q z7u;)Q12LkJ@6O+zPxKvE`i{q|PsB=3fD`WO`)=p$&P3-kO6N0)&cjOQ;dtkfpINP4 z#XqiWTQRSkPF7T}gq4aONT7+@r#?d-#8X!^XG2-z>*kKHBW$ zs!#HdHmlJyxf5IFd-Xd`w3xo%S%0$B@#h`YC#xO*p|t6w==foa^JJ0rhdm7^1?yi5 zR=f{GY$O9^#=&YLiR#H$I)RA86p=X}gZ+GfXt<(%WwVh4I) zWoLf0o)KT~zo=kgq#p}`z#a^BClqL(ymi$-GBnsPNb^uEyC(nz^3F0OQsBVve7SyT`U2fI zYWVYK>BtRVhd%}x*-k)Z`f`H2oS=&VV8>1HYA}b$s{#9kF^(p9C%{;%hO}liYWgkH zwG!sNfE)o1`cWen{JAjS6i6eK_6OG6A*jsf1(_~~Yi_wQo}Ivh_>mj(dG6|ULsWo5 ziuD{m32DtWSj9XwMeTHc?!z>UHz37|Jy?{#hw1ZcU}PQRc|_@qe(b~kb7FU9%uL#A zf$dIL)b*vU83GepvyPMfASa-_A&^2C-w)B~GT2?>+*p9t`>U=ukgmSo*!Q+e9CmyG zVF0YNhj}fS;rBu;cb<8K_o~*;tGcBhxtZ?(VQ&_|Vyk%I+d3Z57-W_cm(SoREK@&P z8Jx3C-%-GlRMzr8q8f>SO!`k0F{HqDIN=c$huAfwAbo};6!y~>s+1`Nr9Y-Og`xyS zpHg(0BF5mx>1_>>T!2Vt-|$p9xWZBOUSBY6*p<>f#Zvwg zq3YLPynG~Saeiy)SBDk@S6+NjRJLThJd~_%Aoe0r-K$jhg2li=7i;TPH{9w^-}f}G zwtmq2e(#;;J8yy~@W4y9G+E$Y3MvIPNuh}D#9Z=U8&2ZzN>Q6q)D|xSPP02(Rc;Ur zS;HTgR{MY7y8O*03vimZbY-{V5tH7s8_s3tO3S+*s)W#6%c}V^q2-|mW!DSP{uWNt z6(^fIKInPB=lA;(-ocwKD~&5J-+B3N$G`rSrJ|*Q<}lniy&9a2cNZl-|jwQwR}=394U2u z(rQKg1FQ2$k^Ki=9x*Md5j33xw^@s%>?eQ7gOP9ybX26DQDw!G{jSv zN_`QOm6_53#oB!~G*AF^hT8^B4i3=GNK@*WId%seQeg5=Utb6#H(9@N-Zgu!wA#d> zv^PcwelucZ1|ArqJabOHB91u)sE!!ZGq@$%FRIQ6`b~zk{W`_78tFT`UmOqvkWuM? z9qT&XO>MY)%Dw7^h2Q~LU#GYZ=q)o3quT=^+n{jXgA)|8?Z~LF zTZ4@b=BK5BepV$JnQ5!Ru??3X;drh#7luM7y+5+1L%aP5b3y&i*;8!yhQmk>lDp9q z+{plx*x*?`pgGd^w*==m`0~w6(=^cjka5`v2nPzMeba!DLlWCcS=FT5R{ihh!ZU=; zu(`3pnF}D%DGU*n0xMxBK|?6#n-XA1T?>X4kS@&7e=?9BKNN;P0MUT3#ROiu3P?Ij z(GMvi9tNM7nf5tKpu8zp8crAk#ZI^~EUHRXR8+h92K&EPn+_|;o(z^3ywKJ@u3TKT zd{Fp)A@m*#w-@4N&)`k~FV4|6Dc+{l19y+Zm>BmSTeRNy)UJFj?rDxWnwhkWTOWTK zKqa_8C7%{Rp#Hh(s+3U!pwyw{i1$B2Mu{T27gQ!b{R(%_^2~#>w#&m?mU?T8Dw|V| zj%w-O;vwCp=uJc^r%nN6iKsU0#}Nrvyvi!`NkXPXvUJKt$3X*(u(5j^QqCj#|FfX} z9{|LMtH%y(>XlIHdFx?Heu<*5QS>@RYtxmDf5Ke=Sv;_%oSMk~%(dHWWJ=a$35 z*R4Fe#o@8#HuLQ(9-KMg+o5}OHY^q-9QBH$eq}bc<3!wX^0IZycGk*wFO_d`^xQaF v;N^?f+c=lFSd(xzD9(meN38Qu++qMog^DQw?!{2gvvgP{Um@H$# literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00f0d073394b299d082612b832b3d7c86792246c GIT binary patch literal 10540 zcmcIqU2qgvcJ7~-va&}4D%m&V-~w{k^M`!SYl*G zW`oQKBXcqzWJBBt$1)sql96pU8QHGz4|%=)h>bpVz|%5?o228LL+XEXEgiI_04>W4 z`j^qC74WpO;He-xZ!#n0G1l$+H4ZcUYZhuZn-TqyU{LXEfk;^O`bPbJ{UdsfZLnnj z2&yGUVMbV)8R2AhgqJxO&nELw+i?yf4%rTMnGBMT2yz+J8u-cg_b3cX%sGd5KTj;T1d^y*JN6OoYO(c(%d5FVe1cuoei_oqfZ zgBMSD&JPWG&PL>^pwfLI5(%oFKqwkiLP}Wc_D5z^U(C}pt%RpN!N8~|8q+2s;ln+> zeI7NSDcw={o)6~ii3Xw`kSQ!jh=(X@Bsi^LdwrqQo@gv1c)fveK=XRzyNXt|$9!H6 zlB&C*y3TCu-gAHFyzO??`tBzBr*Y4`?XScvE=$qs;_A@V?ShNK)tzM~bL)t`^zzVH z>GKQ`;E9{d*kBffpfwX0RQhre5iY5~@X}IX`n(ESWow`UfyEsQLrcSp!)dW2DRdBg z`ui1>4=Q16Im^6Wcn4zcEL~Un7)4P{DQg#wEcGw;r^WW9(5_2axJ)@?ZGlcp%q$Db z2v?$9M$;;pv^*^n>%Wb)pENACSZg1CB?LZSvJ4hprxav8Qe~yRhAU< zJ44JJ?hfzg1B{=$1S|Z~T8?t{K5a(v7nc zt}=GmR3Vi(;o5D}O~W41CKQrkuVmP16*VG3(T&801IKHNjRT+6Lo@XwsID{rS>1eB zoVRZ@HYel<;d|k9WB0uMwz%H=`jeK&Eo;5+rF!2>_nus9e1ElWrDkOy(fg@?x$XYg zy|>bh@6(ojZ#?ll_N?`tO!b{i_nlg6I=$Mt(zf#b#K5QOa_{}=d#BP(r|0d@gobso zZr=GaYiF8Hu`j=DI<4Y7KIe8FZ*_d$zw7v3hre*kpdRs;{a2{IZOf3#yj94oX%#oN z*na%ZL8LiBGYFZ=MFYb(zGRq!?Czh=(tWIwoZl@QM)JMP1klOo!#q#^G?;Rsx_f8B{U`uKNDIv zTH5X_^EQ0Cpr(YTjn?-2Q*bZd5)=GWVb4~)Lqnv>>!VO&jdqjRqNEh6!Wv>Ga|+6L z&G#B&E=dR$+bE4gH~5>rd%N8RbiqpLzty*SYq@9n-}c+U*|_-N50p@3S^-Nj>|u;V zLU}vs0&b)N%!iT5g~ug85}hPT*v+Jx@P|-!XR4-i`Fy&@jhznYorZ4> zCwf!P<~3($$_a13aJs*SP6u?uD>Ng##$Wa{RNJG*EH#8_<{C?CSY{T@r4W0dFP2#r zRhDT+E1m0U~72l0Y0NEDwO17}M2gd+FkyPMlUIHSZUg3^sZ5mMJElH6himKo!eazEp7 zA9i>js_V@23dZTuIclo1eWSK9(R=q`(%Edl=)%>MuzO9Qo5S}^knl0$CJW%YCbXo4 zmc-RBgto104E53hzbtC>48x*+EwyU}XAhwd7J$QAgFmqViX7a7F9RmU&hlg2PuL}v zWo}p4nA>$Wh=cx)pJ5IDuCEZXRfA|yOV0@Yi9k>$z?iAcql~B^oo`ei<@eH1E#6RU z_4zmGHB}7R{+sy*EWfGsLI1t}wI)xh$&+sC-DJ4(rdwy`2j;J>?`#GHa5XKk>$~a` zH4F0H3fS|mrmuNu@{%Iejo!m-5obVo=-D_!ae^S{0ZBFxdmmaCr7EX|HQt6|xU&5MN8a5QZ z8!D9@!D%p6w?8eqlY*PdKJ2c>P%i8XDPAvx$lef*b>SMKldDs{pz#L6C^_QydPz0P zgaHX@z-kXx?N}jIq0WYM?bLMnbMl znbD+#2B6;J4JFd&vJ0o+t%?)^c5_23Bo$oiyW41Pp`rD!UCVutUvO-x-wiq zvW%THG6-;+E8FZ^%g7VjT11&<>g+tEB!=T{C3D#SVH=t2lJd11(m)Q#`hpO3WxPcnOg~k${9O4g6&xv@-wvxrh~CuVSgM0N+B~l2KTzAN->)P zO?*#@?!kV+mm3+B5$LR9WQ3Z+EJoTKqs`^Dt0oY z38LLxG;BS#F1Kkoe(oY9sAiaJ{6%I4f|Ox`u;>IaxJrg>uZ`aPU1~sfNqJ^t0)$}T#;d%}c35KOXkfFWn)H}Z_KRT|2 zm1|MbA3wNNcW4w|Z_m+S#P18L{XMzH3XG;ACHRIC!>8ilf^TKu(S;|M9$$Leb^H@H zB@VvKVj||xcC@fdWi2c?GBh-TFiXy1bqp#qWoipWAYG1&b6KaSlzCWzwJwqjE!BNc zeRG}pQXEVidGOA?cb&KIu)>o_I;{1d5)@OoenkW7bkfnu|CKBvu?<~HP7TcDGQh9Q&heDO)JJ6TB zh1GYls>TYvF*yTO2GA-T3C9%@0g8(TOumm*p64FLTRbPw*(o^m&urRQ`_WB@-Tpmxvx>7H$qJlZr{1)`AG+p>X^B}3WebR^ z<-wiefMYv6yc1#$cUh*+d&1`jUK*ndI2u$w2q-hY@4}EjghM&W7lvGt&RnH2y`e;C z4qK6>(U^33ED)A~a%%nwMcwbdYy|Fukdnfn{W5lj$5JG$XSn@ApQ=hTk*T081;W#j zD+-O~r^2#Af-&r3ey##zOXHJWQpk5je<}H-_WU8Heo`1A&>LR2!&p8|@`KQ$iZPHP z(}A=J5}6vGkU~>IEdU2`k`@RlYL_%RrAa|JZc`=VgJZUkr1N1Zq`;A!tV&V95r~&y zvVkxiXmlzN)Vc#<=@00koun#Pr1Fl#;e73QN&camQpOsvM*C_$ih-S21w&-Yj8{boU$o13vz0D$TzwjvsMxN6t2YBduiDBx(b-U$ z{{$|!Bk1|W`z-U&FhMKll~0rB+vOeCDo}IBhjaTsoCE$%PQv#xHe5=&@iMj`6eJ(ut9-V!8 z0hn9O*_=De#5f>X=n7~7lEt&kMJC4PNE1JN;({BPH@HZRvZajcycUU`qB{)ET>KuFyny9$(bsn^P!&&`F9VAQ|pE>scmQ>eKc7y4Z^4-7M(ST%T_bYn(a-*)E zSt{?~|Ay@-<}s*xs{RGI*e>&Qy&6~}wkjzmrwLcW`;vEfTj<}mVKs&^;mKd&X2Bem znWwQ4Ka532u|f`z;Wb4usAWblw@jwYKSgN10|f;<(NP%TdD~URzFzO2LlgCFsNkfe zwF4<+vi0@(Aq?McpZn~{FZzGp|D0#aYk+5Vbp5RRr`?Z)bo*N=0b}5*MA^EyYhK@1 z!>i?`J_Ls?aU=vcn(j7AJjP{wfmH~8Y6ny|nXfsAUD&MV>@AxDYd;1#4ZFSWc@^~= zS)1KnuX`Nqg{zb+#=0{97eBGnd)`1gYORK&i2q}emw=~5-l5nz7{1{Go^--LNKF8; z2EbFqq{%5&lYD@-k!vyYNUXpoEXWJRS|i@9JGvQU7}pg4d=$Ofy@Wh*2E z=Y&4R8l53iil$zK&L$qSfWoE-CJGDYgRL;!V!2c~9R4wUNyShQpb3*DRsfuXpvzP& z>kNq%7+C?Zb##}9U@`_DF~FB#M5P<7hF2Jp7X0@O9eTH&ppLx>?6WQQJ{o#5{22a6 z$6!(z+={)pPw{7%Xr4yHB+!$V6cc+*Sm4NMXhAGRr&zkJ=sK9*$KDVl>6~p#MD;sK zMia}Hl2JU`Rx%xsmWw1CCQ-aE!3u)Uu=)}Fa#&#ltZ=fB^n_IB5MTx5NDYpe1&*oz zR}k8(Xu9ae=yY+c!gwa{#EZ_AauncvQC>kqDnX0Yk*aBfYNb|bw#$z{$7s2XNd76r zJ8XRLIM6USNjKOj;?6YiR(k%a9}nSyc@Y+EVX8oW1&Bj~KIlymHd7H$;s4ZVKA>|1 z=bsTw%p({_&_#m(L~wlo-h?;i#Uf?pdSxZmXcqjUzA#$pHr3! xQlFfkTaZ|yA0MBYmst`YuUAm{i^C=tY?)mVE6`<(KwJ!Bd}L;1WGrF^vH)j#Lcjn3 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5347fb0a755e04de762af39266218344f799f546 GIT binary patch literal 454 zcmYjLzfZzI7`^Kii&R2F+={=zT0?|on1`|iD`d_D(M6(1ghTZOOb@>}}PFsrHI2Kc~-9jyhH zfv@?9LZ-DehFS=Mp}r1?z5%2Ozq!nUYbtgC&QTK#U^$Z*bytWW>?GL+IqQ+oBX6lo zS(BOqiBvl(FC~WKxRg3hQt&vX#ESzSMz-7b7P7=VWP;0hS4u7u^Plb>%+f#SBi!YT z;P`?t<=EwTKZp-{ZCq{c;YO{B>)h{AVjXi%BOEY62_s=_d3+GLLu~g+*vB+zV=;`o zJlwJ?n>Y$$VhPtfbvq=&A`sY7GM`HL7k~=E7Er#>#Hv972kt-@7 zR4>A+O%a4}Vy=!(#<{giW2z%)zvz{*Uip|9#diSH)q2*gRA|qm^!O@U0N42vx`QS3 E3GtGFv;Y7A literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py new file mode 100644 index 000000000..1becc5093 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py @@ -0,0 +1,6 @@ +__all__ = ["Mapping", "Sequence"] + +try: + from collections.abc import Mapping, Sequence +except ImportError: + from collections import Mapping, Sequence diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py new file mode 100644 index 000000000..e99d87ee7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py @@ -0,0 +1,133 @@ +class AbstractProvider(object): + """Delegate class to provide the required interface for the resolver.""" + + def identify(self, requirement_or_candidate): + """Given a requirement, return an identifier for it. + + This is used to identify a requirement, e.g. whether two requirements + should have their specifier parts merged. + """ + raise NotImplementedError + + def get_preference( + self, + identifier, + resolutions, + candidates, + information, + backtrack_causes, + ): + """Produce a sort key for given requirement based on preference. + + The preference is defined as "I think this requirement should be + resolved first". The lower the return value is, the more preferred + this group of arguments is. + + :param identifier: An identifier as returned by ``identify()``. This + identifies the dependency matches which should be returned. + :param resolutions: Mapping of candidates currently pinned by the + resolver. Each key is an identifier, and the value is a candidate. + The candidate may conflict with requirements from ``information``. + :param candidates: Mapping of each dependency's possible candidates. + Each value is an iterator of candidates. + :param information: Mapping of requirement information of each package. + Each value is an iterator of *requirement information*. + :param backtrack_causes: Sequence of requirement information that were + the requirements that caused the resolver to most recently backtrack. + + A *requirement information* instance is a named tuple with two members: + + * ``requirement`` specifies a requirement contributing to the current + list of candidates. + * ``parent`` specifies the candidate that provides (depended on) the + requirement, or ``None`` to indicate a root requirement. + + The preference could depend on various issues, including (not + necessarily in this order): + + * Is this package pinned in the current resolution result? + * How relaxed is the requirement? Stricter ones should probably be + worked on first? (I don't know, actually.) + * How many possibilities are there to satisfy this requirement? Those + with few left should likely be worked on first, I guess? + * Are there any known conflicts for this requirement? We should + probably work on those with the most known conflicts. + + A sortable value should be returned (this will be used as the ``key`` + parameter of the built-in sorting function). The smaller the value is, + the more preferred this requirement is (i.e. the sorting function + is called with ``reverse=False``). + """ + raise NotImplementedError + + def find_matches(self, identifier, requirements, incompatibilities): + """Find all possible candidates that satisfy the given constraints. + + :param identifier: An identifier as returned by ``identify()``. This + identifies the dependency matches of which should be returned. + :param requirements: A mapping of requirements that all returned + candidates must satisfy. Each key is an identifier, and the value + an iterator of requirements for that dependency. + :param incompatibilities: A mapping of known incompatibilities of + each dependency. Each key is an identifier, and the value an + iterator of incompatibilities known to the resolver. All + incompatibilities *must* be excluded from the return value. + + This should try to get candidates based on the requirements' types. + For VCS, local, and archive requirements, the one-and-only match is + returned, and for a "named" requirement, the index(es) should be + consulted to find concrete candidates for this requirement. + + The return value should produce candidates ordered by preference; the + most preferred candidate should come first. The return type may be one + of the following: + + * A callable that returns an iterator that yields candidates. + * An collection of candidates. + * An iterable of candidates. This will be consumed immediately into a + list of candidates. + """ + raise NotImplementedError + + def is_satisfied_by(self, requirement, candidate): + """Whether the given requirement can be satisfied by a candidate. + + The candidate is guaranteed to have been generated from the + requirement. + + A boolean should be returned to indicate whether ``candidate`` is a + viable solution to the requirement. + """ + raise NotImplementedError + + def get_dependencies(self, candidate): + """Get dependencies of a candidate. + + This should return a collection of requirements that `candidate` + specifies as its dependencies. + """ + raise NotImplementedError + + +class AbstractResolver(object): + """The thing that performs the actual resolution work.""" + + base_exception = Exception + + def __init__(self, provider, reporter): + self.provider = provider + self.reporter = reporter + + def resolve(self, requirements, **kwargs): + """Take a collection of constraints, spit out the resolution result. + + This returns a representation of the final resolution state, with one + guarenteed attribute ``mapping`` that contains resolved candidates as + values. The keys are their respective identifiers. + + :param requirements: A collection of constraints. + :param kwargs: Additional keyword arguments that subclasses may accept. + + :raises: ``self.base_exception`` or its subclass. + """ + raise NotImplementedError diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py new file mode 100644 index 000000000..688b5e10d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py @@ -0,0 +1,43 @@ +class BaseReporter(object): + """Delegate class to provider progress reporting for the resolver.""" + + def starting(self): + """Called before the resolution actually starts.""" + + def starting_round(self, index): + """Called before each round of resolution starts. + + The index is zero-based. + """ + + def ending_round(self, index, state): + """Called before each round of resolution ends. + + This is NOT called if the resolution ends at this round. Use `ending` + if you want to report finalization. The index is zero-based. + """ + + def ending(self, state): + """Called before the resolution ends successfully.""" + + def adding_requirement(self, requirement, parent): + """Called when adding a new requirement into the resolve criteria. + + :param requirement: The additional requirement to be applied to filter + the available candidaites. + :param parent: The candidate that requires ``requirement`` as a + dependency, or None if ``requirement`` is one of the root + requirements passed in from ``Resolver.resolve()``. + """ + + def resolving_conflicts(self, causes): + """Called when starting to attempt requirement conflict resolution. + + :param causes: The information on the collision that caused the backtracking. + """ + + def rejecting_candidate(self, criterion, candidate): + """Called when rejecting a candidate during backtracking.""" + + def pinning(self, candidate): + """Called when adding a candidate to the potential solution.""" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py new file mode 100644 index 000000000..2c3d0e306 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py @@ -0,0 +1,547 @@ +import collections +import itertools +import operator + +from .providers import AbstractResolver +from .structs import DirectedGraph, IteratorMapping, build_iter_view + +RequirementInformation = collections.namedtuple( + "RequirementInformation", ["requirement", "parent"] +) + + +class ResolverException(Exception): + """A base class for all exceptions raised by this module. + + Exceptions derived by this class should all be handled in this module. Any + bubbling pass the resolver should be treated as a bug. + """ + + +class RequirementsConflicted(ResolverException): + def __init__(self, criterion): + super(RequirementsConflicted, self).__init__(criterion) + self.criterion = criterion + + def __str__(self): + return "Requirements conflict: {}".format( + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class InconsistentCandidate(ResolverException): + def __init__(self, candidate, criterion): + super(InconsistentCandidate, self).__init__(candidate, criterion) + self.candidate = candidate + self.criterion = criterion + + def __str__(self): + return "Provided candidate {!r} does not satisfy {}".format( + self.candidate, + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class Criterion(object): + """Representation of possible resolution results of a package. + + This holds three attributes: + + * `information` is a collection of `RequirementInformation` pairs. + Each pair is a requirement contributing to this criterion, and the + candidate that provides the requirement. + * `incompatibilities` is a collection of all known not-to-work candidates + to exclude from consideration. + * `candidates` is a collection containing all possible candidates deducted + from the union of contributing requirements and known incompatibilities. + It should never be empty, except when the criterion is an attribute of a + raised `RequirementsConflicted` (in which case it is always empty). + + .. note:: + This class is intended to be externally immutable. **Do not** mutate + any of its attribute containers. + """ + + def __init__(self, candidates, information, incompatibilities): + self.candidates = candidates + self.information = information + self.incompatibilities = incompatibilities + + def __repr__(self): + requirements = ", ".join( + "({!r}, via={!r})".format(req, parent) + for req, parent in self.information + ) + return "Criterion({})".format(requirements) + + def iter_requirement(self): + return (i.requirement for i in self.information) + + def iter_parent(self): + return (i.parent for i in self.information) + + +class ResolutionError(ResolverException): + pass + + +class ResolutionImpossible(ResolutionError): + def __init__(self, causes): + super(ResolutionImpossible, self).__init__(causes) + # causes is a list of RequirementInformation objects + self.causes = causes + + +class ResolutionTooDeep(ResolutionError): + def __init__(self, round_count): + super(ResolutionTooDeep, self).__init__(round_count) + self.round_count = round_count + + +# Resolution state in a round. +State = collections.namedtuple("State", "mapping criteria backtrack_causes") + + +class Resolution(object): + """Stateful resolution object. + + This is designed as a one-off object that holds information to kick start + the resolution process, and holds the results afterwards. + """ + + def __init__(self, provider, reporter): + self._p = provider + self._r = reporter + self._states = [] + + @property + def state(self): + try: + return self._states[-1] + except IndexError: + raise AttributeError("state") + + def _push_new_state(self): + """Push a new state into history. + + This new state will be used to hold resolution results of the next + coming round. + """ + base = self._states[-1] + state = State( + mapping=base.mapping.copy(), + criteria=base.criteria.copy(), + backtrack_causes=base.backtrack_causes[:], + ) + self._states.append(state) + + def _add_to_criteria(self, criteria, requirement, parent): + self._r.adding_requirement(requirement=requirement, parent=parent) + + identifier = self._p.identify(requirement_or_candidate=requirement) + criterion = criteria.get(identifier) + if criterion: + incompatibilities = list(criterion.incompatibilities) + else: + incompatibilities = [] + + matches = self._p.find_matches( + identifier=identifier, + requirements=IteratorMapping( + criteria, + operator.methodcaller("iter_requirement"), + {identifier: [requirement]}, + ), + incompatibilities=IteratorMapping( + criteria, + operator.attrgetter("incompatibilities"), + {identifier: incompatibilities}, + ), + ) + + if criterion: + information = list(criterion.information) + information.append(RequirementInformation(requirement, parent)) + else: + information = [RequirementInformation(requirement, parent)] + + criterion = Criterion( + candidates=build_iter_view(matches), + information=information, + incompatibilities=incompatibilities, + ) + if not criterion.candidates: + raise RequirementsConflicted(criterion) + criteria[identifier] = criterion + + def _remove_information_from_criteria(self, criteria, parents): + """Remove information from parents of criteria. + + Concretely, removes all values from each criterion's ``information`` + field that have one of ``parents`` as provider of the requirement. + + :param criteria: The criteria to update. + :param parents: Identifiers for which to remove information from all criteria. + """ + if not parents: + return + for key, criterion in criteria.items(): + criteria[key] = Criterion( + criterion.candidates, + [ + information + for information in criterion.information + if ( + information.parent is None + or self._p.identify(information.parent) not in parents + ) + ], + criterion.incompatibilities, + ) + + def _get_preference(self, name): + return self._p.get_preference( + identifier=name, + resolutions=self.state.mapping, + candidates=IteratorMapping( + self.state.criteria, + operator.attrgetter("candidates"), + ), + information=IteratorMapping( + self.state.criteria, + operator.attrgetter("information"), + ), + backtrack_causes=self.state.backtrack_causes, + ) + + def _is_current_pin_satisfying(self, name, criterion): + try: + current_pin = self.state.mapping[name] + except KeyError: + return False + return all( + self._p.is_satisfied_by(requirement=r, candidate=current_pin) + for r in criterion.iter_requirement() + ) + + def _get_updated_criteria(self, candidate): + criteria = self.state.criteria.copy() + for requirement in self._p.get_dependencies(candidate=candidate): + self._add_to_criteria(criteria, requirement, parent=candidate) + return criteria + + def _attempt_to_pin_criterion(self, name): + criterion = self.state.criteria[name] + + causes = [] + for candidate in criterion.candidates: + try: + criteria = self._get_updated_criteria(candidate) + except RequirementsConflicted as e: + self._r.rejecting_candidate(e.criterion, candidate) + causes.append(e.criterion) + continue + + # Check the newly-pinned candidate actually works. This should + # always pass under normal circumstances, but in the case of a + # faulty provider, we will raise an error to notify the implementer + # to fix find_matches() and/or is_satisfied_by(). + satisfied = all( + self._p.is_satisfied_by(requirement=r, candidate=candidate) + for r in criterion.iter_requirement() + ) + if not satisfied: + raise InconsistentCandidate(candidate, criterion) + + self._r.pinning(candidate=candidate) + self.state.criteria.update(criteria) + + # Put newly-pinned candidate at the end. This is essential because + # backtracking looks at this mapping to get the last pin. + self.state.mapping.pop(name, None) + self.state.mapping[name] = candidate + + return [] + + # All candidates tried, nothing works. This criterion is a dead + # end, signal for backtracking. + return causes + + def _backjump(self, causes): + """Perform backjumping. + + When we enter here, the stack is like this:: + + [ state Z ] + [ state Y ] + [ state X ] + .... earlier states are irrelevant. + + 1. No pins worked for Z, so it does not have a pin. + 2. We want to reset state Y to unpinned, and pin another candidate. + 3. State X holds what state Y was before the pin, but does not + have the incompatibility information gathered in state Y. + + Each iteration of the loop will: + + 1. Identify Z. The incompatibility is not always caused by the latest + state. For example, given three requirements A, B and C, with + dependencies A1, B1 and C1, where A1 and B1 are incompatible: the + last state might be related to C, so we want to discard the + previous state. + 2. Discard Z. + 3. Discard Y but remember its incompatibility information gathered + previously, and the failure we're dealing with right now. + 4. Push a new state Y' based on X, and apply the incompatibility + information from Y to Y'. + 5a. If this causes Y' to conflict, we need to backtrack again. Make Y' + the new Z and go back to step 2. + 5b. If the incompatibilities apply cleanly, end backtracking. + """ + incompatible_reqs = itertools.chain( + (c.parent for c in causes if c.parent is not None), + (c.requirement for c in causes), + ) + incompatible_deps = {self._p.identify(r) for r in incompatible_reqs} + while len(self._states) >= 3: + # Remove the state that triggered backtracking. + del self._states[-1] + + # Ensure to backtrack to a state that caused the incompatibility + incompatible_state = False + while not incompatible_state: + # Retrieve the last candidate pin and known incompatibilities. + try: + broken_state = self._states.pop() + name, candidate = broken_state.mapping.popitem() + except (IndexError, KeyError): + raise ResolutionImpossible(causes) + current_dependencies = { + self._p.identify(d) + for d in self._p.get_dependencies(candidate) + } + incompatible_state = not current_dependencies.isdisjoint( + incompatible_deps + ) + + incompatibilities_from_broken = [ + (k, list(v.incompatibilities)) + for k, v in broken_state.criteria.items() + ] + + # Also mark the newly known incompatibility. + incompatibilities_from_broken.append((name, [candidate])) + + # Create a new state from the last known-to-work one, and apply + # the previously gathered incompatibility information. + def _patch_criteria(): + for k, incompatibilities in incompatibilities_from_broken: + if not incompatibilities: + continue + try: + criterion = self.state.criteria[k] + except KeyError: + continue + matches = self._p.find_matches( + identifier=k, + requirements=IteratorMapping( + self.state.criteria, + operator.methodcaller("iter_requirement"), + ), + incompatibilities=IteratorMapping( + self.state.criteria, + operator.attrgetter("incompatibilities"), + {k: incompatibilities}, + ), + ) + candidates = build_iter_view(matches) + if not candidates: + return False + incompatibilities.extend(criterion.incompatibilities) + self.state.criteria[k] = Criterion( + candidates=candidates, + information=list(criterion.information), + incompatibilities=incompatibilities, + ) + return True + + self._push_new_state() + success = _patch_criteria() + + # It works! Let's work on this new state. + if success: + return True + + # State does not work after applying known incompatibilities. + # Try the still previous state. + + # No way to backtrack anymore. + return False + + def resolve(self, requirements, max_rounds): + if self._states: + raise RuntimeError("already resolved") + + self._r.starting() + + # Initialize the root state. + self._states = [ + State( + mapping=collections.OrderedDict(), + criteria={}, + backtrack_causes=[], + ) + ] + for r in requirements: + try: + self._add_to_criteria(self.state.criteria, r, parent=None) + except RequirementsConflicted as e: + raise ResolutionImpossible(e.criterion.information) + + # The root state is saved as a sentinel so the first ever pin can have + # something to backtrack to if it fails. The root state is basically + # pinning the virtual "root" package in the graph. + self._push_new_state() + + for round_index in range(max_rounds): + self._r.starting_round(index=round_index) + + unsatisfied_names = [ + key + for key, criterion in self.state.criteria.items() + if not self._is_current_pin_satisfying(key, criterion) + ] + + # All criteria are accounted for. Nothing more to pin, we are done! + if not unsatisfied_names: + self._r.ending(state=self.state) + return self.state + + # keep track of satisfied names to calculate diff after pinning + satisfied_names = set(self.state.criteria.keys()) - set( + unsatisfied_names + ) + + # Choose the most preferred unpinned criterion to try. + name = min(unsatisfied_names, key=self._get_preference) + failure_causes = self._attempt_to_pin_criterion(name) + + if failure_causes: + causes = [i for c in failure_causes for i in c.information] + # Backjump if pinning fails. The backjump process puts us in + # an unpinned state, so we can work on it in the next round. + self._r.resolving_conflicts(causes=causes) + success = self._backjump(causes) + self.state.backtrack_causes[:] = causes + + # Dead ends everywhere. Give up. + if not success: + raise ResolutionImpossible(self.state.backtrack_causes) + else: + # discard as information sources any invalidated names + # (unsatisfied names that were previously satisfied) + newly_unsatisfied_names = { + key + for key, criterion in self.state.criteria.items() + if key in satisfied_names + and not self._is_current_pin_satisfying(key, criterion) + } + self._remove_information_from_criteria( + self.state.criteria, newly_unsatisfied_names + ) + # Pinning was successful. Push a new state to do another pin. + self._push_new_state() + + self._r.ending_round(index=round_index, state=self.state) + + raise ResolutionTooDeep(max_rounds) + + +def _has_route_to_root(criteria, key, all_keys, connected): + if key in connected: + return True + if key not in criteria: + return False + for p in criteria[key].iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey in connected: + connected.add(key) + return True + if _has_route_to_root(criteria, pkey, all_keys, connected): + connected.add(key) + return True + return False + + +Result = collections.namedtuple("Result", "mapping graph criteria") + + +def _build_result(state): + mapping = state.mapping + all_keys = {id(v): k for k, v in mapping.items()} + all_keys[id(None)] = None + + graph = DirectedGraph() + graph.add(None) # Sentinel as root dependencies' parent. + + connected = {None} + for key, criterion in state.criteria.items(): + if not _has_route_to_root(state.criteria, key, all_keys, connected): + continue + if key not in graph: + graph.add(key) + for p in criterion.iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey not in graph: + graph.add(pkey) + graph.connect(pkey, key) + + return Result( + mapping={k: v for k, v in mapping.items() if k in connected}, + graph=graph, + criteria=state.criteria, + ) + + +class Resolver(AbstractResolver): + """The thing that performs the actual resolution work.""" + + base_exception = ResolverException + + def resolve(self, requirements, max_rounds=100): + """Take a collection of constraints, spit out the resolution result. + + The return value is a representation to the final resolution result. It + is a tuple subclass with three public members: + + * `mapping`: A dict of resolved candidates. Each key is an identifier + of a requirement (as returned by the provider's `identify` method), + and the value is the resolved candidate. + * `graph`: A `DirectedGraph` instance representing the dependency tree. + The vertices are keys of `mapping`, and each edge represents *why* + a particular package is included. A special vertex `None` is + included to represent parents of user-supplied requirements. + * `criteria`: A dict of "criteria" that hold detailed information on + how edges in the graph are derived. Each key is an identifier of a + requirement, and the value is a `Criterion` instance. + + The following exceptions may be raised if a resolution cannot be found: + + * `ResolutionImpossible`: A resolution cannot be found for the given + combination of requirements. The `causes` attribute of the + exception is a list of (requirement, parent), giving the + requirements that could not be satisfied. + * `ResolutionTooDeep`: The dependency tree is too deeply nested and + the resolver gave up. This is usually caused by a circular + dependency, but you can try to resolve this by increasing the + `max_rounds` argument. + """ + resolution = Resolution(self.provider, self.reporter) + state = resolution.resolve(requirements, max_rounds=max_rounds) + return _build_result(state) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py new file mode 100644 index 000000000..359a34f60 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py @@ -0,0 +1,170 @@ +import itertools + +from .compat import collections_abc + + +class DirectedGraph(object): + """A graph structure with directed edges.""" + + def __init__(self): + self._vertices = set() + self._forwards = {} # -> Set[] + self._backwards = {} # -> Set[] + + def __iter__(self): + return iter(self._vertices) + + def __len__(self): + return len(self._vertices) + + def __contains__(self, key): + return key in self._vertices + + def copy(self): + """Return a shallow copy of this graph.""" + other = DirectedGraph() + other._vertices = set(self._vertices) + other._forwards = {k: set(v) for k, v in self._forwards.items()} + other._backwards = {k: set(v) for k, v in self._backwards.items()} + return other + + def add(self, key): + """Add a new vertex to the graph.""" + if key in self._vertices: + raise ValueError("vertex exists") + self._vertices.add(key) + self._forwards[key] = set() + self._backwards[key] = set() + + def remove(self, key): + """Remove a vertex from the graph, disconnecting all edges from/to it.""" + self._vertices.remove(key) + for f in self._forwards.pop(key): + self._backwards[f].remove(key) + for t in self._backwards.pop(key): + self._forwards[t].remove(key) + + def connected(self, f, t): + return f in self._backwards[t] and t in self._forwards[f] + + def connect(self, f, t): + """Connect two existing vertices. + + Nothing happens if the vertices are already connected. + """ + if t not in self._vertices: + raise KeyError(t) + self._forwards[f].add(t) + self._backwards[t].add(f) + + def iter_edges(self): + for f, children in self._forwards.items(): + for t in children: + yield f, t + + def iter_children(self, key): + return iter(self._forwards[key]) + + def iter_parents(self, key): + return iter(self._backwards[key]) + + +class IteratorMapping(collections_abc.Mapping): + def __init__(self, mapping, accessor, appends=None): + self._mapping = mapping + self._accessor = accessor + self._appends = appends or {} + + def __repr__(self): + return "IteratorMapping({!r}, {!r}, {!r})".format( + self._mapping, + self._accessor, + self._appends, + ) + + def __bool__(self): + return bool(self._mapping or self._appends) + + __nonzero__ = __bool__ # XXX: Python 2. + + def __contains__(self, key): + return key in self._mapping or key in self._appends + + def __getitem__(self, k): + try: + v = self._mapping[k] + except KeyError: + return iter(self._appends[k]) + return itertools.chain(self._accessor(v), self._appends.get(k, ())) + + def __iter__(self): + more = (k for k in self._appends if k not in self._mapping) + return itertools.chain(self._mapping, more) + + def __len__(self): + more = sum(1 for k in self._appends if k not in self._mapping) + return len(self._mapping) + more + + +class _FactoryIterableView(object): + """Wrap an iterator factory returned by `find_matches()`. + + Calling `iter()` on this class would invoke the underlying iterator + factory, making it a "collection with ordering" that can be iterated + through multiple times, but lacks random access methods presented in + built-in Python sequence types. + """ + + def __init__(self, factory): + self._factory = factory + self._iterable = None + + def __repr__(self): + return "{}({})".format(type(self).__name__, list(self)) + + def __bool__(self): + try: + next(iter(self)) + except StopIteration: + return False + return True + + __nonzero__ = __bool__ # XXX: Python 2. + + def __iter__(self): + iterable = ( + self._factory() if self._iterable is None else self._iterable + ) + self._iterable, current = itertools.tee(iterable) + return current + + +class _SequenceIterableView(object): + """Wrap an iterable returned by find_matches(). + + This is essentially just a proxy to the underlying sequence that provides + the same interface as `_FactoryIterableView`. + """ + + def __init__(self, sequence): + self._sequence = sequence + + def __repr__(self): + return "{}({})".format(type(self).__name__, self._sequence) + + def __bool__(self): + return bool(self._sequence) + + __nonzero__ = __bool__ # XXX: Python 2. + + def __iter__(self): + return iter(self._sequence) + + +def build_iter_view(matches): + """Build an iterable view from the value returned by `find_matches()`.""" + if callable(matches): + return _FactoryIterableView(matches) + if not isinstance(matches, collections_abc.Sequence): + matches = list(matches) + return _SequenceIterableView(matches) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py new file mode 100644 index 000000000..73f58d774 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py @@ -0,0 +1,177 @@ +"""Rich text and beautiful formatting in the terminal.""" + +import os +from typing import IO, TYPE_CHECKING, Any, Callable, Optional, Union + +from ._extension import load_ipython_extension # noqa: F401 + +__all__ = ["get_console", "reconfigure", "print", "inspect", "print_json"] + +if TYPE_CHECKING: + from .console import Console + +# Global console used by alternative print +_console: Optional["Console"] = None + +try: + _IMPORT_CWD = os.path.abspath(os.getcwd()) +except FileNotFoundError: + # Can happen if the cwd has been deleted + _IMPORT_CWD = "" + + +def get_console() -> "Console": + """Get a global :class:`~rich.console.Console` instance. This function is used when Rich requires a Console, + and hasn't been explicitly given one. + + Returns: + Console: A console instance. + """ + global _console + if _console is None: + from .console import Console + + _console = Console() + + return _console + + +def reconfigure(*args: Any, **kwargs: Any) -> None: + """Reconfigures the global console by replacing it with another. + + Args: + *args (Any): Positional arguments for the replacement :class:`~rich.console.Console`. + **kwargs (Any): Keyword arguments for the replacement :class:`~rich.console.Console`. + """ + from pip._vendor.rich.console import Console + + new_console = Console(*args, **kwargs) + _console = get_console() + _console.__dict__ = new_console.__dict__ + + +def print( + *objects: Any, + sep: str = " ", + end: str = "\n", + file: Optional[IO[str]] = None, + flush: bool = False, +) -> None: + r"""Print object(s) supplied via positional arguments. + This function has an identical signature to the built-in print. + For more advanced features, see the :class:`~rich.console.Console` class. + + Args: + sep (str, optional): Separator between printed objects. Defaults to " ". + end (str, optional): Character to write at end of output. Defaults to "\\n". + file (IO[str], optional): File to write to, or None for stdout. Defaults to None. + flush (bool, optional): Has no effect as Rich always flushes output. Defaults to False. + + """ + from .console import Console + + write_console = get_console() if file is None else Console(file=file) + return write_console.print(*objects, sep=sep, end=end) + + +def print_json( + 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 (str): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (int, 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. + """ + + get_console().print_json( + json, + 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, + ) + + +def inspect( + obj: Any, + *, + console: Optional["Console"] = None, + title: Optional[str] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = False, + value: bool = True, +) -> None: + """Inspect any Python object. + + * inspect() to see summarized info. + * inspect(, methods=True) to see methods. + * inspect(, help=True) to see full (non-abbreviated) help. + * inspect(, private=True) to see private attributes (single underscore). + * inspect(, dunder=True) to see attributes beginning with double underscore. + * inspect(, all=True) to see all attributes. + + 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. Defaults to True. + """ + _console = console or get_console() + from pip._vendor.rich._inspect import Inspect + + # Special case for inspect(inspect) + is_inspect = obj is inspect + + _inspect = Inspect( + obj, + title=title, + help=is_inspect or help, + methods=is_inspect or methods, + docs=is_inspect or docs, + private=private, + dunder=dunder, + sort=sort, + all=all, + value=value, + ) + _console.print(_inspect) + + +if __name__ == "__main__": # pragma: no cover + print("Hello, **World**") diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py new file mode 100644 index 000000000..270629fd8 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py @@ -0,0 +1,274 @@ +import colorsys +import io +from time import process_time + +from pip._vendor.rich import box +from pip._vendor.rich.color import Color +from pip._vendor.rich.console import Console, ConsoleOptions, Group, RenderableType, RenderResult +from pip._vendor.rich.markdown import Markdown +from pip._vendor.rich.measure import Measurement +from pip._vendor.rich.pretty import Pretty +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style +from pip._vendor.rich.syntax import Syntax +from pip._vendor.rich.table import Table +from pip._vendor.rich.text import Text + + +class ColorBox: + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + for y in range(0, 5): + for x in range(options.max_width): + h = x / options.max_width + l = 0.1 + ((y / 5) * 0.7) + r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0) + r2, g2, b2 = colorsys.hls_to_rgb(h, l + 0.7 / 10, 1.0) + bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255) + color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255) + yield Segment("▄", Style(color=color, bgcolor=bgcolor)) + yield Segment.line() + + def __rich_measure__( + self, console: "Console", options: ConsoleOptions + ) -> Measurement: + return Measurement(1, options.max_width) + + +def make_test_card() -> Table: + """Get a renderable that demonstrates a number of features.""" + table = Table.grid(padding=1, pad_edge=True) + table.title = "Rich features" + table.add_column("Feature", no_wrap=True, justify="center", style="bold red") + table.add_column("Demonstration") + + color_table = Table( + box=None, + expand=False, + show_header=False, + show_edge=False, + pad_edge=False, + ) + color_table.add_row( + ( + "✓ [bold green]4-bit color[/]\n" + "✓ [bold blue]8-bit color[/]\n" + "✓ [bold magenta]Truecolor (16.7 million)[/]\n" + "✓ [bold yellow]Dumb terminals[/]\n" + "✓ [bold cyan]Automatic color conversion" + ), + ColorBox(), + ) + + table.add_row("Colors", color_table) + + table.add_row( + "Styles", + "All ansi styles: [bold]bold[/], [dim]dim[/], [italic]italic[/italic], [underline]underline[/], [strike]strikethrough[/], [reverse]reverse[/], and even [blink]blink[/].", + ) + + lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in metus sed sapien ultricies pretium a at justo. Maecenas luctus velit et auctor maximus." + lorem_table = Table.grid(padding=1, collapse_padding=True) + lorem_table.pad_edge = False + lorem_table.add_row( + Text(lorem, justify="left", style="green"), + Text(lorem, justify="center", style="yellow"), + Text(lorem, justify="right", style="blue"), + Text(lorem, justify="full", style="red"), + ) + table.add_row( + "Text", + Group( + Text.from_markup( + """Word wrap text. Justify [green]left[/], [yellow]center[/], [blue]right[/] or [red]full[/].\n""" + ), + lorem_table, + ), + ) + + def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table: + table = Table(show_header=False, pad_edge=False, box=None, expand=True) + table.add_column("1", ratio=1) + table.add_column("2", ratio=1) + table.add_row(renderable1, renderable2) + return table + + table.add_row( + "Asian\nlanguage\nsupport", + ":flag_for_china: 该库支持中文,日文和韩文文本!\n:flag_for_japan: ライブラリは中国語、日本語、韓国語のテキストをサポートしています\n:flag_for_south_korea: 이 라이브러리는 중국어, 일본어 및 한국어 텍스트를 지원합니다", + ) + + markup_example = ( + "[bold magenta]Rich[/] supports a simple [i]bbcode[/i]-like [b]markup[/b] for [yellow]color[/], [underline]style[/], and emoji! " + ":+1: :apple: :ant: :bear: :baguette_bread: :bus: " + ) + table.add_row("Markup", markup_example) + + example_table = Table( + show_edge=False, + show_header=True, + expand=False, + row_styles=["none", "dim"], + box=box.SIMPLE, + ) + example_table.add_column("[green]Date", style="green", no_wrap=True) + example_table.add_column("[blue]Title", style="blue") + example_table.add_column( + "[cyan]Production Budget", + style="cyan", + justify="right", + no_wrap=True, + ) + example_table.add_column( + "[magenta]Box Office", + style="magenta", + justify="right", + no_wrap=True, + ) + example_table.add_row( + "Dec 20, 2019", + "Star Wars: The Rise of Skywalker", + "$275,000,000", + "$375,126,118", + ) + example_table.add_row( + "May 25, 2018", + "[b]Solo[/]: A Star Wars Story", + "$275,000,000", + "$393,151,347", + ) + example_table.add_row( + "Dec 15, 2017", + "Star Wars Ep. VIII: The Last Jedi", + "$262,000,000", + "[bold]$1,332,539,889[/bold]", + ) + example_table.add_row( + "May 19, 1999", + "Star Wars Ep. [b]I[/b]: [i]The phantom Menace", + "$115,000,000", + "$1,027,044,677", + ) + + table.add_row("Tables", example_table) + + code = '''\ +def iter_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''' + + pretty_data = { + "foo": [ + 3.1427, + ( + "Paul Atreides", + "Vladimir Harkonnen", + "Thufir Hawat", + ), + ], + "atomic": (False, True, None), + } + table.add_row( + "Syntax\nhighlighting\n&\npretty\nprinting", + comparison( + Syntax(code, "python3", line_numbers=True, indent_guides=True), + Pretty(pretty_data, indent_guides=True), + ), + ) + + markdown_example = """\ +# Markdown + +Supports much of the *markdown* __syntax__! + +- Headers +- Basic formatting: **bold**, *italic*, `code` +- Block quotes +- Lists, and more... + """ + table.add_row( + "Markdown", comparison("[cyan]" + markdown_example, Markdown(markdown_example)) + ) + + table.add_row( + "+more!", + """Progress bars, columns, styled logging handler, tracebacks, etc...""", + ) + return table + + +if __name__ == "__main__": # pragma: no cover + + console = Console( + file=io.StringIO(), + force_terminal=True, + ) + test_card = make_test_card() + + # Print once to warm cache + start = process_time() + console.print(test_card) + pre_cache_taken = round((process_time() - start) * 1000.0, 1) + + console.file = io.StringIO() + + start = process_time() + console.print(test_card) + taken = round((process_time() - start) * 1000.0, 1) + + c = Console(record=True) + c.print(test_card) + + print(f"rendered in {pre_cache_taken}ms (cold cache)") + print(f"rendered in {taken}ms (warm cache)") + + from pip._vendor.rich.panel import Panel + + console = Console() + + sponsor_message = Table.grid(padding=1) + sponsor_message.add_column(style="green", justify="right") + sponsor_message.add_column(no_wrap=True) + + sponsor_message.add_row( + "Textualize", + "[u blue link=https://github.com/textualize]https://github.com/textualize", + ) + sponsor_message.add_row( + "Twitter", + "[u blue link=https://twitter.com/willmcgugan]https://twitter.com/willmcgugan", + ) + + intro_message = Text.from_markup( + """\ +We hope you enjoy using Rich! + +Rich is maintained with [red]:heart:[/] by [link=https://www.textualize.io]Textualize.io[/] + +- Will McGugan""" + ) + + message = Table.grid(padding=2) + message.add_column() + message.add_column(no_wrap=True) + message.add_row(intro_message, sponsor_message) + + console.print( + Panel.fit( + message, + box=box.ROUNDED, + padding=(1, 2), + title="[b red]Thanks for trying out Rich!", + border_style="bright_blue", + ), + justify="center", + ) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc5b3a0bd20243ee219c513805da1f0286ccee63 GIT binary patch literal 7049 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 ZTsnCC$NA;&uz&eZI7ZxSiL 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 Mr7~*H3cl=rX9=nrjVs$idYt#5|*XLW$788 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
2hsKCgXH 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac205ad8c1c0432536abb4d9363689990dbad7d4 GIT binary patch literal 1763 zcmZ8hT}&KR6u$F6yTAeq779WaS}n8gGN@IXN?IDM_9wKlXbqd1$*^;QS!Z@OcV_REX{(xAqg8Si!h(r6S&-=hOo}mxlH$tG(a<~ zA!5mpFjx0w$T)1k*)y^cz9OVr7Fea}5j9pgUmn*jOP{u|FHGoOdd`>6eksu z)P=(M!ikAo3>_J|I2k{t3>`ZH&&8xNgl#8d7Cd~}Q-k}=W~jOOXnpGNrE9%T&_(dG#4JH_LWo7zgaVs+ zHsKAcz&hw9uoMg2wWq0B1iMMJA9+vHdjJuEf%K)>DbUQL%iI*2XB6fvbdoqroP5sp z19wW9hQblY_YOrk=(N;5R-}9ht zpxic4JXPtA-8o!tJybkdiT11}ZX}9l9*&(`JN)_R&Cxrp_oKh|j+Wm4pu~4qc}eKM z^}?6j&3F|7{JP^`N*+g1^PZK=?E@Q42TT0HO>lvfh%b5zIcNn!yS^41p?{Fi66`lO zu1CAet)+wXQ(Z(mk0(6>U)2X;jn7X%osX^B2|Dg3^V1U;+Qjgsv}5N?n4BC8wpx^T z5gDKkX&ScWQM=Z5N6AaT(x2761{)NIVSY!6GD`f0LVuxsRS`wIR@@ss#Ym-n@7mE) zPyEh!sYflhkANiFvvwBP-jRFzOTDj^qpufRt6}tFyfT=$J@{4pi+Cyd?#AHx2ZI;N qgBKo4oy<@r+*0L${_$MjTKdL^RRJ*gXpdE?wkjhrv=stWyXt=x3AxMw literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdeebd6f3a40b5ace7e629b4bbe6a8337ac78164 GIT binary patch literal 2355 zcmc&$&2HO95SDDWbp@nI?I68w*r2vhk*hdq8>o^{N4A^*mTg#SQ2QdR$(6XylFKfa z`mvx(fj&c@p)b&fXfNrl@U<^sAh(=4T#}OD*gy{{x(Dvh%VuubM(5;c7rDyg z^+MI9#DUJEiXhu1GNh_zeBWuBPYqZO)tJ+IVWRucrBqD|XTlky$)tdw*@6pML6e@4 zv@b>EJJWBq;EdR>k_9uti2zZ5qKCI%!$UfdGm&+KA1$<)&s}D>Q?NOgfqNsz0Ou6V7 zEJ1=)5T;ud9jS65Mk2QshO;URy?~&OPAAtNJfCkC<&EGLKs(2 zFXG(P1Tw3lcY{z&@prFw;@G37i{5BES!vz?T1uiQ_9U%ns9S9@CHka_X9TT9RfqP% zly_{-f+GS%#hjY4h;%HNQ)HqI6ep>zP|TDD8tbnP7Pe+=+D+)wKnaM8k{O}m)Hu$p zCvy#Vn0cHynZ#ndQg}3#^pTSAPQ)BjGxU%H-)_!57)?uPJ{wPq2Jk*a6F{6bBWAtN zZ;iB=a`|Nb#$_JOUXR7iNkL|tl35l(KMNBEkbwbo7oX?{VOFOXtNJMd*+FsTa=meQ z&_3MX?LP0c_Pfo)&b#04b zNXFP2P=63V0yr2eSNM;uM_V{#iUOYYE7GSS4p@M@pymjP<9KkFjshW7H+cuFVElHq z>S-%=`7yW@|Ko%Y;d8Z|&*!g}KK*Rvb#DFYi?8lOzjo#4bN3#;&fWd%KKe7aEf~p82<|bDuQS5 z7800ZPJ-#zU>Y<5O)w(p3qBtW4J-0gRVazJY%qe;#-wsSD~cql=Z!RJ`#>nJZE9uS zO$`wE%8o&6z3|_zw^=SaS^g=BY`E)V-=w$gk*5ow&1UoA8|&&)F#lPUQtfv&Ta|vT z*I~=MD{TA2GTYR=SBTb*)`erTG=(UI@~vDSx~yU;ARVwmc9^MrSF1PatJlm)FIol; z&-R65z{W=8EReIdIPyX{sa0yKdalqJZ_CH=r!D&&_yW0`h4dZWQFcQYZ|T(W`ZaxV zvN3?S@U80DR|dFkxXy6q4B1A|Q;;6U-<3oB_jVe}@UPrUNc{+7e1qotag1kvx;}#C K)c+34aQF|WlawL= literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c458c1798de267240c7ed37f8aa085c51087793 GIT binary patch literal 889 zcmZWnJ#5oJ6uz@l=clby0z)(P1XRQl$q86cg+NtHO9mQ5yEF(zj(tf?ZJ%|%v~>tl zkr-GJL&eSj>W&zhVL@U6OH2$1i6PJqs1xs;QjmDV)BE1N_x$;L@7?5N0f7}?y>(}F zguW>7$Fxy^_sbCMA_qCxLq2X`tYXd6e7&LjnMMZin4>?+G{)kLX?#;{CQin!AmGxH zE)OD8OSD=&$t_r(XSF>_#mHh?cW+8(?qdw>V{VJ?p}G{AeK z6k0{Gb_U5KrU;!yLdR$wvRi0dUq@Tm)cfC;nIvu3V*xLlq%F8ltQ4OomTmK1Al;xt z+FX#3bK%9r^+S*OERf7e>nfhR!3b~NW44T{g#rPa7oBJ>jTBPTn`u?KRyXI!{C|B% zZMT{1iQu13H;`mNR(QbX$Xb^X!J?ig32&zp0#4jEu{JF?mF+wMlB!l^dB{YnE@{Iv zbE+wu#2EeQ3P_&qFwkF$B!7L|W}(^yWb?;lMHXa?lz4<3-ltveGb;Pc2RXW&F1zwZ zuSFNum+0!^0=>zdp2sR{oO=;HR;Xh0t;mXLb&~~~)N@-jjAfSxm#P;o(#Vyp5?c0# z)nO40-Hd|6a69Orh|2Uu{JQ*R@x!^=&eF&1 z-O8SMrn=p-}&}_DQuqxJU3Uz;pA>$Bq5g7nNU2MwpCEAA& niE(g;xhsCE(N$3dsIEAg0yoq##-GvYuW07LDB>w`0+PQ0p+fOi literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df00be24ae11e289b4bbdfe8f896c9d9cef75f93 GIT binary patch literal 12111 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f973bf84a175a61d7a81f24560997a960be173e GIT binary patch literal 3654 zcmbtX&2Jk;6rWwM*K5a)W9Oqy+UBDvA}&o#8$^YmACNR{s??Q85UMXL$2(3|U4JmU zZemNIBK1(zOKx#*;g+bEo)CWnT*wKu0)fP-H&^bd7kF>hyIDI?g2W!4-~8sy`^}s8 z=EFb7Vi5vg@`s=Fhe1OA#)kXJZKah3Wt(V36AV%mvVwrRXo$r?Hc*tZQZbkf7Uis5 z3}r(_C94QTB)5qcctSLZ255K~#=i(S-m(#q(8!Cn>ugUgn37*%D<#;m6_(4>)m;AJ zO07auvMny&x0OYUvfQdc+nQBowzQ<1maW{cSbDjXGi(X%^KGB}M`<@&D+11)lB}SS ztf)=EtfXu}6R1=WH3{^fc3ulo8IVvx(&Q(>tkUicL2np(6|Xl8y%9hn9O`e3}|Pa8GwI9 zI}7&bv~x5BUS!}Kh4v_{*%bJOe?cA)AQ?TwFI+P3oz}OO3e=Djj~DWy>2Koyp5ILg6%*ali!qR3lwr}Xu_VD zSzvK6V|^f;*jN%&Th`5-W!36&kHG=L(CJdd2iPFmMpf5HRZDphAphrIOC+=jXH1DK z0cLCjgo$Iu#~o&g(VSL~xh`k08HIk2HNjbr4~(5c-$zEKphMi4^+X2;LVN%gmJ?W? zFEB$d>elhWv9m6z8{BySI)dZmhFM+n!Qjd|p8ANjgo>g2{M&m-%B&|lV&@p<(hPxs>WL?whMhG?_@+@V6ijN_erRKzmhv=@bMb%O zNoSa0XL122?^6h*K$vJd?q%Pk^r0{N*gOpeUiSO`XZF!ySN2`#3{J_*{s{&49vUB6 zV3I`*!xsWJN6~s31>Z6L+?slwo={gFmz&uu;He|Cip8p>e9rRMl?zRDaGwy?G5cnN z=~mauxzGiq@K(<5+&55e$HsR=?eDcydrbPvFHaRLJ6r+rf%6Q@qhkf!8f&(htPJsl*zKo8|0STL&Q zy3aXpUq|Qvv6@q2=G8y&9eozb_+TiNeb=}H@Rjz88IBdaVKXV=6&7o1!p4n|D^gXp zBdS{Dj~URTs`^zmXE;5qA53j&6`nW@PiQ*;my{haEynn1Hvt&CfC3Z4_zt~6ZQed{&O%(Y2uw$R)OnPfGPx(8VVNtPLDDI%Ri{c&% zemdiMz#kT@2Q?JPV}1#dJ|Qhp2*#SS5FBhsEdoEUK~FXUP0*7&a|k7!?h6OqJ5Kkm z)6GY?(EQ8(y+u9>;Y4E@9VK?>_|K04>`D0jp`O^vbKDuRxf^)?H8+2`e5847XKHu$ z`)M?Zy_`oA9ze1&i8`O{NMmYe_W3lnN01@bxYEc!zuLBygR#G2gIikT+Wt^#KX$Ph z1f(gG^2G;EjPJ!<} zzS5ag)DBwkC&%PjvSrZWz07z*dAfO$d4cd^!2GfmH&J#t^TpDVy0Ex(t1Fprl~0_i zyv`ngHCC;OFN$VB5QIO-*q`LaujIxX`I?Y?%C;uI+jv7jeSK3TvB76|zjfX={{kyx B3Sa;L literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f68cb20ae2d6cde498a8c922b838cd2460b2e74 GIT binary patch literal 5194 zcmZ9QPiS0K6vp4oByACE)26jzBQ8YkXp?7K|68kRk|xm_tBF>-328DUgOkiKnN}kR z-6^icx)4D@FuD*#T)EJNF4RTcCAD7Ma6aV1$u7D|m|xpcl%O3F#Cw3sZEKPi1t%DT>% z1FHzD1lA+0XRWuoql;D5(#FoSbB$W3Q>*q>E8UxowIO8~_`&M#9>kp%2KrHdjJPEO z-=qEzVSlWny&Lr-hz)}7JE#vLKFGl1sNY9i%fK)8(Z1DVz0$pe`Zf>K{$+J{0`ani z0d#kNwD6t&3$Tg!)WSNRK>Y^dzYKhBAKC6c%D@~h{sww)2Ckz%>{0Do&rZWd3>*77 zF5`>=Wc7UlPVotq7LB5=ey(3>|Ag|f6 z9xR-JIGor+)2{Lm-OJcOel%OmdeEr>)(Y6c0QC+9dCkRkyT8M{ArIRTRu*A^yW={9 z0oFP74h4C4bj*BRG=uAoK$@MqIC6K^XjLAO?%UhJm)pVb7<63d!vHY*AOb`L@beUb zN4JB=wgYV3mtc8hAy5l}S_srapcVqPpgXbU76P>psD(f+1Zp8bn3i`h|3@tX!BTVtO96tV0KrlKwP2o~g&hQHA;2Zy2Z34$ z)Iy+^-0d@RRRq++4z&=dg+MLnj?O}W&A5d?Ed+?DLoMu33ob?$0<{pRg+MI?2-gy* z1$AU0Pz!-t2-HHL76OE6c`kj%3J@#>2$lk%ie>~$(V-U1^RuvnKrIAnAy5l}S_ssF z<&lK|ZN5_iwGgOu530fMCf!BPNJ(NMKuo}YzF2-HHL76P>psD(f+SRPpj z(B>N>Pz!-t2-HHL7Ia4z0<{pRg#h9EAW#c|T6mYj|5RBs)Iy*Z0=4ApTuY!9)X`Z8 z)Iy*Z0<{oevReok4`h@zAG9#J0AX?g!sG&Q&kxEV%_;rBlKC3Kg4wDH!0VPGF>ykKA$7(ji(!@xbLpY$+*C$D|d!}g3f zDMeVvD8N%52BuIy?P1^*)WaSIE}%Z;VW5F}B#(orQVYBEE^0au2Hpc0^ROM=jXDqO z_zd8*hk>t9k9!#S7B$|>Fl@#hsPnLns{oT8)`7Q4MOeq50MB?B_#5@J9#hrcjh(IR zB~`m(bYsuC$*Ixj&rQ#s9X>NQGc&f)H$5{vH9Gv_XioNyO^#2@%$}N@akQRn+1ljB zTj^4Bxt4a`tS#497MGgoc)c@m@j^QC>gjZPbR>PQxp1*j8=Pr28>?x3xz(sG*H$`% z^Uc>+=ho7pOSP3tX`_B2ZLM{dnk&bLjvh-_>z&$QYi|Cvxy9OQ+N!tGS!-Kpw$pZf zekq*|n_nGjt=-slVwr-I?P=SMy-rD1@h$(SQYw|MB?FtglK$JTm-qJW*sApRmoM+x kJd*4`_6s)Sf4Z^Yd;kCd literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bb6caed33cd6d707165bacee230ab4f73bc0664 GIT binary patch literal 760 zcmZWnL2DC16n?YW-KJ?HwFPTYa1J7-kR7TZQbi~YRYa>;FBT+hvXf@%?#?>9Tip<~ zh=-yc>Zw<6D!q%pK`#+6CE&@Ew`h9m$v2w>1Ru=X@6EpVy>DjT*J7~%Xw#p*xbF$T zPZf+zAA^a#V;x#B~t85gHDAv`K19q7n1JR1`-eO94B(U#;! zw3s0k%@3s0^QyG8NSA_?28mzel8Q#g$L&B-t}6aP@{s6WcG!Qo6vZN4`Ck%JSXsx` z+=Alrg&c9A)JKUcxq}y~XBsrAUZracdTEF$JxW*8@_r_9>o!4~t}8Vl37DT0gE!UYz&F)xR9ebe6H z5ewarRWZ#Gl1aDTWYrMw*b39`xB^urO{zgs;-bsww&C|QOip)nt21ML*R7pP2ghgs zfM(3?7zYzm-zH8U%$$66t7qWOp$U^yyTaO3_~>n(HV5T93kWfoa&iHGQ0cao&NS&4-kGhd#FAc!CznZ$*TYW literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc60208d6a0e32cc942e7f9e728d214888bdb9f9 GIT binary patch literal 6613 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 Qp!c8n)@lo!x9Dp5Z>G13KmY&$ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c83607a44c8fe2a8e88e622c4a0da4d6bbdbb4e8 GIT binary patch literal 13213 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f17729e271f11d5b82afdd7d34793fbf1cd99be GIT binary patch literal 29010 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9066a9b181ef1a766b972b51d9d0e248c0685f8f GIT binary patch literal 2524 zcmZ`*O>7&-6`uX&|BwFvT!ofZM{7%5|MgHO4l2o#tVWSj$w}cwfyIhDvS{yenc1Zz z3M8zwNz0@;xah$yf}%O9a1T8dJqA9e7s+%XdTj$XddiK6TqMvbZ~u{f};fA^3}fB7@Lvq$8a%kV0qHU`$qF8H8CD%^{up z0O|Z)wk3bpzou}J)*W8q;f`SNrl1IL2VIW`CSJ_Ccw-D9(#0YyVE%gY#YwQb3trHn zgbPufQNkb@(L(|Ew+z?_8&NZ+#LT!7Hxo+2Oe#qR=@HDWvU>CbUP<9jJ?`0g4Wt=E zR7B8{YJ1!T+=S6>_9#6Jf|DLS2~@m3-m?5%8r=C5>8ZbRffub?aHkJ<1-xKpP?;$+ z#}H2A2<}+rMiGg$y^B%ruA)zVwShLdt7wCf(qB?@ixT5Tbj{InhGyHj?|Q)bn}buZ zxD8=dAOs5g4m?cZbXMUZkfP4L4yTX^Rtb4~p6<(nB)Yx7&KGoR!=APZwq@X1tT`ou z?X4l7pIP-e8Esw58`_G2v$HO{?zj<$lyJ^6EV3wt-LR?_G!v_;8&y@)(n|(i$5r*c zl4kfPAyw6_oT?HLth@Y*Wf^WtRkcFFax^Co9>5vk5B(h-07ZutdCfAh>}+8(U%0kr z$#Z$%&70qFI{rRD+lMiGIsnjLMVW674YE%XhIbf0Jh5LOqF$L zTD(zVHyH}q3gd(W-WF(U%X2zc87NY653-4eZ9-sW!vqzh8-V$>zLS3a;{)% z*8wxaN-1yX9^9pnE3UQB7586BD;m2YyOhge+kRotje#~Opq8p|&?{_;7C#t-=EXe% zhJ)Ht1EqmDIR+vU{Oo@M*+$RfsB`$w!!@zV3Xvm^hoqh3^`XUj=&eFes{-A57 z7H*{aYN>CY_o4I%D2N~4a41GM;6kvO3cYxEMB&I^>UMMlu$KC5?fPSy|Xv)0e z8-&Ge^s?fspk*X6(CAw!V8{rF+O$eDUIe`ud4vYbrk!RRJ?@g~T_=4Pz3xN%u&F^# zRA@m$k>m@`RZ{B^JdW^POIO%0&O(wx6v$Zqgk5jvuA=tdjM>K(u1dmO!^ErIq5hgzfy8= zOH=e+%_z0jgmxD%3U2y``pI#6Sp-Bo*mQYtt1JVMbY=x9?!Z0u`RWKJ{@kOL03O>f&NGyRYFjwk%+(@^vemG>*RHtvUpA9f7i zS^r!0FV%X-#7E-Oj-HzMFgb8%qMjVv4Uc`z3xarnfHX5bLjUfGUmPHqo2L*TuWjAu z1|IQU&r&Drsfq1NPx#}{_(<)Sw{G6rynXXeH|u?4yS>s*$8PlG1AhD=ANgpsw)w~G zfBAuC3h{&AG^ZI9>AMsAOxX>c`U(k5e^X>V8~;ZzH$%WVv^(K>pH8wkrEZvl6;aDo5; literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..364d4bf477e79232c4199e24519be768b8e4102b GIT binary patch literal 3607 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 U@S1`3{?K%OzP<2oy4PU;1JM~^b^rhX literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..220552f6528ac1210d4e2f1b394c860130dc79ab GIT binary patch literal 2394 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 Oe$(r{8KS?OSKxn=WTQm@ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8476de3a774197c6ed0506ffce959475217cfd0e GIT binary patch literal 12356 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f46d67fc577e3b334c771f6477ffe02557c5aea GIT binary patch literal 4306 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 LRiCY(Yw^DUSyO~N literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22fdce7787c80239be7b069b0b47e4a850e2bbfd GIT binary patch literal 5652 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c3bf5cfc81f8625a6a8f5e75c4bbb8245c8e480 GIT binary patch literal 26604 zcmc(H3w#vUb@%K`TJ5f$s|SeJf&gg|NUT;o#LIvXAl^vAfB>&onh{!9X~packdSQb zIE{$iSlDhXV!M`IC&n>paFeFEaT;8^jq_--i*O}xaDrPm%`|;1;G~KB{GWSgW>-Qu zcE5h#w?EC9^FQ~_eVlvmnS0N@qwi;C+64UazVW@l;!T3^w*<6bj>_D6&@Kp13Zfty zfXc zO-v7Fc4ReYb!0bZcjPqZFqt)&+mY9t$M}q(vm?JbzoVeJfMHv(u%oEC$RJ1=vIEcC zfu}T2VPTHo)Q;ljVuN55B;m+XtpdsW%PK2o9xW4u=IKUZlOSe2B#7CPrrbhp^>xZ#VGQ=`}fyhpqn zbg#G%biddPdO$n~dPuwn)F<8x>K9u;TSXC665Buzi|wER@d)TqF$mfrc7le)F3@A5 z3>p?AYEIqaao`i;Nzfifd&N`W`^0|G`^5V}Pm2$LJ}7<)^da%npuZ!226R9?1NvF< zVbDj!-v#}g_$cV0coy_A@o~^6#NShM`n>og@Q`>8^b6uspihg>fd0PtEa-%_y*{k;$MLNrT87tx5V#)eoy>9=nurd0{x-*BhaWA z1HB@SfL;~f2K{SsRLyBjdtDf1?WGD{{;Ha;=h0<#2cVD8NDTb0RETauR#A*{I#0XZ^RFQ|4saN(EnicKgIug z+%Sl7j?2I}BRCV|%-}4HO9PkAI4ige#@WEx8Rr0($+#?V*^J8pm&>?3a8AbMgTuH2 zEyRVf1v&*6#uxQhaK*SV&OoQ*!dL^HiE9?)T;OIiZVtE-#?1vck8$(Cl`^gjoSShA zz?Cy@A-F}1s{mKYxW(W+jH?3YWn4A5C5&4NZW-g2>s$>uj8e6nJ6xCfc+Q#$t$xKA_L@95lTzzs0j8J+tqxQChS5uN*8aGztc zM|Exx+*u}jOy?d4_XLyup3Z$9+>^R)hd2T~hwBS0?o&GVG&tBO(BId&XTc3K*>gJg zJh(q#vKMsji{QS*WH0L6d2lZ=*_U?=C=hv2@-WEVO2MJmH9>h(vs)Acp= z`a14({jqv|19!UqM7=IOo%KaS^DKIQLh|ZEME_KB>2KEAcrP1{Y)HP3H4gEGDJ7=F$u*$2+)Qm-0aW zoY6NVvH=v2?A4nOS(@Dv*@C~InZckz-YSws`^#W?$HL}?G`j%$PH<62MRUb%bB%?1 z3CdAJvL0{Y`tG3N!uRy@FOn7=@g?h}aftUVk;?sj#QuR+Bg}5@6#K6b_lIO1FZ}3Z z#Ey!vs25^dDLx|ID`aOsR?HEy!KpD(XR?!59}=WlM_RR-CGVPcHV7K`vVn&-S4mYH zghLMq!a=liv$vUS>)TTGaX~gb;y}7&?f)9rs8s!w@C@EN$$XoaNM6x%6wk@Cp{5*+z~)=n%bof=_Nzl+$5ch#MAc%I>pe5@VMTkng-$4auoSVO!;Xs(rgqB z%_h;)F{Uxk7EO zNW0|nx>~6+t}qL7g}b}DLUKeBT`fJXh+58Yg-lB)g$kq45<)S9#M5Lc(k*wksvR97 z0XX8`bf8r_q|V5qRw&coQ(19b z>O5W<475~s^+ei3o!$yhRb@C3krs9NTaWq=OX13{Kv$&?(ZrBkNo`okbW+jP6Sw+U zd-{C6`6(K#(4;d^zOWPIv@n)CV@P~9a4s-(Ae!xtTHUv((&Lmviebu`0_I5}qARXX z(E5L)@REW0yqS8DJPYx-4&>Qj_V!D)pagiJg8BBRiJzY}oT%t4- zScAL5k&uk8ALw+kD6ZC^Ka9>#8L|-|Q^Uz*L*-&3(?G_x@F(v6HoYtrGIgejP0p0t zo0p8G^}I!htoOWWLmQs0KUY7rGMZf)wU%m)F5@*X$ZjGFh?IlG(^b19FC-BqBUccq zBtjbH?MV%m(wbg^MCRfOQ)<+j71ycx#_rIhWkV&@jAc9-dN^)r31ZB}P0(`Oa#)t6 zPNvd$T8|VAhE6cm#?39kZiy*4p5B4+*%|RG^b(1iTYLPSN*YV(L_0>Xl1{v%MGhQp zkN8;Hij_n*RfK$$jMO+RPlc>mJX4LsvsUaRv+GH9OA3vpc$O;B3X+)`jg=>hBw87G zv9d`-_3K%zkZXx}f6wB0MyLOH56X$eb4i>b`sJe>=doxMiB&7qCF2gbB@Rn6OV6uN2OTG>QmDJe(^xXq%5(ym;Vu~_)u+m+2gYqM z>c_f6fv{Aq%p}41%)E+=gsGW%6lR@x%3g(f-T0Kf3UxxYx=d-*jpErs)^1_R&kLZ; zBkB0;s+9S+3q1;%oAG&6Db$1G7E0c$u&$oP)TUQQp&p-7y()!zzp4{Uk{5>Xz}As#cbz zAg@C2cyvMZ0pIaJ2y+XihJ}Y@f9GMuzK0NLxyQRqS*Zd)Ks-w=qL%I|mQpzAk4S2F zSi>Z8sK*~<5|45hleD(`<%leGQ){m!Nj59H-X_%we5H_f`Gb;AS7o)bo}@NRCnTPp zQcD7RQs7lKum@X1a%UUHw%Re3Iuq=f_2aDpz>#f6&K8|6vlO#E+ru3>PyI90zfvS|Q@o7~ljpGF# zWeCcmNqUya$WZc6ZrJJxl+0Gv2IFs;Nvu>oEWRhgR@+eP}WMbkT ztFDAnyr$JbRTdk;sNwf56|#9(j=j8SSBn zk6PZVoF}Zcc1Uh*4wOeH6rgwRmvkw$h37h6cq8U4T;JCds=O2f3O4d zVdX0%v&o?_UMF(sM5ppu5->xv)T=zK0)Nj^uU;6Qhe!Ec3bau2UgeKiGAzHN?f#2l?9605!2t6U;9 z!D>}0&ydv4ljN_2Ar?=~MD1c8pB+*snz3s;rv%Q z4~yYdE)t)nTAEh~s0!8lgje|*iA@nquD(v3y(18g^!U&rU^V}kB-ThfL_xrB5M;)v zO8FDw(^y-3l~)N&Ou9<>35heg*13MY$~W0_WP+AgE3c`*4{&=Q@F?G+aJ8|kls_YM zTibY)%Or=<5VesF<#(NzC!}7wLHpq3EH{t zX`p(P?=eYo=z5eNut&79tNf5fV4a0Or$kAT9%f_Cqr_Oa+CLE^s9YgQ4(musE8ODgT@lsu_6~EB~Sky^DEF?-C`E z6sj3{Ym^&Fp_);3m2y)TR#)-ItCuRblES52xMZ>Nfi7I4X0)VQ`DIdAt;Srg{3lz-KQOVx~)E>(V=6fRYM1E73J z8(1yFGL|i{n*DN?BZj}4^KzyXU{yKGnLdD3z0@$B`+I7*&17^HepvMSj zUp8Aq@AAuGsZN$da_>yI-_&(~Yp6RYx;jGOr1I^|jD?ROs} zIb5A2Jt!UwFFaIEGTXRXW@xp%grt+T+yhTrvq>^b7SXs0Q8EN64ZMl-@DQd;Rw-jD zLLjy1QX8apRhp(sUCdMBfY&4wUXu)X5VNFgpd29EL*|#&0yO6`X&$8Z6sc2}I#Q(h z8G<-l%#^HR7UhPc2zf}+-j*ijU{j(%DikeJhL|o2ZDuhy<+&n+%n|caBvT-9N>jyr zTm`u38LL>B5~CO~O2ncR$uy}DuI%aJlnYZeH=9^2nbrKJC1dJ!!|{j-@#m^#o{8tC zw;8DxDC>-eEc!Fp5}NSLOesgrV^%VcW>=5dJuhxyy|K4ga|Np%QIy&OodI%ISI9Gw zN8B8NgK9@S4G!-XNsgySxYPM|&r>>Ln{eIwQxI~z;>3#3VdyttCkH#(bb6)VNT){n zj7O}9GT|qh;i$Du5CT4B6fFpG+#WJn>?7H?$I}$_6!w>%v54s?0i41YtXfl0C)0K* z;1ag=F4zzVcLn`DVdkIqw?^QgRMit`b2Y#{>msKGeAL`64R5KXG13#1WG8a(O<%>v zmaEt3D*Mpj?k1)D&4m{z77KuUjoTWxV1|Q7{sqGbN{0Vk&PT+!6%IeCqXi+Pe)$&^ zY+Ibcauk#I-`AVPnwDI|46j7|a3i9g7XHrade=JhdiL~z z$fNyd`p2>g2E``>X9I(WhUW}7y}19m{V(40+&!c7YGU(hM&_-I&RunBUDUB=EHm$H z-LUy;{=BGT{+J`@R=PRImJrMtHfD#$IUuP_CAe^LjkMI@K34`0TL;gon+dqN8tm>*wN+#J$+h8qzR6kM{Ca1Je@H*#T}dCzG8P@bIu%fmd2c= zQAg>u?Bb`rLy>2D&h%BXWPrOcmPDSpz0AF9#%j%i}wnOJ=rYNqhEaL<{Z zr|U}N`Dle|({ZnKf%BrjE-TO>;> z?c}jYlOH2*ng~z$vAjzsPgSj{;RvaJ!f)~?K4v-S#X8~lF?3L;=V8s!AuV);)B_3b6)x>;g1+0%A3+@1wFCYPS0vy#wN$!?d;r&F_(Zz>2%WtDUh@7Z)E!d{xgKvC>ltM+a zz76aIz=SHZ(XXD4Sm9cynp#bFts(5^VUpW<*wwIUJpwzrP|MCpI9U&OmYj<=NijJU z1Znob4KSNb(EE~YV#e)$cnEyVqKElDW+uYoImtTmz<5rwT3n({>ge2pYyb(9sX?>x zNnPe)Y)M2=WtO(O>s~QVc!*5fzvCg8wqn7NJFxm%{(^zJF?+W5W-O0QDZgSbA9EHx zx$5kysIxrkCsm49W8xWg&VOgovcV;zPIt`djyf7I?HOI&7+c*4mcOG??XEt7lA)R>Y1u(%K@3;~ z7@slqVL`$UH5Dc;_heSP&v3zhF!}SwFGFGhXXDimeQ|pAIIwBWtb>o(5_P-fxjSf0=w9*#fz$zEWyEn)?jxS z6S0(}?mR?TGSUgPe1Xm|9I&l;l*|VGded09E0Yt{@f%Q4bl357X9&EIC-?Gk8p+fe z46})Km>NXu${AE~AJw*(dqOI7K_7MDI>bFK+{hPloMXfGvnvp6?wPCEiSySk#r5G`|gBQBk{sHM0W5?yBq&YWf*SLT&n?bXqT6aE~rn9b2&a@`&Ibr0)R^Iq}sn0ZSo{)^IucNf51z|#5eT{U)nT(@xDWx*^nNMd$3iJ>oIYyt+EfrRX z<|EWv6MmZJ4nnK_mj1N<^gfHcJwgj7_KQr@xIPPgC|Hb-3$^|`E-YQN-Z9K7W~7E` z@5p|P-U)3qUCS+b@3UUeKQh3&C{1oi$u~{2vi%u-8KV8@2C@%HEr?iOJ!MSQg4%8w zAG6&uK0&*Ui`$oegd7kPeqyFxURz|g7T9Ogq+-@l7_)IT$nHZ+rq-a(#@fo>@958* zw4Ll)YAJehOd`|El5CGiiB=};dkB5j+dmcvr)oEMV%a`^llsHjm6**$b8 z55crCgCrcqQl2}cAF-S9{Qz@08)Yia4z^u~NwKj4r!Vz4cIqVQ!;DopVv54ZYkFsL z6U=r1D^>+VtymAQsnElJf)vAK1DM14O5wWm^@BabwQm=d#tPT{hP@dd%+59RmT(;; zvvb|92X~(QOC(485ZKa5z8&H@>vlBO``9^a-;Ql))GEI5-h{J6CNpEux#llHUr$1_KBN@6)BBRTU1EZ6NhgY{SJGv09)4tBp# zGg?v|E2+NfToQFGdB3Q1w5U8*RDQm0q^N4ZF=j7{+Di}->5MI0eyQrp!qra%MhnYg zg=J$!C0NtsXJJPrGwc1@ZKJh!$7=5$C;h-76wP|F^K9qvo{_@x0sEM}FlwK9EpPVl zJ<+*Kqf56&=WH9v+a7gnzg}83T3Qn;tr;m@8MDqEunv|E)x2YOUMrk)Eyp>yd1&|0 zvBB-bRUPX|V4dSWv@mzG_1) zIp%u>FE_vDywvo~sUwB81Dmcn3o%+Q6@-m zlj}+IJIh8f4cfs>Cq*xlYF5{fiFv{GIh>|>*bU8VKS>ySzhfrWPpz%xnURvGKI=)5 zrE7Vn$dX&w7OXXFy>41-&}xD#xJwGR`tfZ^Ye zj919dqZ|Z5q~(aTJZ@MLH&nSZQrw}mjNpz=<_TR)koNJoca-@EGGrGC$fp^%_~;Y? z^9jYxa34C>M!MAPJ4BR z4%KAIvR}z8``=F19V>KS$#hTjx1xGyH=N&au>=d->Tj=nb>+x1lx}m>u^DDDf692r z@2rw%`_A?0rZV+e@7GSg>Abw>jp83PMtAS|{{EqOWbEV9p2$aUR?`^9N5d;IiYM9CN_qAUHVMzpz_XKB2R>ROxNsUIsetWD9~<@)3b1uIBnFZ861-hK<#Ste$UOrp6ztuqtYqT)1Qtit*% zWQF_FBKmp`<(Xs`DMhoBSpUAX3+dX-pINC%>dndyJA~C0tR5@7g}7d-A@L(oX6mYihMW>nqfVODpN*@yQ+V zIRWcUeSLUjuJ%Oo-lwl9KT+SDL{}5~W~ydsg*D;FH2co~W6icrt|`4eCegZRW+Q0v zCm6Sr)OPZGQ^#`Tleeo|Q|bR=yG~a22{s3_lFZ&^8}LO3jyj996~>lq+PB`=KlW?< zi9n>?)h6L9EgmOaaoEd#Z`^g57rtgKU;ESiMD`JR1}`M6{n-@cha{la0-MIjVd9u? zpkU&(g{&%{r?68s6$F|4fL8f&TW3h_fV-iWJ`iPxKjeQvHr$iSrZ_A+8jdpg5oLPW z$oMB$>U@YcezC@Nk(APp8-49@LojX#$IW!!Tb@Hv;RQ(ny8^_m*W@D3f)pM&x zOIE~6Rz!tJdf3kmCQT44U?gv zhR2%6O6H&4cD-c&`TXZr3~r;?P0#K>x1apWD`RCVFK@eAv^$!!`}%}=%GjKF=Z(*o z4Ym%gf2{qY;bP;Zs#o@1&U*Dj$TDpFg6*RJ(vr(nudaA2FScT9 zZ0Xj4`mwoX=c}HtAB+sOJl1p3bIE*3el_EALu}cmn0M0v&60ARgAGs58%}?!B34iq z%PBkWxzK%a|48LsvGTiOId{D|?=9;am9d=N36qdH^#jbRrs6E$)N@l`s2`oXEH-!9 zWye(~t-z5~R{j&G`0}6jxU-#fzUt|tqcgp+ncgee-m#)-PxhVdixyQzb1Ff{if2B% z@Z7?)>DLi(>g=g#QAIST0`yw({HtX(m*#%E{MGVU*~Vz`ror_0rf9D}Y`dQ6q*5%16)m`ux#0hx6zW`aIPZ$H_h0uu9Vlm#(4a#It=^Lco)V zBZ{HUFwS+7FOQoInmDn|rj#sxMdO_g63f4)0c`D(Ls+~-diVi6HmJ>XvPJ$6iuhkd z(lE;4ucEK@J0$#%2T{(TVNUy5aSPkCle0)bE+v_!&2kxWwBV7K5Vw}dgp>Wu?hwI0 z!x6&tA4xtfyl0+!-In>O`Z06en9cdAonvO#*mT$FjRTtp8_#SX0W#N&&0lbO)4;yL zU@Ws_#Jm8KTjmUlEm3H;EF3z1OTaDR5Yn;|Mzf`S$bJ)o@>?cNpavN&yA8wDHwC(@ zfyBZaMh_Y-6+;^+utE>3NZ5p}hMk5RrWuwd!&t$Lp-`-#BEeDZCeB>XD7a;z@WdJ+ zEjMAzwAhBi2?4j^6F2Eb$#HpNCb*l%49hN-KZL|43R$?_vePiMBq7lKd;z~-l=%H} z`b{QRlcFd%7(;2LSyrk-aETnq-mzp2My^_>CyXA;2E$NELZJI_=}mU0$TRp8W|H4% zGYDzf?13A`sg`|)^Z5yZ?w1NKg)i4$I{E6Xn+&rD6D-P&rP?D2<1$PBustE*b`fR7 zjm5h`a+zjc>`jA@$fT3pAA0*Cd+IRsno^GiPxcQy`2JWpeG5ED+V0PThDrCnvDYJ- zv2$b5cYLU8vL8;%n8ma^hNX#y)G%$GLGEz8^V56Fxz8W3Fc)g$qHkVtj$V?(2R+%ZW%zf#7=HD92(r3l0bJDc*w#5z{+SbrJXFYuRqKi%j^7C_a*o8N%A4axa zk}F`FnXzWO_%^wonr91u><7&YrSAoaXQiXp`A)VkIKTH$3ENS? zPLa9$n~=-~T;WdElrTzpQy$oIdi{WLVEtHbk;Y!jnNCf)esIp9e71C`IhI=*bCix) z%RY$|A3Nlxovw#nD8=S+AN)no6rKc?NpH|xwQa9->JexmAQOr^BvpoZANvsDiga^ z>;nmT9-{NDDwB-=0Vl)_N8^U$VX`%72i5>`5#)^cN%iEA;M-8nwdW#3$A)JQ?jABc zu`%XctL{YQI`MCWFq!S?wI$oK*A(i+9^4$aL7moLzstQ6?^t~E5655!Is|mYMh(ug z%aniIEMY@PHWQoC*4^0}p?|Z)-lFj|_!V)4LWciIkjW7*vlluIt9XWwK4pzWq;Sea zot?|fn+c%v8#DO3MW6h)-|nbEXN?j}NV@_%s{i(2eL|Faz!q%9u^~(X-fG1%g771A#kf$?X z6)c$p{zL`?Ho;;aSeLLf;1DcX1IH4X3}o?;YzA_80=W$22^Qzzx`dN~e8G}CI6G0m zKp};!PZTjQMX=-#HYBDpP%K#T2CEX&7?>_t3Ii3LuN7H;t9-VU=C&4aHE8Q zxeO%cF)&}SeoH3MsS0(UX6*1%I(XJBwWAnBx*!wrC_$IUtp@mZ9m za8OQc;&3w{si~gBEh^l~;Wj`@YCDHJ0HLhJP7Zgek#}?007#W@a~Z%y8$Vw zy&Pgg0RPCVDzTr#WWt<0A>xyiB=9p6-pdp zR!E)V=3x%o)zAQkM*yjiM>!0tu!F-+KvGVK!!AJTU&lCe|@+hUP7aR}oD z=)GCbA>Q-s*{vLIQzLKZa0g(~kTJ27!(IH@#BL57)MpzxgfV1E?corHkTOc_fyP7!hn;{(>Sl<;E4-5eeVB;}l7 z@Wx5NqI0H14~M;gS!cqDQylgI7M?}>a(EwL-dS(reh$}~dFVPbjo%yV0i9=S6SW*} z0Gx6T?aSdtHS#77H>%Dk7ueSnTLjfwpnHmmRehX(q~jXglLg z_&IC=q?B7Z6alHs5{GSol+j@h+W{%%0EhT=mZf}@!ysV(S+p;QooeI|hg~W>#vvx9 zq}ZEb4sjTj)wi3&<2*ERg2R)5q`DpsdjYA;r#S2bw4bR>^mBM0Ahp8%9Imx+xQ@+( zZmb8S3f6MC0g#fa<8Y%2H*vUGja<*+7BzG$huZ+Djka^RLk-=@;VwW@`)&>!)X0q- zHgR}!4~KWFp?f*p2S}yb&tWqlDfR$|2i4F+9Nq&+ZRF$dUKRQ|Y*Aq=haw;)C2`mW zNEsdGupN+;6X5U&AXV@vhe1H9Q3r>efYcd69CoSj7>8J7uqF$0h))D~`*L`k!<#2K zJPAlu=;08%lMJ5Xuup~k9NwqG`#D^TnJpD#T^b+1Dy-#jg9__7+^E7$9Bx)&J%?LV zxRt|gD%{TD4i)a?aF+^qbJ(E5Mh=@)xQD~LRk)YKeH`B0&tbC~dVs@&Dm=vDJu38Z zc&`fm9JZ*il|xa55{GRnJj`Lc3IiPCds?QtqZ|fR*ui0^3PT)rsqh$wSU0j~!yMuW z0fXHf9#`QB4o|AEhr?bDZ=B+=FHOkKdnYURd_TvR@{JV)(n?}CH*s79@ug#Gu>f4ZB670M*FXf^=3o-v7HI;N(%2DUdBY_NztC+`ApRdaL zx%TwNv6*vk3N}kt%vwC)7!=>J=MFZVSu^Iyf2UyTxw4mPFPhIEKfmzpf@K3XoVOgB zbHzS=%#r)(_A}du7M!1cKI_%|*A18FUM_t7*rlT*HCx`srbGU`;b1J^i|-|Q#Ic;> zbG5^ck?D(GioD{#WWIR()!i4jj#RF_JnuX1*WGXJ`O*IG?*An`ep!iJlmuUvSR9|( U{=oLZd2gGiBx(dR|DVDC4OGy$wg3PC literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db9c813999adccac8beb8218b63d76a5b3a8cbe4 GIT binary patch literal 1735 zcmah}%WoS+7@vLk5$9nNs0vb5O_LVk#_{Gsnh+ucI3We8IW)-u1KO;;V|!t}Yi7r3 zY!V5SAeEbM392fYTcTci>K_3Y_h$A&Bu?B6flE$&GrLV3Bw$whUh~cDH^2FP^V8s9 z0>K!0_M>%OMd(-Vycm(tIK2(V0Wy&(*{CArq>7xAB_yL2WXk) zN6iR{6=gHJuRaMk%f-oyXsjpNC!z_`&%dJb8f3$|cu&Say)TvU2ePj1(sgP<&8(rV zmkFlCOyd$I#7SerF>&6m5nOO9Ro5X7^RQdQ2KcZn<13KtM?|u(@>H;Fn$Eo-I0Y< zKq`-8fU(+e_=N}f0FL?o)ad4B=6q>G<+Eo}`bueFq;JD|VU^&diMcXx?EAoUrfR@3NqGzW54?yucd?MDSgDpb! z8Q_W;e?oYpu`=`_cKDsxR)d%V>>BMU;sV?foDHE9_uYR*HgU00xpsU`puCzI^y9kjzyql3enQtPqMg7V(Dg5C zh8@ntblr3d5LN&@KdI}6Y!J-;1}md1YVRsX2BWx z{R+}h{>;qpF{?`vJ#nYuKj^P zohm3gBm&)puws!kp8^$5fz=%er{)2JTSr%(M%tsZ&#&F#Y4alOcNr`JhbUz=rTS4; zuflUfIqAe9f=UJV&#OO+F9vYELvKPJe>y$R_pTyI(l6-dpV3iizPa!h0wuQp8*pgD AIRF3v literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b800044528a911a9f3c1bcdc7a7022f436b8aa28 GIT binary patch literal 8621 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..360b40f7cfd15521e1ad89538a533b7f0aac2a13 GIT binary patch literal 10407 zcma)>X>=P$a)1F6;0b^PN$?V>6O=@X1jI`xby>V5>##*q2W=T1Vus*Q0}M16kmC5# z?j~6=c4BhnL}cv5+)bQdBPOBaWLLSJ&7J)tMdN1*`!>&cdHciv+H!vFuT*ypfEkec zw4xrT`|IlJ>gww19?p;5?lK$vtNOuzir?90v;8lvWd2ncg|C0)vDxm~#%#Qew@bFD zecW!h@dbRLR1hs3FSOf48}BHv35C-onXb9#eWQ5S&O50LUj#qJ`9G^A_sdZb75aJ1lG`V>`_Ze7}p)U1rMr8S`6M3u7%7wwtlt7PbfV zfxq^e{MDMFz}xN@X8pL2@iKnLYP(6g!=QoHpo#9^ly+`PyEfI^O{poSdYF`TPQBRE z5-SH7vv`g_h;n(BA7Zo^=;55@AKAgrM~s%E<`%xs(6Y-i|6@okHXLWnYQqV}j#~VG zk}>PbpF#${e=cVge>y{f_nX#afbwVT#zEG%1$qvdG!Fj~JwF>4Gy&)Ckq z5zaBXBX1_>4Oz$xs~1c&xyX3gs%ek2wRmA8=U+s|U$U&k$fk63Q#!UOy^Pds1Am3F zt9i4y#%PgcHODvU{SsrlV6NsJ_VOl@*BSHYNxs4;tR3)>$y=}f0?sjh39L1bH^FE) zkMfNAt(5s(U@c|*B+cHdk^7Ep4wzysB2aU5PG>cl=?$b7A4!Z|wXi5-mn^teiQ*{$LaK zk-K~c%a*AH1u z)DjVEdHOzPGM4@MksTR~@#h(f^QE#9pX5noZ^}lGtS7TQvip>g$((hpPP67;_U-HI9bpDhn7&x|DcaPOZXq&*lV*XU%{Kr1F3Yp zls(JF%i#G}QhC%h?t(WR8~@jmJL(ztu=3wX717G^O1lk4DxKbmXQ26aW~IifgsSO1 z<`yjTf6Mn%1LTw848P2&YZIyX~Dl4x7+0eQcu+A^T1RzN%HIom)Zj#70SooPW(~ zHr^iXwz&uNr}f{yq#auAX-B^pR==dpP;ri^bCQsD#N?Qeb}B+bP}9Y{Fv%q)b+ENO z?F`G3tfY%4B3LNo#c0|wAxnI^NK`pV45v$zF8YBE5AppgPGS%p~C zs;!h4CXx}Y$_mBUq^$X@Y?f1Epgq4ob3taMsH?SFYrn7}sv;~$X0h0E(16iOK`_8< z(@JPj6{B>$*qYM`Yvq(ig+u~E1x4bVI;FW4A+F@yRnDp+Y?+v#U>OkEErwFax}_mrKl@D)01`?k-@??*Ki;+L{jWIlq(_*?mMK zvDJY|BfELo7Bu=LlOmsX8|p9@7%g z<~M7e9ARr=(ukv1?|2eoS*w8+0-cFO zfEN;wotSGhZS+f(9<)++NU&W|73Gv0)Sy6| zQ@Du2#UWK@8C#+9Y*mPw+US|DRb<;>Bfv$$)Xr`Ug}H-Np?~Aosowc%L%{W)(i`-w9#TAgkicO6yjoVap9;PiBO2nlAZ>% z#3>O7bU2&}L^)j_7vq7@44j*?5>UkO6r>8~0i~TPtKHDd=BRYgM&HIp@RSmuZJtv~ zBpHR>`vM(Gfjo{+7svA^QE0}=%l901-3LH>ih58z6PzfpMNtrB}avzstHlhJ0%B) zM0Geh5j=fuFgVhGI(S~@;i&8wg~1a+k)H5$0v%y_Ho?sW1K^~Ypd?NN<8$hi9P18r zb_Ek)Nk<&gEhMQ#5d0A|d>N#^3>t@>v3!B}+|Nt;qHL7o%4IN#zWOA-2m6Z@+U@rL zw$=U2R!1H&Yykz94Vye3rG3<*t(}~y|Q85vU{9m2RQ$(D!1KDbGmd*DrjJ|V%Y-3=%&FP*OmYlk0E7`%wPMfoQeqce> zT}@;cBYu>rp)xIu>}E1c{*_VP)kgL(wil&(bkBCu%1E2dS-I$2;&tyXvX7B=MpkNc z?{3n;NWkWF&5teB==`qRlGI9X*)amXWhYyqO$k(CoclIM}016sA%yW&Wl*Q<|^^GGiMtyvsf@u#A?ua8_r`hr0nsR7;BMP5XD z38-&TxEmoO2u1-=V~g~fJ!A~oWneJO(&&39$Q49a0c}|xNEPc%`^hzA+#t1JV zeHm!&Vsgco67;&Br`M6b0<>YdWo2NkR&P8+LP%dVWc{frz3w34kWK)Fu~zsGE|M@J z9uRfjtiB~k1Z0zj%1OPkgG7)`0c%SQ6xMI<{G?;Sel^x_JQUz$$!jXmEdq)dyt$)+Ha);Na3p^vtTr} zRj)ckhLFNnM>9Qx6uv3ac!G^wyPG_Z489)Hxjx*{`M{z3j*;_-F94D4F5HRSM-kHyf;TK}g$x&dE84u2bCQwThONgOBFk;3OY7RG%rhq_}Vg!EOQ z)Q#6ts_yN1${~f1bTl~Vw*0i^-vzyLl!UQ`H{?TWy}I`>5s*%1wT$ZCE)qcsALvlG z?%hK~Wbk>;a3$TtHxR;?I41at?rkSgWboC^8n%exqZ%$64TYP?;NzKjz6qr8k<2{b zBvSYoW|}XVMG7CftR9|24xhBxCdmfrYsle~m9cqh^vVEv11Wr-a=PzK-x1!Oo}YeO zB5xr+S%~JfuKD%agX9!D-^g{R^xC~-0NEh0Yzi1cHVn)>)EUHQ z0cUgH^T^Htqbqzh1*cUvIgj)LP#U{eAzL`~h5>RB`3r^yr(Uz0yol@)GK}dFWTR#_ zhU_vh??T%`%e}V6w!7`*3gWAPS&rAMTgWwJ9$7x}ejgDLPXnf-om*4&`aW_4sRWc}&|$r@g+!6XfWZPh z+}^3zbP*Y0+yZYRgi9@5mWRy&-5Vqcget%-OJ|n`K0Ld8_Wg4tiFgJuU92m5LkF2f zb_>|nKoGQ+sOd3L0~jz?$K-8o(>@!1_qa{w};3X1ZM%jgzwgo=MkI( z088-x9&#SR1pp8fcdw9(2wnh?jhq*eT|%K1zwX;ZMv#pHqjBTc>)^;ocG-|~qy`@h z>Arq)1^HFrbWSsCaP&edMLG_Y-UdqbrY`alvX>1FwYqOFxsL1=WME|FcGzkfmU!5})!k33>*3m2 zy^B5J?5^&B(n=4gq)(`~uqT|g)xjse#+7E>7ktvNb>%V`*wFW+st&esmH$ai1G^y6 zXQ^J(_N2afWf&sl=_z)ZzU^6XEQ~C*EQ~*@-2SzVE3g-kVW-XEx}*J9VZ%=x)jx5# zf9BZ#Q%Czx9c^E@{dcZ@?)E=&`yab^-yVe9{O69kM~=Fsl2p^fzDo}sb-H6@z1;hG zdDElvrpM)5Z}+czefJs`8*caC@jrGnKItExk1UO*s@C?c?fl`skN17j@tNo3e?)#P z-X8iNmv>?JQtM-v|MtKa&HFxY?tIkT`MA0Jsm<;@Wq(xCaHnixV7kgpe6!QQ{ruCP(T8t)-g^}f5}NB;;LG$y%T%V{nG3t z!I7f|2}C52plYRnT12lX9Lj}10yqR35KLQv1RS_UFJ39Mgw1cjlPut_>Bu8i5+mT%)mAjA7MO-jOSD*lk9yoB{x=B7pIo&W8lh6q-V^>rXBhk^+q)$M;~3 zBt;rcyN>T#kUmj|L|;RW>8|;Dt*z9Tpg~qJ^x2(A$#9^>fKtMckY=qDJUF6^vogWK zn*uM1Fy5vxg$+QsJ)joY>DUE8BBA!7r|>UN;mFezHpG@V1wNE&A_6t>@(=(UQcEKI z+W{@BAv!u+QW)X7_`!$_He_}OEXR*LLPUB(wA>q_qm%T9xFv@XP4Nq9r_;<(CxHKt zZp!5GFv9Y&5FMRi^*4bT`SfAVtZ_UHGQ6UbR|v276KI>|Vd=QHIz?MfGO#c}}EbZ#b)s9GrMZPd*z zdZ}E@me1wcbQE(J^MyGY$;}ipbF^>vVrh|iaOXhZ6Dr#F-r3TkUOHFK6z28P%oH75 zm`fL@GWtTMe7-oB(R0OYcBYVBAG%b%oN-nWb{!kCf))&njH=ZhG=hi)*JGY#5T5>P zqldz1AsNRqdoIkU2=k$#qU%$I4J~w5X~g62f)%cpmJq>wD5x5Spo-u03AB?D8tsfW zRm0h)T`Yp`7&i2&%nvFth0ni{;B?s18muMPz!Vs-+j-(B`JnTHZBR zEI2mrx|XjY+p{3AX{^S6B%`UNR#`O7LRHOcl7{P?O^v^(`G~+V&!}B7>d@CbV8w1iyxPJ1xcw#p;xtV6{CprFJ{_XsY zXSb8rlD8Iar*B@`9lx+QklT~)0`Sv}9jdR|LFZn_FEEj>B>xO! z`;s6C_dwS@(Dw&;<`*#g0GxUNo{d;NnXF2xn^u7e-5qz3m`Uf4Y BhAaR8 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8745b62b41f63535f06f55aee11a7755b2a368f6 GIT binary patch literal 4243 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 Hq|yHaBG6TE literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b6dd94a440a7de48cd5f67ef9ae8daa186278d9 GIT binary patch literal 9932 zcmcgSTWlLgk~8FxA}Q+quq8{*Se7k~Ws-W?l9_~xEWhF;a#oTr2t^$|;EWC(}%OUat3oCFI(cXP*7S2cR=kDtc`8?eH*sylP@O;=T?tsJoDUpC%`0J{A z$RS0^W`YH7WOh$iS65e6S5;T{_}^=491J{-|M+i_xGZG`Q zQO1w8Dayu7epAfsH?!C_N4c2AZ;4s`R%mmQC0Z4;`E4<~-wtgnaY$9fvA{{TJDk7T z#9U+~`yEDd5Yt1TjE~<*q16C&5~l&Jq0kzD)|NnPDYOot^`zFot)tKefHsyu>nXGe zpv@)F2GS_CT<>L=HCE05zpc@xShK&GWlRideyFp=_?t-6QeVDNQb`9MvU-zco`Z3) zB1T(9jP{Bchbm%pRK)14h;g_g#!D43_=*@uDq?h1#5h_Jqq`!;v5FYSD`NCi#OSSv zArvtr^t)DnE7+Q+#0>MVV6m-B{d?ik39#$FPfcH(EKrizFI*2z1ydVu1paLs4aq| zM0V3*&)AH>=D4LqBrdQr#zh4g=AXUq2`6I2qiQ4uGlvtNixKrwYTh&P?gh{Exe3o( z2`LpNu9-w4s(2!?WR%26Ty=#K%ZixxxNng74No*O?@6XXt??oEz@SHosKk{NL)XPc zqIi;#q$dbyQbP8~kxWy<2OmH-z=F3M=Zp;U}}Rt$qa9t#6hI4 zA~xu=N@mFd5bGVzh>Z5MMX1VEUn+8`9UITv4nHp{gbzhUMd23`GG8K!;?8j@n2lTw z6NU1o2(Jvo!4J)4`(L2A&!~o>WLVX}D;TfrR14xT8Ma_PE2g+-*Epm}A7flYhFvOb zYK2ay3t|C2%Cor^HLT5^hD5Q+iOgc%< z%W?vo;q?VRo>2J^cmbF`bqG2Sa0YXf(kb^PWChbU*RI58q2gWFnoUObOPUBLZ%%>n3N0Au_H+jteEg{_TbsIlD2NV9s$0i7v>^ zh*)dDgD91P)&#T5b=YYO22t!_P;0(av{`oniUgFOKyjPdImkF$*Q8G;Hmmukokuph zANcQ1KCL;h&V4Fv)*Q`t9{KFuPu_hndw24`8xK7?JpNVpR|g+;Tz=B{#v|t&S)23Y z+Pk%DKi#w)&(?K5vUSQ0Ky`ALsRKYab+pg>3`Aj*mKX=ErHhM-iiBX7jEW(GArB=g zS)k_`47Cz45?m!Ppv3$V38_V@#Wk7yE%RHGdn2mtXo-q6 zGG0_O?peC#)v&1YQi3S)o?Xj8cbm7wG(S)HltT9*UWzE1I$NCOzPT2@%AouTbVR&gNHMKFCW1I7eTPfUHE_He7gYZ)j;|}wkiL=aiK0M41lyUzP?eHnat_@3f{L1slIJZIZd_*gZ7)D^AGWV0sLP)f z6Kpl;XJyYhX0DZCR?H^YXfkHNDcEfZ-WP0PyJMM;4suM|B$%~3hP1qw?#$k6m}acK#d(oLvH1yx(R{;7a}(&A%NEz zsQJvM4@8k&PzYQxKFOHh=A1GK8t4j&j#TwvL4#I%`N9?rc>=H%G($+1>X}0?eckSU z-0ohj%XaXeUHRn7_Y7;l#IC;ijq}j@n_sH`^!`7*|9j`f@5~6*O}~0y)2H0xlG3P_ zs|yCjIP9^aiq-)E4+YU<-G2UY0(-G|6@JPP6hDUuclO(k!?!Q5ack4}>`%DE+17*5 zGC$!CZgCFFB^KQVYxEneb;m&}yBwzx0Ql^i@A)~5Xp#la4i&jl8CI08x4hrG+N(v)O0d}n{Ap;%CH}VAiPme zx^@i|0tAA=Yu9-FfT6fG3xeF*WbfG9uc+c8IFBf+zE^}o8@CYOtShkW_Gacz7~oJM zu0n8Be6xY&z&j-!kVE@?g675XqN>V~dAdI#UU2T#z{yknE5fTKoj1g2iuk(5Xn$YV zm@uX_VfQ>7gJ9yh*;^~U!knOuA~2G?G3=Y|cb!2>Ln{Gy<#$0F&W}9p>zy5UT@YOh zc>=>LUhkLyltxy{I|S`#IEthqr-yyLV_uv`AB!^&uDFC-FsKZe*$2`4LlB2S65-a+ zE`q}=MIMGnpToncT|ZN1DsObfRoWc>G0lNN zAWPR6trQKzJ$GVE2=r>_0`oZAJRIYKstjf^1BDQn&y>Iy#Hd1i7qBe$#1nDin}h;D zS~Fd_Xf%>kB8o5I#y>&3j!^wXi)T4FBHje0zH%h63^wfzxW=d{^#$De%LxFISy$iO zSU~CnqeLWZ=9hSGe?-6&#+C$aqBvP$l6__}%L@Ec1g{5prGjYVE`N8h@5r@Y;iP-a z^RoB&tH+K4my<%(zQLRZYdl%YG_04Uqr=#N#oO>xu0Vn5=o{ZQKzRPv_HNd8K5IMt zjjc87yqI-PY?+vvDU)7iol@4>m32;Mokz1yE$f`hI?raE@vQSF+lOlHjxBprqxFN! zdLYLcb_H_Gneo}4f#SoG97sR9`?)aWJb%ynEfR!j273zz3f@R+|E%3gyssT=J#Y6SG%_#Mxp(dJ#ayh&m|#$oCGSCjAaRrKxNOv zd^-TxE7p~&Ox21lV^doSXvK?;>wuxKAN4>MYQyAv#h$TAtOmTn2)ks$n{~MvvQ)E* zr#<>)teGmwT)3?-T&l24+>)_pxEqYjel+sY+mNq9<~J!PSF=$Ax=zwyr4}WX zBr-iK<}7eDj>G{3SCMe}2$v49@#}UReCN{ZGv}w@9-la$Gsz@pTZqIZxNVbjHZKCd@a!nrqeMm1-D_sj2?lF3C{a${ekjpx%Np3a-GPZ!=GAHFv8X+uGK;A_rJ=x}tY<stV&H?FVgDm#tCu~@>6%TW9oV{RL$ zq<-Y~rCh7)_7xg`|A=9?mqyr`th0IBZh@$3u4=U2zP#1gU}?pi8LAESf3f-w3q9H* z@mwC6^IEPL{Y zG*`(<6z-Z6*CAM5_na9S9T*-yGc-6dd}_!O3il5y{Uh$M8jI3{m}ZM83FO)>)M&21 z#<-a#qMXlaA>(o(C{L6G>kYsmjObqQ~Ky4om-H4>U>hNnf^S}Kz`!I6+k9*Tyt<+`jz1X`pzRK|K6I5QAI|clcb@ z1l)@yqC`73JD-S3{Gv=qd@c+LK!RUR$WiIYtf!*@JHcs-hh_ben5ngvUbW~0@- zC~MW&h8Os08pSEJ#-Qg_=;M{Dt$tS%khG?92z;H@4(rvyGP0njHUf$$h`Bv{)>)GVm^Bue1Pi%6X z1-NUIF6fcokz;ruI!ji7VEZ^vD5?XYp(S%*Se;ysrR*e+ULt(H9S5( Yv3cO!zs@}3T7Sn)ZH+NpJI&_*4?l~negFUf literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3344e05ba1f510a763f45de4db47e000ea1a283 GIT binary patch literal 6069 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0045188f451a7a0208ac7a2193d943855bb9b894 GIT binary patch literal 5243 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..561c1942209dffd8ec5fb6039984ee8e7997292b GIT binary patch literal 20254 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

Ox8#B*!ler4_JM{XVY*0CF=_bMCj zIcgW0zi(OGy43ZD-S0T#juRk6SJ~%GkjHCjTimwv*zKp|&3zvT#YK>$uP6TL{Fy{; z%Xh2as7`om5|wqY_uuMQURCup7Kw@)OpCgW4+TS=eXbbXQjc%dO}A5JB6Y%1ch5`T zVmb20k+`>W$shCX#N_jA0E^XQpVNa14XHdY?lCyu8i-dtHfK&icQ_HvpMrYgR2Ay- zp-=Eu0XtdRdbhGW?&*#mN$E<8j%)6_ysvHfPT{THkls&e$!E>mnbMO5Epk_+3YisB zgH-qF8vDZc6HkIJoXFuTcc3C>Oo z%2vo{7*bB5)Wffg-@~r!uEeJ)NChfh_uRD$jo)p1qb=_4Sn|Z&J06CDR_sYs|9lhtRLq7Czn}surXKwrFt#NnnopFpzg$v@i z$ig60)PJoX7d5`$_(xCv<(3}}EkAW8*7CWSt#M8_7nuJXM&0eZ8MzTzEpLsLx85yp zhcK(N>OBv1|N34px>dArWwp5{*4%UF&|mcbs6WqTMs=IsH-JPsyN!0nj zbsW3|XX^uWa&4lz{+pJBx9-*c2W80YLsvR)E#;l?cR&`vxnsU4Bd3_V8^Qq29cz>h zd6m{9FPr0*{*5-QEt*6SAy{zX(#Pl=*5~7Q+EM#*J6&b5qif1*zE+&@R;_ru7V5v- z`9^2-=>JwycFX(5rGMG>@7$I5s#+GG`s3l-{(m`n=Y`m|Lw7eEg4bIE@0C~It8T*O zpVyDwI)<#Bx1X6m7Oy<`PIIjCNqo2nY>65#WLG`j2WFwBIZwn&)S||VT6nx{fWF?J zdR|NG_`xKuVcTvTzGwH&Zy|ooB6!uCmX5{kJuB9pgx&kw{a}JPtD{>!{)fW_m=LL6 zjo{hwamo(!7eS&2Mf)qy?9}`(4L$lZ9oGNVzi$g%D^;2^+srG~2C_GHz>Jq^&UBmO z4#e82xm!U2ck2ttY%U{nmk#E;1wC8w`f0ZYCJqjC@?i$-dtmQ}mIlV4tD^vh3)GX1 z!kF#~f4g*q>_^EsM#gb67=Gd>8xiZ6G9>o#jHLNcU(cCm24VI}#S}yo4#`4BEg1}_ z(e48x_XIgB$fzO1NXD07BrWVS-lP|6N|e4r-Y3Zzp)domA-a+GTjUcZgCSl->X5!m zMiCjqWPFi~KOy5b8GlK}zaV3o4C-gjy8LUhEs#N5G!sE*$S&Wui6$nI!5E4pV)0es zK|z(?nA#&0+vl2QpN;E033G8YIP3q-6IhCk{zOx2qNYAk-<+szV4xGW#Qo7N*#sOIw%q7Qm6FRY*y~eeWOG2RcgjgNmrz!oDkqy8dr!(kHm~6F zrYgu*NwzAoRpUlfs)lSn0a`R_$yO)WovC`VHDJ3;HIl7~cInS8j6ymm=IBZ_lV1y# z^86Ko`Jkv;Z_e&-c%Z-0DTQPsUFRti+04`_ z7P48XQz#*N*IfER32YCwlyw35J+2W9#i@b<{kC}>;Dvr0g>et$X0X0|_A6&8xO)CH z?kwu77etCxO|i@=st;-qZ_VaQ=_$TJfOaxDr7}M(6kt^+L=icQY08^oC3UG1a@quY zZK{-Pb^(fB%E;yr%IZ^2vbmJ?QBE$mvOYZI@+z(ha$%R|E2)ZH)r136^)S6Lhib_N zNdYYP%GwW18}z-JHCOd=4fK+2OzFwV*D0%3A#>vfpEt!~q9>4rg?t}=L8H@eNLf4d z#cWjQO{0SMnyLJu9`DpS%^tmrh0>cs@m@0(MTciS5B0F89%qxepaH>7&wTxjXHr_S zw{|Rs-fZReo?iBrlYO8^IE@qLDQu}@nu8j>ot42X8#kx4%(8nwx2%~;=Ne~g9_qiiWCFuD&OyEdB!NNb(V00m8>ps#&#++B>A2ml7hbDQ!nB>UNiQS_}BvE;qcXmaohu=8;|Vl z2pPC@$cXFEc>%Vh@nit^(1HOmX?c#(31 zzLU^2Nq6W@J%8oW(D?JzxQ6bno7%g&Hnwl;-Z*1Dj%#q6wzAZZ&6J;-8lR%eYHBX9 zO-WafXmj`G_O7j6?VGo3=S6n$MB8U-(~OA#N;9V-`tBh3QDNnhd3VTxhxto;V(q*ffA zkiI~kUZS!vB2RGl=bPc(-0o|hgl6^TvonpD+$1x-yQ`fPsy-@OTl(|Qth7&x>_3vU z;EO9m45Ys zfaEhi1ri*iz7fF-9;6eC(G!_U1!zi;oD|)~LKz`dBC>X}aBTYG6+$T8%q5G0@z2Q& zQws1hIF^b}WlK|`DF}%%9ihoWnV!W6l6=WmQ(T73(s)ZgG8oc3OE!jK*OQILTWTbu ziHv447%u%3*%)TZ&`v_UlkSV77dt?3oD`>|4*DoehpbgAS-CDm{WdllbPS*-=~@?s z0XK9C1B?<~`~{F?0Pl-bIK!72%1*PBO<#$=9>lP3PJ0`tfal2=BjXeqePry1@eAXw zi762?e~)wl$?z`(e_S94IO1tEe=BswgszVY%$kCa1Q`E7#z$^J(*UBVa&=kAVLeu$32BJ}P)xqiISBWMUU9u%x&L zq*p1hP(w$1GUY(Be&{f2>Z3B)V7_wk((Uui^T3+1=#`?`qJ-6(utKew7uh2@ zw0ISh_uS-i)80GPca2XVu^O*4VXaKqL4v3x!kp_v!GI*iauSwPD`N1RtXfm$d>Jq_ zQ{{pK2U}Am4z^|9SN+k#dye`zeKP2tu{iqWyT+P?v4oWwSomDD=&rG2t-K(J$}LN+5Wip Qz}6!^?O*xyNBo8V59>B2bpQYW literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2a806dd446d46d2c8987fd04b9204e0e09330aa GIT binary patch literal 3382 zcma)8YiwIr9Y6P8zhcL(+otJ@uD9Kzb(h%N3TP{=YnEh9v^=KO>xRp?IJqaWSKHSd z-*j~qp)i%vAsB@(4KHo0CTP|#Ob8?%nkEE@*N28NRIWf&8hp6$fuyOJG=$*)JLfuf zp+ea5@BYs3|2Y5iy2rmvCgY4go4)&t@_{5{@1W88L<6$+7a|v!&1|j0s#-y->IJ=O z6by~ox@}ZK)o>v!d8iVpMhj7maf8S3oiVmkY@thMN0}Wy%k0QyU1crAb;jd%)Q-(E zyX&Gx7{91p4h7bPv?lCs(v#Af>acc8>jpbb){WA-sl%EKGH)hpkF;*-u%@K7*WOCj zZPL2E!@8llBeT;-5gEe^jg=d&7n`iRWv5oGc;Wn9y~2GBR?X`kbSjR>i!y00wWE&} ziMV`P4MAZdXskU<57{C5g?X5VFjsbjM_OFAqqaU1w_|6+ zg=kaH#Jyymi)xw5$(MMQ7hk7p2Fz)cV!BYwxdyk*XG^?h^3!!kxaHa`*=r4_!tr!@ z&CSN+CVd9PY~zq*XiXKTPtFQwu4bG2rAYi^&}f~PZwOzN`JP4=2yPcY*M{(mIs zbaVM>H>0X==czfOTCAA+G5aTORS8NNFe_v>of-3fGYFtcd96`)n<`A-g=EbkK2w~lxD7ZVP}MZy#oM#( z#oIIDMbucli0api2=2~_+H^SBM|gl6^jn)DxWHWONBNo8US#vkT5oq)bZH6B9%F9n zY_oY|K6F}Z=o+yzl;v^|O?iT|$XJstX%m^SK#-SiS8mB!@zU-3l_FwrOcZG`l+eh8 zy-+r3bI)+v;j<+tceLz|%uVG6Kk`WK*wA2Z z+_C2>yg%I*J*1P zXL%!6FV}Mxx!I1$iSl$Q=LUz#l4mDdZ+bDyD%Z-cWu580>7->_dJk&;0Ko#gkz#xL zFFkX`eBfN@H?dv6H~TsoJNLf)!Ar+~-T&aXPA%Vl_^q7}oeRAk+qOo5Ol%~`#L!o* zSml=G#VxBU2S>cyvOY0atOS;*W!cU&$q8#vzHsmk5?FtM1rl2cmYCQE-V4ABT|yU; z#&LqPY*mkiV=K3@+`-jESNMo_t!MX27-S{FwwNnXNn>o|mh&f;(|cCBWIN6_ZeQ$K zJh{C6z;gQT6&bkF&ElyWN!V4F=xxdH|AkJ?7AzS8TdfV5nAk%?#_$(z)&s}AEj42Z z$vcI1DyS_FsRqJ2m%-G_o5**23o@}*5c~rlRjrH!kcZ?ZJOV-TPGQ|!22;qou_d%~ zNYid62Q4@J9mEBI>iZq|oh`_8k+cJ?yIQbh_&30j&$kFjSOmWY2(tVW`~m>|kjK}- zIe{u{pHiQKx(xU$0d@6b@Sgy_ql78&j{(LYL3pM9PJ^r9s~?RGW<8d9|DXh;WOZ00enab;sNk)0C4yy zWD@)o;1wl&8vLVx&nw|c@Gk&fB@jVZ=ODZQVVocnrBwewORn8LkPLqVJ$wPkNkQBX zUI!eMf{z2|R{`%xK|D30M~YB7wMD2_A&kARw4>U=al}`o9G$N!7(YlL3R3NEWi2odf z5hcjp&qBb2k_T2&e2u{Om0*JR5s0P~e9W;xKdl#47F+^M6PdIZahr9zAUke>Fj>5$ zypJtc{Uue`b+oSjm8v`0p#Ml>7xKjs&^t8z$iNe0c`HBs`1t6=z?hXE86F?@qT`bj zlaCIJda0q&@$umytJUtF7(F_YwsyY7Ia2*yQ7s0fFK+q{hjRSJ8X1 z535V z$|Pplj(t}{o3DnF*Y&P& literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c73a9a3127fe151f65348906e2af886e2024eb13 GIT binary patch literal 58997 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 vksU6i?iU|ZZti`#u?>4aehf^vM2y%*re* literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..223280c55fda2fb16cc28166bc17b58db2d5dcb9 GIT binary patch literal 6374 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 QG={Gn$OCk$rB7%4UwaWO^8f$< literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f2afce398a727bbf46ce4fb312c20cac47b35a7 GIT binary patch literal 11473 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 F{{;Xd!S?_F literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py new file mode 100644 index 000000000..36286df37 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py @@ -0,0 +1,451 @@ +# Auto generated by make_terminal_widths.py + +CELL_WIDTHS = [ + (0, 0, 0), + (1, 31, -1), + (127, 159, -1), + (768, 879, 0), + (1155, 1161, 0), + (1425, 1469, 0), + (1471, 1471, 0), + (1473, 1474, 0), + (1476, 1477, 0), + (1479, 1479, 0), + (1552, 1562, 0), + (1611, 1631, 0), + (1648, 1648, 0), + (1750, 1756, 0), + (1759, 1764, 0), + (1767, 1768, 0), + (1770, 1773, 0), + (1809, 1809, 0), + (1840, 1866, 0), + (1958, 1968, 0), + (2027, 2035, 0), + (2045, 2045, 0), + (2070, 2073, 0), + (2075, 2083, 0), + (2085, 2087, 0), + (2089, 2093, 0), + (2137, 2139, 0), + (2259, 2273, 0), + (2275, 2306, 0), + (2362, 2362, 0), + (2364, 2364, 0), + (2369, 2376, 0), + (2381, 2381, 0), + (2385, 2391, 0), + (2402, 2403, 0), + (2433, 2433, 0), + (2492, 2492, 0), + (2497, 2500, 0), + (2509, 2509, 0), + (2530, 2531, 0), + (2558, 2558, 0), + (2561, 2562, 0), + (2620, 2620, 0), + (2625, 2626, 0), + (2631, 2632, 0), + (2635, 2637, 0), + (2641, 2641, 0), + (2672, 2673, 0), + (2677, 2677, 0), + (2689, 2690, 0), + (2748, 2748, 0), + (2753, 2757, 0), + (2759, 2760, 0), + (2765, 2765, 0), + (2786, 2787, 0), + (2810, 2815, 0), + (2817, 2817, 0), + (2876, 2876, 0), + (2879, 2879, 0), + (2881, 2884, 0), + (2893, 2893, 0), + (2901, 2902, 0), + (2914, 2915, 0), + (2946, 2946, 0), + (3008, 3008, 0), + (3021, 3021, 0), + (3072, 3072, 0), + (3076, 3076, 0), + (3134, 3136, 0), + (3142, 3144, 0), + (3146, 3149, 0), + (3157, 3158, 0), + (3170, 3171, 0), + (3201, 3201, 0), + (3260, 3260, 0), + (3263, 3263, 0), + (3270, 3270, 0), + (3276, 3277, 0), + (3298, 3299, 0), + (3328, 3329, 0), + (3387, 3388, 0), + (3393, 3396, 0), + (3405, 3405, 0), + (3426, 3427, 0), + (3457, 3457, 0), + (3530, 3530, 0), + (3538, 3540, 0), + (3542, 3542, 0), + (3633, 3633, 0), + (3636, 3642, 0), + (3655, 3662, 0), + (3761, 3761, 0), + (3764, 3772, 0), + (3784, 3789, 0), + (3864, 3865, 0), + (3893, 3893, 0), + (3895, 3895, 0), + (3897, 3897, 0), + (3953, 3966, 0), + (3968, 3972, 0), + (3974, 3975, 0), + (3981, 3991, 0), + (3993, 4028, 0), + (4038, 4038, 0), + (4141, 4144, 0), + (4146, 4151, 0), + (4153, 4154, 0), + (4157, 4158, 0), + (4184, 4185, 0), + (4190, 4192, 0), + (4209, 4212, 0), + (4226, 4226, 0), + (4229, 4230, 0), + (4237, 4237, 0), + (4253, 4253, 0), + (4352, 4447, 2), + (4957, 4959, 0), + (5906, 5908, 0), + (5938, 5940, 0), + (5970, 5971, 0), + (6002, 6003, 0), + (6068, 6069, 0), + (6071, 6077, 0), + (6086, 6086, 0), + (6089, 6099, 0), + (6109, 6109, 0), + (6155, 6157, 0), + (6277, 6278, 0), + (6313, 6313, 0), + (6432, 6434, 0), + (6439, 6440, 0), + (6450, 6450, 0), + (6457, 6459, 0), + (6679, 6680, 0), + (6683, 6683, 0), + (6742, 6742, 0), + (6744, 6750, 0), + (6752, 6752, 0), + (6754, 6754, 0), + (6757, 6764, 0), + (6771, 6780, 0), + (6783, 6783, 0), + (6832, 6848, 0), + (6912, 6915, 0), + (6964, 6964, 0), + (6966, 6970, 0), + (6972, 6972, 0), + (6978, 6978, 0), + (7019, 7027, 0), + (7040, 7041, 0), + (7074, 7077, 0), + (7080, 7081, 0), + (7083, 7085, 0), + (7142, 7142, 0), + (7144, 7145, 0), + (7149, 7149, 0), + (7151, 7153, 0), + (7212, 7219, 0), + (7222, 7223, 0), + (7376, 7378, 0), + (7380, 7392, 0), + (7394, 7400, 0), + (7405, 7405, 0), + (7412, 7412, 0), + (7416, 7417, 0), + (7616, 7673, 0), + (7675, 7679, 0), + (8203, 8207, 0), + (8232, 8238, 0), + (8288, 8291, 0), + (8400, 8432, 0), + (8986, 8987, 2), + (9001, 9002, 2), + (9193, 9196, 2), + (9200, 9200, 2), + (9203, 9203, 2), + (9725, 9726, 2), + (9748, 9749, 2), + (9800, 9811, 2), + (9855, 9855, 2), + (9875, 9875, 2), + (9889, 9889, 2), + (9898, 9899, 2), + (9917, 9918, 2), + (9924, 9925, 2), + (9934, 9934, 2), + (9940, 9940, 2), + (9962, 9962, 2), + (9970, 9971, 2), + (9973, 9973, 2), + (9978, 9978, 2), + (9981, 9981, 2), + (9989, 9989, 2), + (9994, 9995, 2), + (10024, 10024, 2), + (10060, 10060, 2), + (10062, 10062, 2), + (10067, 10069, 2), + (10071, 10071, 2), + (10133, 10135, 2), + (10160, 10160, 2), + (10175, 10175, 2), + (11035, 11036, 2), + (11088, 11088, 2), + (11093, 11093, 2), + (11503, 11505, 0), + (11647, 11647, 0), + (11744, 11775, 0), + (11904, 11929, 2), + (11931, 12019, 2), + (12032, 12245, 2), + (12272, 12283, 2), + (12288, 12329, 2), + (12330, 12333, 0), + (12334, 12350, 2), + (12353, 12438, 2), + (12441, 12442, 0), + (12443, 12543, 2), + (12549, 12591, 2), + (12593, 12686, 2), + (12688, 12771, 2), + (12784, 12830, 2), + (12832, 12871, 2), + (12880, 19903, 2), + (19968, 42124, 2), + (42128, 42182, 2), + (42607, 42610, 0), + (42612, 42621, 0), + (42654, 42655, 0), + (42736, 42737, 0), + (43010, 43010, 0), + (43014, 43014, 0), + (43019, 43019, 0), + (43045, 43046, 0), + (43052, 43052, 0), + (43204, 43205, 0), + (43232, 43249, 0), + (43263, 43263, 0), + (43302, 43309, 0), + (43335, 43345, 0), + (43360, 43388, 2), + (43392, 43394, 0), + (43443, 43443, 0), + (43446, 43449, 0), + (43452, 43453, 0), + (43493, 43493, 0), + (43561, 43566, 0), + (43569, 43570, 0), + (43573, 43574, 0), + (43587, 43587, 0), + (43596, 43596, 0), + (43644, 43644, 0), + (43696, 43696, 0), + (43698, 43700, 0), + (43703, 43704, 0), + (43710, 43711, 0), + (43713, 43713, 0), + (43756, 43757, 0), + (43766, 43766, 0), + (44005, 44005, 0), + (44008, 44008, 0), + (44013, 44013, 0), + (44032, 55203, 2), + (63744, 64255, 2), + (64286, 64286, 0), + (65024, 65039, 0), + (65040, 65049, 2), + (65056, 65071, 0), + (65072, 65106, 2), + (65108, 65126, 2), + (65128, 65131, 2), + (65281, 65376, 2), + (65504, 65510, 2), + (66045, 66045, 0), + (66272, 66272, 0), + (66422, 66426, 0), + (68097, 68099, 0), + (68101, 68102, 0), + (68108, 68111, 0), + (68152, 68154, 0), + (68159, 68159, 0), + (68325, 68326, 0), + (68900, 68903, 0), + (69291, 69292, 0), + (69446, 69456, 0), + (69633, 69633, 0), + (69688, 69702, 0), + (69759, 69761, 0), + (69811, 69814, 0), + (69817, 69818, 0), + (69888, 69890, 0), + (69927, 69931, 0), + (69933, 69940, 0), + (70003, 70003, 0), + (70016, 70017, 0), + (70070, 70078, 0), + (70089, 70092, 0), + (70095, 70095, 0), + (70191, 70193, 0), + (70196, 70196, 0), + (70198, 70199, 0), + (70206, 70206, 0), + (70367, 70367, 0), + (70371, 70378, 0), + (70400, 70401, 0), + (70459, 70460, 0), + (70464, 70464, 0), + (70502, 70508, 0), + (70512, 70516, 0), + (70712, 70719, 0), + (70722, 70724, 0), + (70726, 70726, 0), + (70750, 70750, 0), + (70835, 70840, 0), + (70842, 70842, 0), + (70847, 70848, 0), + (70850, 70851, 0), + (71090, 71093, 0), + (71100, 71101, 0), + (71103, 71104, 0), + (71132, 71133, 0), + (71219, 71226, 0), + (71229, 71229, 0), + (71231, 71232, 0), + (71339, 71339, 0), + (71341, 71341, 0), + (71344, 71349, 0), + (71351, 71351, 0), + (71453, 71455, 0), + (71458, 71461, 0), + (71463, 71467, 0), + (71727, 71735, 0), + (71737, 71738, 0), + (71995, 71996, 0), + (71998, 71998, 0), + (72003, 72003, 0), + (72148, 72151, 0), + (72154, 72155, 0), + (72160, 72160, 0), + (72193, 72202, 0), + (72243, 72248, 0), + (72251, 72254, 0), + (72263, 72263, 0), + (72273, 72278, 0), + (72281, 72283, 0), + (72330, 72342, 0), + (72344, 72345, 0), + (72752, 72758, 0), + (72760, 72765, 0), + (72767, 72767, 0), + (72850, 72871, 0), + (72874, 72880, 0), + (72882, 72883, 0), + (72885, 72886, 0), + (73009, 73014, 0), + (73018, 73018, 0), + (73020, 73021, 0), + (73023, 73029, 0), + (73031, 73031, 0), + (73104, 73105, 0), + (73109, 73109, 0), + (73111, 73111, 0), + (73459, 73460, 0), + (92912, 92916, 0), + (92976, 92982, 0), + (94031, 94031, 0), + (94095, 94098, 0), + (94176, 94179, 2), + (94180, 94180, 0), + (94192, 94193, 2), + (94208, 100343, 2), + (100352, 101589, 2), + (101632, 101640, 2), + (110592, 110878, 2), + (110928, 110930, 2), + (110948, 110951, 2), + (110960, 111355, 2), + (113821, 113822, 0), + (119143, 119145, 0), + (119163, 119170, 0), + (119173, 119179, 0), + (119210, 119213, 0), + (119362, 119364, 0), + (121344, 121398, 0), + (121403, 121452, 0), + (121461, 121461, 0), + (121476, 121476, 0), + (121499, 121503, 0), + (121505, 121519, 0), + (122880, 122886, 0), + (122888, 122904, 0), + (122907, 122913, 0), + (122915, 122916, 0), + (122918, 122922, 0), + (123184, 123190, 0), + (123628, 123631, 0), + (125136, 125142, 0), + (125252, 125258, 0), + (126980, 126980, 2), + (127183, 127183, 2), + (127374, 127374, 2), + (127377, 127386, 2), + (127488, 127490, 2), + (127504, 127547, 2), + (127552, 127560, 2), + (127568, 127569, 2), + (127584, 127589, 2), + (127744, 127776, 2), + (127789, 127797, 2), + (127799, 127868, 2), + (127870, 127891, 2), + (127904, 127946, 2), + (127951, 127955, 2), + (127968, 127984, 2), + (127988, 127988, 2), + (127992, 128062, 2), + (128064, 128064, 2), + (128066, 128252, 2), + (128255, 128317, 2), + (128331, 128334, 2), + (128336, 128359, 2), + (128378, 128378, 2), + (128405, 128406, 2), + (128420, 128420, 2), + (128507, 128591, 2), + (128640, 128709, 2), + (128716, 128716, 2), + (128720, 128722, 2), + (128725, 128727, 2), + (128747, 128748, 2), + (128756, 128764, 2), + (128992, 129003, 2), + (129292, 129338, 2), + (129340, 129349, 2), + (129351, 129400, 2), + (129402, 129483, 2), + (129485, 129535, 2), + (129648, 129652, 2), + (129656, 129658, 2), + (129664, 129670, 2), + (129680, 129704, 2), + (129712, 129718, 2), + (129728, 129730, 2), + (129744, 129750, 2), + (131072, 196605, 2), + (196608, 262141, 2), + (917760, 917999, 0), +] diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py new file mode 100644 index 000000000..1f2877bb2 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py @@ -0,0 +1,3610 @@ +EMOJI = { + "1st_place_medal": "🥇", + "2nd_place_medal": "🥈", + "3rd_place_medal": "🥉", + "ab_button_(blood_type)": "🆎", + "atm_sign": "🏧", + "a_button_(blood_type)": "🅰", + "afghanistan": "🇦🇫", + "albania": "🇦🇱", + "algeria": "🇩🇿", + "american_samoa": "🇦🇸", + "andorra": "🇦🇩", + "angola": "🇦🇴", + "anguilla": "🇦🇮", + "antarctica": "🇦🇶", + "antigua_&_barbuda": "🇦🇬", + "aquarius": "♒", + "argentina": "🇦🇷", + "aries": "♈", + "armenia": "🇦🇲", + "aruba": "🇦🇼", + "ascension_island": "🇦🇨", + "australia": "🇦🇺", + "austria": "🇦🇹", + "azerbaijan": "🇦🇿", + "back_arrow": "🔙", + "b_button_(blood_type)": "🅱", + "bahamas": "🇧🇸", + "bahrain": "🇧🇭", + "bangladesh": "🇧🇩", + "barbados": "🇧🇧", + "belarus": "🇧🇾", + "belgium": "🇧🇪", + "belize": "🇧🇿", + "benin": "🇧🇯", + "bermuda": "🇧🇲", + "bhutan": "🇧🇹", + "bolivia": "🇧🇴", + "bosnia_&_herzegovina": "🇧🇦", + "botswana": "🇧🇼", + "bouvet_island": "🇧🇻", + "brazil": "🇧🇷", + "british_indian_ocean_territory": "🇮🇴", + "british_virgin_islands": "🇻🇬", + "brunei": "🇧🇳", + "bulgaria": "🇧🇬", + "burkina_faso": "🇧🇫", + "burundi": "🇧🇮", + "cl_button": "🆑", + "cool_button": "🆒", + "cambodia": "🇰🇭", + "cameroon": "🇨🇲", + "canada": "🇨🇦", + "canary_islands": "🇮🇨", + "cancer": "♋", + "cape_verde": "🇨🇻", + "capricorn": "♑", + "caribbean_netherlands": "🇧🇶", + "cayman_islands": "🇰🇾", + "central_african_republic": "🇨🇫", + "ceuta_&_melilla": "🇪🇦", + "chad": "🇹🇩", + "chile": "🇨🇱", + "china": "🇨🇳", + "christmas_island": "🇨🇽", + "christmas_tree": "🎄", + "clipperton_island": "🇨🇵", + "cocos_(keeling)_islands": "🇨🇨", + "colombia": "🇨🇴", + "comoros": "🇰🇲", + "congo_-_brazzaville": "🇨🇬", + "congo_-_kinshasa": "🇨🇩", + "cook_islands": "🇨🇰", + "costa_rica": "🇨🇷", + "croatia": "🇭🇷", + "cuba": "🇨🇺", + "curaçao": "🇨🇼", + "cyprus": "🇨🇾", + "czechia": "🇨🇿", + "côte_d’ivoire": "🇨🇮", + "denmark": "🇩🇰", + "diego_garcia": "🇩🇬", + "djibouti": "🇩🇯", + "dominica": "🇩🇲", + "dominican_republic": "🇩🇴", + "end_arrow": "🔚", + "ecuador": "🇪🇨", + "egypt": "🇪🇬", + "el_salvador": "🇸🇻", + "england": "🏴\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f", + "equatorial_guinea": "🇬🇶", + "eritrea": "🇪🇷", + "estonia": "🇪🇪", + "ethiopia": "🇪🇹", + "european_union": "🇪🇺", + "free_button": "🆓", + "falkland_islands": "🇫🇰", + "faroe_islands": "🇫🇴", + "fiji": "🇫🇯", + "finland": "🇫🇮", + "france": "🇫🇷", + "french_guiana": "🇬🇫", + "french_polynesia": "🇵🇫", + "french_southern_territories": "🇹🇫", + "gabon": "🇬🇦", + "gambia": "🇬🇲", + "gemini": "♊", + "georgia": "🇬🇪", + "germany": "🇩🇪", + "ghana": "🇬🇭", + "gibraltar": "🇬🇮", + "greece": "🇬🇷", + "greenland": "🇬🇱", + "grenada": "🇬🇩", + "guadeloupe": "🇬🇵", + "guam": "🇬🇺", + "guatemala": "🇬🇹", + "guernsey": "🇬🇬", + "guinea": "🇬🇳", + "guinea-bissau": "🇬🇼", + "guyana": "🇬🇾", + "haiti": "🇭🇹", + "heard_&_mcdonald_islands": "🇭🇲", + "honduras": "🇭🇳", + "hong_kong_sar_china": "🇭🇰", + "hungary": "🇭🇺", + "id_button": "🆔", + "iceland": "🇮🇸", + "india": "🇮🇳", + "indonesia": "🇮🇩", + "iran": "🇮🇷", + "iraq": "🇮🇶", + "ireland": "🇮🇪", + "isle_of_man": "🇮🇲", + "israel": "🇮🇱", + "italy": "🇮🇹", + "jamaica": "🇯🇲", + "japan": "🗾", + "japanese_acceptable_button": "🉑", + "japanese_application_button": "🈸", + "japanese_bargain_button": "🉐", + "japanese_castle": "🏯", + "japanese_congratulations_button": "㊗", + "japanese_discount_button": "🈹", + "japanese_dolls": "🎎", + "japanese_free_of_charge_button": "🈚", + "japanese_here_button": "🈁", + "japanese_monthly_amount_button": "🈷", + "japanese_no_vacancy_button": "🈵", + "japanese_not_free_of_charge_button": "🈶", + "japanese_open_for_business_button": "🈺", + "japanese_passing_grade_button": "🈴", + "japanese_post_office": "🏣", + "japanese_prohibited_button": "🈲", + "japanese_reserved_button": "🈯", + "japanese_secret_button": "㊙", + "japanese_service_charge_button": "🈂", + "japanese_symbol_for_beginner": "🔰", + "japanese_vacancy_button": "🈳", + "jersey": "🇯🇪", + "jordan": "🇯🇴", + "kazakhstan": "🇰🇿", + "kenya": "🇰🇪", + "kiribati": "🇰🇮", + "kosovo": "🇽🇰", + "kuwait": "🇰🇼", + "kyrgyzstan": "🇰🇬", + "laos": "🇱🇦", + "latvia": "🇱🇻", + "lebanon": "🇱🇧", + "leo": "♌", + "lesotho": "🇱🇸", + "liberia": "🇱🇷", + "libra": "♎", + "libya": "🇱🇾", + "liechtenstein": "🇱🇮", + "lithuania": "🇱🇹", + "luxembourg": "🇱🇺", + "macau_sar_china": "🇲🇴", + "macedonia": "🇲🇰", + "madagascar": "🇲🇬", + "malawi": "🇲🇼", + "malaysia": "🇲🇾", + "maldives": "🇲🇻", + "mali": "🇲🇱", + "malta": "🇲🇹", + "marshall_islands": "🇲🇭", + "martinique": "🇲🇶", + "mauritania": "🇲🇷", + "mauritius": "🇲🇺", + "mayotte": "🇾🇹", + "mexico": "🇲🇽", + "micronesia": "🇫🇲", + "moldova": "🇲🇩", + "monaco": "🇲🇨", + "mongolia": "🇲🇳", + "montenegro": "🇲🇪", + "montserrat": "🇲🇸", + "morocco": "🇲🇦", + "mozambique": "🇲🇿", + "mrs._claus": "🤶", + "mrs._claus_dark_skin_tone": "🤶🏿", + "mrs._claus_light_skin_tone": "🤶🏻", + "mrs._claus_medium-dark_skin_tone": "🤶🏾", + "mrs._claus_medium-light_skin_tone": "🤶🏼", + "mrs._claus_medium_skin_tone": "🤶🏽", + "myanmar_(burma)": "🇲🇲", + "new_button": "🆕", + "ng_button": "🆖", + "namibia": "🇳🇦", + "nauru": "🇳🇷", + "nepal": "🇳🇵", + "netherlands": "🇳🇱", + "new_caledonia": "🇳🇨", + "new_zealand": "🇳🇿", + "nicaragua": "🇳🇮", + "niger": "🇳🇪", + "nigeria": "🇳🇬", + "niue": "🇳🇺", + "norfolk_island": "🇳🇫", + "north_korea": "🇰🇵", + "northern_mariana_islands": "🇲🇵", + "norway": "🇳🇴", + "ok_button": "🆗", + "ok_hand": "👌", + "ok_hand_dark_skin_tone": "👌🏿", + "ok_hand_light_skin_tone": "👌🏻", + "ok_hand_medium-dark_skin_tone": "👌🏾", + "ok_hand_medium-light_skin_tone": "👌🏼", + "ok_hand_medium_skin_tone": "👌🏽", + "on!_arrow": "🔛", + "o_button_(blood_type)": "🅾", + "oman": "🇴🇲", + "ophiuchus": "⛎", + "p_button": "🅿", + "pakistan": "🇵🇰", + "palau": "🇵🇼", + "palestinian_territories": "🇵🇸", + "panama": "🇵🇦", + "papua_new_guinea": "🇵🇬", + "paraguay": "🇵🇾", + "peru": "🇵🇪", + "philippines": "🇵🇭", + "pisces": "♓", + "pitcairn_islands": "🇵🇳", + "poland": "🇵🇱", + "portugal": "🇵🇹", + "puerto_rico": "🇵🇷", + "qatar": "🇶🇦", + "romania": "🇷🇴", + "russia": "🇷🇺", + "rwanda": "🇷🇼", + "réunion": "🇷🇪", + "soon_arrow": "🔜", + "sos_button": "🆘", + "sagittarius": "♐", + "samoa": "🇼🇸", + "san_marino": "🇸🇲", + "santa_claus": "🎅", + "santa_claus_dark_skin_tone": "🎅🏿", + "santa_claus_light_skin_tone": "🎅🏻", + "santa_claus_medium-dark_skin_tone": "🎅🏾", + "santa_claus_medium-light_skin_tone": "🎅🏼", + "santa_claus_medium_skin_tone": "🎅🏽", + "saudi_arabia": "🇸🇦", + "scorpio": "♏", + "scotland": "🏴\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f", + "senegal": "🇸🇳", + "serbia": "🇷🇸", + "seychelles": "🇸🇨", + "sierra_leone": "🇸🇱", + "singapore": "🇸🇬", + "sint_maarten": "🇸🇽", + "slovakia": "🇸🇰", + "slovenia": "🇸🇮", + "solomon_islands": "🇸🇧", + "somalia": "🇸🇴", + "south_africa": "🇿🇦", + "south_georgia_&_south_sandwich_islands": "🇬🇸", + "south_korea": "🇰🇷", + "south_sudan": "🇸🇸", + "spain": "🇪🇸", + "sri_lanka": "🇱🇰", + "st._barthélemy": "🇧🇱", + "st._helena": "🇸🇭", + "st._kitts_&_nevis": "🇰🇳", + "st._lucia": "🇱🇨", + "st._martin": "🇲🇫", + "st._pierre_&_miquelon": "🇵🇲", + "st._vincent_&_grenadines": "🇻🇨", + "statue_of_liberty": "🗽", + "sudan": "🇸🇩", + "suriname": "🇸🇷", + "svalbard_&_jan_mayen": "🇸🇯", + "swaziland": "🇸🇿", + "sweden": "🇸🇪", + "switzerland": "🇨🇭", + "syria": "🇸🇾", + "são_tomé_&_príncipe": "🇸🇹", + "t-rex": "🦖", + "top_arrow": "🔝", + "taiwan": "🇹🇼", + "tajikistan": "🇹🇯", + "tanzania": "🇹🇿", + "taurus": "♉", + "thailand": "🇹🇭", + "timor-leste": "🇹🇱", + "togo": "🇹🇬", + "tokelau": "🇹🇰", + "tokyo_tower": "🗼", + "tonga": "🇹🇴", + "trinidad_&_tobago": "🇹🇹", + "tristan_da_cunha": "🇹🇦", + "tunisia": "🇹🇳", + "turkey": "🦃", + "turkmenistan": "🇹🇲", + "turks_&_caicos_islands": "🇹🇨", + "tuvalu": "🇹🇻", + "u.s._outlying_islands": "🇺🇲", + "u.s._virgin_islands": "🇻🇮", + "up!_button": "🆙", + "uganda": "🇺🇬", + "ukraine": "🇺🇦", + "united_arab_emirates": "🇦🇪", + "united_kingdom": "🇬🇧", + "united_nations": "🇺🇳", + "united_states": "🇺🇸", + "uruguay": "🇺🇾", + "uzbekistan": "🇺🇿", + "vs_button": "🆚", + "vanuatu": "🇻🇺", + "vatican_city": "🇻🇦", + "venezuela": "🇻🇪", + "vietnam": "🇻🇳", + "virgo": "♍", + "wales": "🏴\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f", + "wallis_&_futuna": "🇼🇫", + "western_sahara": "🇪🇭", + "yemen": "🇾🇪", + "zambia": "🇿🇲", + "zimbabwe": "🇿🇼", + "abacus": "🧮", + "adhesive_bandage": "🩹", + "admission_tickets": "🎟", + "adult": "🧑", + "adult_dark_skin_tone": "🧑🏿", + "adult_light_skin_tone": "🧑🏻", + "adult_medium-dark_skin_tone": "🧑🏾", + "adult_medium-light_skin_tone": "🧑🏼", + "adult_medium_skin_tone": "🧑🏽", + "aerial_tramway": "🚡", + "airplane": "✈", + "airplane_arrival": "🛬", + "airplane_departure": "🛫", + "alarm_clock": "⏰", + "alembic": "⚗", + "alien": "👽", + "alien_monster": "👾", + "ambulance": "🚑", + "american_football": "🏈", + "amphora": "🏺", + "anchor": "⚓", + "anger_symbol": "💢", + "angry_face": "😠", + "angry_face_with_horns": "👿", + "anguished_face": "😧", + "ant": "🐜", + "antenna_bars": "📶", + "anxious_face_with_sweat": "😰", + "articulated_lorry": "🚛", + "artist_palette": "🎨", + "astonished_face": "😲", + "atom_symbol": "⚛", + "auto_rickshaw": "🛺", + "automobile": "🚗", + "avocado": "🥑", + "axe": "🪓", + "baby": "👶", + "baby_angel": "👼", + "baby_angel_dark_skin_tone": "👼🏿", + "baby_angel_light_skin_tone": "👼🏻", + "baby_angel_medium-dark_skin_tone": "👼🏾", + "baby_angel_medium-light_skin_tone": "👼🏼", + "baby_angel_medium_skin_tone": "👼🏽", + "baby_bottle": "🍼", + "baby_chick": "🐤", + "baby_dark_skin_tone": "👶🏿", + "baby_light_skin_tone": "👶🏻", + "baby_medium-dark_skin_tone": "👶🏾", + "baby_medium-light_skin_tone": "👶🏼", + "baby_medium_skin_tone": "👶🏽", + "baby_symbol": "🚼", + "backhand_index_pointing_down": "👇", + "backhand_index_pointing_down_dark_skin_tone": "👇🏿", + "backhand_index_pointing_down_light_skin_tone": "👇🏻", + "backhand_index_pointing_down_medium-dark_skin_tone": "👇🏾", + "backhand_index_pointing_down_medium-light_skin_tone": "👇🏼", + "backhand_index_pointing_down_medium_skin_tone": "👇🏽", + "backhand_index_pointing_left": "👈", + "backhand_index_pointing_left_dark_skin_tone": "👈🏿", + "backhand_index_pointing_left_light_skin_tone": "👈🏻", + "backhand_index_pointing_left_medium-dark_skin_tone": "👈🏾", + "backhand_index_pointing_left_medium-light_skin_tone": "👈🏼", + "backhand_index_pointing_left_medium_skin_tone": "👈🏽", + "backhand_index_pointing_right": "👉", + "backhand_index_pointing_right_dark_skin_tone": "👉🏿", + "backhand_index_pointing_right_light_skin_tone": "👉🏻", + "backhand_index_pointing_right_medium-dark_skin_tone": "👉🏾", + "backhand_index_pointing_right_medium-light_skin_tone": "👉🏼", + "backhand_index_pointing_right_medium_skin_tone": "👉🏽", + "backhand_index_pointing_up": "👆", + "backhand_index_pointing_up_dark_skin_tone": "👆🏿", + "backhand_index_pointing_up_light_skin_tone": "👆🏻", + "backhand_index_pointing_up_medium-dark_skin_tone": "👆🏾", + "backhand_index_pointing_up_medium-light_skin_tone": "👆🏼", + "backhand_index_pointing_up_medium_skin_tone": "👆🏽", + "bacon": "🥓", + "badger": "🦡", + "badminton": "🏸", + "bagel": "🥯", + "baggage_claim": "🛄", + "baguette_bread": "🥖", + "balance_scale": "⚖", + "bald": "🦲", + "bald_man": "👨\u200d🦲", + "bald_woman": "👩\u200d🦲", + "ballet_shoes": "🩰", + "balloon": "🎈", + "ballot_box_with_ballot": "🗳", + "ballot_box_with_check": "☑", + "banana": "🍌", + "banjo": "🪕", + "bank": "🏦", + "bar_chart": "📊", + "barber_pole": "💈", + "baseball": "⚾", + "basket": "🧺", + "basketball": "🏀", + "bat": "🦇", + "bathtub": "🛁", + "battery": "🔋", + "beach_with_umbrella": "🏖", + "beaming_face_with_smiling_eyes": "😁", + "bear_face": "🐻", + "bearded_person": "🧔", + "bearded_person_dark_skin_tone": "🧔🏿", + "bearded_person_light_skin_tone": "🧔🏻", + "bearded_person_medium-dark_skin_tone": "🧔🏾", + "bearded_person_medium-light_skin_tone": "🧔🏼", + "bearded_person_medium_skin_tone": "🧔🏽", + "beating_heart": "💓", + "bed": "🛏", + "beer_mug": "🍺", + "bell": "🔔", + "bell_with_slash": "🔕", + "bellhop_bell": "🛎", + "bento_box": "🍱", + "beverage_box": "🧃", + "bicycle": "🚲", + "bikini": "👙", + "billed_cap": "🧢", + "biohazard": "☣", + "bird": "🐦", + "birthday_cake": "🎂", + "black_circle": "⚫", + "black_flag": "🏴", + "black_heart": "🖤", + "black_large_square": "⬛", + "black_medium-small_square": "◾", + "black_medium_square": "◼", + "black_nib": "✒", + "black_small_square": "▪", + "black_square_button": "🔲", + "blond-haired_man": "👱\u200d♂️", + "blond-haired_man_dark_skin_tone": "👱🏿\u200d♂️", + "blond-haired_man_light_skin_tone": "👱🏻\u200d♂️", + "blond-haired_man_medium-dark_skin_tone": "👱🏾\u200d♂️", + "blond-haired_man_medium-light_skin_tone": "👱🏼\u200d♂️", + "blond-haired_man_medium_skin_tone": "👱🏽\u200d♂️", + "blond-haired_person": "👱", + "blond-haired_person_dark_skin_tone": "👱🏿", + "blond-haired_person_light_skin_tone": "👱🏻", + "blond-haired_person_medium-dark_skin_tone": "👱🏾", + "blond-haired_person_medium-light_skin_tone": "👱🏼", + "blond-haired_person_medium_skin_tone": "👱🏽", + "blond-haired_woman": "👱\u200d♀️", + "blond-haired_woman_dark_skin_tone": "👱🏿\u200d♀️", + "blond-haired_woman_light_skin_tone": "👱🏻\u200d♀️", + "blond-haired_woman_medium-dark_skin_tone": "👱🏾\u200d♀️", + "blond-haired_woman_medium-light_skin_tone": "👱🏼\u200d♀️", + "blond-haired_woman_medium_skin_tone": "👱🏽\u200d♀️", + "blossom": "🌼", + "blowfish": "🐡", + "blue_book": "📘", + "blue_circle": "🔵", + "blue_heart": "💙", + "blue_square": "🟦", + "boar": "🐗", + "bomb": "💣", + "bone": "🦴", + "bookmark": "🔖", + "bookmark_tabs": "📑", + "books": "📚", + "bottle_with_popping_cork": "🍾", + "bouquet": "💐", + "bow_and_arrow": "🏹", + "bowl_with_spoon": "🥣", + "bowling": "🎳", + "boxing_glove": "🥊", + "boy": "👦", + "boy_dark_skin_tone": "👦🏿", + "boy_light_skin_tone": "👦🏻", + "boy_medium-dark_skin_tone": "👦🏾", + "boy_medium-light_skin_tone": "👦🏼", + "boy_medium_skin_tone": "👦🏽", + "brain": "🧠", + "bread": "🍞", + "breast-feeding": "🤱", + "breast-feeding_dark_skin_tone": "🤱🏿", + "breast-feeding_light_skin_tone": "🤱🏻", + "breast-feeding_medium-dark_skin_tone": "🤱🏾", + "breast-feeding_medium-light_skin_tone": "🤱🏼", + "breast-feeding_medium_skin_tone": "🤱🏽", + "brick": "🧱", + "bride_with_veil": "👰", + "bride_with_veil_dark_skin_tone": "👰🏿", + "bride_with_veil_light_skin_tone": "👰🏻", + "bride_with_veil_medium-dark_skin_tone": "👰🏾", + "bride_with_veil_medium-light_skin_tone": "👰🏼", + "bride_with_veil_medium_skin_tone": "👰🏽", + "bridge_at_night": "🌉", + "briefcase": "💼", + "briefs": "🩲", + "bright_button": "🔆", + "broccoli": "🥦", + "broken_heart": "💔", + "broom": "🧹", + "brown_circle": "🟤", + "brown_heart": "🤎", + "brown_square": "🟫", + "bug": "🐛", + "building_construction": "🏗", + "bullet_train": "🚅", + "burrito": "🌯", + "bus": "🚌", + "bus_stop": "🚏", + "bust_in_silhouette": "👤", + "busts_in_silhouette": "👥", + "butter": "🧈", + "butterfly": "🦋", + "cactus": "🌵", + "calendar": "📆", + "call_me_hand": "🤙", + "call_me_hand_dark_skin_tone": "🤙🏿", + "call_me_hand_light_skin_tone": "🤙🏻", + "call_me_hand_medium-dark_skin_tone": "🤙🏾", + "call_me_hand_medium-light_skin_tone": "🤙🏼", + "call_me_hand_medium_skin_tone": "🤙🏽", + "camel": "🐫", + "camera": "📷", + "camera_with_flash": "📸", + "camping": "🏕", + "candle": "🕯", + "candy": "🍬", + "canned_food": "🥫", + "canoe": "🛶", + "card_file_box": "🗃", + "card_index": "📇", + "card_index_dividers": "🗂", + "carousel_horse": "🎠", + "carp_streamer": "🎏", + "carrot": "🥕", + "castle": "🏰", + "cat": "🐱", + "cat_face": "🐱", + "cat_face_with_tears_of_joy": "😹", + "cat_face_with_wry_smile": "😼", + "chains": "⛓", + "chair": "🪑", + "chart_decreasing": "📉", + "chart_increasing": "📈", + "chart_increasing_with_yen": "💹", + "cheese_wedge": "🧀", + "chequered_flag": "🏁", + "cherries": "🍒", + "cherry_blossom": "🌸", + "chess_pawn": "♟", + "chestnut": "🌰", + "chicken": "🐔", + "child": "🧒", + "child_dark_skin_tone": "🧒🏿", + "child_light_skin_tone": "🧒🏻", + "child_medium-dark_skin_tone": "🧒🏾", + "child_medium-light_skin_tone": "🧒🏼", + "child_medium_skin_tone": "🧒🏽", + "children_crossing": "🚸", + "chipmunk": "🐿", + "chocolate_bar": "🍫", + "chopsticks": "🥢", + "church": "⛪", + "cigarette": "🚬", + "cinema": "🎦", + "circled_m": "Ⓜ", + "circus_tent": "🎪", + "cityscape": "🏙", + "cityscape_at_dusk": "🌆", + "clamp": "🗜", + "clapper_board": "🎬", + "clapping_hands": "👏", + "clapping_hands_dark_skin_tone": "👏🏿", + "clapping_hands_light_skin_tone": "👏🏻", + "clapping_hands_medium-dark_skin_tone": "👏🏾", + "clapping_hands_medium-light_skin_tone": "👏🏼", + "clapping_hands_medium_skin_tone": "👏🏽", + "classical_building": "🏛", + "clinking_beer_mugs": "🍻", + "clinking_glasses": "🥂", + "clipboard": "📋", + "clockwise_vertical_arrows": "🔃", + "closed_book": "📕", + "closed_mailbox_with_lowered_flag": "📪", + "closed_mailbox_with_raised_flag": "📫", + "closed_umbrella": "🌂", + "cloud": "☁", + "cloud_with_lightning": "🌩", + "cloud_with_lightning_and_rain": "⛈", + "cloud_with_rain": "🌧", + "cloud_with_snow": "🌨", + "clown_face": "🤡", + "club_suit": "♣", + "clutch_bag": "👝", + "coat": "🧥", + "cocktail_glass": "🍸", + "coconut": "🥥", + "coffin": "⚰", + "cold_face": "🥶", + "collision": "💥", + "comet": "☄", + "compass": "🧭", + "computer_disk": "💽", + "computer_mouse": "🖱", + "confetti_ball": "🎊", + "confounded_face": "😖", + "confused_face": "😕", + "construction": "🚧", + "construction_worker": "👷", + "construction_worker_dark_skin_tone": "👷🏿", + "construction_worker_light_skin_tone": "👷🏻", + "construction_worker_medium-dark_skin_tone": "👷🏾", + "construction_worker_medium-light_skin_tone": "👷🏼", + "construction_worker_medium_skin_tone": "👷🏽", + "control_knobs": "🎛", + "convenience_store": "🏪", + "cooked_rice": "🍚", + "cookie": "🍪", + "cooking": "🍳", + "copyright": "©", + "couch_and_lamp": "🛋", + "counterclockwise_arrows_button": "🔄", + "couple_with_heart": "💑", + "couple_with_heart_man_man": "👨\u200d❤️\u200d👨", + "couple_with_heart_woman_man": "👩\u200d❤️\u200d👨", + "couple_with_heart_woman_woman": "👩\u200d❤️\u200d👩", + "cow": "🐮", + "cow_face": "🐮", + "cowboy_hat_face": "🤠", + "crab": "🦀", + "crayon": "🖍", + "credit_card": "💳", + "crescent_moon": "🌙", + "cricket": "🦗", + "cricket_game": "🏏", + "crocodile": "🐊", + "croissant": "🥐", + "cross_mark": "❌", + "cross_mark_button": "❎", + "crossed_fingers": "🤞", + "crossed_fingers_dark_skin_tone": "🤞🏿", + "crossed_fingers_light_skin_tone": "🤞🏻", + "crossed_fingers_medium-dark_skin_tone": "🤞🏾", + "crossed_fingers_medium-light_skin_tone": "🤞🏼", + "crossed_fingers_medium_skin_tone": "🤞🏽", + "crossed_flags": "🎌", + "crossed_swords": "⚔", + "crown": "👑", + "crying_cat_face": "😿", + "crying_face": "😢", + "crystal_ball": "🔮", + "cucumber": "🥒", + "cupcake": "🧁", + "cup_with_straw": "🥤", + "curling_stone": "🥌", + "curly_hair": "🦱", + "curly-haired_man": "👨\u200d🦱", + "curly-haired_woman": "👩\u200d🦱", + "curly_loop": "➰", + "currency_exchange": "💱", + "curry_rice": "🍛", + "custard": "🍮", + "customs": "🛃", + "cut_of_meat": "🥩", + "cyclone": "🌀", + "dagger": "🗡", + "dango": "🍡", + "dashing_away": "💨", + "deaf_person": "🧏", + "deciduous_tree": "🌳", + "deer": "🦌", + "delivery_truck": "🚚", + "department_store": "🏬", + "derelict_house": "🏚", + "desert": "🏜", + "desert_island": "🏝", + "desktop_computer": "🖥", + "detective": "🕵", + "detective_dark_skin_tone": "🕵🏿", + "detective_light_skin_tone": "🕵🏻", + "detective_medium-dark_skin_tone": "🕵🏾", + "detective_medium-light_skin_tone": "🕵🏼", + "detective_medium_skin_tone": "🕵🏽", + "diamond_suit": "♦", + "diamond_with_a_dot": "💠", + "dim_button": "🔅", + "direct_hit": "🎯", + "disappointed_face": "😞", + "diving_mask": "🤿", + "diya_lamp": "🪔", + "dizzy": "💫", + "dizzy_face": "😵", + "dna": "🧬", + "dog": "🐶", + "dog_face": "🐶", + "dollar_banknote": "💵", + "dolphin": "🐬", + "door": "🚪", + "dotted_six-pointed_star": "🔯", + "double_curly_loop": "➿", + "double_exclamation_mark": "‼", + "doughnut": "🍩", + "dove": "🕊", + "down-left_arrow": "↙", + "down-right_arrow": "↘", + "down_arrow": "⬇", + "downcast_face_with_sweat": "😓", + "downwards_button": "🔽", + "dragon": "🐉", + "dragon_face": "🐲", + "dress": "👗", + "drooling_face": "🤤", + "drop_of_blood": "🩸", + "droplet": "💧", + "drum": "🥁", + "duck": "🦆", + "dumpling": "🥟", + "dvd": "📀", + "e-mail": "📧", + "eagle": "🦅", + "ear": "👂", + "ear_dark_skin_tone": "👂🏿", + "ear_light_skin_tone": "👂🏻", + "ear_medium-dark_skin_tone": "👂🏾", + "ear_medium-light_skin_tone": "👂🏼", + "ear_medium_skin_tone": "👂🏽", + "ear_of_corn": "🌽", + "ear_with_hearing_aid": "🦻", + "egg": "🍳", + "eggplant": "🍆", + "eight-pointed_star": "✴", + "eight-spoked_asterisk": "✳", + "eight-thirty": "🕣", + "eight_o’clock": "🕗", + "eject_button": "⏏", + "electric_plug": "🔌", + "elephant": "🐘", + "eleven-thirty": "🕦", + "eleven_o’clock": "🕚", + "elf": "🧝", + "elf_dark_skin_tone": "🧝🏿", + "elf_light_skin_tone": "🧝🏻", + "elf_medium-dark_skin_tone": "🧝🏾", + "elf_medium-light_skin_tone": "🧝🏼", + "elf_medium_skin_tone": "🧝🏽", + "envelope": "✉", + "envelope_with_arrow": "📩", + "euro_banknote": "💶", + "evergreen_tree": "🌲", + "ewe": "🐑", + "exclamation_mark": "❗", + "exclamation_question_mark": "⁉", + "exploding_head": "🤯", + "expressionless_face": "😑", + "eye": "👁", + "eye_in_speech_bubble": "👁️\u200d🗨️", + "eyes": "👀", + "face_blowing_a_kiss": "😘", + "face_savoring_food": "😋", + "face_screaming_in_fear": "😱", + "face_vomiting": "🤮", + "face_with_hand_over_mouth": "🤭", + "face_with_head-bandage": "🤕", + "face_with_medical_mask": "😷", + "face_with_monocle": "🧐", + "face_with_open_mouth": "😮", + "face_with_raised_eyebrow": "🤨", + "face_with_rolling_eyes": "🙄", + "face_with_steam_from_nose": "😤", + "face_with_symbols_on_mouth": "🤬", + "face_with_tears_of_joy": "😂", + "face_with_thermometer": "🤒", + "face_with_tongue": "😛", + "face_without_mouth": "😶", + "factory": "🏭", + "fairy": "🧚", + "fairy_dark_skin_tone": "🧚🏿", + "fairy_light_skin_tone": "🧚🏻", + "fairy_medium-dark_skin_tone": "🧚🏾", + "fairy_medium-light_skin_tone": "🧚🏼", + "fairy_medium_skin_tone": "🧚🏽", + "falafel": "🧆", + "fallen_leaf": "🍂", + "family": "👪", + "family_man_boy": "👨\u200d👦", + "family_man_boy_boy": "👨\u200d👦\u200d👦", + "family_man_girl": "👨\u200d👧", + "family_man_girl_boy": "👨\u200d👧\u200d👦", + "family_man_girl_girl": "👨\u200d👧\u200d👧", + "family_man_man_boy": "👨\u200d👨\u200d👦", + "family_man_man_boy_boy": "👨\u200d👨\u200d👦\u200d👦", + "family_man_man_girl": "👨\u200d👨\u200d👧", + "family_man_man_girl_boy": "👨\u200d👨\u200d👧\u200d👦", + "family_man_man_girl_girl": "👨\u200d👨\u200d👧\u200d👧", + "family_man_woman_boy": "👨\u200d👩\u200d👦", + "family_man_woman_boy_boy": "👨\u200d👩\u200d👦\u200d👦", + "family_man_woman_girl": "👨\u200d👩\u200d👧", + "family_man_woman_girl_boy": "👨\u200d👩\u200d👧\u200d👦", + "family_man_woman_girl_girl": "👨\u200d👩\u200d👧\u200d👧", + "family_woman_boy": "👩\u200d👦", + "family_woman_boy_boy": "👩\u200d👦\u200d👦", + "family_woman_girl": "👩\u200d👧", + "family_woman_girl_boy": "👩\u200d👧\u200d👦", + "family_woman_girl_girl": "👩\u200d👧\u200d👧", + "family_woman_woman_boy": "👩\u200d👩\u200d👦", + "family_woman_woman_boy_boy": "👩\u200d👩\u200d👦\u200d👦", + "family_woman_woman_girl": "👩\u200d👩\u200d👧", + "family_woman_woman_girl_boy": "👩\u200d👩\u200d👧\u200d👦", + "family_woman_woman_girl_girl": "👩\u200d👩\u200d👧\u200d👧", + "fast-forward_button": "⏩", + "fast_down_button": "⏬", + "fast_reverse_button": "⏪", + "fast_up_button": "⏫", + "fax_machine": "📠", + "fearful_face": "😨", + "female_sign": "♀", + "ferris_wheel": "🎡", + "ferry": "⛴", + "field_hockey": "🏑", + "file_cabinet": "🗄", + "file_folder": "📁", + "film_frames": "🎞", + "film_projector": "📽", + "fire": "🔥", + "fire_extinguisher": "🧯", + "firecracker": "🧨", + "fire_engine": "🚒", + "fireworks": "🎆", + "first_quarter_moon": "🌓", + "first_quarter_moon_face": "🌛", + "fish": "🐟", + "fish_cake_with_swirl": "🍥", + "fishing_pole": "🎣", + "five-thirty": "🕠", + "five_o’clock": "🕔", + "flag_in_hole": "⛳", + "flamingo": "🦩", + "flashlight": "🔦", + "flat_shoe": "🥿", + "fleur-de-lis": "⚜", + "flexed_biceps": "💪", + "flexed_biceps_dark_skin_tone": "💪🏿", + "flexed_biceps_light_skin_tone": "💪🏻", + "flexed_biceps_medium-dark_skin_tone": "💪🏾", + "flexed_biceps_medium-light_skin_tone": "💪🏼", + "flexed_biceps_medium_skin_tone": "💪🏽", + "floppy_disk": "💾", + "flower_playing_cards": "🎴", + "flushed_face": "😳", + "flying_disc": "🥏", + "flying_saucer": "🛸", + "fog": "🌫", + "foggy": "🌁", + "folded_hands": "🙏", + "folded_hands_dark_skin_tone": "🙏🏿", + "folded_hands_light_skin_tone": "🙏🏻", + "folded_hands_medium-dark_skin_tone": "🙏🏾", + "folded_hands_medium-light_skin_tone": "🙏🏼", + "folded_hands_medium_skin_tone": "🙏🏽", + "foot": "🦶", + "footprints": "👣", + "fork_and_knife": "🍴", + "fork_and_knife_with_plate": "🍽", + "fortune_cookie": "🥠", + "fountain": "⛲", + "fountain_pen": "🖋", + "four-thirty": "🕟", + "four_leaf_clover": "🍀", + "four_o’clock": "🕓", + "fox_face": "🦊", + "framed_picture": "🖼", + "french_fries": "🍟", + "fried_shrimp": "🍤", + "frog_face": "🐸", + "front-facing_baby_chick": "🐥", + "frowning_face": "☹", + "frowning_face_with_open_mouth": "😦", + "fuel_pump": "⛽", + "full_moon": "🌕", + "full_moon_face": "🌝", + "funeral_urn": "⚱", + "game_die": "🎲", + "garlic": "🧄", + "gear": "⚙", + "gem_stone": "💎", + "genie": "🧞", + "ghost": "👻", + "giraffe": "🦒", + "girl": "👧", + "girl_dark_skin_tone": "👧🏿", + "girl_light_skin_tone": "👧🏻", + "girl_medium-dark_skin_tone": "👧🏾", + "girl_medium-light_skin_tone": "👧🏼", + "girl_medium_skin_tone": "👧🏽", + "glass_of_milk": "🥛", + "glasses": "👓", + "globe_showing_americas": "🌎", + "globe_showing_asia-australia": "🌏", + "globe_showing_europe-africa": "🌍", + "globe_with_meridians": "🌐", + "gloves": "🧤", + "glowing_star": "🌟", + "goal_net": "🥅", + "goat": "🐐", + "goblin": "👺", + "goggles": "🥽", + "gorilla": "🦍", + "graduation_cap": "🎓", + "grapes": "🍇", + "green_apple": "🍏", + "green_book": "📗", + "green_circle": "🟢", + "green_heart": "💚", + "green_salad": "🥗", + "green_square": "🟩", + "grimacing_face": "😬", + "grinning_cat_face": "😺", + "grinning_cat_face_with_smiling_eyes": "😸", + "grinning_face": "😀", + "grinning_face_with_big_eyes": "😃", + "grinning_face_with_smiling_eyes": "😄", + "grinning_face_with_sweat": "😅", + "grinning_squinting_face": "😆", + "growing_heart": "💗", + "guard": "💂", + "guard_dark_skin_tone": "💂🏿", + "guard_light_skin_tone": "💂🏻", + "guard_medium-dark_skin_tone": "💂🏾", + "guard_medium-light_skin_tone": "💂🏼", + "guard_medium_skin_tone": "💂🏽", + "guide_dog": "🦮", + "guitar": "🎸", + "hamburger": "🍔", + "hammer": "🔨", + "hammer_and_pick": "⚒", + "hammer_and_wrench": "🛠", + "hamster_face": "🐹", + "hand_with_fingers_splayed": "🖐", + "hand_with_fingers_splayed_dark_skin_tone": "🖐🏿", + "hand_with_fingers_splayed_light_skin_tone": "🖐🏻", + "hand_with_fingers_splayed_medium-dark_skin_tone": "🖐🏾", + "hand_with_fingers_splayed_medium-light_skin_tone": "🖐🏼", + "hand_with_fingers_splayed_medium_skin_tone": "🖐🏽", + "handbag": "👜", + "handshake": "🤝", + "hatching_chick": "🐣", + "headphone": "🎧", + "hear-no-evil_monkey": "🙉", + "heart_decoration": "💟", + "heart_suit": "♥", + "heart_with_arrow": "💘", + "heart_with_ribbon": "💝", + "heavy_check_mark": "✔", + "heavy_division_sign": "➗", + "heavy_dollar_sign": "💲", + "heavy_heart_exclamation": "❣", + "heavy_large_circle": "⭕", + "heavy_minus_sign": "➖", + "heavy_multiplication_x": "✖", + "heavy_plus_sign": "➕", + "hedgehog": "🦔", + "helicopter": "🚁", + "herb": "🌿", + "hibiscus": "🌺", + "high-heeled_shoe": "👠", + "high-speed_train": "🚄", + "high_voltage": "⚡", + "hiking_boot": "🥾", + "hindu_temple": "🛕", + "hippopotamus": "🦛", + "hole": "🕳", + "honey_pot": "🍯", + "honeybee": "🐝", + "horizontal_traffic_light": "🚥", + "horse": "🐴", + "horse_face": "🐴", + "horse_racing": "🏇", + "horse_racing_dark_skin_tone": "🏇🏿", + "horse_racing_light_skin_tone": "🏇🏻", + "horse_racing_medium-dark_skin_tone": "🏇🏾", + "horse_racing_medium-light_skin_tone": "🏇🏼", + "horse_racing_medium_skin_tone": "🏇🏽", + "hospital": "🏥", + "hot_beverage": "☕", + "hot_dog": "🌭", + "hot_face": "🥵", + "hot_pepper": "🌶", + "hot_springs": "♨", + "hotel": "🏨", + "hourglass_done": "⌛", + "hourglass_not_done": "⏳", + "house": "🏠", + "house_with_garden": "🏡", + "houses": "🏘", + "hugging_face": "🤗", + "hundred_points": "💯", + "hushed_face": "😯", + "ice": "🧊", + "ice_cream": "🍨", + "ice_hockey": "🏒", + "ice_skate": "⛸", + "inbox_tray": "📥", + "incoming_envelope": "📨", + "index_pointing_up": "☝", + "index_pointing_up_dark_skin_tone": "☝🏿", + "index_pointing_up_light_skin_tone": "☝🏻", + "index_pointing_up_medium-dark_skin_tone": "☝🏾", + "index_pointing_up_medium-light_skin_tone": "☝🏼", + "index_pointing_up_medium_skin_tone": "☝🏽", + "infinity": "♾", + "information": "ℹ", + "input_latin_letters": "🔤", + "input_latin_lowercase": "🔡", + "input_latin_uppercase": "🔠", + "input_numbers": "🔢", + "input_symbols": "🔣", + "jack-o-lantern": "🎃", + "jeans": "👖", + "jigsaw": "🧩", + "joker": "🃏", + "joystick": "🕹", + "kaaba": "🕋", + "kangaroo": "🦘", + "key": "🔑", + "keyboard": "⌨", + "keycap_#": "#️⃣", + "keycap_*": "*️⃣", + "keycap_0": "0️⃣", + "keycap_1": "1️⃣", + "keycap_10": "🔟", + "keycap_2": "2️⃣", + "keycap_3": "3️⃣", + "keycap_4": "4️⃣", + "keycap_5": "5️⃣", + "keycap_6": "6️⃣", + "keycap_7": "7️⃣", + "keycap_8": "8️⃣", + "keycap_9": "9️⃣", + "kick_scooter": "🛴", + "kimono": "👘", + "kiss": "💋", + "kiss_man_man": "👨\u200d❤️\u200d💋\u200d👨", + "kiss_mark": "💋", + "kiss_woman_man": "👩\u200d❤️\u200d💋\u200d👨", + "kiss_woman_woman": "👩\u200d❤️\u200d💋\u200d👩", + "kissing_cat_face": "😽", + "kissing_face": "😗", + "kissing_face_with_closed_eyes": "😚", + "kissing_face_with_smiling_eyes": "😙", + "kitchen_knife": "🔪", + "kite": "🪁", + "kiwi_fruit": "🥝", + "koala": "🐨", + "lab_coat": "🥼", + "label": "🏷", + "lacrosse": "🥍", + "lady_beetle": "🐞", + "laptop_computer": "💻", + "large_blue_diamond": "🔷", + "large_orange_diamond": "🔶", + "last_quarter_moon": "🌗", + "last_quarter_moon_face": "🌜", + "last_track_button": "⏮", + "latin_cross": "✝", + "leaf_fluttering_in_wind": "🍃", + "leafy_green": "🥬", + "ledger": "📒", + "left-facing_fist": "🤛", + "left-facing_fist_dark_skin_tone": "🤛🏿", + "left-facing_fist_light_skin_tone": "🤛🏻", + "left-facing_fist_medium-dark_skin_tone": "🤛🏾", + "left-facing_fist_medium-light_skin_tone": "🤛🏼", + "left-facing_fist_medium_skin_tone": "🤛🏽", + "left-right_arrow": "↔", + "left_arrow": "⬅", + "left_arrow_curving_right": "↪", + "left_luggage": "🛅", + "left_speech_bubble": "🗨", + "leg": "🦵", + "lemon": "🍋", + "leopard": "🐆", + "level_slider": "🎚", + "light_bulb": "💡", + "light_rail": "🚈", + "link": "🔗", + "linked_paperclips": "🖇", + "lion_face": "🦁", + "lipstick": "💄", + "litter_in_bin_sign": "🚮", + "lizard": "🦎", + "llama": "🦙", + "lobster": "🦞", + "locked": "🔒", + "locked_with_key": "🔐", + "locked_with_pen": "🔏", + "locomotive": "🚂", + "lollipop": "🍭", + "lotion_bottle": "🧴", + "loudly_crying_face": "😭", + "loudspeaker": "📢", + "love-you_gesture": "🤟", + "love-you_gesture_dark_skin_tone": "🤟🏿", + "love-you_gesture_light_skin_tone": "🤟🏻", + "love-you_gesture_medium-dark_skin_tone": "🤟🏾", + "love-you_gesture_medium-light_skin_tone": "🤟🏼", + "love-you_gesture_medium_skin_tone": "🤟🏽", + "love_hotel": "🏩", + "love_letter": "💌", + "luggage": "🧳", + "lying_face": "🤥", + "mage": "🧙", + "mage_dark_skin_tone": "🧙🏿", + "mage_light_skin_tone": "🧙🏻", + "mage_medium-dark_skin_tone": "🧙🏾", + "mage_medium-light_skin_tone": "🧙🏼", + "mage_medium_skin_tone": "🧙🏽", + "magnet": "🧲", + "magnifying_glass_tilted_left": "🔍", + "magnifying_glass_tilted_right": "🔎", + "mahjong_red_dragon": "🀄", + "male_sign": "♂", + "man": "👨", + "man_and_woman_holding_hands": "👫", + "man_artist": "👨\u200d🎨", + "man_artist_dark_skin_tone": "👨🏿\u200d🎨", + "man_artist_light_skin_tone": "👨🏻\u200d🎨", + "man_artist_medium-dark_skin_tone": "👨🏾\u200d🎨", + "man_artist_medium-light_skin_tone": "👨🏼\u200d🎨", + "man_artist_medium_skin_tone": "👨🏽\u200d🎨", + "man_astronaut": "👨\u200d🚀", + "man_astronaut_dark_skin_tone": "👨🏿\u200d🚀", + "man_astronaut_light_skin_tone": "👨🏻\u200d🚀", + "man_astronaut_medium-dark_skin_tone": "👨🏾\u200d🚀", + "man_astronaut_medium-light_skin_tone": "👨🏼\u200d🚀", + "man_astronaut_medium_skin_tone": "👨🏽\u200d🚀", + "man_biking": "🚴\u200d♂️", + "man_biking_dark_skin_tone": "🚴🏿\u200d♂️", + "man_biking_light_skin_tone": "🚴🏻\u200d♂️", + "man_biking_medium-dark_skin_tone": "🚴🏾\u200d♂️", + "man_biking_medium-light_skin_tone": "🚴🏼\u200d♂️", + "man_biking_medium_skin_tone": "🚴🏽\u200d♂️", + "man_bouncing_ball": "⛹️\u200d♂️", + "man_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♂️", + "man_bouncing_ball_light_skin_tone": "⛹🏻\u200d♂️", + "man_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♂️", + "man_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♂️", + "man_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♂️", + "man_bowing": "🙇\u200d♂️", + "man_bowing_dark_skin_tone": "🙇🏿\u200d♂️", + "man_bowing_light_skin_tone": "🙇🏻\u200d♂️", + "man_bowing_medium-dark_skin_tone": "🙇🏾\u200d♂️", + "man_bowing_medium-light_skin_tone": "🙇🏼\u200d♂️", + "man_bowing_medium_skin_tone": "🙇🏽\u200d♂️", + "man_cartwheeling": "🤸\u200d♂️", + "man_cartwheeling_dark_skin_tone": "🤸🏿\u200d♂️", + "man_cartwheeling_light_skin_tone": "🤸🏻\u200d♂️", + "man_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♂️", + "man_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♂️", + "man_cartwheeling_medium_skin_tone": "🤸🏽\u200d♂️", + "man_climbing": "🧗\u200d♂️", + "man_climbing_dark_skin_tone": "🧗🏿\u200d♂️", + "man_climbing_light_skin_tone": "🧗🏻\u200d♂️", + "man_climbing_medium-dark_skin_tone": "🧗🏾\u200d♂️", + "man_climbing_medium-light_skin_tone": "🧗🏼\u200d♂️", + "man_climbing_medium_skin_tone": "🧗🏽\u200d♂️", + "man_construction_worker": "👷\u200d♂️", + "man_construction_worker_dark_skin_tone": "👷🏿\u200d♂️", + "man_construction_worker_light_skin_tone": "👷🏻\u200d♂️", + "man_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♂️", + "man_construction_worker_medium-light_skin_tone": "👷🏼\u200d♂️", + "man_construction_worker_medium_skin_tone": "👷🏽\u200d♂️", + "man_cook": "👨\u200d🍳", + "man_cook_dark_skin_tone": "👨🏿\u200d🍳", + "man_cook_light_skin_tone": "👨🏻\u200d🍳", + "man_cook_medium-dark_skin_tone": "👨🏾\u200d🍳", + "man_cook_medium-light_skin_tone": "👨🏼\u200d🍳", + "man_cook_medium_skin_tone": "👨🏽\u200d🍳", + "man_dancing": "🕺", + "man_dancing_dark_skin_tone": "🕺🏿", + "man_dancing_light_skin_tone": "🕺🏻", + "man_dancing_medium-dark_skin_tone": "🕺🏾", + "man_dancing_medium-light_skin_tone": "🕺🏼", + "man_dancing_medium_skin_tone": "🕺🏽", + "man_dark_skin_tone": "👨🏿", + "man_detective": "🕵️\u200d♂️", + "man_detective_dark_skin_tone": "🕵🏿\u200d♂️", + "man_detective_light_skin_tone": "🕵🏻\u200d♂️", + "man_detective_medium-dark_skin_tone": "🕵🏾\u200d♂️", + "man_detective_medium-light_skin_tone": "🕵🏼\u200d♂️", + "man_detective_medium_skin_tone": "🕵🏽\u200d♂️", + "man_elf": "🧝\u200d♂️", + "man_elf_dark_skin_tone": "🧝🏿\u200d♂️", + "man_elf_light_skin_tone": "🧝🏻\u200d♂️", + "man_elf_medium-dark_skin_tone": "🧝🏾\u200d♂️", + "man_elf_medium-light_skin_tone": "🧝🏼\u200d♂️", + "man_elf_medium_skin_tone": "🧝🏽\u200d♂️", + "man_facepalming": "🤦\u200d♂️", + "man_facepalming_dark_skin_tone": "🤦🏿\u200d♂️", + "man_facepalming_light_skin_tone": "🤦🏻\u200d♂️", + "man_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♂️", + "man_facepalming_medium-light_skin_tone": "🤦🏼\u200d♂️", + "man_facepalming_medium_skin_tone": "🤦🏽\u200d♂️", + "man_factory_worker": "👨\u200d🏭", + "man_factory_worker_dark_skin_tone": "👨🏿\u200d🏭", + "man_factory_worker_light_skin_tone": "👨🏻\u200d🏭", + "man_factory_worker_medium-dark_skin_tone": "👨🏾\u200d🏭", + "man_factory_worker_medium-light_skin_tone": "👨🏼\u200d🏭", + "man_factory_worker_medium_skin_tone": "👨🏽\u200d🏭", + "man_fairy": "🧚\u200d♂️", + "man_fairy_dark_skin_tone": "🧚🏿\u200d♂️", + "man_fairy_light_skin_tone": "🧚🏻\u200d♂️", + "man_fairy_medium-dark_skin_tone": "🧚🏾\u200d♂️", + "man_fairy_medium-light_skin_tone": "🧚🏼\u200d♂️", + "man_fairy_medium_skin_tone": "🧚🏽\u200d♂️", + "man_farmer": "👨\u200d🌾", + "man_farmer_dark_skin_tone": "👨🏿\u200d🌾", + "man_farmer_light_skin_tone": "👨🏻\u200d🌾", + "man_farmer_medium-dark_skin_tone": "👨🏾\u200d🌾", + "man_farmer_medium-light_skin_tone": "👨🏼\u200d🌾", + "man_farmer_medium_skin_tone": "👨🏽\u200d🌾", + "man_firefighter": "👨\u200d🚒", + "man_firefighter_dark_skin_tone": "👨🏿\u200d🚒", + "man_firefighter_light_skin_tone": "👨🏻\u200d🚒", + "man_firefighter_medium-dark_skin_tone": "👨🏾\u200d🚒", + "man_firefighter_medium-light_skin_tone": "👨🏼\u200d🚒", + "man_firefighter_medium_skin_tone": "👨🏽\u200d🚒", + "man_frowning": "🙍\u200d♂️", + "man_frowning_dark_skin_tone": "🙍🏿\u200d♂️", + "man_frowning_light_skin_tone": "🙍🏻\u200d♂️", + "man_frowning_medium-dark_skin_tone": "🙍🏾\u200d♂️", + "man_frowning_medium-light_skin_tone": "🙍🏼\u200d♂️", + "man_frowning_medium_skin_tone": "🙍🏽\u200d♂️", + "man_genie": "🧞\u200d♂️", + "man_gesturing_no": "🙅\u200d♂️", + "man_gesturing_no_dark_skin_tone": "🙅🏿\u200d♂️", + "man_gesturing_no_light_skin_tone": "🙅🏻\u200d♂️", + "man_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♂️", + "man_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♂️", + "man_gesturing_no_medium_skin_tone": "🙅🏽\u200d♂️", + "man_gesturing_ok": "🙆\u200d♂️", + "man_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♂️", + "man_gesturing_ok_light_skin_tone": "🙆🏻\u200d♂️", + "man_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♂️", + "man_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♂️", + "man_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♂️", + "man_getting_haircut": "💇\u200d♂️", + "man_getting_haircut_dark_skin_tone": "💇🏿\u200d♂️", + "man_getting_haircut_light_skin_tone": "💇🏻\u200d♂️", + "man_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♂️", + "man_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♂️", + "man_getting_haircut_medium_skin_tone": "💇🏽\u200d♂️", + "man_getting_massage": "💆\u200d♂️", + "man_getting_massage_dark_skin_tone": "💆🏿\u200d♂️", + "man_getting_massage_light_skin_tone": "💆🏻\u200d♂️", + "man_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♂️", + "man_getting_massage_medium-light_skin_tone": "💆🏼\u200d♂️", + "man_getting_massage_medium_skin_tone": "💆🏽\u200d♂️", + "man_golfing": "🏌️\u200d♂️", + "man_golfing_dark_skin_tone": "🏌🏿\u200d♂️", + "man_golfing_light_skin_tone": "🏌🏻\u200d♂️", + "man_golfing_medium-dark_skin_tone": "🏌🏾\u200d♂️", + "man_golfing_medium-light_skin_tone": "🏌🏼\u200d♂️", + "man_golfing_medium_skin_tone": "🏌🏽\u200d♂️", + "man_guard": "💂\u200d♂️", + "man_guard_dark_skin_tone": "💂🏿\u200d♂️", + "man_guard_light_skin_tone": "💂🏻\u200d♂️", + "man_guard_medium-dark_skin_tone": "💂🏾\u200d♂️", + "man_guard_medium-light_skin_tone": "💂🏼\u200d♂️", + "man_guard_medium_skin_tone": "💂🏽\u200d♂️", + "man_health_worker": "👨\u200d⚕️", + "man_health_worker_dark_skin_tone": "👨🏿\u200d⚕️", + "man_health_worker_light_skin_tone": "👨🏻\u200d⚕️", + "man_health_worker_medium-dark_skin_tone": "👨🏾\u200d⚕️", + "man_health_worker_medium-light_skin_tone": "👨🏼\u200d⚕️", + "man_health_worker_medium_skin_tone": "👨🏽\u200d⚕️", + "man_in_lotus_position": "🧘\u200d♂️", + "man_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♂️", + "man_in_lotus_position_light_skin_tone": "🧘🏻\u200d♂️", + "man_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♂️", + "man_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♂️", + "man_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♂️", + "man_in_manual_wheelchair": "👨\u200d🦽", + "man_in_motorized_wheelchair": "👨\u200d🦼", + "man_in_steamy_room": "🧖\u200d♂️", + "man_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♂️", + "man_in_steamy_room_light_skin_tone": "🧖🏻\u200d♂️", + "man_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♂️", + "man_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♂️", + "man_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♂️", + "man_in_suit_levitating": "🕴", + "man_in_suit_levitating_dark_skin_tone": "🕴🏿", + "man_in_suit_levitating_light_skin_tone": "🕴🏻", + "man_in_suit_levitating_medium-dark_skin_tone": "🕴🏾", + "man_in_suit_levitating_medium-light_skin_tone": "🕴🏼", + "man_in_suit_levitating_medium_skin_tone": "🕴🏽", + "man_in_tuxedo": "🤵", + "man_in_tuxedo_dark_skin_tone": "🤵🏿", + "man_in_tuxedo_light_skin_tone": "🤵🏻", + "man_in_tuxedo_medium-dark_skin_tone": "🤵🏾", + "man_in_tuxedo_medium-light_skin_tone": "🤵🏼", + "man_in_tuxedo_medium_skin_tone": "🤵🏽", + "man_judge": "👨\u200d⚖️", + "man_judge_dark_skin_tone": "👨🏿\u200d⚖️", + "man_judge_light_skin_tone": "👨🏻\u200d⚖️", + "man_judge_medium-dark_skin_tone": "👨🏾\u200d⚖️", + "man_judge_medium-light_skin_tone": "👨🏼\u200d⚖️", + "man_judge_medium_skin_tone": "👨🏽\u200d⚖️", + "man_juggling": "🤹\u200d♂️", + "man_juggling_dark_skin_tone": "🤹🏿\u200d♂️", + "man_juggling_light_skin_tone": "🤹🏻\u200d♂️", + "man_juggling_medium-dark_skin_tone": "🤹🏾\u200d♂️", + "man_juggling_medium-light_skin_tone": "🤹🏼\u200d♂️", + "man_juggling_medium_skin_tone": "🤹🏽\u200d♂️", + "man_lifting_weights": "🏋️\u200d♂️", + "man_lifting_weights_dark_skin_tone": "🏋🏿\u200d♂️", + "man_lifting_weights_light_skin_tone": "🏋🏻\u200d♂️", + "man_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♂️", + "man_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♂️", + "man_lifting_weights_medium_skin_tone": "🏋🏽\u200d♂️", + "man_light_skin_tone": "👨🏻", + "man_mage": "🧙\u200d♂️", + "man_mage_dark_skin_tone": "🧙🏿\u200d♂️", + "man_mage_light_skin_tone": "🧙🏻\u200d♂️", + "man_mage_medium-dark_skin_tone": "🧙🏾\u200d♂️", + "man_mage_medium-light_skin_tone": "🧙🏼\u200d♂️", + "man_mage_medium_skin_tone": "🧙🏽\u200d♂️", + "man_mechanic": "👨\u200d🔧", + "man_mechanic_dark_skin_tone": "👨🏿\u200d🔧", + "man_mechanic_light_skin_tone": "👨🏻\u200d🔧", + "man_mechanic_medium-dark_skin_tone": "👨🏾\u200d🔧", + "man_mechanic_medium-light_skin_tone": "👨🏼\u200d🔧", + "man_mechanic_medium_skin_tone": "👨🏽\u200d🔧", + "man_medium-dark_skin_tone": "👨🏾", + "man_medium-light_skin_tone": "👨🏼", + "man_medium_skin_tone": "👨🏽", + "man_mountain_biking": "🚵\u200d♂️", + "man_mountain_biking_dark_skin_tone": "🚵🏿\u200d♂️", + "man_mountain_biking_light_skin_tone": "🚵🏻\u200d♂️", + "man_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♂️", + "man_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♂️", + "man_mountain_biking_medium_skin_tone": "🚵🏽\u200d♂️", + "man_office_worker": "👨\u200d💼", + "man_office_worker_dark_skin_tone": "👨🏿\u200d💼", + "man_office_worker_light_skin_tone": "👨🏻\u200d💼", + "man_office_worker_medium-dark_skin_tone": "👨🏾\u200d💼", + "man_office_worker_medium-light_skin_tone": "👨🏼\u200d💼", + "man_office_worker_medium_skin_tone": "👨🏽\u200d💼", + "man_pilot": "👨\u200d✈️", + "man_pilot_dark_skin_tone": "👨🏿\u200d✈️", + "man_pilot_light_skin_tone": "👨🏻\u200d✈️", + "man_pilot_medium-dark_skin_tone": "👨🏾\u200d✈️", + "man_pilot_medium-light_skin_tone": "👨🏼\u200d✈️", + "man_pilot_medium_skin_tone": "👨🏽\u200d✈️", + "man_playing_handball": "🤾\u200d♂️", + "man_playing_handball_dark_skin_tone": "🤾🏿\u200d♂️", + "man_playing_handball_light_skin_tone": "🤾🏻\u200d♂️", + "man_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♂️", + "man_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♂️", + "man_playing_handball_medium_skin_tone": "🤾🏽\u200d♂️", + "man_playing_water_polo": "🤽\u200d♂️", + "man_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♂️", + "man_playing_water_polo_light_skin_tone": "🤽🏻\u200d♂️", + "man_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♂️", + "man_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♂️", + "man_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♂️", + "man_police_officer": "👮\u200d♂️", + "man_police_officer_dark_skin_tone": "👮🏿\u200d♂️", + "man_police_officer_light_skin_tone": "👮🏻\u200d♂️", + "man_police_officer_medium-dark_skin_tone": "👮🏾\u200d♂️", + "man_police_officer_medium-light_skin_tone": "👮🏼\u200d♂️", + "man_police_officer_medium_skin_tone": "👮🏽\u200d♂️", + "man_pouting": "🙎\u200d♂️", + "man_pouting_dark_skin_tone": "🙎🏿\u200d♂️", + "man_pouting_light_skin_tone": "🙎🏻\u200d♂️", + "man_pouting_medium-dark_skin_tone": "🙎🏾\u200d♂️", + "man_pouting_medium-light_skin_tone": "🙎🏼\u200d♂️", + "man_pouting_medium_skin_tone": "🙎🏽\u200d♂️", + "man_raising_hand": "🙋\u200d♂️", + "man_raising_hand_dark_skin_tone": "🙋🏿\u200d♂️", + "man_raising_hand_light_skin_tone": "🙋🏻\u200d♂️", + "man_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♂️", + "man_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♂️", + "man_raising_hand_medium_skin_tone": "🙋🏽\u200d♂️", + "man_rowing_boat": "🚣\u200d♂️", + "man_rowing_boat_dark_skin_tone": "🚣🏿\u200d♂️", + "man_rowing_boat_light_skin_tone": "🚣🏻\u200d♂️", + "man_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♂️", + "man_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♂️", + "man_rowing_boat_medium_skin_tone": "🚣🏽\u200d♂️", + "man_running": "🏃\u200d♂️", + "man_running_dark_skin_tone": "🏃🏿\u200d♂️", + "man_running_light_skin_tone": "🏃🏻\u200d♂️", + "man_running_medium-dark_skin_tone": "🏃🏾\u200d♂️", + "man_running_medium-light_skin_tone": "🏃🏼\u200d♂️", + "man_running_medium_skin_tone": "🏃🏽\u200d♂️", + "man_scientist": "👨\u200d🔬", + "man_scientist_dark_skin_tone": "👨🏿\u200d🔬", + "man_scientist_light_skin_tone": "👨🏻\u200d🔬", + "man_scientist_medium-dark_skin_tone": "👨🏾\u200d🔬", + "man_scientist_medium-light_skin_tone": "👨🏼\u200d🔬", + "man_scientist_medium_skin_tone": "👨🏽\u200d🔬", + "man_shrugging": "🤷\u200d♂️", + "man_shrugging_dark_skin_tone": "🤷🏿\u200d♂️", + "man_shrugging_light_skin_tone": "🤷🏻\u200d♂️", + "man_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♂️", + "man_shrugging_medium-light_skin_tone": "🤷🏼\u200d♂️", + "man_shrugging_medium_skin_tone": "🤷🏽\u200d♂️", + "man_singer": "👨\u200d🎤", + "man_singer_dark_skin_tone": "👨🏿\u200d🎤", + "man_singer_light_skin_tone": "👨🏻\u200d🎤", + "man_singer_medium-dark_skin_tone": "👨🏾\u200d🎤", + "man_singer_medium-light_skin_tone": "👨🏼\u200d🎤", + "man_singer_medium_skin_tone": "👨🏽\u200d🎤", + "man_student": "👨\u200d🎓", + "man_student_dark_skin_tone": "👨🏿\u200d🎓", + "man_student_light_skin_tone": "👨🏻\u200d🎓", + "man_student_medium-dark_skin_tone": "👨🏾\u200d🎓", + "man_student_medium-light_skin_tone": "👨🏼\u200d🎓", + "man_student_medium_skin_tone": "👨🏽\u200d🎓", + "man_surfing": "🏄\u200d♂️", + "man_surfing_dark_skin_tone": "🏄🏿\u200d♂️", + "man_surfing_light_skin_tone": "🏄🏻\u200d♂️", + "man_surfing_medium-dark_skin_tone": "🏄🏾\u200d♂️", + "man_surfing_medium-light_skin_tone": "🏄🏼\u200d♂️", + "man_surfing_medium_skin_tone": "🏄🏽\u200d♂️", + "man_swimming": "🏊\u200d♂️", + "man_swimming_dark_skin_tone": "🏊🏿\u200d♂️", + "man_swimming_light_skin_tone": "🏊🏻\u200d♂️", + "man_swimming_medium-dark_skin_tone": "🏊🏾\u200d♂️", + "man_swimming_medium-light_skin_tone": "🏊🏼\u200d♂️", + "man_swimming_medium_skin_tone": "🏊🏽\u200d♂️", + "man_teacher": "👨\u200d🏫", + "man_teacher_dark_skin_tone": "👨🏿\u200d🏫", + "man_teacher_light_skin_tone": "👨🏻\u200d🏫", + "man_teacher_medium-dark_skin_tone": "👨🏾\u200d🏫", + "man_teacher_medium-light_skin_tone": "👨🏼\u200d🏫", + "man_teacher_medium_skin_tone": "👨🏽\u200d🏫", + "man_technologist": "👨\u200d💻", + "man_technologist_dark_skin_tone": "👨🏿\u200d💻", + "man_technologist_light_skin_tone": "👨🏻\u200d💻", + "man_technologist_medium-dark_skin_tone": "👨🏾\u200d💻", + "man_technologist_medium-light_skin_tone": "👨🏼\u200d💻", + "man_technologist_medium_skin_tone": "👨🏽\u200d💻", + "man_tipping_hand": "💁\u200d♂️", + "man_tipping_hand_dark_skin_tone": "💁🏿\u200d♂️", + "man_tipping_hand_light_skin_tone": "💁🏻\u200d♂️", + "man_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♂️", + "man_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♂️", + "man_tipping_hand_medium_skin_tone": "💁🏽\u200d♂️", + "man_vampire": "🧛\u200d♂️", + "man_vampire_dark_skin_tone": "🧛🏿\u200d♂️", + "man_vampire_light_skin_tone": "🧛🏻\u200d♂️", + "man_vampire_medium-dark_skin_tone": "🧛🏾\u200d♂️", + "man_vampire_medium-light_skin_tone": "🧛🏼\u200d♂️", + "man_vampire_medium_skin_tone": "🧛🏽\u200d♂️", + "man_walking": "🚶\u200d♂️", + "man_walking_dark_skin_tone": "🚶🏿\u200d♂️", + "man_walking_light_skin_tone": "🚶🏻\u200d♂️", + "man_walking_medium-dark_skin_tone": "🚶🏾\u200d♂️", + "man_walking_medium-light_skin_tone": "🚶🏼\u200d♂️", + "man_walking_medium_skin_tone": "🚶🏽\u200d♂️", + "man_wearing_turban": "👳\u200d♂️", + "man_wearing_turban_dark_skin_tone": "👳🏿\u200d♂️", + "man_wearing_turban_light_skin_tone": "👳🏻\u200d♂️", + "man_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♂️", + "man_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♂️", + "man_wearing_turban_medium_skin_tone": "👳🏽\u200d♂️", + "man_with_probing_cane": "👨\u200d🦯", + "man_with_chinese_cap": "👲", + "man_with_chinese_cap_dark_skin_tone": "👲🏿", + "man_with_chinese_cap_light_skin_tone": "👲🏻", + "man_with_chinese_cap_medium-dark_skin_tone": "👲🏾", + "man_with_chinese_cap_medium-light_skin_tone": "👲🏼", + "man_with_chinese_cap_medium_skin_tone": "👲🏽", + "man_zombie": "🧟\u200d♂️", + "mango": "🥭", + "mantelpiece_clock": "🕰", + "manual_wheelchair": "🦽", + "man’s_shoe": "👞", + "map_of_japan": "🗾", + "maple_leaf": "🍁", + "martial_arts_uniform": "🥋", + "mate": "🧉", + "meat_on_bone": "🍖", + "mechanical_arm": "🦾", + "mechanical_leg": "🦿", + "medical_symbol": "⚕", + "megaphone": "📣", + "melon": "🍈", + "memo": "📝", + "men_with_bunny_ears": "👯\u200d♂️", + "men_wrestling": "🤼\u200d♂️", + "menorah": "🕎", + "men’s_room": "🚹", + "mermaid": "🧜\u200d♀️", + "mermaid_dark_skin_tone": "🧜🏿\u200d♀️", + "mermaid_light_skin_tone": "🧜🏻\u200d♀️", + "mermaid_medium-dark_skin_tone": "🧜🏾\u200d♀️", + "mermaid_medium-light_skin_tone": "🧜🏼\u200d♀️", + "mermaid_medium_skin_tone": "🧜🏽\u200d♀️", + "merman": "🧜\u200d♂️", + "merman_dark_skin_tone": "🧜🏿\u200d♂️", + "merman_light_skin_tone": "🧜🏻\u200d♂️", + "merman_medium-dark_skin_tone": "🧜🏾\u200d♂️", + "merman_medium-light_skin_tone": "🧜🏼\u200d♂️", + "merman_medium_skin_tone": "🧜🏽\u200d♂️", + "merperson": "🧜", + "merperson_dark_skin_tone": "🧜🏿", + "merperson_light_skin_tone": "🧜🏻", + "merperson_medium-dark_skin_tone": "🧜🏾", + "merperson_medium-light_skin_tone": "🧜🏼", + "merperson_medium_skin_tone": "🧜🏽", + "metro": "🚇", + "microbe": "🦠", + "microphone": "🎤", + "microscope": "🔬", + "middle_finger": "🖕", + "middle_finger_dark_skin_tone": "🖕🏿", + "middle_finger_light_skin_tone": "🖕🏻", + "middle_finger_medium-dark_skin_tone": "🖕🏾", + "middle_finger_medium-light_skin_tone": "🖕🏼", + "middle_finger_medium_skin_tone": "🖕🏽", + "military_medal": "🎖", + "milky_way": "🌌", + "minibus": "🚐", + "moai": "🗿", + "mobile_phone": "📱", + "mobile_phone_off": "📴", + "mobile_phone_with_arrow": "📲", + "money-mouth_face": "🤑", + "money_bag": "💰", + "money_with_wings": "💸", + "monkey": "🐒", + "monkey_face": "🐵", + "monorail": "🚝", + "moon_cake": "🥮", + "moon_viewing_ceremony": "🎑", + "mosque": "🕌", + "mosquito": "🦟", + "motor_boat": "🛥", + "motor_scooter": "🛵", + "motorcycle": "🏍", + "motorized_wheelchair": "🦼", + "motorway": "🛣", + "mount_fuji": "🗻", + "mountain": "⛰", + "mountain_cableway": "🚠", + "mountain_railway": "🚞", + "mouse": "🐭", + "mouse_face": "🐭", + "mouth": "👄", + "movie_camera": "🎥", + "mushroom": "🍄", + "musical_keyboard": "🎹", + "musical_note": "🎵", + "musical_notes": "🎶", + "musical_score": "🎼", + "muted_speaker": "🔇", + "nail_polish": "💅", + "nail_polish_dark_skin_tone": "💅🏿", + "nail_polish_light_skin_tone": "💅🏻", + "nail_polish_medium-dark_skin_tone": "💅🏾", + "nail_polish_medium-light_skin_tone": "💅🏼", + "nail_polish_medium_skin_tone": "💅🏽", + "name_badge": "📛", + "national_park": "🏞", + "nauseated_face": "🤢", + "nazar_amulet": "🧿", + "necktie": "👔", + "nerd_face": "🤓", + "neutral_face": "😐", + "new_moon": "🌑", + "new_moon_face": "🌚", + "newspaper": "📰", + "next_track_button": "⏭", + "night_with_stars": "🌃", + "nine-thirty": "🕤", + "nine_o’clock": "🕘", + "no_bicycles": "🚳", + "no_entry": "⛔", + "no_littering": "🚯", + "no_mobile_phones": "📵", + "no_one_under_eighteen": "🔞", + "no_pedestrians": "🚷", + "no_smoking": "🚭", + "non-potable_water": "🚱", + "nose": "👃", + "nose_dark_skin_tone": "👃🏿", + "nose_light_skin_tone": "👃🏻", + "nose_medium-dark_skin_tone": "👃🏾", + "nose_medium-light_skin_tone": "👃🏼", + "nose_medium_skin_tone": "👃🏽", + "notebook": "📓", + "notebook_with_decorative_cover": "📔", + "nut_and_bolt": "🔩", + "octopus": "🐙", + "oden": "🍢", + "office_building": "🏢", + "ogre": "👹", + "oil_drum": "🛢", + "old_key": "🗝", + "old_man": "👴", + "old_man_dark_skin_tone": "👴🏿", + "old_man_light_skin_tone": "👴🏻", + "old_man_medium-dark_skin_tone": "👴🏾", + "old_man_medium-light_skin_tone": "👴🏼", + "old_man_medium_skin_tone": "👴🏽", + "old_woman": "👵", + "old_woman_dark_skin_tone": "👵🏿", + "old_woman_light_skin_tone": "👵🏻", + "old_woman_medium-dark_skin_tone": "👵🏾", + "old_woman_medium-light_skin_tone": "👵🏼", + "old_woman_medium_skin_tone": "👵🏽", + "older_adult": "🧓", + "older_adult_dark_skin_tone": "🧓🏿", + "older_adult_light_skin_tone": "🧓🏻", + "older_adult_medium-dark_skin_tone": "🧓🏾", + "older_adult_medium-light_skin_tone": "🧓🏼", + "older_adult_medium_skin_tone": "🧓🏽", + "om": "🕉", + "oncoming_automobile": "🚘", + "oncoming_bus": "🚍", + "oncoming_fist": "👊", + "oncoming_fist_dark_skin_tone": "👊🏿", + "oncoming_fist_light_skin_tone": "👊🏻", + "oncoming_fist_medium-dark_skin_tone": "👊🏾", + "oncoming_fist_medium-light_skin_tone": "👊🏼", + "oncoming_fist_medium_skin_tone": "👊🏽", + "oncoming_police_car": "🚔", + "oncoming_taxi": "🚖", + "one-piece_swimsuit": "🩱", + "one-thirty": "🕜", + "one_o’clock": "🕐", + "onion": "🧅", + "open_book": "📖", + "open_file_folder": "📂", + "open_hands": "👐", + "open_hands_dark_skin_tone": "👐🏿", + "open_hands_light_skin_tone": "👐🏻", + "open_hands_medium-dark_skin_tone": "👐🏾", + "open_hands_medium-light_skin_tone": "👐🏼", + "open_hands_medium_skin_tone": "👐🏽", + "open_mailbox_with_lowered_flag": "📭", + "open_mailbox_with_raised_flag": "📬", + "optical_disk": "💿", + "orange_book": "📙", + "orange_circle": "🟠", + "orange_heart": "🧡", + "orange_square": "🟧", + "orangutan": "🦧", + "orthodox_cross": "☦", + "otter": "🦦", + "outbox_tray": "📤", + "owl": "🦉", + "ox": "🐂", + "oyster": "🦪", + "package": "📦", + "page_facing_up": "📄", + "page_with_curl": "📃", + "pager": "📟", + "paintbrush": "🖌", + "palm_tree": "🌴", + "palms_up_together": "🤲", + "palms_up_together_dark_skin_tone": "🤲🏿", + "palms_up_together_light_skin_tone": "🤲🏻", + "palms_up_together_medium-dark_skin_tone": "🤲🏾", + "palms_up_together_medium-light_skin_tone": "🤲🏼", + "palms_up_together_medium_skin_tone": "🤲🏽", + "pancakes": "🥞", + "panda_face": "🐼", + "paperclip": "📎", + "parrot": "🦜", + "part_alternation_mark": "〽", + "party_popper": "🎉", + "partying_face": "🥳", + "passenger_ship": "🛳", + "passport_control": "🛂", + "pause_button": "⏸", + "paw_prints": "🐾", + "peace_symbol": "☮", + "peach": "🍑", + "peacock": "🦚", + "peanuts": "🥜", + "pear": "🍐", + "pen": "🖊", + "pencil": "📝", + "penguin": "🐧", + "pensive_face": "😔", + "people_holding_hands": "🧑\u200d🤝\u200d🧑", + "people_with_bunny_ears": "👯", + "people_wrestling": "🤼", + "performing_arts": "🎭", + "persevering_face": "😣", + "person_biking": "🚴", + "person_biking_dark_skin_tone": "🚴🏿", + "person_biking_light_skin_tone": "🚴🏻", + "person_biking_medium-dark_skin_tone": "🚴🏾", + "person_biking_medium-light_skin_tone": "🚴🏼", + "person_biking_medium_skin_tone": "🚴🏽", + "person_bouncing_ball": "⛹", + "person_bouncing_ball_dark_skin_tone": "⛹🏿", + "person_bouncing_ball_light_skin_tone": "⛹🏻", + "person_bouncing_ball_medium-dark_skin_tone": "⛹🏾", + "person_bouncing_ball_medium-light_skin_tone": "⛹🏼", + "person_bouncing_ball_medium_skin_tone": "⛹🏽", + "person_bowing": "🙇", + "person_bowing_dark_skin_tone": "🙇🏿", + "person_bowing_light_skin_tone": "🙇🏻", + "person_bowing_medium-dark_skin_tone": "🙇🏾", + "person_bowing_medium-light_skin_tone": "🙇🏼", + "person_bowing_medium_skin_tone": "🙇🏽", + "person_cartwheeling": "🤸", + "person_cartwheeling_dark_skin_tone": "🤸🏿", + "person_cartwheeling_light_skin_tone": "🤸🏻", + "person_cartwheeling_medium-dark_skin_tone": "🤸🏾", + "person_cartwheeling_medium-light_skin_tone": "🤸🏼", + "person_cartwheeling_medium_skin_tone": "🤸🏽", + "person_climbing": "🧗", + "person_climbing_dark_skin_tone": "🧗🏿", + "person_climbing_light_skin_tone": "🧗🏻", + "person_climbing_medium-dark_skin_tone": "🧗🏾", + "person_climbing_medium-light_skin_tone": "🧗🏼", + "person_climbing_medium_skin_tone": "🧗🏽", + "person_facepalming": "🤦", + "person_facepalming_dark_skin_tone": "🤦🏿", + "person_facepalming_light_skin_tone": "🤦🏻", + "person_facepalming_medium-dark_skin_tone": "🤦🏾", + "person_facepalming_medium-light_skin_tone": "🤦🏼", + "person_facepalming_medium_skin_tone": "🤦🏽", + "person_fencing": "🤺", + "person_frowning": "🙍", + "person_frowning_dark_skin_tone": "🙍🏿", + "person_frowning_light_skin_tone": "🙍🏻", + "person_frowning_medium-dark_skin_tone": "🙍🏾", + "person_frowning_medium-light_skin_tone": "🙍🏼", + "person_frowning_medium_skin_tone": "🙍🏽", + "person_gesturing_no": "🙅", + "person_gesturing_no_dark_skin_tone": "🙅🏿", + "person_gesturing_no_light_skin_tone": "🙅🏻", + "person_gesturing_no_medium-dark_skin_tone": "🙅🏾", + "person_gesturing_no_medium-light_skin_tone": "🙅🏼", + "person_gesturing_no_medium_skin_tone": "🙅🏽", + "person_gesturing_ok": "🙆", + "person_gesturing_ok_dark_skin_tone": "🙆🏿", + "person_gesturing_ok_light_skin_tone": "🙆🏻", + "person_gesturing_ok_medium-dark_skin_tone": "🙆🏾", + "person_gesturing_ok_medium-light_skin_tone": "🙆🏼", + "person_gesturing_ok_medium_skin_tone": "🙆🏽", + "person_getting_haircut": "💇", + "person_getting_haircut_dark_skin_tone": "💇🏿", + "person_getting_haircut_light_skin_tone": "💇🏻", + "person_getting_haircut_medium-dark_skin_tone": "💇🏾", + "person_getting_haircut_medium-light_skin_tone": "💇🏼", + "person_getting_haircut_medium_skin_tone": "💇🏽", + "person_getting_massage": "💆", + "person_getting_massage_dark_skin_tone": "💆🏿", + "person_getting_massage_light_skin_tone": "💆🏻", + "person_getting_massage_medium-dark_skin_tone": "💆🏾", + "person_getting_massage_medium-light_skin_tone": "💆🏼", + "person_getting_massage_medium_skin_tone": "💆🏽", + "person_golfing": "🏌", + "person_golfing_dark_skin_tone": "🏌🏿", + "person_golfing_light_skin_tone": "🏌🏻", + "person_golfing_medium-dark_skin_tone": "🏌🏾", + "person_golfing_medium-light_skin_tone": "🏌🏼", + "person_golfing_medium_skin_tone": "🏌🏽", + "person_in_bed": "🛌", + "person_in_bed_dark_skin_tone": "🛌🏿", + "person_in_bed_light_skin_tone": "🛌🏻", + "person_in_bed_medium-dark_skin_tone": "🛌🏾", + "person_in_bed_medium-light_skin_tone": "🛌🏼", + "person_in_bed_medium_skin_tone": "🛌🏽", + "person_in_lotus_position": "🧘", + "person_in_lotus_position_dark_skin_tone": "🧘🏿", + "person_in_lotus_position_light_skin_tone": "🧘🏻", + "person_in_lotus_position_medium-dark_skin_tone": "🧘🏾", + "person_in_lotus_position_medium-light_skin_tone": "🧘🏼", + "person_in_lotus_position_medium_skin_tone": "🧘🏽", + "person_in_steamy_room": "🧖", + "person_in_steamy_room_dark_skin_tone": "🧖🏿", + "person_in_steamy_room_light_skin_tone": "🧖🏻", + "person_in_steamy_room_medium-dark_skin_tone": "🧖🏾", + "person_in_steamy_room_medium-light_skin_tone": "🧖🏼", + "person_in_steamy_room_medium_skin_tone": "🧖🏽", + "person_juggling": "🤹", + "person_juggling_dark_skin_tone": "🤹🏿", + "person_juggling_light_skin_tone": "🤹🏻", + "person_juggling_medium-dark_skin_tone": "🤹🏾", + "person_juggling_medium-light_skin_tone": "🤹🏼", + "person_juggling_medium_skin_tone": "🤹🏽", + "person_kneeling": "🧎", + "person_lifting_weights": "🏋", + "person_lifting_weights_dark_skin_tone": "🏋🏿", + "person_lifting_weights_light_skin_tone": "🏋🏻", + "person_lifting_weights_medium-dark_skin_tone": "🏋🏾", + "person_lifting_weights_medium-light_skin_tone": "🏋🏼", + "person_lifting_weights_medium_skin_tone": "🏋🏽", + "person_mountain_biking": "🚵", + "person_mountain_biking_dark_skin_tone": "🚵🏿", + "person_mountain_biking_light_skin_tone": "🚵🏻", + "person_mountain_biking_medium-dark_skin_tone": "🚵🏾", + "person_mountain_biking_medium-light_skin_tone": "🚵🏼", + "person_mountain_biking_medium_skin_tone": "🚵🏽", + "person_playing_handball": "🤾", + "person_playing_handball_dark_skin_tone": "🤾🏿", + "person_playing_handball_light_skin_tone": "🤾🏻", + "person_playing_handball_medium-dark_skin_tone": "🤾🏾", + "person_playing_handball_medium-light_skin_tone": "🤾🏼", + "person_playing_handball_medium_skin_tone": "🤾🏽", + "person_playing_water_polo": "🤽", + "person_playing_water_polo_dark_skin_tone": "🤽🏿", + "person_playing_water_polo_light_skin_tone": "🤽🏻", + "person_playing_water_polo_medium-dark_skin_tone": "🤽🏾", + "person_playing_water_polo_medium-light_skin_tone": "🤽🏼", + "person_playing_water_polo_medium_skin_tone": "🤽🏽", + "person_pouting": "🙎", + "person_pouting_dark_skin_tone": "🙎🏿", + "person_pouting_light_skin_tone": "🙎🏻", + "person_pouting_medium-dark_skin_tone": "🙎🏾", + "person_pouting_medium-light_skin_tone": "🙎🏼", + "person_pouting_medium_skin_tone": "🙎🏽", + "person_raising_hand": "🙋", + "person_raising_hand_dark_skin_tone": "🙋🏿", + "person_raising_hand_light_skin_tone": "🙋🏻", + "person_raising_hand_medium-dark_skin_tone": "🙋🏾", + "person_raising_hand_medium-light_skin_tone": "🙋🏼", + "person_raising_hand_medium_skin_tone": "🙋🏽", + "person_rowing_boat": "🚣", + "person_rowing_boat_dark_skin_tone": "🚣🏿", + "person_rowing_boat_light_skin_tone": "🚣🏻", + "person_rowing_boat_medium-dark_skin_tone": "🚣🏾", + "person_rowing_boat_medium-light_skin_tone": "🚣🏼", + "person_rowing_boat_medium_skin_tone": "🚣🏽", + "person_running": "🏃", + "person_running_dark_skin_tone": "🏃🏿", + "person_running_light_skin_tone": "🏃🏻", + "person_running_medium-dark_skin_tone": "🏃🏾", + "person_running_medium-light_skin_tone": "🏃🏼", + "person_running_medium_skin_tone": "🏃🏽", + "person_shrugging": "🤷", + "person_shrugging_dark_skin_tone": "🤷🏿", + "person_shrugging_light_skin_tone": "🤷🏻", + "person_shrugging_medium-dark_skin_tone": "🤷🏾", + "person_shrugging_medium-light_skin_tone": "🤷🏼", + "person_shrugging_medium_skin_tone": "🤷🏽", + "person_standing": "🧍", + "person_surfing": "🏄", + "person_surfing_dark_skin_tone": "🏄🏿", + "person_surfing_light_skin_tone": "🏄🏻", + "person_surfing_medium-dark_skin_tone": "🏄🏾", + "person_surfing_medium-light_skin_tone": "🏄🏼", + "person_surfing_medium_skin_tone": "🏄🏽", + "person_swimming": "🏊", + "person_swimming_dark_skin_tone": "🏊🏿", + "person_swimming_light_skin_tone": "🏊🏻", + "person_swimming_medium-dark_skin_tone": "🏊🏾", + "person_swimming_medium-light_skin_tone": "🏊🏼", + "person_swimming_medium_skin_tone": "🏊🏽", + "person_taking_bath": "🛀", + "person_taking_bath_dark_skin_tone": "🛀🏿", + "person_taking_bath_light_skin_tone": "🛀🏻", + "person_taking_bath_medium-dark_skin_tone": "🛀🏾", + "person_taking_bath_medium-light_skin_tone": "🛀🏼", + "person_taking_bath_medium_skin_tone": "🛀🏽", + "person_tipping_hand": "💁", + "person_tipping_hand_dark_skin_tone": "💁🏿", + "person_tipping_hand_light_skin_tone": "💁🏻", + "person_tipping_hand_medium-dark_skin_tone": "💁🏾", + "person_tipping_hand_medium-light_skin_tone": "💁🏼", + "person_tipping_hand_medium_skin_tone": "💁🏽", + "person_walking": "🚶", + "person_walking_dark_skin_tone": "🚶🏿", + "person_walking_light_skin_tone": "🚶🏻", + "person_walking_medium-dark_skin_tone": "🚶🏾", + "person_walking_medium-light_skin_tone": "🚶🏼", + "person_walking_medium_skin_tone": "🚶🏽", + "person_wearing_turban": "👳", + "person_wearing_turban_dark_skin_tone": "👳🏿", + "person_wearing_turban_light_skin_tone": "👳🏻", + "person_wearing_turban_medium-dark_skin_tone": "👳🏾", + "person_wearing_turban_medium-light_skin_tone": "👳🏼", + "person_wearing_turban_medium_skin_tone": "👳🏽", + "petri_dish": "🧫", + "pick": "⛏", + "pie": "🥧", + "pig": "🐷", + "pig_face": "🐷", + "pig_nose": "🐽", + "pile_of_poo": "💩", + "pill": "💊", + "pinching_hand": "🤏", + "pine_decoration": "🎍", + "pineapple": "🍍", + "ping_pong": "🏓", + "pirate_flag": "🏴\u200d☠️", + "pistol": "🔫", + "pizza": "🍕", + "place_of_worship": "🛐", + "play_button": "▶", + "play_or_pause_button": "⏯", + "pleading_face": "🥺", + "police_car": "🚓", + "police_car_light": "🚨", + "police_officer": "👮", + "police_officer_dark_skin_tone": "👮🏿", + "police_officer_light_skin_tone": "👮🏻", + "police_officer_medium-dark_skin_tone": "👮🏾", + "police_officer_medium-light_skin_tone": "👮🏼", + "police_officer_medium_skin_tone": "👮🏽", + "poodle": "🐩", + "pool_8_ball": "🎱", + "popcorn": "🍿", + "post_office": "🏣", + "postal_horn": "📯", + "postbox": "📮", + "pot_of_food": "🍲", + "potable_water": "🚰", + "potato": "🥔", + "poultry_leg": "🍗", + "pound_banknote": "💷", + "pouting_cat_face": "😾", + "pouting_face": "😡", + "prayer_beads": "📿", + "pregnant_woman": "🤰", + "pregnant_woman_dark_skin_tone": "🤰🏿", + "pregnant_woman_light_skin_tone": "🤰🏻", + "pregnant_woman_medium-dark_skin_tone": "🤰🏾", + "pregnant_woman_medium-light_skin_tone": "🤰🏼", + "pregnant_woman_medium_skin_tone": "🤰🏽", + "pretzel": "🥨", + "probing_cane": "🦯", + "prince": "🤴", + "prince_dark_skin_tone": "🤴🏿", + "prince_light_skin_tone": "🤴🏻", + "prince_medium-dark_skin_tone": "🤴🏾", + "prince_medium-light_skin_tone": "🤴🏼", + "prince_medium_skin_tone": "🤴🏽", + "princess": "👸", + "princess_dark_skin_tone": "👸🏿", + "princess_light_skin_tone": "👸🏻", + "princess_medium-dark_skin_tone": "👸🏾", + "princess_medium-light_skin_tone": "👸🏼", + "princess_medium_skin_tone": "👸🏽", + "printer": "🖨", + "prohibited": "🚫", + "purple_circle": "🟣", + "purple_heart": "💜", + "purple_square": "🟪", + "purse": "👛", + "pushpin": "📌", + "question_mark": "❓", + "rabbit": "🐰", + "rabbit_face": "🐰", + "raccoon": "🦝", + "racing_car": "🏎", + "radio": "📻", + "radio_button": "🔘", + "radioactive": "☢", + "railway_car": "🚃", + "railway_track": "🛤", + "rainbow": "🌈", + "rainbow_flag": "🏳️\u200d🌈", + "raised_back_of_hand": "🤚", + "raised_back_of_hand_dark_skin_tone": "🤚🏿", + "raised_back_of_hand_light_skin_tone": "🤚🏻", + "raised_back_of_hand_medium-dark_skin_tone": "🤚🏾", + "raised_back_of_hand_medium-light_skin_tone": "🤚🏼", + "raised_back_of_hand_medium_skin_tone": "🤚🏽", + "raised_fist": "✊", + "raised_fist_dark_skin_tone": "✊🏿", + "raised_fist_light_skin_tone": "✊🏻", + "raised_fist_medium-dark_skin_tone": "✊🏾", + "raised_fist_medium-light_skin_tone": "✊🏼", + "raised_fist_medium_skin_tone": "✊🏽", + "raised_hand": "✋", + "raised_hand_dark_skin_tone": "✋🏿", + "raised_hand_light_skin_tone": "✋🏻", + "raised_hand_medium-dark_skin_tone": "✋🏾", + "raised_hand_medium-light_skin_tone": "✋🏼", + "raised_hand_medium_skin_tone": "✋🏽", + "raising_hands": "🙌", + "raising_hands_dark_skin_tone": "🙌🏿", + "raising_hands_light_skin_tone": "🙌🏻", + "raising_hands_medium-dark_skin_tone": "🙌🏾", + "raising_hands_medium-light_skin_tone": "🙌🏼", + "raising_hands_medium_skin_tone": "🙌🏽", + "ram": "🐏", + "rat": "🐀", + "razor": "🪒", + "ringed_planet": "🪐", + "receipt": "🧾", + "record_button": "⏺", + "recycling_symbol": "♻", + "red_apple": "🍎", + "red_circle": "🔴", + "red_envelope": "🧧", + "red_hair": "🦰", + "red-haired_man": "👨\u200d🦰", + "red-haired_woman": "👩\u200d🦰", + "red_heart": "❤", + "red_paper_lantern": "🏮", + "red_square": "🟥", + "red_triangle_pointed_down": "🔻", + "red_triangle_pointed_up": "🔺", + "registered": "®", + "relieved_face": "😌", + "reminder_ribbon": "🎗", + "repeat_button": "🔁", + "repeat_single_button": "🔂", + "rescue_worker’s_helmet": "⛑", + "restroom": "🚻", + "reverse_button": "◀", + "revolving_hearts": "💞", + "rhinoceros": "🦏", + "ribbon": "🎀", + "rice_ball": "🍙", + "rice_cracker": "🍘", + "right-facing_fist": "🤜", + "right-facing_fist_dark_skin_tone": "🤜🏿", + "right-facing_fist_light_skin_tone": "🤜🏻", + "right-facing_fist_medium-dark_skin_tone": "🤜🏾", + "right-facing_fist_medium-light_skin_tone": "🤜🏼", + "right-facing_fist_medium_skin_tone": "🤜🏽", + "right_anger_bubble": "🗯", + "right_arrow": "➡", + "right_arrow_curving_down": "⤵", + "right_arrow_curving_left": "↩", + "right_arrow_curving_up": "⤴", + "ring": "💍", + "roasted_sweet_potato": "🍠", + "robot_face": "🤖", + "rocket": "🚀", + "roll_of_paper": "🧻", + "rolled-up_newspaper": "🗞", + "roller_coaster": "🎢", + "rolling_on_the_floor_laughing": "🤣", + "rooster": "🐓", + "rose": "🌹", + "rosette": "🏵", + "round_pushpin": "📍", + "rugby_football": "🏉", + "running_shirt": "🎽", + "running_shoe": "👟", + "sad_but_relieved_face": "😥", + "safety_pin": "🧷", + "safety_vest": "🦺", + "salt": "🧂", + "sailboat": "⛵", + "sake": "🍶", + "sandwich": "🥪", + "sari": "🥻", + "satellite": "📡", + "satellite_antenna": "📡", + "sauropod": "🦕", + "saxophone": "🎷", + "scarf": "🧣", + "school": "🏫", + "school_backpack": "🎒", + "scissors": "✂", + "scorpion": "🦂", + "scroll": "📜", + "seat": "💺", + "see-no-evil_monkey": "🙈", + "seedling": "🌱", + "selfie": "🤳", + "selfie_dark_skin_tone": "🤳🏿", + "selfie_light_skin_tone": "🤳🏻", + "selfie_medium-dark_skin_tone": "🤳🏾", + "selfie_medium-light_skin_tone": "🤳🏼", + "selfie_medium_skin_tone": "🤳🏽", + "service_dog": "🐕\u200d🦺", + "seven-thirty": "🕢", + "seven_o’clock": "🕖", + "shallow_pan_of_food": "🥘", + "shamrock": "☘", + "shark": "🦈", + "shaved_ice": "🍧", + "sheaf_of_rice": "🌾", + "shield": "🛡", + "shinto_shrine": "⛩", + "ship": "🚢", + "shooting_star": "🌠", + "shopping_bags": "🛍", + "shopping_cart": "🛒", + "shortcake": "🍰", + "shorts": "🩳", + "shower": "🚿", + "shrimp": "🦐", + "shuffle_tracks_button": "🔀", + "shushing_face": "🤫", + "sign_of_the_horns": "🤘", + "sign_of_the_horns_dark_skin_tone": "🤘🏿", + "sign_of_the_horns_light_skin_tone": "🤘🏻", + "sign_of_the_horns_medium-dark_skin_tone": "🤘🏾", + "sign_of_the_horns_medium-light_skin_tone": "🤘🏼", + "sign_of_the_horns_medium_skin_tone": "🤘🏽", + "six-thirty": "🕡", + "six_o’clock": "🕕", + "skateboard": "🛹", + "skier": "⛷", + "skis": "🎿", + "skull": "💀", + "skull_and_crossbones": "☠", + "skunk": "🦨", + "sled": "🛷", + "sleeping_face": "😴", + "sleepy_face": "😪", + "slightly_frowning_face": "🙁", + "slightly_smiling_face": "🙂", + "slot_machine": "🎰", + "sloth": "🦥", + "small_airplane": "🛩", + "small_blue_diamond": "🔹", + "small_orange_diamond": "🔸", + "smiling_cat_face_with_heart-eyes": "😻", + "smiling_face": "☺", + "smiling_face_with_halo": "😇", + "smiling_face_with_3_hearts": "🥰", + "smiling_face_with_heart-eyes": "😍", + "smiling_face_with_horns": "😈", + "smiling_face_with_smiling_eyes": "😊", + "smiling_face_with_sunglasses": "😎", + "smirking_face": "😏", + "snail": "🐌", + "snake": "🐍", + "sneezing_face": "🤧", + "snow-capped_mountain": "🏔", + "snowboarder": "🏂", + "snowboarder_dark_skin_tone": "🏂🏿", + "snowboarder_light_skin_tone": "🏂🏻", + "snowboarder_medium-dark_skin_tone": "🏂🏾", + "snowboarder_medium-light_skin_tone": "🏂🏼", + "snowboarder_medium_skin_tone": "🏂🏽", + "snowflake": "❄", + "snowman": "☃", + "snowman_without_snow": "⛄", + "soap": "🧼", + "soccer_ball": "⚽", + "socks": "🧦", + "softball": "🥎", + "soft_ice_cream": "🍦", + "spade_suit": "♠", + "spaghetti": "🍝", + "sparkle": "❇", + "sparkler": "🎇", + "sparkles": "✨", + "sparkling_heart": "💖", + "speak-no-evil_monkey": "🙊", + "speaker_high_volume": "🔊", + "speaker_low_volume": "🔈", + "speaker_medium_volume": "🔉", + "speaking_head": "🗣", + "speech_balloon": "💬", + "speedboat": "🚤", + "spider": "🕷", + "spider_web": "🕸", + "spiral_calendar": "🗓", + "spiral_notepad": "🗒", + "spiral_shell": "🐚", + "spoon": "🥄", + "sponge": "🧽", + "sport_utility_vehicle": "🚙", + "sports_medal": "🏅", + "spouting_whale": "🐳", + "squid": "🦑", + "squinting_face_with_tongue": "😝", + "stadium": "🏟", + "star-struck": "🤩", + "star_and_crescent": "☪", + "star_of_david": "✡", + "station": "🚉", + "steaming_bowl": "🍜", + "stethoscope": "🩺", + "stop_button": "⏹", + "stop_sign": "🛑", + "stopwatch": "⏱", + "straight_ruler": "📏", + "strawberry": "🍓", + "studio_microphone": "🎙", + "stuffed_flatbread": "🥙", + "sun": "☀", + "sun_behind_cloud": "⛅", + "sun_behind_large_cloud": "🌥", + "sun_behind_rain_cloud": "🌦", + "sun_behind_small_cloud": "🌤", + "sun_with_face": "🌞", + "sunflower": "🌻", + "sunglasses": "😎", + "sunrise": "🌅", + "sunrise_over_mountains": "🌄", + "sunset": "🌇", + "superhero": "🦸", + "supervillain": "🦹", + "sushi": "🍣", + "suspension_railway": "🚟", + "swan": "🦢", + "sweat_droplets": "💦", + "synagogue": "🕍", + "syringe": "💉", + "t-shirt": "👕", + "taco": "🌮", + "takeout_box": "🥡", + "tanabata_tree": "🎋", + "tangerine": "🍊", + "taxi": "🚕", + "teacup_without_handle": "🍵", + "tear-off_calendar": "📆", + "teddy_bear": "🧸", + "telephone": "☎", + "telephone_receiver": "📞", + "telescope": "🔭", + "television": "📺", + "ten-thirty": "🕥", + "ten_o’clock": "🕙", + "tennis": "🎾", + "tent": "⛺", + "test_tube": "🧪", + "thermometer": "🌡", + "thinking_face": "🤔", + "thought_balloon": "💭", + "thread": "🧵", + "three-thirty": "🕞", + "three_o’clock": "🕒", + "thumbs_down": "👎", + "thumbs_down_dark_skin_tone": "👎🏿", + "thumbs_down_light_skin_tone": "👎🏻", + "thumbs_down_medium-dark_skin_tone": "👎🏾", + "thumbs_down_medium-light_skin_tone": "👎🏼", + "thumbs_down_medium_skin_tone": "👎🏽", + "thumbs_up": "👍", + "thumbs_up_dark_skin_tone": "👍🏿", + "thumbs_up_light_skin_tone": "👍🏻", + "thumbs_up_medium-dark_skin_tone": "👍🏾", + "thumbs_up_medium-light_skin_tone": "👍🏼", + "thumbs_up_medium_skin_tone": "👍🏽", + "ticket": "🎫", + "tiger": "🐯", + "tiger_face": "🐯", + "timer_clock": "⏲", + "tired_face": "😫", + "toolbox": "🧰", + "toilet": "🚽", + "tomato": "🍅", + "tongue": "👅", + "tooth": "🦷", + "top_hat": "🎩", + "tornado": "🌪", + "trackball": "🖲", + "tractor": "🚜", + "trade_mark": "™", + "train": "🚋", + "tram": "🚊", + "tram_car": "🚋", + "triangular_flag": "🚩", + "triangular_ruler": "📐", + "trident_emblem": "🔱", + "trolleybus": "🚎", + "trophy": "🏆", + "tropical_drink": "🍹", + "tropical_fish": "🐠", + "trumpet": "🎺", + "tulip": "🌷", + "tumbler_glass": "🥃", + "turtle": "🐢", + "twelve-thirty": "🕧", + "twelve_o’clock": "🕛", + "two-hump_camel": "🐫", + "two-thirty": "🕝", + "two_hearts": "💕", + "two_men_holding_hands": "👬", + "two_o’clock": "🕑", + "two_women_holding_hands": "👭", + "umbrella": "☂", + "umbrella_on_ground": "⛱", + "umbrella_with_rain_drops": "☔", + "unamused_face": "😒", + "unicorn_face": "🦄", + "unlocked": "🔓", + "up-down_arrow": "↕", + "up-left_arrow": "↖", + "up-right_arrow": "↗", + "up_arrow": "⬆", + "upside-down_face": "🙃", + "upwards_button": "🔼", + "vampire": "🧛", + "vampire_dark_skin_tone": "🧛🏿", + "vampire_light_skin_tone": "🧛🏻", + "vampire_medium-dark_skin_tone": "🧛🏾", + "vampire_medium-light_skin_tone": "🧛🏼", + "vampire_medium_skin_tone": "🧛🏽", + "vertical_traffic_light": "🚦", + "vibration_mode": "📳", + "victory_hand": "✌", + "victory_hand_dark_skin_tone": "✌🏿", + "victory_hand_light_skin_tone": "✌🏻", + "victory_hand_medium-dark_skin_tone": "✌🏾", + "victory_hand_medium-light_skin_tone": "✌🏼", + "victory_hand_medium_skin_tone": "✌🏽", + "video_camera": "📹", + "video_game": "🎮", + "videocassette": "📼", + "violin": "🎻", + "volcano": "🌋", + "volleyball": "🏐", + "vulcan_salute": "🖖", + "vulcan_salute_dark_skin_tone": "🖖🏿", + "vulcan_salute_light_skin_tone": "🖖🏻", + "vulcan_salute_medium-dark_skin_tone": "🖖🏾", + "vulcan_salute_medium-light_skin_tone": "🖖🏼", + "vulcan_salute_medium_skin_tone": "🖖🏽", + "waffle": "🧇", + "waning_crescent_moon": "🌘", + "waning_gibbous_moon": "🌖", + "warning": "⚠", + "wastebasket": "🗑", + "watch": "⌚", + "water_buffalo": "🐃", + "water_closet": "🚾", + "water_wave": "🌊", + "watermelon": "🍉", + "waving_hand": "👋", + "waving_hand_dark_skin_tone": "👋🏿", + "waving_hand_light_skin_tone": "👋🏻", + "waving_hand_medium-dark_skin_tone": "👋🏾", + "waving_hand_medium-light_skin_tone": "👋🏼", + "waving_hand_medium_skin_tone": "👋🏽", + "wavy_dash": "〰", + "waxing_crescent_moon": "🌒", + "waxing_gibbous_moon": "🌔", + "weary_cat_face": "🙀", + "weary_face": "😩", + "wedding": "💒", + "whale": "🐳", + "wheel_of_dharma": "☸", + "wheelchair_symbol": "♿", + "white_circle": "⚪", + "white_exclamation_mark": "❕", + "white_flag": "🏳", + "white_flower": "💮", + "white_hair": "🦳", + "white-haired_man": "👨\u200d🦳", + "white-haired_woman": "👩\u200d🦳", + "white_heart": "🤍", + "white_heavy_check_mark": "✅", + "white_large_square": "⬜", + "white_medium-small_square": "◽", + "white_medium_square": "◻", + "white_medium_star": "⭐", + "white_question_mark": "❔", + "white_small_square": "▫", + "white_square_button": "🔳", + "wilted_flower": "🥀", + "wind_chime": "🎐", + "wind_face": "🌬", + "wine_glass": "🍷", + "winking_face": "😉", + "winking_face_with_tongue": "😜", + "wolf_face": "🐺", + "woman": "👩", + "woman_artist": "👩\u200d🎨", + "woman_artist_dark_skin_tone": "👩🏿\u200d🎨", + "woman_artist_light_skin_tone": "👩🏻\u200d🎨", + "woman_artist_medium-dark_skin_tone": "👩🏾\u200d🎨", + "woman_artist_medium-light_skin_tone": "👩🏼\u200d🎨", + "woman_artist_medium_skin_tone": "👩🏽\u200d🎨", + "woman_astronaut": "👩\u200d🚀", + "woman_astronaut_dark_skin_tone": "👩🏿\u200d🚀", + "woman_astronaut_light_skin_tone": "👩🏻\u200d🚀", + "woman_astronaut_medium-dark_skin_tone": "👩🏾\u200d🚀", + "woman_astronaut_medium-light_skin_tone": "👩🏼\u200d🚀", + "woman_astronaut_medium_skin_tone": "👩🏽\u200d🚀", + "woman_biking": "🚴\u200d♀️", + "woman_biking_dark_skin_tone": "🚴🏿\u200d♀️", + "woman_biking_light_skin_tone": "🚴🏻\u200d♀️", + "woman_biking_medium-dark_skin_tone": "🚴🏾\u200d♀️", + "woman_biking_medium-light_skin_tone": "🚴🏼\u200d♀️", + "woman_biking_medium_skin_tone": "🚴🏽\u200d♀️", + "woman_bouncing_ball": "⛹️\u200d♀️", + "woman_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♀️", + "woman_bouncing_ball_light_skin_tone": "⛹🏻\u200d♀️", + "woman_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♀️", + "woman_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♀️", + "woman_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♀️", + "woman_bowing": "🙇\u200d♀️", + "woman_bowing_dark_skin_tone": "🙇🏿\u200d♀️", + "woman_bowing_light_skin_tone": "🙇🏻\u200d♀️", + "woman_bowing_medium-dark_skin_tone": "🙇🏾\u200d♀️", + "woman_bowing_medium-light_skin_tone": "🙇🏼\u200d♀️", + "woman_bowing_medium_skin_tone": "🙇🏽\u200d♀️", + "woman_cartwheeling": "🤸\u200d♀️", + "woman_cartwheeling_dark_skin_tone": "🤸🏿\u200d♀️", + "woman_cartwheeling_light_skin_tone": "🤸🏻\u200d♀️", + "woman_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♀️", + "woman_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♀️", + "woman_cartwheeling_medium_skin_tone": "🤸🏽\u200d♀️", + "woman_climbing": "🧗\u200d♀️", + "woman_climbing_dark_skin_tone": "🧗🏿\u200d♀️", + "woman_climbing_light_skin_tone": "🧗🏻\u200d♀️", + "woman_climbing_medium-dark_skin_tone": "🧗🏾\u200d♀️", + "woman_climbing_medium-light_skin_tone": "🧗🏼\u200d♀️", + "woman_climbing_medium_skin_tone": "🧗🏽\u200d♀️", + "woman_construction_worker": "👷\u200d♀️", + "woman_construction_worker_dark_skin_tone": "👷🏿\u200d♀️", + "woman_construction_worker_light_skin_tone": "👷🏻\u200d♀️", + "woman_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♀️", + "woman_construction_worker_medium-light_skin_tone": "👷🏼\u200d♀️", + "woman_construction_worker_medium_skin_tone": "👷🏽\u200d♀️", + "woman_cook": "👩\u200d🍳", + "woman_cook_dark_skin_tone": "👩🏿\u200d🍳", + "woman_cook_light_skin_tone": "👩🏻\u200d🍳", + "woman_cook_medium-dark_skin_tone": "👩🏾\u200d🍳", + "woman_cook_medium-light_skin_tone": "👩🏼\u200d🍳", + "woman_cook_medium_skin_tone": "👩🏽\u200d🍳", + "woman_dancing": "💃", + "woman_dancing_dark_skin_tone": "💃🏿", + "woman_dancing_light_skin_tone": "💃🏻", + "woman_dancing_medium-dark_skin_tone": "💃🏾", + "woman_dancing_medium-light_skin_tone": "💃🏼", + "woman_dancing_medium_skin_tone": "💃🏽", + "woman_dark_skin_tone": "👩🏿", + "woman_detective": "🕵️\u200d♀️", + "woman_detective_dark_skin_tone": "🕵🏿\u200d♀️", + "woman_detective_light_skin_tone": "🕵🏻\u200d♀️", + "woman_detective_medium-dark_skin_tone": "🕵🏾\u200d♀️", + "woman_detective_medium-light_skin_tone": "🕵🏼\u200d♀️", + "woman_detective_medium_skin_tone": "🕵🏽\u200d♀️", + "woman_elf": "🧝\u200d♀️", + "woman_elf_dark_skin_tone": "🧝🏿\u200d♀️", + "woman_elf_light_skin_tone": "🧝🏻\u200d♀️", + "woman_elf_medium-dark_skin_tone": "🧝🏾\u200d♀️", + "woman_elf_medium-light_skin_tone": "🧝🏼\u200d♀️", + "woman_elf_medium_skin_tone": "🧝🏽\u200d♀️", + "woman_facepalming": "🤦\u200d♀️", + "woman_facepalming_dark_skin_tone": "🤦🏿\u200d♀️", + "woman_facepalming_light_skin_tone": "🤦🏻\u200d♀️", + "woman_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♀️", + "woman_facepalming_medium-light_skin_tone": "🤦🏼\u200d♀️", + "woman_facepalming_medium_skin_tone": "🤦🏽\u200d♀️", + "woman_factory_worker": "👩\u200d🏭", + "woman_factory_worker_dark_skin_tone": "👩🏿\u200d🏭", + "woman_factory_worker_light_skin_tone": "👩🏻\u200d🏭", + "woman_factory_worker_medium-dark_skin_tone": "👩🏾\u200d🏭", + "woman_factory_worker_medium-light_skin_tone": "👩🏼\u200d🏭", + "woman_factory_worker_medium_skin_tone": "👩🏽\u200d🏭", + "woman_fairy": "🧚\u200d♀️", + "woman_fairy_dark_skin_tone": "🧚🏿\u200d♀️", + "woman_fairy_light_skin_tone": "🧚🏻\u200d♀️", + "woman_fairy_medium-dark_skin_tone": "🧚🏾\u200d♀️", + "woman_fairy_medium-light_skin_tone": "🧚🏼\u200d♀️", + "woman_fairy_medium_skin_tone": "🧚🏽\u200d♀️", + "woman_farmer": "👩\u200d🌾", + "woman_farmer_dark_skin_tone": "👩🏿\u200d🌾", + "woman_farmer_light_skin_tone": "👩🏻\u200d🌾", + "woman_farmer_medium-dark_skin_tone": "👩🏾\u200d🌾", + "woman_farmer_medium-light_skin_tone": "👩🏼\u200d🌾", + "woman_farmer_medium_skin_tone": "👩🏽\u200d🌾", + "woman_firefighter": "👩\u200d🚒", + "woman_firefighter_dark_skin_tone": "👩🏿\u200d🚒", + "woman_firefighter_light_skin_tone": "👩🏻\u200d🚒", + "woman_firefighter_medium-dark_skin_tone": "👩🏾\u200d🚒", + "woman_firefighter_medium-light_skin_tone": "👩🏼\u200d🚒", + "woman_firefighter_medium_skin_tone": "👩🏽\u200d🚒", + "woman_frowning": "🙍\u200d♀️", + "woman_frowning_dark_skin_tone": "🙍🏿\u200d♀️", + "woman_frowning_light_skin_tone": "🙍🏻\u200d♀️", + "woman_frowning_medium-dark_skin_tone": "🙍🏾\u200d♀️", + "woman_frowning_medium-light_skin_tone": "🙍🏼\u200d♀️", + "woman_frowning_medium_skin_tone": "🙍🏽\u200d♀️", + "woman_genie": "🧞\u200d♀️", + "woman_gesturing_no": "🙅\u200d♀️", + "woman_gesturing_no_dark_skin_tone": "🙅🏿\u200d♀️", + "woman_gesturing_no_light_skin_tone": "🙅🏻\u200d♀️", + "woman_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♀️", + "woman_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♀️", + "woman_gesturing_no_medium_skin_tone": "🙅🏽\u200d♀️", + "woman_gesturing_ok": "🙆\u200d♀️", + "woman_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♀️", + "woman_gesturing_ok_light_skin_tone": "🙆🏻\u200d♀️", + "woman_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♀️", + "woman_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♀️", + "woman_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♀️", + "woman_getting_haircut": "💇\u200d♀️", + "woman_getting_haircut_dark_skin_tone": "💇🏿\u200d♀️", + "woman_getting_haircut_light_skin_tone": "💇🏻\u200d♀️", + "woman_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♀️", + "woman_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♀️", + "woman_getting_haircut_medium_skin_tone": "💇🏽\u200d♀️", + "woman_getting_massage": "💆\u200d♀️", + "woman_getting_massage_dark_skin_tone": "💆🏿\u200d♀️", + "woman_getting_massage_light_skin_tone": "💆🏻\u200d♀️", + "woman_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♀️", + "woman_getting_massage_medium-light_skin_tone": "💆🏼\u200d♀️", + "woman_getting_massage_medium_skin_tone": "💆🏽\u200d♀️", + "woman_golfing": "🏌️\u200d♀️", + "woman_golfing_dark_skin_tone": "🏌🏿\u200d♀️", + "woman_golfing_light_skin_tone": "🏌🏻\u200d♀️", + "woman_golfing_medium-dark_skin_tone": "🏌🏾\u200d♀️", + "woman_golfing_medium-light_skin_tone": "🏌🏼\u200d♀️", + "woman_golfing_medium_skin_tone": "🏌🏽\u200d♀️", + "woman_guard": "💂\u200d♀️", + "woman_guard_dark_skin_tone": "💂🏿\u200d♀️", + "woman_guard_light_skin_tone": "💂🏻\u200d♀️", + "woman_guard_medium-dark_skin_tone": "💂🏾\u200d♀️", + "woman_guard_medium-light_skin_tone": "💂🏼\u200d♀️", + "woman_guard_medium_skin_tone": "💂🏽\u200d♀️", + "woman_health_worker": "👩\u200d⚕️", + "woman_health_worker_dark_skin_tone": "👩🏿\u200d⚕️", + "woman_health_worker_light_skin_tone": "👩🏻\u200d⚕️", + "woman_health_worker_medium-dark_skin_tone": "👩🏾\u200d⚕️", + "woman_health_worker_medium-light_skin_tone": "👩🏼\u200d⚕️", + "woman_health_worker_medium_skin_tone": "👩🏽\u200d⚕️", + "woman_in_lotus_position": "🧘\u200d♀️", + "woman_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♀️", + "woman_in_lotus_position_light_skin_tone": "🧘🏻\u200d♀️", + "woman_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♀️", + "woman_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♀️", + "woman_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♀️", + "woman_in_manual_wheelchair": "👩\u200d🦽", + "woman_in_motorized_wheelchair": "👩\u200d🦼", + "woman_in_steamy_room": "🧖\u200d♀️", + "woman_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♀️", + "woman_in_steamy_room_light_skin_tone": "🧖🏻\u200d♀️", + "woman_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♀️", + "woman_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♀️", + "woman_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♀️", + "woman_judge": "👩\u200d⚖️", + "woman_judge_dark_skin_tone": "👩🏿\u200d⚖️", + "woman_judge_light_skin_tone": "👩🏻\u200d⚖️", + "woman_judge_medium-dark_skin_tone": "👩🏾\u200d⚖️", + "woman_judge_medium-light_skin_tone": "👩🏼\u200d⚖️", + "woman_judge_medium_skin_tone": "👩🏽\u200d⚖️", + "woman_juggling": "🤹\u200d♀️", + "woman_juggling_dark_skin_tone": "🤹🏿\u200d♀️", + "woman_juggling_light_skin_tone": "🤹🏻\u200d♀️", + "woman_juggling_medium-dark_skin_tone": "🤹🏾\u200d♀️", + "woman_juggling_medium-light_skin_tone": "🤹🏼\u200d♀️", + "woman_juggling_medium_skin_tone": "🤹🏽\u200d♀️", + "woman_lifting_weights": "🏋️\u200d♀️", + "woman_lifting_weights_dark_skin_tone": "🏋🏿\u200d♀️", + "woman_lifting_weights_light_skin_tone": "🏋🏻\u200d♀️", + "woman_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♀️", + "woman_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♀️", + "woman_lifting_weights_medium_skin_tone": "🏋🏽\u200d♀️", + "woman_light_skin_tone": "👩🏻", + "woman_mage": "🧙\u200d♀️", + "woman_mage_dark_skin_tone": "🧙🏿\u200d♀️", + "woman_mage_light_skin_tone": "🧙🏻\u200d♀️", + "woman_mage_medium-dark_skin_tone": "🧙🏾\u200d♀️", + "woman_mage_medium-light_skin_tone": "🧙🏼\u200d♀️", + "woman_mage_medium_skin_tone": "🧙🏽\u200d♀️", + "woman_mechanic": "👩\u200d🔧", + "woman_mechanic_dark_skin_tone": "👩🏿\u200d🔧", + "woman_mechanic_light_skin_tone": "👩🏻\u200d🔧", + "woman_mechanic_medium-dark_skin_tone": "👩🏾\u200d🔧", + "woman_mechanic_medium-light_skin_tone": "👩🏼\u200d🔧", + "woman_mechanic_medium_skin_tone": "👩🏽\u200d🔧", + "woman_medium-dark_skin_tone": "👩🏾", + "woman_medium-light_skin_tone": "👩🏼", + "woman_medium_skin_tone": "👩🏽", + "woman_mountain_biking": "🚵\u200d♀️", + "woman_mountain_biking_dark_skin_tone": "🚵🏿\u200d♀️", + "woman_mountain_biking_light_skin_tone": "🚵🏻\u200d♀️", + "woman_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♀️", + "woman_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♀️", + "woman_mountain_biking_medium_skin_tone": "🚵🏽\u200d♀️", + "woman_office_worker": "👩\u200d💼", + "woman_office_worker_dark_skin_tone": "👩🏿\u200d💼", + "woman_office_worker_light_skin_tone": "👩🏻\u200d💼", + "woman_office_worker_medium-dark_skin_tone": "👩🏾\u200d💼", + "woman_office_worker_medium-light_skin_tone": "👩🏼\u200d💼", + "woman_office_worker_medium_skin_tone": "👩🏽\u200d💼", + "woman_pilot": "👩\u200d✈️", + "woman_pilot_dark_skin_tone": "👩🏿\u200d✈️", + "woman_pilot_light_skin_tone": "👩🏻\u200d✈️", + "woman_pilot_medium-dark_skin_tone": "👩🏾\u200d✈️", + "woman_pilot_medium-light_skin_tone": "👩🏼\u200d✈️", + "woman_pilot_medium_skin_tone": "👩🏽\u200d✈️", + "woman_playing_handball": "🤾\u200d♀️", + "woman_playing_handball_dark_skin_tone": "🤾🏿\u200d♀️", + "woman_playing_handball_light_skin_tone": "🤾🏻\u200d♀️", + "woman_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♀️", + "woman_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♀️", + "woman_playing_handball_medium_skin_tone": "🤾🏽\u200d♀️", + "woman_playing_water_polo": "🤽\u200d♀️", + "woman_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♀️", + "woman_playing_water_polo_light_skin_tone": "🤽🏻\u200d♀️", + "woman_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♀️", + "woman_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♀️", + "woman_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♀️", + "woman_police_officer": "👮\u200d♀️", + "woman_police_officer_dark_skin_tone": "👮🏿\u200d♀️", + "woman_police_officer_light_skin_tone": "👮🏻\u200d♀️", + "woman_police_officer_medium-dark_skin_tone": "👮🏾\u200d♀️", + "woman_police_officer_medium-light_skin_tone": "👮🏼\u200d♀️", + "woman_police_officer_medium_skin_tone": "👮🏽\u200d♀️", + "woman_pouting": "🙎\u200d♀️", + "woman_pouting_dark_skin_tone": "🙎🏿\u200d♀️", + "woman_pouting_light_skin_tone": "🙎🏻\u200d♀️", + "woman_pouting_medium-dark_skin_tone": "🙎🏾\u200d♀️", + "woman_pouting_medium-light_skin_tone": "🙎🏼\u200d♀️", + "woman_pouting_medium_skin_tone": "🙎🏽\u200d♀️", + "woman_raising_hand": "🙋\u200d♀️", + "woman_raising_hand_dark_skin_tone": "🙋🏿\u200d♀️", + "woman_raising_hand_light_skin_tone": "🙋🏻\u200d♀️", + "woman_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♀️", + "woman_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♀️", + "woman_raising_hand_medium_skin_tone": "🙋🏽\u200d♀️", + "woman_rowing_boat": "🚣\u200d♀️", + "woman_rowing_boat_dark_skin_tone": "🚣🏿\u200d♀️", + "woman_rowing_boat_light_skin_tone": "🚣🏻\u200d♀️", + "woman_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♀️", + "woman_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♀️", + "woman_rowing_boat_medium_skin_tone": "🚣🏽\u200d♀️", + "woman_running": "🏃\u200d♀️", + "woman_running_dark_skin_tone": "🏃🏿\u200d♀️", + "woman_running_light_skin_tone": "🏃🏻\u200d♀️", + "woman_running_medium-dark_skin_tone": "🏃🏾\u200d♀️", + "woman_running_medium-light_skin_tone": "🏃🏼\u200d♀️", + "woman_running_medium_skin_tone": "🏃🏽\u200d♀️", + "woman_scientist": "👩\u200d🔬", + "woman_scientist_dark_skin_tone": "👩🏿\u200d🔬", + "woman_scientist_light_skin_tone": "👩🏻\u200d🔬", + "woman_scientist_medium-dark_skin_tone": "👩🏾\u200d🔬", + "woman_scientist_medium-light_skin_tone": "👩🏼\u200d🔬", + "woman_scientist_medium_skin_tone": "👩🏽\u200d🔬", + "woman_shrugging": "🤷\u200d♀️", + "woman_shrugging_dark_skin_tone": "🤷🏿\u200d♀️", + "woman_shrugging_light_skin_tone": "🤷🏻\u200d♀️", + "woman_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♀️", + "woman_shrugging_medium-light_skin_tone": "🤷🏼\u200d♀️", + "woman_shrugging_medium_skin_tone": "🤷🏽\u200d♀️", + "woman_singer": "👩\u200d🎤", + "woman_singer_dark_skin_tone": "👩🏿\u200d🎤", + "woman_singer_light_skin_tone": "👩🏻\u200d🎤", + "woman_singer_medium-dark_skin_tone": "👩🏾\u200d🎤", + "woman_singer_medium-light_skin_tone": "👩🏼\u200d🎤", + "woman_singer_medium_skin_tone": "👩🏽\u200d🎤", + "woman_student": "👩\u200d🎓", + "woman_student_dark_skin_tone": "👩🏿\u200d🎓", + "woman_student_light_skin_tone": "👩🏻\u200d🎓", + "woman_student_medium-dark_skin_tone": "👩🏾\u200d🎓", + "woman_student_medium-light_skin_tone": "👩🏼\u200d🎓", + "woman_student_medium_skin_tone": "👩🏽\u200d🎓", + "woman_surfing": "🏄\u200d♀️", + "woman_surfing_dark_skin_tone": "🏄🏿\u200d♀️", + "woman_surfing_light_skin_tone": "🏄🏻\u200d♀️", + "woman_surfing_medium-dark_skin_tone": "🏄🏾\u200d♀️", + "woman_surfing_medium-light_skin_tone": "🏄🏼\u200d♀️", + "woman_surfing_medium_skin_tone": "🏄🏽\u200d♀️", + "woman_swimming": "🏊\u200d♀️", + "woman_swimming_dark_skin_tone": "🏊🏿\u200d♀️", + "woman_swimming_light_skin_tone": "🏊🏻\u200d♀️", + "woman_swimming_medium-dark_skin_tone": "🏊🏾\u200d♀️", + "woman_swimming_medium-light_skin_tone": "🏊🏼\u200d♀️", + "woman_swimming_medium_skin_tone": "🏊🏽\u200d♀️", + "woman_teacher": "👩\u200d🏫", + "woman_teacher_dark_skin_tone": "👩🏿\u200d🏫", + "woman_teacher_light_skin_tone": "👩🏻\u200d🏫", + "woman_teacher_medium-dark_skin_tone": "👩🏾\u200d🏫", + "woman_teacher_medium-light_skin_tone": "👩🏼\u200d🏫", + "woman_teacher_medium_skin_tone": "👩🏽\u200d🏫", + "woman_technologist": "👩\u200d💻", + "woman_technologist_dark_skin_tone": "👩🏿\u200d💻", + "woman_technologist_light_skin_tone": "👩🏻\u200d💻", + "woman_technologist_medium-dark_skin_tone": "👩🏾\u200d💻", + "woman_technologist_medium-light_skin_tone": "👩🏼\u200d💻", + "woman_technologist_medium_skin_tone": "👩🏽\u200d💻", + "woman_tipping_hand": "💁\u200d♀️", + "woman_tipping_hand_dark_skin_tone": "💁🏿\u200d♀️", + "woman_tipping_hand_light_skin_tone": "💁🏻\u200d♀️", + "woman_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♀️", + "woman_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♀️", + "woman_tipping_hand_medium_skin_tone": "💁🏽\u200d♀️", + "woman_vampire": "🧛\u200d♀️", + "woman_vampire_dark_skin_tone": "🧛🏿\u200d♀️", + "woman_vampire_light_skin_tone": "🧛🏻\u200d♀️", + "woman_vampire_medium-dark_skin_tone": "🧛🏾\u200d♀️", + "woman_vampire_medium-light_skin_tone": "🧛🏼\u200d♀️", + "woman_vampire_medium_skin_tone": "🧛🏽\u200d♀️", + "woman_walking": "🚶\u200d♀️", + "woman_walking_dark_skin_tone": "🚶🏿\u200d♀️", + "woman_walking_light_skin_tone": "🚶🏻\u200d♀️", + "woman_walking_medium-dark_skin_tone": "🚶🏾\u200d♀️", + "woman_walking_medium-light_skin_tone": "🚶🏼\u200d♀️", + "woman_walking_medium_skin_tone": "🚶🏽\u200d♀️", + "woman_wearing_turban": "👳\u200d♀️", + "woman_wearing_turban_dark_skin_tone": "👳🏿\u200d♀️", + "woman_wearing_turban_light_skin_tone": "👳🏻\u200d♀️", + "woman_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♀️", + "woman_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♀️", + "woman_wearing_turban_medium_skin_tone": "👳🏽\u200d♀️", + "woman_with_headscarf": "🧕", + "woman_with_headscarf_dark_skin_tone": "🧕🏿", + "woman_with_headscarf_light_skin_tone": "🧕🏻", + "woman_with_headscarf_medium-dark_skin_tone": "🧕🏾", + "woman_with_headscarf_medium-light_skin_tone": "🧕🏼", + "woman_with_headscarf_medium_skin_tone": "🧕🏽", + "woman_with_probing_cane": "👩\u200d🦯", + "woman_zombie": "🧟\u200d♀️", + "woman’s_boot": "👢", + "woman’s_clothes": "👚", + "woman’s_hat": "👒", + "woman’s_sandal": "👡", + "women_with_bunny_ears": "👯\u200d♀️", + "women_wrestling": "🤼\u200d♀️", + "women’s_room": "🚺", + "woozy_face": "🥴", + "world_map": "🗺", + "worried_face": "😟", + "wrapped_gift": "🎁", + "wrench": "🔧", + "writing_hand": "✍", + "writing_hand_dark_skin_tone": "✍🏿", + "writing_hand_light_skin_tone": "✍🏻", + "writing_hand_medium-dark_skin_tone": "✍🏾", + "writing_hand_medium-light_skin_tone": "✍🏼", + "writing_hand_medium_skin_tone": "✍🏽", + "yarn": "🧶", + "yawning_face": "🥱", + "yellow_circle": "🟡", + "yellow_heart": "💛", + "yellow_square": "🟨", + "yen_banknote": "💴", + "yo-yo": "🪀", + "yin_yang": "☯", + "zany_face": "🤪", + "zebra": "🦓", + "zipper-mouth_face": "🤐", + "zombie": "🧟", + "zzz": "💤", + "åland_islands": "🇦🇽", + "keycap_asterisk": "*⃣", + "keycap_digit_eight": "8⃣", + "keycap_digit_five": "5⃣", + "keycap_digit_four": "4⃣", + "keycap_digit_nine": "9⃣", + "keycap_digit_one": "1⃣", + "keycap_digit_seven": "7⃣", + "keycap_digit_six": "6⃣", + "keycap_digit_three": "3⃣", + "keycap_digit_two": "2⃣", + "keycap_digit_zero": "0⃣", + "keycap_number_sign": "#⃣", + "light_skin_tone": "🏻", + "medium_light_skin_tone": "🏼", + "medium_skin_tone": "🏽", + "medium_dark_skin_tone": "🏾", + "dark_skin_tone": "🏿", + "regional_indicator_symbol_letter_a": "🇦", + "regional_indicator_symbol_letter_b": "🇧", + "regional_indicator_symbol_letter_c": "🇨", + "regional_indicator_symbol_letter_d": "🇩", + "regional_indicator_symbol_letter_e": "🇪", + "regional_indicator_symbol_letter_f": "🇫", + "regional_indicator_symbol_letter_g": "🇬", + "regional_indicator_symbol_letter_h": "🇭", + "regional_indicator_symbol_letter_i": "🇮", + "regional_indicator_symbol_letter_j": "🇯", + "regional_indicator_symbol_letter_k": "🇰", + "regional_indicator_symbol_letter_l": "🇱", + "regional_indicator_symbol_letter_m": "🇲", + "regional_indicator_symbol_letter_n": "🇳", + "regional_indicator_symbol_letter_o": "🇴", + "regional_indicator_symbol_letter_p": "🇵", + "regional_indicator_symbol_letter_q": "🇶", + "regional_indicator_symbol_letter_r": "🇷", + "regional_indicator_symbol_letter_s": "🇸", + "regional_indicator_symbol_letter_t": "🇹", + "regional_indicator_symbol_letter_u": "🇺", + "regional_indicator_symbol_letter_v": "🇻", + "regional_indicator_symbol_letter_w": "🇼", + "regional_indicator_symbol_letter_x": "🇽", + "regional_indicator_symbol_letter_y": "🇾", + "regional_indicator_symbol_letter_z": "🇿", + "airplane_arriving": "🛬", + "space_invader": "👾", + "football": "🏈", + "anger": "💢", + "angry": "😠", + "anguished": "😧", + "signal_strength": "📶", + "arrows_counterclockwise": "🔄", + "arrow_heading_down": "⤵", + "arrow_heading_up": "⤴", + "art": "🎨", + "astonished": "😲", + "athletic_shoe": "👟", + "atm": "🏧", + "car": "🚗", + "red_car": "🚗", + "angel": "👼", + "back": "🔙", + "badminton_racquet_and_shuttlecock": "🏸", + "dollar": "💵", + "euro": "💶", + "pound": "💷", + "yen": "💴", + "barber": "💈", + "bath": "🛀", + "bear": "🐻", + "heartbeat": "💓", + "beer": "🍺", + "no_bell": "🔕", + "bento": "🍱", + "bike": "🚲", + "bicyclist": "🚴", + "8ball": "🎱", + "biohazard_sign": "☣", + "birthday": "🎂", + "black_circle_for_record": "⏺", + "clubs": "♣", + "diamonds": "♦", + "arrow_double_down": "⏬", + "hearts": "♥", + "rewind": "⏪", + "black_left__pointing_double_triangle_with_vertical_bar": "⏮", + "arrow_backward": "◀", + "black_medium_small_square": "◾", + "question": "❓", + "fast_forward": "⏩", + "black_right__pointing_double_triangle_with_vertical_bar": "⏭", + "arrow_forward": "▶", + "black_right__pointing_triangle_with_double_vertical_bar": "⏯", + "arrow_right": "➡", + "spades": "♠", + "black_square_for_stop": "⏹", + "sunny": "☀", + "phone": "☎", + "recycle": "♻", + "arrow_double_up": "⏫", + "busstop": "🚏", + "date": "📅", + "flags": "🎏", + "cat2": "🐈", + "joy_cat": "😹", + "smirk_cat": "😼", + "chart_with_downwards_trend": "📉", + "chart_with_upwards_trend": "📈", + "chart": "💹", + "mega": "📣", + "checkered_flag": "🏁", + "accept": "🉑", + "ideograph_advantage": "🉐", + "congratulations": "㊗", + "secret": "㊙", + "m": "Ⓜ", + "city_sunset": "🌆", + "clapper": "🎬", + "clap": "👏", + "beers": "🍻", + "clock830": "🕣", + "clock8": "🕗", + "clock1130": "🕦", + "clock11": "🕚", + "clock530": "🕠", + "clock5": "🕔", + "clock430": "🕟", + "clock4": "🕓", + "clock930": "🕤", + "clock9": "🕘", + "clock130": "🕜", + "clock1": "🕐", + "clock730": "🕢", + "clock7": "🕖", + "clock630": "🕡", + "clock6": "🕕", + "clock1030": "🕥", + "clock10": "🕙", + "clock330": "🕞", + "clock3": "🕒", + "clock1230": "🕧", + "clock12": "🕛", + "clock230": "🕝", + "clock2": "🕑", + "arrows_clockwise": "🔃", + "repeat": "🔁", + "repeat_one": "🔂", + "closed_lock_with_key": "🔐", + "mailbox_closed": "📪", + "mailbox": "📫", + "cloud_with_tornado": "🌪", + "cocktail": "🍸", + "boom": "💥", + "compression": "🗜", + "confounded": "😖", + "confused": "😕", + "rice": "🍚", + "cow2": "🐄", + "cricket_bat_and_ball": "🏏", + "x": "❌", + "cry": "😢", + "curry": "🍛", + "dagger_knife": "🗡", + "dancer": "💃", + "dark_sunglasses": "🕶", + "dash": "💨", + "truck": "🚚", + "derelict_house_building": "🏚", + "diamond_shape_with_a_dot_inside": "💠", + "dart": "🎯", + "disappointed_relieved": "😥", + "disappointed": "😞", + "do_not_litter": "🚯", + "dog2": "🐕", + "flipper": "🐬", + "loop": "➿", + "bangbang": "‼", + "double_vertical_bar": "⏸", + "dove_of_peace": "🕊", + "small_red_triangle_down": "🔻", + "arrow_down_small": "🔽", + "arrow_down": "⬇", + "dromedary_camel": "🐪", + "e__mail": "📧", + "corn": "🌽", + "ear_of_rice": "🌾", + "earth_americas": "🌎", + "earth_asia": "🌏", + "earth_africa": "🌍", + "eight_pointed_black_star": "✴", + "eight_spoked_asterisk": "✳", + "eject_symbol": "⏏", + "bulb": "💡", + "emoji_modifier_fitzpatrick_type__1__2": "🏻", + "emoji_modifier_fitzpatrick_type__3": "🏼", + "emoji_modifier_fitzpatrick_type__4": "🏽", + "emoji_modifier_fitzpatrick_type__5": "🏾", + "emoji_modifier_fitzpatrick_type__6": "🏿", + "end": "🔚", + "email": "✉", + "european_castle": "🏰", + "european_post_office": "🏤", + "interrobang": "⁉", + "expressionless": "😑", + "eyeglasses": "👓", + "massage": "💆", + "yum": "😋", + "scream": "😱", + "kissing_heart": "😘", + "sweat": "😓", + "face_with_head__bandage": "🤕", + "triumph": "😤", + "mask": "😷", + "no_good": "🙅", + "ok_woman": "🙆", + "open_mouth": "😮", + "cold_sweat": "😰", + "stuck_out_tongue": "😛", + "stuck_out_tongue_closed_eyes": "😝", + "stuck_out_tongue_winking_eye": "😜", + "joy": "😂", + "no_mouth": "😶", + "santa": "🎅", + "fax": "📠", + "fearful": "😨", + "field_hockey_stick_and_ball": "🏑", + "first_quarter_moon_with_face": "🌛", + "fish_cake": "🍥", + "fishing_pole_and_fish": "🎣", + "facepunch": "👊", + "punch": "👊", + "flag_for_afghanistan": "🇦🇫", + "flag_for_albania": "🇦🇱", + "flag_for_algeria": "🇩🇿", + "flag_for_american_samoa": "🇦🇸", + "flag_for_andorra": "🇦🇩", + "flag_for_angola": "🇦🇴", + "flag_for_anguilla": "🇦🇮", + "flag_for_antarctica": "🇦🇶", + "flag_for_antigua_&_barbuda": "🇦🇬", + "flag_for_argentina": "🇦🇷", + "flag_for_armenia": "🇦🇲", + "flag_for_aruba": "🇦🇼", + "flag_for_ascension_island": "🇦🇨", + "flag_for_australia": "🇦🇺", + "flag_for_austria": "🇦🇹", + "flag_for_azerbaijan": "🇦🇿", + "flag_for_bahamas": "🇧🇸", + "flag_for_bahrain": "🇧🇭", + "flag_for_bangladesh": "🇧🇩", + "flag_for_barbados": "🇧🇧", + "flag_for_belarus": "🇧🇾", + "flag_for_belgium": "🇧🇪", + "flag_for_belize": "🇧🇿", + "flag_for_benin": "🇧🇯", + "flag_for_bermuda": "🇧🇲", + "flag_for_bhutan": "🇧🇹", + "flag_for_bolivia": "🇧🇴", + "flag_for_bosnia_&_herzegovina": "🇧🇦", + "flag_for_botswana": "🇧🇼", + "flag_for_bouvet_island": "🇧🇻", + "flag_for_brazil": "🇧🇷", + "flag_for_british_indian_ocean_territory": "🇮🇴", + "flag_for_british_virgin_islands": "🇻🇬", + "flag_for_brunei": "🇧🇳", + "flag_for_bulgaria": "🇧🇬", + "flag_for_burkina_faso": "🇧🇫", + "flag_for_burundi": "🇧🇮", + "flag_for_cambodia": "🇰🇭", + "flag_for_cameroon": "🇨🇲", + "flag_for_canada": "🇨🇦", + "flag_for_canary_islands": "🇮🇨", + "flag_for_cape_verde": "🇨🇻", + "flag_for_caribbean_netherlands": "🇧🇶", + "flag_for_cayman_islands": "🇰🇾", + "flag_for_central_african_republic": "🇨🇫", + "flag_for_ceuta_&_melilla": "🇪🇦", + "flag_for_chad": "🇹🇩", + "flag_for_chile": "🇨🇱", + "flag_for_china": "🇨🇳", + "flag_for_christmas_island": "🇨🇽", + "flag_for_clipperton_island": "🇨🇵", + "flag_for_cocos__islands": "🇨🇨", + "flag_for_colombia": "🇨🇴", + "flag_for_comoros": "🇰🇲", + "flag_for_congo____brazzaville": "🇨🇬", + "flag_for_congo____kinshasa": "🇨🇩", + "flag_for_cook_islands": "🇨🇰", + "flag_for_costa_rica": "🇨🇷", + "flag_for_croatia": "🇭🇷", + "flag_for_cuba": "🇨🇺", + "flag_for_curaçao": "🇨🇼", + "flag_for_cyprus": "🇨🇾", + "flag_for_czech_republic": "🇨🇿", + "flag_for_côte_d’ivoire": "🇨🇮", + "flag_for_denmark": "🇩🇰", + "flag_for_diego_garcia": "🇩🇬", + "flag_for_djibouti": "🇩🇯", + "flag_for_dominica": "🇩🇲", + "flag_for_dominican_republic": "🇩🇴", + "flag_for_ecuador": "🇪🇨", + "flag_for_egypt": "🇪🇬", + "flag_for_el_salvador": "🇸🇻", + "flag_for_equatorial_guinea": "🇬🇶", + "flag_for_eritrea": "🇪🇷", + "flag_for_estonia": "🇪🇪", + "flag_for_ethiopia": "🇪🇹", + "flag_for_european_union": "🇪🇺", + "flag_for_falkland_islands": "🇫🇰", + "flag_for_faroe_islands": "🇫🇴", + "flag_for_fiji": "🇫🇯", + "flag_for_finland": "🇫🇮", + "flag_for_france": "🇫🇷", + "flag_for_french_guiana": "🇬🇫", + "flag_for_french_polynesia": "🇵🇫", + "flag_for_french_southern_territories": "🇹🇫", + "flag_for_gabon": "🇬🇦", + "flag_for_gambia": "🇬🇲", + "flag_for_georgia": "🇬🇪", + "flag_for_germany": "🇩🇪", + "flag_for_ghana": "🇬🇭", + "flag_for_gibraltar": "🇬🇮", + "flag_for_greece": "🇬🇷", + "flag_for_greenland": "🇬🇱", + "flag_for_grenada": "🇬🇩", + "flag_for_guadeloupe": "🇬🇵", + "flag_for_guam": "🇬🇺", + "flag_for_guatemala": "🇬🇹", + "flag_for_guernsey": "🇬🇬", + "flag_for_guinea": "🇬🇳", + "flag_for_guinea__bissau": "🇬🇼", + "flag_for_guyana": "🇬🇾", + "flag_for_haiti": "🇭🇹", + "flag_for_heard_&_mcdonald_islands": "🇭🇲", + "flag_for_honduras": "🇭🇳", + "flag_for_hong_kong": "🇭🇰", + "flag_for_hungary": "🇭🇺", + "flag_for_iceland": "🇮🇸", + "flag_for_india": "🇮🇳", + "flag_for_indonesia": "🇮🇩", + "flag_for_iran": "🇮🇷", + "flag_for_iraq": "🇮🇶", + "flag_for_ireland": "🇮🇪", + "flag_for_isle_of_man": "🇮🇲", + "flag_for_israel": "🇮🇱", + "flag_for_italy": "🇮🇹", + "flag_for_jamaica": "🇯🇲", + "flag_for_japan": "🇯🇵", + "flag_for_jersey": "🇯🇪", + "flag_for_jordan": "🇯🇴", + "flag_for_kazakhstan": "🇰🇿", + "flag_for_kenya": "🇰🇪", + "flag_for_kiribati": "🇰🇮", + "flag_for_kosovo": "🇽🇰", + "flag_for_kuwait": "🇰🇼", + "flag_for_kyrgyzstan": "🇰🇬", + "flag_for_laos": "🇱🇦", + "flag_for_latvia": "🇱🇻", + "flag_for_lebanon": "🇱🇧", + "flag_for_lesotho": "🇱🇸", + "flag_for_liberia": "🇱🇷", + "flag_for_libya": "🇱🇾", + "flag_for_liechtenstein": "🇱🇮", + "flag_for_lithuania": "🇱🇹", + "flag_for_luxembourg": "🇱🇺", + "flag_for_macau": "🇲🇴", + "flag_for_macedonia": "🇲🇰", + "flag_for_madagascar": "🇲🇬", + "flag_for_malawi": "🇲🇼", + "flag_for_malaysia": "🇲🇾", + "flag_for_maldives": "🇲🇻", + "flag_for_mali": "🇲🇱", + "flag_for_malta": "🇲🇹", + "flag_for_marshall_islands": "🇲🇭", + "flag_for_martinique": "🇲🇶", + "flag_for_mauritania": "🇲🇷", + "flag_for_mauritius": "🇲🇺", + "flag_for_mayotte": "🇾🇹", + "flag_for_mexico": "🇲🇽", + "flag_for_micronesia": "🇫🇲", + "flag_for_moldova": "🇲🇩", + "flag_for_monaco": "🇲🇨", + "flag_for_mongolia": "🇲🇳", + "flag_for_montenegro": "🇲🇪", + "flag_for_montserrat": "🇲🇸", + "flag_for_morocco": "🇲🇦", + "flag_for_mozambique": "🇲🇿", + "flag_for_myanmar": "🇲🇲", + "flag_for_namibia": "🇳🇦", + "flag_for_nauru": "🇳🇷", + "flag_for_nepal": "🇳🇵", + "flag_for_netherlands": "🇳🇱", + "flag_for_new_caledonia": "🇳🇨", + "flag_for_new_zealand": "🇳🇿", + "flag_for_nicaragua": "🇳🇮", + "flag_for_niger": "🇳🇪", + "flag_for_nigeria": "🇳🇬", + "flag_for_niue": "🇳🇺", + "flag_for_norfolk_island": "🇳🇫", + "flag_for_north_korea": "🇰🇵", + "flag_for_northern_mariana_islands": "🇲🇵", + "flag_for_norway": "🇳🇴", + "flag_for_oman": "🇴🇲", + "flag_for_pakistan": "🇵🇰", + "flag_for_palau": "🇵🇼", + "flag_for_palestinian_territories": "🇵🇸", + "flag_for_panama": "🇵🇦", + "flag_for_papua_new_guinea": "🇵🇬", + "flag_for_paraguay": "🇵🇾", + "flag_for_peru": "🇵🇪", + "flag_for_philippines": "🇵🇭", + "flag_for_pitcairn_islands": "🇵🇳", + "flag_for_poland": "🇵🇱", + "flag_for_portugal": "🇵🇹", + "flag_for_puerto_rico": "🇵🇷", + "flag_for_qatar": "🇶🇦", + "flag_for_romania": "🇷🇴", + "flag_for_russia": "🇷🇺", + "flag_for_rwanda": "🇷🇼", + "flag_for_réunion": "🇷🇪", + "flag_for_samoa": "🇼🇸", + "flag_for_san_marino": "🇸🇲", + "flag_for_saudi_arabia": "🇸🇦", + "flag_for_senegal": "🇸🇳", + "flag_for_serbia": "🇷🇸", + "flag_for_seychelles": "🇸🇨", + "flag_for_sierra_leone": "🇸🇱", + "flag_for_singapore": "🇸🇬", + "flag_for_sint_maarten": "🇸🇽", + "flag_for_slovakia": "🇸🇰", + "flag_for_slovenia": "🇸🇮", + "flag_for_solomon_islands": "🇸🇧", + "flag_for_somalia": "🇸🇴", + "flag_for_south_africa": "🇿🇦", + "flag_for_south_georgia_&_south_sandwich_islands": "🇬🇸", + "flag_for_south_korea": "🇰🇷", + "flag_for_south_sudan": "🇸🇸", + "flag_for_spain": "🇪🇸", + "flag_for_sri_lanka": "🇱🇰", + "flag_for_st._barthélemy": "🇧🇱", + "flag_for_st._helena": "🇸🇭", + "flag_for_st._kitts_&_nevis": "🇰🇳", + "flag_for_st._lucia": "🇱🇨", + "flag_for_st._martin": "🇲🇫", + "flag_for_st._pierre_&_miquelon": "🇵🇲", + "flag_for_st._vincent_&_grenadines": "🇻🇨", + "flag_for_sudan": "🇸🇩", + "flag_for_suriname": "🇸🇷", + "flag_for_svalbard_&_jan_mayen": "🇸🇯", + "flag_for_swaziland": "🇸🇿", + "flag_for_sweden": "🇸🇪", + "flag_for_switzerland": "🇨🇭", + "flag_for_syria": "🇸🇾", + "flag_for_são_tomé_&_príncipe": "🇸🇹", + "flag_for_taiwan": "🇹🇼", + "flag_for_tajikistan": "🇹🇯", + "flag_for_tanzania": "🇹🇿", + "flag_for_thailand": "🇹🇭", + "flag_for_timor__leste": "🇹🇱", + "flag_for_togo": "🇹🇬", + "flag_for_tokelau": "🇹🇰", + "flag_for_tonga": "🇹🇴", + "flag_for_trinidad_&_tobago": "🇹🇹", + "flag_for_tristan_da_cunha": "🇹🇦", + "flag_for_tunisia": "🇹🇳", + "flag_for_turkey": "🇹🇷", + "flag_for_turkmenistan": "🇹🇲", + "flag_for_turks_&_caicos_islands": "🇹🇨", + "flag_for_tuvalu": "🇹🇻", + "flag_for_u.s._outlying_islands": "🇺🇲", + "flag_for_u.s._virgin_islands": "🇻🇮", + "flag_for_uganda": "🇺🇬", + "flag_for_ukraine": "🇺🇦", + "flag_for_united_arab_emirates": "🇦🇪", + "flag_for_united_kingdom": "🇬🇧", + "flag_for_united_states": "🇺🇸", + "flag_for_uruguay": "🇺🇾", + "flag_for_uzbekistan": "🇺🇿", + "flag_for_vanuatu": "🇻🇺", + "flag_for_vatican_city": "🇻🇦", + "flag_for_venezuela": "🇻🇪", + "flag_for_vietnam": "🇻🇳", + "flag_for_wallis_&_futuna": "🇼🇫", + "flag_for_western_sahara": "🇪🇭", + "flag_for_yemen": "🇾🇪", + "flag_for_zambia": "🇿🇲", + "flag_for_zimbabwe": "🇿🇼", + "flag_for_åland_islands": "🇦🇽", + "golf": "⛳", + "fleur__de__lis": "⚜", + "muscle": "💪", + "flushed": "😳", + "frame_with_picture": "🖼", + "fries": "🍟", + "frog": "🐸", + "hatched_chick": "🐥", + "frowning": "😦", + "fuelpump": "⛽", + "full_moon_with_face": "🌝", + "gem": "💎", + "star2": "🌟", + "golfer": "🏌", + "mortar_board": "🎓", + "grimacing": "😬", + "smile_cat": "😸", + "grinning": "😀", + "grin": "😁", + "heartpulse": "💗", + "guardsman": "💂", + "haircut": "💇", + "hamster": "🐹", + "raising_hand": "🙋", + "headphones": "🎧", + "hear_no_evil": "🙉", + "cupid": "💘", + "gift_heart": "💝", + "heart": "❤", + "exclamation": "❗", + "heavy_exclamation_mark": "❗", + "heavy_heart_exclamation_mark_ornament": "❣", + "o": "⭕", + "helm_symbol": "⎈", + "helmet_with_white_cross": "⛑", + "high_heel": "👠", + "bullettrain_side": "🚄", + "bullettrain_front": "🚅", + "high_brightness": "🔆", + "zap": "⚡", + "hocho": "🔪", + "knife": "🔪", + "bee": "🐝", + "traffic_light": "🚥", + "racehorse": "🐎", + "coffee": "☕", + "hotsprings": "♨", + "hourglass": "⌛", + "hourglass_flowing_sand": "⏳", + "house_buildings": "🏘", + "100": "💯", + "hushed": "😯", + "ice_hockey_stick_and_puck": "🏒", + "imp": "👿", + "information_desk_person": "💁", + "information_source": "ℹ", + "capital_abcd": "🔠", + "abc": "🔤", + "abcd": "🔡", + "1234": "🔢", + "symbols": "🔣", + "izakaya_lantern": "🏮", + "lantern": "🏮", + "jack_o_lantern": "🎃", + "dolls": "🎎", + "japanese_goblin": "👺", + "japanese_ogre": "👹", + "beginner": "🔰", + "zero": "0️⃣", + "one": "1️⃣", + "ten": "🔟", + "two": "2️⃣", + "three": "3️⃣", + "four": "4️⃣", + "five": "5️⃣", + "six": "6️⃣", + "seven": "7️⃣", + "eight": "8️⃣", + "nine": "9️⃣", + "couplekiss": "💏", + "kissing_cat": "😽", + "kissing": "😗", + "kissing_closed_eyes": "😚", + "kissing_smiling_eyes": "😙", + "beetle": "🐞", + "large_blue_circle": "🔵", + "last_quarter_moon_with_face": "🌜", + "leaves": "🍃", + "mag": "🔍", + "left_right_arrow": "↔", + "leftwards_arrow_with_hook": "↩", + "arrow_left": "⬅", + "lock": "🔒", + "lock_with_ink_pen": "🔏", + "sob": "😭", + "low_brightness": "🔅", + "lower_left_ballpoint_pen": "🖊", + "lower_left_crayon": "🖍", + "lower_left_fountain_pen": "🖋", + "lower_left_paintbrush": "🖌", + "mahjong": "🀄", + "couple": "👫", + "man_in_business_suit_levitating": "🕴", + "man_with_gua_pi_mao": "👲", + "man_with_turban": "👳", + "mans_shoe": "👞", + "shoe": "👞", + "menorah_with_nine_branches": "🕎", + "mens": "🚹", + "minidisc": "💽", + "iphone": "📱", + "calling": "📲", + "money__mouth_face": "🤑", + "moneybag": "💰", + "rice_scene": "🎑", + "mountain_bicyclist": "🚵", + "mouse2": "🐁", + "lips": "👄", + "moyai": "🗿", + "notes": "🎶", + "nail_care": "💅", + "ab": "🆎", + "negative_squared_cross_mark": "❎", + "a": "🅰", + "b": "🅱", + "o2": "🅾", + "parking": "🅿", + "new_moon_with_face": "🌚", + "no_entry_sign": "🚫", + "underage": "🔞", + "non__potable_water": "🚱", + "arrow_upper_right": "↗", + "arrow_upper_left": "↖", + "office": "🏢", + "older_man": "👴", + "older_woman": "👵", + "om_symbol": "🕉", + "on": "🔛", + "book": "📖", + "unlock": "🔓", + "mailbox_with_no_mail": "📭", + "mailbox_with_mail": "📬", + "cd": "💿", + "tada": "🎉", + "feet": "🐾", + "walking": "🚶", + "pencil2": "✏", + "pensive": "😔", + "persevere": "😣", + "bow": "🙇", + "raised_hands": "🙌", + "person_with_ball": "⛹", + "person_with_blond_hair": "👱", + "pray": "🙏", + "person_with_pouting_face": "🙎", + "computer": "💻", + "pig2": "🐖", + "hankey": "💩", + "poop": "💩", + "shit": "💩", + "bamboo": "🎍", + "gun": "🔫", + "black_joker": "🃏", + "rotating_light": "🚨", + "cop": "👮", + "stew": "🍲", + "pouch": "👝", + "pouting_cat": "😾", + "rage": "😡", + "put_litter_in_its_place": "🚮", + "rabbit2": "🐇", + "racing_motorcycle": "🏍", + "radioactive_sign": "☢", + "fist": "✊", + "hand": "✋", + "raised_hand_with_fingers_splayed": "🖐", + "raised_hand_with_part_between_middle_and_ring_fingers": "🖖", + "blue_car": "🚙", + "apple": "🍎", + "relieved": "😌", + "reversed_hand_with_middle_finger_extended": "🖕", + "mag_right": "🔎", + "arrow_right_hook": "↪", + "sweet_potato": "🍠", + "robot": "🤖", + "rolled__up_newspaper": "🗞", + "rowboat": "🚣", + "runner": "🏃", + "running": "🏃", + "running_shirt_with_sash": "🎽", + "boat": "⛵", + "scales": "⚖", + "school_satchel": "🎒", + "scorpius": "♏", + "see_no_evil": "🙈", + "sheep": "🐑", + "stars": "🌠", + "cake": "🍰", + "six_pointed_star": "🔯", + "ski": "🎿", + "sleeping_accommodation": "🛌", + "sleeping": "😴", + "sleepy": "😪", + "sleuth_or_spy": "🕵", + "heart_eyes_cat": "😻", + "smiley_cat": "😺", + "innocent": "😇", + "heart_eyes": "😍", + "smiling_imp": "😈", + "smiley": "😃", + "sweat_smile": "😅", + "smile": "😄", + "laughing": "😆", + "satisfied": "😆", + "blush": "😊", + "smirk": "😏", + "smoking": "🚬", + "snow_capped_mountain": "🏔", + "soccer": "⚽", + "icecream": "🍦", + "soon": "🔜", + "arrow_lower_right": "↘", + "arrow_lower_left": "↙", + "speak_no_evil": "🙊", + "speaker": "🔈", + "mute": "🔇", + "sound": "🔉", + "loud_sound": "🔊", + "speaking_head_in_silhouette": "🗣", + "spiral_calendar_pad": "🗓", + "spiral_note_pad": "🗒", + "shell": "🐚", + "sweat_drops": "💦", + "u5272": "🈹", + "u5408": "🈴", + "u55b6": "🈺", + "u6307": "🈯", + "u6708": "🈷", + "u6709": "🈶", + "u6e80": "🈵", + "u7121": "🈚", + "u7533": "🈸", + "u7981": "🈲", + "u7a7a": "🈳", + "cl": "🆑", + "cool": "🆒", + "free": "🆓", + "id": "🆔", + "koko": "🈁", + "sa": "🈂", + "new": "🆕", + "ng": "🆖", + "ok": "🆗", + "sos": "🆘", + "up": "🆙", + "vs": "🆚", + "steam_locomotive": "🚂", + "ramen": "🍜", + "partly_sunny": "⛅", + "city_sunrise": "🌇", + "surfer": "🏄", + "swimmer": "🏊", + "shirt": "👕", + "tshirt": "👕", + "table_tennis_paddle_and_ball": "🏓", + "tea": "🍵", + "tv": "📺", + "three_button_mouse": "🖱", + "+1": "👍", + "thumbsup": "👍", + "__1": "👎", + "-1": "👎", + "thumbsdown": "👎", + "thunder_cloud_and_rain": "⛈", + "tiger2": "🐅", + "tophat": "🎩", + "top": "🔝", + "tm": "™", + "train2": "🚆", + "triangular_flag_on_post": "🚩", + "trident": "🔱", + "twisted_rightwards_arrows": "🔀", + "unamused": "😒", + "small_red_triangle": "🔺", + "arrow_up_small": "🔼", + "arrow_up_down": "↕", + "upside__down_face": "🙃", + "arrow_up": "⬆", + "v": "✌", + "vhs": "📼", + "wc": "🚾", + "ocean": "🌊", + "waving_black_flag": "🏴", + "wave": "👋", + "waving_white_flag": "🏳", + "moon": "🌔", + "scream_cat": "🙀", + "weary": "😩", + "weight_lifter": "🏋", + "whale2": "🐋", + "wheelchair": "♿", + "point_down": "👇", + "grey_exclamation": "❕", + "white_frowning_face": "☹", + "white_check_mark": "✅", + "point_left": "👈", + "white_medium_small_square": "◽", + "star": "⭐", + "grey_question": "❔", + "point_right": "👉", + "relaxed": "☺", + "white_sun_behind_cloud": "🌥", + "white_sun_behind_cloud_with_rain": "🌦", + "white_sun_with_small_cloud": "🌤", + "point_up_2": "👆", + "point_up": "☝", + "wind_blowing_face": "🌬", + "wink": "😉", + "wolf": "🐺", + "dancers": "👯", + "boot": "👢", + "womans_clothes": "👚", + "womans_hat": "👒", + "sandal": "👡", + "womens": "🚺", + "worried": "😟", + "gift": "🎁", + "zipper__mouth_face": "🤐", + "regional_indicator_a": "🇦", + "regional_indicator_b": "🇧", + "regional_indicator_c": "🇨", + "regional_indicator_d": "🇩", + "regional_indicator_e": "🇪", + "regional_indicator_f": "🇫", + "regional_indicator_g": "🇬", + "regional_indicator_h": "🇭", + "regional_indicator_i": "🇮", + "regional_indicator_j": "🇯", + "regional_indicator_k": "🇰", + "regional_indicator_l": "🇱", + "regional_indicator_m": "🇲", + "regional_indicator_n": "🇳", + "regional_indicator_o": "🇴", + "regional_indicator_p": "🇵", + "regional_indicator_q": "🇶", + "regional_indicator_r": "🇷", + "regional_indicator_s": "🇸", + "regional_indicator_t": "🇹", + "regional_indicator_u": "🇺", + "regional_indicator_v": "🇻", + "regional_indicator_w": "🇼", + "regional_indicator_x": "🇽", + "regional_indicator_y": "🇾", + "regional_indicator_z": "🇿", +} diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py new file mode 100644 index 000000000..bb2cafa18 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py @@ -0,0 +1,32 @@ +from typing import Callable, Match, Optional +import re + +from ._emoji_codes import EMOJI + + +_ReStringMatch = Match[str] # regex match object +_ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub +_EmojiSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re + + +def _emoji_replace( + text: str, + default_variant: Optional[str] = None, + _emoji_sub: _EmojiSubMethod = re.compile(r"(:(\S*?)(?:(?:\-)(emoji|text))?:)").sub, +) -> str: + """Replace emoji code in text.""" + get_emoji = EMOJI.__getitem__ + variants = {"text": "\uFE0E", "emoji": "\uFE0F"} + get_variant = variants.get + default_variant_code = variants.get(default_variant, "") if default_variant else "" + + def do_replace(match: Match[str]) -> str: + emoji_code, emoji_name, variant = match.groups() + try: + return get_emoji(emoji_name.lower()) + get_variant( + variant, default_variant_code + ) + except KeyError: + return emoji_code + + return _emoji_sub(do_replace, text) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py new file mode 100644 index 000000000..094d2dc22 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py @@ -0,0 +1,76 @@ +CONSOLE_HTML_FORMAT = """\ + + + + + + + +

{code}
+ + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 000000000..cbd6da9be --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 000000000..b17ee6511 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 000000000..30446ceb3 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 000000000..fc16c8443 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 000000000..01c6cafbe --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 000000000..b659673ef --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 000000000..3c748d33e --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 000000000..4f6d8b2d7 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 000000000..e8a3a674e --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,160 @@ +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 000000000..d0bb1fe75 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 000000000..194564e76 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 000000000..a2ca6be03 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 000000000..81b108290 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 000000000..10fc0d7e9 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,72 @@ +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 000000000..5ece05649 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 000000000..c45f193f7 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,56 @@ +import re +from typing import Iterable, List, Tuple + +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]]: + 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]: + divides: List[int] = [] + append = divides.append + line_position = 0 + _cell_len = cell_len + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + if line_position + word_length > width: + if word_length > width: + if fold: + chopped_words = chop_cells(word, max_size=width, position=0) + for last, line in loop_last(chopped_words): + if start: + append(start) + + if last: + line_position = _cell_len(line) + else: + start += len(line) + else: + if start: + append(start) + line_position = _cell_len(word) + elif line_position and start: + append(start) + line_position = _cell_len(word) + else: + line_position += _cell_len(word) + return divides + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10, position=2)) diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 000000000..e6e498efa --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 000000000..c310b66e7 --- /dev/null +++ b/implement-cowsay/.venv/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[VerticalAlginMethod], 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 000000000..66365e653 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 000000000..ed86a552d --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,94 @@ +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 000000000..97d2a9444 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,517 @@ +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) + + +ASCII: Box = Box( + """\ ++--+ +| || +|-+| +| || +|-+| +|-+| +| || ++--+ +""", + ascii=True, +) + +ASCII2: Box = Box( + """\ ++-++ +| || ++-++ +| || ++-++ ++-++ +| || ++-++ +""", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + """\ ++-++ +| || ++=++ +| || ++-++ ++-++ +| || ++-++ +""", + ascii=True, +) + +SQUARE: Box = Box( + """\ +┌─┬┐ +│ ││ +├─┼┤ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + """\ +┌─┬┐ +│ ││ +╞═╪╡ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +MINIMAL: Box = Box( + """\ + ╷ + │ +╶─┼╴ + │ +╶─┼╴ +╶─┼╴ + │ + ╵ +""" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + """\ + ╷ + │ +╺━┿╸ + │ +╶─┼╴ +╶─┼╴ + │ + ╵ +""" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + """\ + ╷ + │ + ═╪ + │ + ─┼ + ─┼ + │ + ╵ +""" +) + + +SIMPLE: Box = Box( + """\ + + + ── + + + ── + + +""" +) + +SIMPLE_HEAD: Box = Box( + """\ + + + ── + + + + + +""" +) + + +SIMPLE_HEAVY: Box = Box( + """\ + + + ━━ + + + ━━ + + +""" +) + + +HORIZONTALS: Box = Box( + """\ + ── + + ── + + ── + ── + + ── +""" +) + +ROUNDED: Box = Box( + """\ +╭─┬╮ +│ ││ +├─┼┤ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +╰─┴╯ +""" +) + +HEAVY: Box = Box( + """\ +┏━┳┓ +┃ ┃┃ +┣━╋┫ +┃ ┃┃ +┣━╋┫ +┣━╋┫ +┃ ┃┃ +┗━┻┛ +""" +) + +HEAVY_EDGE: Box = Box( + """\ +┏━┯┓ +┃ │┃ +┠─┼┨ +┃ │┃ +┠─┼┨ +┠─┼┨ +┃ │┃ +┗━┷┛ +""" +) + +HEAVY_HEAD: Box = Box( + """\ +┏━┳┓ +┃ ┃┃ +┡━╇┩ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +DOUBLE: Box = Box( + """\ +╔═╦╗ +║ ║║ +╠═╬╣ +║ ║║ +╠═╬╣ +╠═╬╣ +║ ║║ +╚═╩╝ +""" +) + +DOUBLE_EDGE: Box = Box( + """\ +╔═╤╗ +║ │║ +╟─┼╢ +║ │║ +╟─┼╢ +╟─┼╢ +║ │║ +╚═╧╝ +""" +) + +MARKDOWN: Box = Box( + """\ + +| || +|-|| +| || +|-|| +|-|| +| || + +""", + ascii=True, +) + +# 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 000000000..9354f9e31 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,154 @@ +import re +from functools import lru_cache +from typing import Callable, List + +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 + + +# TODO: This is inefficient +# TODO: This might not work with CWJ type characters +def chop_cells(text: str, max_size: int, position: int = 0) -> List[str]: + """Break text in to equal (cell) length strings, returning the characters in reverse + order""" + _get_character_cell_size = get_character_cell_size + characters = [ + (character, _get_character_cell_size(character)) for character in text + ] + total_size = position + lines: List[List[str]] = [[]] + append = lines[-1].append + + for character, size in reversed(characters): + if total_size + size > max_size: + lines.append([character]) + append = lines[-1].append + total_size = size + else: + total_size += size + append(character) + + 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 000000000..dfe455937 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,622 @@ +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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 000000000..02cab3282 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 000000000..669a3a707 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 000000000..e559cbb43 --- /dev/null +++ b/implement-cowsay/.venv/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] + +# 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``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 000000000..65fdf5634 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 000000000..e29cf3689 --- /dev/null +++ b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + Iterator, + Iterable, + List, + Optional, + Union, + overload, + TypeVar, + TYPE_CHECKING, +) + +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 characters 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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 000000000..88fcb9295 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 000000000..dca37193a --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 000000000..ad3618389 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 000000000..791f0465d --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 000000000..0bcbe53ef --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 000000000..4b0b0da6c --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 000000000..99f118e20 --- /dev/null +++ b/implement-cowsay/.venv/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/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 000000000..c2646794a --- /dev/null +++ b/implement-cowsay/.venv/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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 lgzb^EP@{Ec=J_R|O9&=gt9 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8f98da90a7612dc3af8c2f70b74233b2bc6f85f GIT binary patch literal 4928 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78ceb51077b42cdc63db89c460b4ef4922e69327 GIT binary patch literal 13588 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31b47caf40585a62b7462885db3f1800b99d4084 GIT binary patch literal 9332 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 D>|xk_ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68c0dadc92c0b0a57a546d621067b9638e36cfab GIT binary patch literal 6410 zcmcIoYiu0V6~6P@oqc=#&W0po5<=FGT|%IU04c!J$!epFg;RH;andd{84PMi%< zUw5_l-Z^t$b6(#$_xG__m_TX&&F_jIbrSLyd~l2Cbk^R0&Sjzyg(;CTlVcd{vn967 z<+w7RBk5gp{xnQKCvr4Jz>sKvoipI3_A>=lNXwY%<;c1rAL! zR=8-Y<#E+CRXr_Ou@ldIXMcY9;Qrwwhei%q;;>vQ$)`)I6&{hxs&Zm_3i{%)DYK|m zvt2B*!Qu$DRb<<~WsC1%-Va-h>G4b51{?@G3vX zD#CgGJ!gSj5O@&)K8Q+C|5{R}`r%zfAix zMa7&jq#ebIRG5%;xd6g3(vl9$F6ycxnHuzwwJ=N4PEV=@Gh+pvm7rrUV+C~8oYpG^ zl#N?h=%ALYJp|QdQX`Y@8(#}l9Jj7iLElF~WvT-QR8vxlV`D0uqM%BrRdYsFE8g+x zr`VsBNwazftfRL>1=_|NYH7^C14&>1AUmOz)vQ@n;pF2JTJ}KEJUD$iJN(?!+0lK& z*=ICmx}*-B(6o|~EtWy^ka zUTd)_uuf~S`K=Oc(X-a3U~dtpXVW$6Pn@=ivid#1FKKfS{!~Rs`p#%aw8U8;#WaD$h_`Np?`ubm`Qo5v`)0Iwg(4Lq&7Fc1GH#j>*#{ z6P&pw;gF`EMPu`rV*bb-sEO2)n6jM+ zs=Hedo~eHQ0aO6=i)|G(&G9u}Va@<%=+UMVQCP(T`ccvZ`Wj~j+~r*?&^OnZ$&gEJ zw%};kNendB6@`1BcVm9Qp_u!+#x-@t4WPjraBs)B=-;?CZ+i_yn`QVNc+rXR!(kyE!-wbVP4jCR1*&*($*r z_ZF*&KlAwWBPJb^{{}*}0obQ-)YN1r&c+nx8*RB@Cp6NIA7Y@HaUL^HdIKQr^rT|N zFl7juZ#7hnCR7mdx18=|N4`~@@wYBwrv!LZX-6}Xz&r|O?sXFdC+w4FA#8WP4!jk* zFzGlRy%|;2S-UuRKA zIr4b`5y)H=Yop< zMtT=gpG39+E!n#eUfTAp5BYlA6AgjHHe*uPx0D$CtnU+%d7O5Yzl239w2Up#xIufB0`sdI3pXX~||q2->T zdQWz#E&F-Ty^A{+C+j^sm)drI-rjqyePFqLV5NQM)&8rS8-#h1ImtkiJjtwaTt~b? zxLBM*41~>aab$;BX?A2JE$X}Q8U479F_Rw0>S3(Vi~B|=EHR(2z?DosZ-w*uGEJ4C zAI;~_PRk|dO)#HVv;vSh$ONoJJ}+0mC}q67F@P#g>DrX4o3lEmPd?3|n2h4ocR*!D z09g&gR#yE{pu9`y`Kgrc01@E?_0aejs-KWQ@h{$pwf*?$3jgqm)7}tb4VD!KE)>2Z z(5!JJ5T}GSQ523ajn1&JpIO}6AlP0RTBB{FH{wvSMJl$9d&m*y81p5U6gIAG=v&g#p5|Z|4}$M1OGXG20}dfot9WjuOeo&>5?Li6)_X8OqWl?^%nSeAF~~7 zx-~y?JklMY(}$U^D{X@2e~r4nvq?J+!6hB)#Pi2*xx;)Bj&Q637^F*Oxb*XVj{{4F z^I5l{qR(+c65qT&{7(_lgFp1pz&3p$sy`^Gs#Z}ZU04G*D$=Y5{MZNh$19XUuH#p6u9$so)jBrZikT$XMpcI+0YNc z@^kPvUV-Wy`BEa$9>^pYb}q>EgtR0|tKEHb?t{+(kx11r1ty_#4EF7{mM z|5SXqfuwUs8w45zkG@qgGJo{#$t%gX%AbgX*TjdG#fMta)&#CQaBid_l4xp)-|&yG z60m}S3BoUvPZ543-C>F7Rb{y1)sa6|z?_|eutmp&LdStR2L3wruV{J}(J4x!J2tg~ zR-%Y*V|&y8P$-}%Kphi)zy1_f81Yh1{I&SFjRSjh1X(aNVmuF3gJT%x&t%JWa`;nn z_^+h%I>~&-wO!|*T;`v=8PFIeexd&+!M34rDJHcN>uz9sBetm_KntMRo?1%vFDC~Y QL3|cTpyOr;dUW%D0p*iMQvd(} literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa776ca3a7158d4bf901e81adbc7d13302638649 GIT binary patch literal 7168 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10c63374b86a6688adfac77714e955798f6c4e70 GIT binary patch literal 1854 zcmZuxO>7%Q6rT0|c>Ncb{-uEiZHU^~pn97kkf>LP|Nrm(_Y_T5qyHW@gi{ zRu4tWp%I6aQ*!K)DxA6Z3Kt+CT8oGxPQAG}Qc+L5x4Sk;VODx?=Ixs|?|t*V`My#q z5*Ww7{m#826Y?i6hC|CHgTG<2O(>y~M|`O%`MG9J!gbD*eWj^LBu5qql{W}gn6wLV za5UA#s)AKx>d30GJk77x2;m=4ofbUZFEk4fO{Yb#=$D!$jK)g4X%NyZvf|1_wm76{ z>6`Mdlp5Y45&^H*4*kxi5UDVXH1vkED){Z@QYVSTmAEoZW{Hs2p{`|!hPKb;WwI{S z$DX2FJ=c@xuFm(y?3ReQ?LaXg&VO89otz2 zIE2}8JEjG0G~_0Cowk{x)QKS(sJdHB&}`s*l-Czz0NIgxzNcGOVEfFndPU3flU!h4 zwye+AY%lwhw=5bumci)IAPz_|FoqUG&Gy-luLLWQ}$KWD}qx1ptC{$)DkVn~2np(Q1xYl5uk5wqFv=obo z`6-oVJ{3$DQJbX~4-62I?RktEVUUBa}iqC6szM$tBAAjlfGV?4}j` z|I)ZU`nv>;v)EHRG2jR-1W?0GhdctP)#SQ(8TMwBNzm+RR`R2J{7@Z@)OHem&w#i? zeydLG%C7g$S+vGM`85IGBZ2X%rG(Pst6yTQP z102b)TN40VD>jm18jE#_pM~xJDIlRp_t@d=k%HskE08XC$P>N1RoX1wTlhskn`B(q z`70ReIEoV}uu^^s1#&7q=>MpPQ8^0SFWv%y)SK-ql6q;!=@U@*odK%8mQyE@ilFXa zJ3y5Z5O-rY__iBZ)>A|WUbQjbUS(FqL}WQO$9FCdFM$X>b{*!Lh+>b4#rjxJwp$KI zkkcm7qPPR?o~E5NMv`Ju-s|XPfJh!PjK!zWgzq-cfxAKUQfs}?ucWQ{KA!<6%uU<^ z(U&Dj`khSglhX%UK`P&!KOmqE&gjzQy>kZyRR1(l%6Gdz$rJlZZC^3|7(4Z)duQQM z;n>#X=Hw2&JGobweg??Y9_iJs%4X%OVDI$#pY@sNGT0EgTE9e;SDzP$%NGK<`mj1a NcTs+LQJs4){||_zoKXM( literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d8d3006dac3d87b618de7b5f341eddd603cf1f3 GIT binary patch literal 5348 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 YIDhPi$7WhDJ@Y57vCu`hdaC9B0H5IP(*OVf literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c89fd52ef60da44442d1d63a086bfc348c7f8150 GIT binary patch literal 12131 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0f835809502b9e3c68cdf7c30a113e07eedad6d GIT binary patch literal 40090 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 HsjK;4xr5!~ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6c46b92bac2741a0d81a6914eb0c82c4e20184f GIT binary patch literal 10423 zcmb6q>KesUJe{P% zSn85=N*C7A2S;N+pEo>uoQ<6>D!*&9j zla7=#>`b}Bu9Q3MCT*5vQ_2(e5ZIdZrhH)^fo;j=lt1hzFq>>i1;T+;FdT%sJ>06J zCMe$VA;mid&nJ47?r@vX&bz+5kD|mM=_tYZNo6}>2h`elH{W#I^9k$>Q@DfdP9N3_ zj>Ivwtv=_ypU`TZreHP)qkTN1tu#u#^KHPSw92&{dlY*e4o{=-4*m#M2`Z zr=D)(n`^UxCVk?Y4aWFuW3EgYsAuf1r8cTDh1%KC)B?RghXRjqsmTznSd!v=Bo>X$ z3Rp>H(iu6Ej>kfJ#r&Eqh|zONK{0$YF3F1d^*K47Nk@~9@FYVzg&D~tGooUFA!$A$ z&YS}bENMF<#^;iP3`k5PnY5Gv9F7X0B9RpK4VWZ|ZwS(SQpSlV=jRq+!PD^z@if$J zr-i6AFA6CkjoqdxVTORP?3BC!2rZ;IvoI$-@&Y|E+>n;A0n^q&AoUt0P+^*n+sIe|!h87YqUufC)U5JOec&sTlb2X#!ff!?1xO)!rKMwv<{fp z5Vi>{)GD~3&H150JNU32uGqo5Zo9RsvQT^{-y}GB5B$7>mG{AF&G54eF2RlKPqV!L zL#B$MiRTD?HEQj=ZraGV02LmBEg*P-dSeBPuY$$Q2Vq1rkG-veAMm%ptTv!GP}dfO zwsvT1UC@QP6x+AN%#0{V(yLK1T7(CwUYEp0xqWk$t`K)FD)w=2N&?TFTj0caY_?D9 z>$6%pNXNw)X^22rlQVKO$?cm?W}@mHr&=5B{pE@UqTxOb+WMNL?;%QEv6;$-2 z!gLf^M1tAez<~pO+>{_AJef%gSc-&?fUdduq!drjaM5%;6-7?%t1cYNq>vwh&abg} zb#Nb7zxII|y7O^fp5^w%)7y7(mNdgADzw8EMee=#kkI$u) zs;z)~5x9NlGMVJIgBnZYgCtuOIAMBPh{@a0j7MQ&A9psMOjbt4r{QcWhlR&~J}Pl@ zQ3)=sww#17irZIxQQOuet%Ur_zTjSB-<=UN^J#wj;@!v(*x6k}t(|7%cUVK418jv1 zR(}g*39Y|wndx{sF3k%3*Ig#cX)~U&hSpuT2Dy~4yMV@xumh>V76`67+*PKH$ng|h zg(hp?CXeNvZ5MI|N5B)2gjgoclZP=6+=2{NMMHQ`dm`8?Ex^-Cafn^LoJoZt?@_U6 z$H^-UVN8V~)F}+PGR2|wt6Ntb+R;?%wz_js990U)Mq9#jq5Kttn6+ZohFLpi9hiZoMJdimW#_7Dl0sI+APLFo-wBI^ zCxpULO;0ZN&t_6Wznm3PAk1bn{S$Hd#QeGbk+;VCr$$HmPiOe~r11P1kPK3P9K{-{ z#ph$0^HOx7zwdn^{eFKkey$&s>1-x_sBhq4zZ92+=jY&AMrQ=6e=a`PAAwSI7+@CsckPh z_U8@v&8;P^Y~73X7OlQ{WH@j5!rZn6C@IA#3i7;|j#W7U8u4}s-wXo)W-Rbc0-&Ag zuXQ}|P@>8;wSMT){|z%mg$$EfX86^p$Yl+vY@X0ZZ|T(Q#)}Wp;w~s8T$>YjLyl)5 z3UlJqXQ8%!1BY{vU8G9x<|X;s2UkB>ZQi$HSUK})_*Qsj@^06vb9mJ}EbfIt+ct%4 zNjCK%0Pq+ZZs{V}YK^zlczo6dCX6l%2ewGd)kneWF+62VVcO{>D_nQ;4s%A6WAa8W@BjOMpXH!n9~^`8qHoND#haQSXI~nIyimxPJayhg*#ZIV zp4Y!mOS+svJf1VjRTj?~Yj-k3%T)&E4OxKkHnVoPQPZ|L2EfgvX_%|i?y-LEQ&>RE z)MJ_gQJF9Ry*tvPIY%ez_f+W@gN@r0RS{Z4q#3MfR>l({i8t~l-l+Loi4X+Ao9D;=*LF%AK$KcaPJIp$DcwD<_cKzlDZTMA1*cvjzRfm zddlu!XWNQw+dA7@WP9(k`+x0jUyc<93b8eJZ`njyJY~oKJ3d-)7mlyF_mc5nSt+OI zquI-|dHn;s`=hg$&*pUxJi)yAfx9_xeBf_e_lJu9P@es@FL+~U&A0crl)*Aa=f_I^ zwi{XOIZ^U7U-vA}t~6awtwf6*{cr+zMv8&KqGvEa`oP=1oLK4o+YwZ7x`yIx)MjC{e4mMw_2Y^7W+d8cY(;QP=LGCkI}kU5^Vw=bEu+uYAK zHEMP_gpPFCU%WZT6C0rt2LN{#+~Krvo_jxi^BKM`3z=gy3Sgc+b zn_&Jf_-*|iJfKq)O)f7{wHKhLk{a8FJbk-r6D)$g_l%kKD^~FF`ns9mW+jl49SNK< z25?p#saiL*qFmdNa{AkbPe7AlS~SXF$*3u3)U*#+HdG`1e9eEF_-6*q-;!X8h7G{C%vuGuH)tb}ctRT$ES;im|{s+JW zKh#~*{eWTMP8OI!>I(A@`tx+i91X$cXc01uk`QUxP(L<$5rhM{eU%6)yod?}PChER zSY2QUA3`ns1Vh!J6GQ{53R6O@{cHjnD(L!P>=5@hFGw*^Sg0r7Q3H9n?ptvo$?wqY zBt|S}#5(O>Q9mRuQ3=iwYOII@6NDLN!6ilGn^%K-3Ue+A7WXZhD85M%1Ne`ekbz5W zLG42#5vuD=-0?S|ucj^)Jw%|1Pc9-;D|(2`g>32*{(T%toO#r#VpZ8Hj_n#vu~!r= znD_H(Sz%-IB2W){9wH{wAA zeY3T5y|u5{+PB*J;+5B~oVq)@KKy!d_;na>@u3#&{`;vF-<|ei=;+#>W1n{w_ly)h zqo~)sOUb2o3U3sBJ!|fLD=!z_NAkv!r*(O}@Ovx5&39Klhe5M@TG!33_sp$NB(#6N zKf;VS>7SYC5xe1MW+T9gNe%i+F_foTs*1Y@(5i~NI_IdNM}L8qSQ?&rBNwJ|t7h^p z>KnTrRg4V;8wgRVk!XWC4xoZcRNV}1OJKfJ^VA{(E?_(KBP;Jn5dG5U47X{`bO!-L z?GP}}zp>iDMU&DHh@U3IGDT}3jc0xLJ3xoy8FV;A7G?!^5CT=AuG*e%uhQt0F`h^gxP&$l zT{ag)F>U1BoZ9{TkiJF(y=rbS|`PKU?t*? zi9-mzgxM>Q&7(y4dl>bb0fQXMV)Fk#pL4-Jbp^RRLs8MQ1QkaRx7N7>P%=40B zB>|a8CY@YR1GmUA;xuLlFhf=mqnKgTSq zB^^9HqME)kQy}$6ubsSl@}Bolp=Z7OP_g^aowMsNj2B-RUvo|5nUc%D?%G>)?Y-w3 zUg=ry9WM3`L#w~_TJ~!8o`0}#=Hu|q@SVe}dj|9DhRqK>s%Ny)bLWN6nN@#i%|E`* zj<2%gCAJCl&ynGuWIxNU4xYX;vShesy=uKNQlJZmKR$Z%=vv#s`|P3BDb#J2rpM;0 zQ@O$Ix$aqcA@A7e+0imp8?hEJ`x ztVI{1+jKWCyRQb&scQj0%D21ly`py?1PTNDRzSb*&pXH#yNa%^!tRfIZ}zUao`(%K z2d^crCJLhv>%G@}VrBHx$y<|m`F~0LQ=+*4MBY{kaO;8IVxV_pS6_Z~o$b8GcHS9X zKRi)9Jh7$Ml(M%qZ{DzZH=2UWhYEq~$5tlSnqIoczO-QrVB67^$zto!U1&UYk3F^N zY*zi*QhRsdtzvuMosMGrvHawQvmI~d#bWo1tKF||`1jljZ3MduFW=d-7Cds#d!*#; zE<}soo~6kRPZ#zaTIne68ocXU3m#kZ9)q*=c9$*Gt`R!_L7AakT=^T6eS-cU32o`` zA3r*=pZ+ODPlOCVrN=^0*`~PB*urPK^#jPB6~n&7$vB225Rw{LS2k|d1kV&zn-8J? zhAO`{Hl&+;gk*sSM~prU>xpr-Vf%~T?$T*5C8hq=!82Y;wfEZkS{VKK75k3{M;>A=iE8dFdl2$cfv$q@x^oNH zC?BAimzQ^KQBc4dMn_p^WCDfRmHC^Q-%>9xkkF3RX!67MrXSis-**uI}>*#x2( zC}FBEST-SKru@OO1tBZt@t17~0cqYcj)$36M}FpV`){34L)@)p9YBx2Lz|gb=mJxw zuw0qFGk+_i!vE^sB5mbn>ZMoc$NDy=t>o`0ld`8*Ee{Qna?|2o>M2@+TMP^;4?hQ( z$WQ`=UZM5J(Lub-KFHt`5P5{C zh{qoZkUydAGkr=M-=D@WPHb3x%dZw< z_pQAbM}B2+ZW?Us27l22Pv^d&W5eFGG_Vv~9$2%tL!^=k*iq599%wp-^`WFO?d+udiV=-3q&ND0I)Q}R?r*n8`?_-+aI64 Qbo!58FSk;LAld%^0lcfD;Q#;t literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08302d20d5e59c0127416b33bf2d3ea7d68ba2b6 GIT binary patch literal 14815 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98ae04918616169057d6baa1236a6aac3914fc88 GIT binary patch literal 601 zcmX|;&ubJh6vvbKwPkH>EnYkba}oyG4Juxwcxh=xaSvJ#&LyOi*O}lZIL=XlV~ml5_7HbY5qAN9b_ZSTv|i-@?t%!L@r)I~_nR_@WXKPGDMpJ&Ha61pL?aWtfK(_szqmhdy-Qy1Y?J4G@yWhY zc}+xN-=_enCy6?)SxcrzAdg5c4oKPROvwk+d-q8#G)zjCykRNSq!cBgR>oCDDv@Ml zxaqWPtM12o=UJ$4S@#}&_a6QnjZb#Zdw1>n$8}j=Fp$F2p(6kQ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fa63da294d120d210b3ce8c63a83e96f0c66b41 GIT binary patch literal 6660 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 Sek4GC+BL&X-6B9@TmJ*<30Ot| literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f91931429461a91429d6571e6e6eed71d67dd024 GIT binary patch literal 28195 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..797c57ac0841b1bc3744a167f319b420e17969e6 GIT binary patch literal 6098 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4df45d09f1081ba2472f1394ac4d5f7031295965 GIT binary patch literal 6102 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 DVIza1 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35a0bd98ef55dc99acf520db307dc36d1b29d3cc GIT binary patch literal 33548 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 literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c76ba07ff2b6611629e604d19ddddf4c5491170 GIT binary patch literal 2173 zcmZuy&2JM|5P$3a@b^dJfFU4Z%BN}LRVkHPS^*)Xp&z)2aA7Yi$M2Ci?0Vg|Ymg%& za-fncwW_KfLQkcq7NM%`h4MGF7ibQot40M?JuAG<91Fyl8shp9f2h<@*+iv@`8YDf<{VmLxxY{=(TwbK>;m z#QX17rXHg|Xp?7H)opQRvxWy^beheEY<${lTkL$h$x4bJop2hiV=+GyG9Na*I;i~A zIo6X4B2+SDnxx8g#Zcm8{Xp zRHIQEqYb`0-&NF2;oW zK3mY|9GmIh0<-Il**Qm_s(YtfGy24Zcl7B~6Z#p4wk$Sw-f=8fuiH&a^ut)qx#Cva zdigSIT-L4njNWW}b57&6@~ek+x9+jAX0>*yI?G(WS#RnlY@-g>dA&BLi;QTw+4f_m zS#Q)m(_F|3>}a{K$YY8*Ad6&WbZ=MrG`q58w5xoUSOXpLqqU&tcuYu6&~ZEt(kAd= zY6I|Y0)ybq55NLNxH@D$oU^_LpZ!_6DuY*l+Ba+fuYTKZ)JFO~AnBvC1B3!I~%c6g?rtYS+AdrBHduy_H;f(9-9q#iaQBpk@Pe&wCzD|_x;@Nn|r@K z^v$8=+*ns#*}3QI%2$=|j{I=^*73Vj%R5iqi*5fSKl&iQ|9*b|y#sID-M5@S(T%NS z3*9W=3XwJy41pHiehQc+;tk66eO;it?IVd4^j<9j;oKg%YrBSt+Y5ED%w8cmQpEAvlT2(8wL`{=AH7Mm4 z^v2A@t@%s9-6A3jaXp?!6B10ueGkZW@+6|Fv9(M@-O-C_>b8|au_xp6<+sH1VZ5-W zg51l=>Pbmh1%qZ}9>zzWs>lS#U~tUYuGSl-34b1Hlh?(+hPA<%VRg+TuzNGPX4aMyZb)= LpqC`ds5tXK{8|F+ literal 0 HcmV?d00001 diff --git a/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc b/implement-cowsay/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4afc5d1522aec75c448feb9fcd296691c732ced9 GIT binary patch literal 39646 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